ERC-721
Overview
Max Total Supply
420 SONE
Holders
199
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 SONELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SurvivedOnes
Compiler Version
v0.8.11+commit.d7f03943
Optimization Enabled:
Yes with 200 runs
Other Settings:
byzantium EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // ▄▀▀▀▀▄ ▄▀▀▄ ▄▀▀▄ ▄▀▀▄▀▀▀▄ ▄▀▀▄ ▄▀▀▄ ▄▀▀█▀▄ ▄▀▀▄ ▄▀▀▄ ▄▀▀█▄▄▄▄ ▄▀▀█▄▄ // █ █ ▐ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ ▐ ▄▀ ▐ █ ▄▀ █ // ▀▄ ▐ █ █ ▐ █▀▀█▀ ▐ █ █ ▐ █ ▐ ▐ █ █ █▄▄▄▄▄ ▐ █ █ // ▀▄ █ █ █ ▄▀ █ █ ▄▀ █ █ ▄▀ █ ▌ █ █ // █▀▀▀ ▀▄▄▄▄▀ █ █ ▀▄▀ ▄▀▀▀▀▀▄ ▀▄▀ ▄▀▄▄▄▄ ▄▀▄▄▄▄▀ // ▐ ▐ ▐ █ █ █ ▐ █ ▐ // ▐ ▐ ▐ ▐ // ▄▀▀▀▀▄ ▄▀▀▄ ▀▄ ▄▀▀█▄▄▄▄ ▄▀▀▀▀▄ // █ █ █ █ █ █ ▐ ▄▀ ▐ █ █ ▐ // █ █ ▐ █ ▀█ █▄▄▄▄▄ ▀▄ // ▀▄ ▄▀ █ █ █ ▌ ▀▄ █ // ▀▀▀▀ ▄▀ █ ▄▀▄▄▄▄ █▀▀▀ // █ ▐ █ ▐ ▐ // ▐ ▐ pragma solidity ^0.8.11; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; error PriceError(string message); error LogicError(string message); error InvalidSignature(string message); error ReceiverMismatch(string message); contract SurvivedOnes is ERC721A, Ownable { using StringsUpgradeable for uint256; using ECDSA for bytes32; mapping(address => bool) private FREE_MINT_USAGE_MAP; uint256 public constant MAX_SUPPLY = 400; uint256 public constant TEAM_SUPPLY = 20; uint256 public constant MAX_TOTAL_SUPPLY = MAX_SUPPLY + TEAM_SUPPLY; uint256 public constant FREE_MINT_PER_ALLOWED_WALLET = 5; uint256 public DOSE_PRICE = 0.005 ether; uint256 public SURVIVE_CHANCE = 10; uint256 public FREE_SURVIVE_CHANCE = 4; uint256 public USED_TEAM_SUPPLY = 0; uint256 public DEAD_COUNT = 0; int256 public MINT_STAGE = -1; string public TOKEN_BASE_URL = "ipfs://tba"; string public TOKEN_URL_SUFFIX = ".json"; string public NOT_REVEALED_URL = "ipfs://QmRsreuj89gTnbK3AnQEy7rjTg93LVQKngEXTAYpJKvR1W"; address public WITHDRAW_ADDRESS = 0xdf058F9915ADf447695eE01cb6F0A896D4C0b7a6; // @TODO: change withdraw wallet address public DEAD_CONTRACT; bool public IS_REVEALED = false; address private _signerAddress; constructor(address signerAddress_) ERC721A("SurvivedOnes", "SONE") { _signerAddress = signerAddress_; } function gangBang(uint256 _count) external onlyOwner { if (USED_TEAM_SUPPLY + _count > TEAM_SUPPLY) { revert LogicError("team_supply_exceeded"); } USED_TEAM_SUPPLY += _count; _safeMint(msg.sender, _count); } function isUsedFreeMint(address _receiverAddress) public view returns (bool) { return FREE_MINT_USAGE_MAP[_receiverAddress]; } modifier overCumProtection() { uint256 REMAINING_TEAM_SUPPLY = TEAM_SUPPLY - USED_TEAM_SUPPLY; uint256 remainingSupply = MAX_TOTAL_SUPPLY - REMAINING_TEAM_SUPPLY - totalSupply(); if (remainingSupply == 0) { revert LogicError("sold_out"); } _; } function cum( uint256 dose, uint256 randSeed, bool freeMintAllowed, bytes calldata signature ) external payable overCumProtection returns (uint256) { require(msg.sender == tx.origin, "no_bots"); if (MINT_STAGE < 1) { revert LogicError("please_foreplay_first"); } if (dose < 1 || dose > 100) { revert LogicError("wrong_dose"); } if ( verifySignature(msg.sender, randSeed, freeMintAllowed, signature) != true ) { revert InvalidSignature("wrong_signature"); } uint256 freeMintCount = 0; if (freeMintAllowed == true) { if (FREE_MINT_USAGE_MAP[msg.sender] != true) { freeMintCount = FREE_MINT_PER_ALLOWED_WALLET; FREE_MINT_USAGE_MAP[msg.sender] = true; } } if (msg.value < (dose - freeMintCount) * DOSE_PRICE) { revert PriceError("not_enough_money"); } uint256 totalDeath = 0; uint256 totalSurvived = 0; for (uint256 i = 0; i < dose; i += 1) { uint256 rand = random(signature, randSeed + i, 100); if (totalSupply() + (TEAM_SUPPLY - USED_TEAM_SUPPLY) > MAX_TOTAL_SUPPLY) { break; } uint256 tempSurviveChange = i < freeMintCount ? FREE_SURVIVE_CHANCE : SURVIVE_CHANCE; if (rand < tempSurviveChange) { totalSurvived += 1; } else { totalDeath += 1; } } DeadProxy proxy = DeadProxy(DEAD_CONTRACT); if (totalDeath > 0) { proxy.killSperm(msg.sender, totalDeath); DEAD_COUNT += totalDeath; } if (totalSurvived < 1) { return 0; } if ( totalSupply() + (TEAM_SUPPLY - USED_TEAM_SUPPLY) + totalSurvived > MAX_TOTAL_SUPPLY ) { uint256 tempRemainingSupply = MAX_TOTAL_SUPPLY - (TEAM_SUPPLY - USED_TEAM_SUPPLY) - totalSupply(); _safeMint(msg.sender, tempRemainingSupply); proxy.killSperm(msg.sender, totalSurvived - tempRemainingSupply); DEAD_COUNT += totalSurvived - tempRemainingSupply; return tempRemainingSupply; } _safeMint(msg.sender, totalSurvived); return totalSurvived; } // - internal logic function random( bytes memory signatureSeed, uint256 randSeed, uint8 max ) private view returns (uint8) { return uint8( uint256( keccak256( abi.encodePacked( block.timestamp, block.difficulty, signatureSeed, randSeed, _nextTokenId() ) ) ) % max ); } function _baseURI() internal view virtual override returns (string memory) { return TOKEN_BASE_URL; } function _suffix() internal view virtual returns (string memory) { return TOKEN_URL_SUFFIX; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); if (!IS_REVEALED) { return NOT_REVEALED_URL; } string memory baseURI = _baseURI(); string memory suffix = _suffix(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), suffix)) : ""; } function recoverSigner(bytes32 _ethSignedMessageHash, bytes memory _signature) private pure returns (address) { (bytes32 r, bytes32 s, uint8 v) = splitSignature(_signature); return ecrecover(_ethSignedMessageHash, v, r, s); } function splitSignature(bytes memory sig) private pure returns ( bytes32 r, bytes32 s, uint8 v ) { if (sig.length != 65) { revert InvalidSignature("Signature length is not 65 bytes"); } assembly { r := mload(add(sig, 32)) s := mload(add(sig, 64)) v := byte(0, mload(add(sig, 96))) } } // - management only functions function setDeadContract(address _deadContract) external onlyOwner { DEAD_CONTRACT = _deadContract; } function setSurviveChance(uint8 _surviveChance) external onlyOwner { SURVIVE_CHANCE = _surviveChance; } function setFreeSurviveChance(uint8 _surviveChance) external onlyOwner { FREE_SURVIVE_CHANCE = _surviveChance; } function setDosePrice(uint256 _dosePrice) external onlyOwner { DOSE_PRICE = _dosePrice; } function setMintStage(int256 _mintStage) external onlyOwner { require(_mintStage < 3, "Unsupported mint stage"); MINT_STAGE = _mintStage; } function setTokenBaseUrl(string memory _tokenBaseUrl) public onlyOwner { TOKEN_BASE_URL = _tokenBaseUrl; } function setTokenSuffix(string memory _tokenUrlSuffix) public onlyOwner { TOKEN_URL_SUFFIX = _tokenUrlSuffix; } function setIsRevealed(bool status) public onlyOwner { IS_REVEALED = status; } function setNotRevealedUrl(string memory _notRevealedUrl) public onlyOwner { NOT_REVEALED_URL = _notRevealedUrl; } function setWithdrawAddress(address _withdrawAddress) public onlyOwner { WITHDRAW_ADDRESS = _withdrawAddress; } function withdrawAll() external onlyOwner { uint256 balance = address(this).balance; require(balance > 0); _withdraw(WITHDRAW_ADDRESS, address(this).balance); } function _withdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "Transfer failed."); } function getMessageHash( address _receiverAddress, uint256 _randSeed, bool _freeMintAllowed ) internal pure returns (bytes32) { return keccak256( abi.encodePacked(_receiverAddress, _randSeed, _freeMintAllowed) ); } function verifySignature( address _receiverAddress, uint256 _randSeed, bool _freeMintAllowed, bytes memory signature ) private view returns (bool) { bytes32 messageHash = getMessageHash( _receiverAddress, _randSeed, _freeMintAllowed ); if (_receiverAddress != msg.sender) { revert InvalidSignature("receiver_mismatch_wrong_signature"); } bytes32 ethSignedMessageHash = getEthSignedMessageHash(messageHash); return recoverSigner(ethSignedMessageHash, signature) == _signerAddress; } function getEthSignedMessageHash(bytes32 _messageHash) private pure returns (bytes32) { return keccak256( abi.encodePacked("\x19Ethereum Signed Message:\n32", _messageHash) ); } } // for calling erc721 contracts abstract contract DeadProxy { function killSperm(address to, uint256 count) public virtual; }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "byzantium", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"signerAddress_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[{"internalType":"string","name":"message","type":"string"}],"name":"InvalidSignature","type":"error"},{"inputs":[{"internalType":"string","name":"message","type":"string"}],"name":"LogicError","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[{"internalType":"string","name":"message","type":"string"}],"name":"PriceError","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEAD_CONTRACT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEAD_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOSE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_PER_ALLOWED_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_SURVIVE_CHANCE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_REVEALED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_STAGE","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NOT_REVEALED_URL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SURVIVE_CHANCE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_BASE_URL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_URL_SUFFIX","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"USED_TEAM_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAW_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"dose","type":"uint256"},{"internalType":"uint256","name":"randSeed","type":"uint256"},{"internalType":"bool","name":"freeMintAllowed","type":"bool"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"cum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"gangBang","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_receiverAddress","type":"address"}],"name":"isUsedFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_deadContract","type":"address"}],"name":"setDeadContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_dosePrice","type":"uint256"}],"name":"setDosePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_surviveChance","type":"uint8"}],"name":"setFreeSurviveChance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setIsRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"int256","name":"_mintStage","type":"int256"}],"name":"setMintStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedUrl","type":"string"}],"name":"setNotRevealedUrl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_surviveChance","type":"uint8"}],"name":"setSurviveChance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenBaseUrl","type":"string"}],"name":"setTokenBaseUrl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenUrlSuffix","type":"string"}],"name":"setTokenSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_withdrawAddress","type":"address"}],"name":"setWithdrawAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6611c37937e08000600a908155600b8190556004600c556000600d819055600e55600019600f5560c060405260808190527f697066733a2f2f7462610000000000000000000000000000000000000000000060a090815262000065916010919062000295565b506040805180820190915260058082527f2e6a736f6e0000000000000000000000000000000000000000000000000000006020909201918252620000ac9160119162000295565b5060405180606001604052806035815260200162002f89603591398051620000dd9160129160209091019062000295565b5060138054600160a060020a03191673df058f9915adf447695ee01cb6f0a896d4c0b7a61790556014805460a060020a60ff02191690553480156200012157600080fd5b5060405162002fbe38038062002fbe83398101604081905262000144916200033b565b604080518082018252600c81527f53757276697665644f6e6573000000000000000000000000000000000000000060208083019182528351808501909452600484527f534f4e4500000000000000000000000000000000000000000000000000000000908401528151919291620001be9160029162000295565b508051620001d490600390602084019062000295565b50620001e86401000000006200023a810204565b60005550620002149050620002056401000000006200023f810204565b64010000000062000243810204565b60158054600160a060020a031916600160a060020a0392909216919091179055620003c3565b600090565b3390565b60088054600160a060020a03838116600160a060020a0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002a3906200036d565b90600052602060002090601f016020900481019282620002c7576000855562000312565b82601f10620002e257805160ff191683800117855562000312565b8280016001018555821562000312579182015b8281111562000312578251825591602001919060010190620002f5565b506200032092915062000324565b5090565b5b8082111562000320576000815560010162000325565b6000602082840312156200034e57600080fd5b8151600160a060020a03811681146200036657600080fd5b9392505050565b6002810460018216806200038257607f821691505b60208210811415620003bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b612bb680620003d36000396000f3fe60806040526004361061028c5760003560e060020a900480634db5eb261161015e578063a22cb465116100c5578063cd406e7f1161007e578063cd406e7f1461076b578063cec3ee5814610781578063d291b81114610796578063dff99173146107ab578063e985e9c5146107cb578063f2fde38b1461081457600080fd5b8063a22cb465146106cb578063b88d4fde146106eb578063b9c3a8181461070b578063babb36dd14610720578063c87b56dd14610735578063cab6b4ef1461075557600080fd5b80637bf08e34116101175780637bf08e3414610609578063853828b61461062a5780638da5cb5b1461063f57806395d89b411461065d5780639b102ca0146106725780639c12e1bc146106ab57600080fd5b80634db5eb26146105545780636352211e146105745780636ea0061b1461059457806370a08231146105b4578063715018a6146105d457806377ca8314146105e957600080fd5b806323b872dd116102025780633ab1a494116101bb5780633ab1a494146104a95780633d2d7f53146104c957806342842e0e146104df5780634754198c146104ff57806349a5980a146105145780634c07c5771461053457600080fd5b806323b872dd14610408578063319b3c021461042857806332cb6b0c1461044857806333039d3d1461045e578063372822b41461047357806337a984ed1461049357600080fd5b80630c31772c116102545780630c31772c146103635780630ef6a94b14610379578063122e04a81461039957806316f1e687146103b957806317c40a3a146103cf57806318160ddd146103ef57600080fd5b806301ffc9a71461029157806306fdde03146102c657806307750c28146102e8578063081812fc14610309578063095ea7b314610341575b600080fd5b34801561029d57600080fd5b506102b16102ac36600461258b565b610834565b60405190151581526020015b60405180910390f35b3480156102d257600080fd5b506102db6108d1565b6040516102bd9190612600565b6102fb6102f6366004612628565b610963565b6040519081526020016102bd565b34801561031557600080fd5b506103296103243660046126bc565b610f7b565b604051600160a060020a0390911681526020016102bd565b34801561034d57600080fd5b5061036161035c3660046126ec565b610fd8565b005b34801561036f57600080fd5b506102fb600b5481565b34801561038557600080fd5b506103616103943660046127a5565b6110ea565b3480156103a557600080fd5b5060135461032990600160a060020a031681565b3480156103c557600080fd5b506102fb600c5481565b3480156103db57600080fd5b506103616103ea3660046126bc565b61112e565b3480156103fb57600080fd5b50600154600054036102fb565b34801561041457600080fd5b506103616104233660046127ee565b6111e2565b34801561043457600080fd5b5061036161044336600461282a565b6111f2565b34801561045457600080fd5b506102fb61019081565b34801561046a57600080fd5b506102fb611227565b34801561047f57600080fd5b5060145461032990600160a060020a031681565b34801561049f57600080fd5b506102fb600d5481565b3480156104b557600080fd5b506103616104c436600461284d565b611237565b3480156104d557600080fd5b506102fb600a5481565b3480156104eb57600080fd5b506103616104fa3660046127ee565b611293565b34801561050b57600080fd5b506102db6112ae565b34801561052057600080fd5b5061036161052f366004612868565b61133c565b34801561054057600080fd5b5061036161054f36600461284d565b611398565b34801561056057600080fd5b5061036161056f3660046126bc565b6113f4565b34801561058057600080fd5b5061032961058f3660046126bc565b611479565b3480156105a057600080fd5b506103616105af3660046127a5565b611484565b3480156105c057600080fd5b506102fb6105cf36600461284d565b6114c4565b3480156105e057600080fd5b5061036161152c565b3480156105f557600080fd5b5061036161060436600461282a565b611565565b34801561061557600080fd5b506014546102b19060a060020a900460ff1681565b34801561063657600080fd5b5061036161159a565b34801561064b57600080fd5b50600854600160a060020a0316610329565b34801561066957600080fd5b506102db6115ea565b34801561067e57600080fd5b506102b161068d36600461284d565b600160a060020a031660009081526009602052604090205460ff1690565b3480156106b757600080fd5b506103616106c63660046127a5565b6115f9565b3480156106d757600080fd5b506103616106e6366004612883565b611639565b3480156106f757600080fd5b506103616107063660046128b6565b6116e8565b34801561071757600080fd5b506102fb601481565b34801561072c57600080fd5b506102db61174b565b34801561074157600080fd5b506102db6107503660046126bc565b611758565b34801561076157600080fd5b506102fb600f5481565b34801561077757600080fd5b506102fb600e5481565b34801561078d57600080fd5b506102fb600581565b3480156107a257600080fd5b506102db6118a8565b3480156107b757600080fd5b506103616107c63660046126bc565b6118b5565b3480156107d757600080fd5b506102b16107e6366004612932565b600160a060020a03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561082057600080fd5b5061036161082f36600461284d565b6118e7565b60007f01ffc9a700000000000000000000000000000000000000000000000000000000600160e060020a03198316148061089757507f80ac58cd00000000000000000000000000000000000000000000000000000000600160e060020a03198316145b806108cb57507f5b5e139f00000000000000000000000000000000000000000000000000000000600160e060020a03198316145b92915050565b6060600280546108e09061295c565b80601f016020809104026020016040519081016040528092919081815260200182805461090c9061295c565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600080600d54601461097591906129b3565b905060006109866001546000540390565b8261099460146101906129ca565b61099e91906129b3565b6109a891906129b3565b905080610a005760405160e360020a6317478fc302815260206004820152600860248201527f736f6c645f6f757400000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b333214610a525760405160e560020a62461bcd02815260206004820152600760248201527f6e6f5f626f74730000000000000000000000000000000000000000000000000060448201526064016109f7565b6001600f541215610aa95760405160e360020a6317478fc302815260206004820152601560248201527f706c656173655f666f7265706c61795f6669727374000000000000000000000060448201526064016109f7565b6001881080610ab85750606488115b15610b095760405160e360020a6317478fc302815260206004820152600a60248201527f77726f6e675f646f73650000000000000000000000000000000000000000000060448201526064016109f7565b610b4b33888888888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061199c92505050565b1515600114610bb6576040517f2a34f7fe00000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f77726f6e675f7369676e6174757265000000000000000000000000000000000060448201526064016109f7565b600060018715151415610bfd573360009081526009602052604090205460ff161515600114610bfd5750336000908152600960205260409020805460ff1916600117905560055b600a54610c0a828b6129b3565b610c1491906129e2565b341015610c7d576040517f1ffa894300000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f6e6f745f656e6f7567685f6d6f6e65790000000000000000000000000000000060448201526064016109f7565b60008060005b8b811015610d79576000610ce88a8a8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050838e610ce191906129ca565b6064611b2c565b60ff169050610cfa60146101906129ca565b600d54610d089060146129b3565b60015460005403610d1991906129ca565b1115610d255750610d79565b6000858310610d3657600b54610d3a565b600c545b905080821015610d5657610d4f6001856129ca565b9350610d64565b610d616001866129ca565b94505b50610d7290506001826129ca565b9050610c83565b50601454600160a060020a03168215610e1d576040517f296de43300000000000000000000000000000000000000000000000000000000815233600482015260248101849052600160a060020a0382169063296de43390604401600060405180830381600087803b158015610ded57600080fd5b505af1158015610e01573d6000803e3d6000fd5b5050505082600e6000828254610e1791906129ca565b90915550505b6001821015610e33576000965050505050610f70565b610e4060146101906129ca565b82600d546014610e5091906129b3565b60015460005403610e6191906129ca565b610e6b91906129ca565b1115610f60576000610e806001546000540390565b600d54610e8e9060146129b3565b610e9b60146101906129ca565b610ea591906129b3565b610eaf91906129b3565b9050610ebb3382611b75565b600160a060020a03821663296de43333610ed584876129b3565b60405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401600060405180830381600087803b158015610f1957600080fd5b505af1158015610f2d573d6000803e3d6000fd5b505050508083610f3d91906129b3565b600e6000828254610f4e91906129ca565b90915550909750610f70945050505050565b610f6a3383611b75565b50945050505b505095945050505050565b6000610f8682611b8f565b610fbc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50600090815260066020526040902054600160a060020a031690565b6000610fe382611bb6565b905080600160a060020a031683600160a060020a03161415611031576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600160a060020a038216146110815761104b81336107e6565b611081576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600854600160a060020a031633146111175760405160e560020a62461bcd0281526004016109f790612a01565b805161112a9060119060208401906124dc565b5050565b600854600160a060020a0316331461115b5760405160e560020a62461bcd0281526004016109f790612a01565b601481600d5461116b91906129ca565b11156111bd5760405160e360020a6317478fc302815260206004820152601460248201527f7465616d5f737570706c795f657863656564656400000000000000000000000060448201526064016109f7565b80600d60008282546111cf91906129ca565b909155506111df90503382611b75565b50565b6111ed838383611c37565b505050565b600854600160a060020a0316331461121f5760405160e560020a62461bcd0281526004016109f790612a01565b60ff16600c55565b61123460146101906129ca565b81565b600854600160a060020a031633146112645760405160e560020a62461bcd0281526004016109f790612a01565b6013805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6111ed838383604051806020016040528060008152506116e8565b601080546112bb9061295c565b80601f01602080910402602001604051908101604052809291908181526020018280546112e79061295c565b80156113345780601f1061130957610100808354040283529160200191611334565b820191906000526020600020905b81548152906001019060200180831161131757829003601f168201915b505050505081565b600854600160a060020a031633146113695760405160e560020a62461bcd0281526004016109f790612a01565b6014805491151560a060020a0274ff000000000000000000000000000000000000000019909216919091179055565b600854600160a060020a031633146113c55760405160e560020a62461bcd0281526004016109f790612a01565b6014805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600854600160a060020a031633146114215760405160e560020a62461bcd0281526004016109f790612a01565b600381126114745760405160e560020a62461bcd02815260206004820152601660248201527f556e737570706f72746564206d696e742073746167650000000000000000000060448201526064016109f7565b600f55565b60006108cb82611bb6565b600854600160a060020a031633146114b15760405160e560020a62461bcd0281526004016109f790612a01565b805161112a9060109060208401906124dc565b6000600160a060020a038216611506576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50600160a060020a031660009081526005602052604090205467ffffffffffffffff1690565b600854600160a060020a031633146115595760405160e560020a62461bcd0281526004016109f790612a01565b6115636000611e4f565b565b600854600160a060020a031633146115925760405160e560020a62461bcd0281526004016109f790612a01565b60ff16600b55565b600854600160a060020a031633146115c75760405160e560020a62461bcd0281526004016109f790612a01565b3031806115d357600080fd5b6013546111df90600160a060020a03163031611eae565b6060600380546108e09061295c565b600854600160a060020a031633146116265760405160e560020a62461bcd0281526004016109f790612a01565b805161112a9060129060208401906124dc565b600160a060020a03821633141561167c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000818152600760209081526040808320600160a060020a03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116f3848484611c37565b600160a060020a0383163b156117455761170f84848484611f54565b611745576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b601180546112bb9061295c565b606061176382611b8f565b611799576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60145460a060020a900460ff1661183c57601280546117b79061295c565b80601f01602080910402602001604051908101604052809291908181526020018280546117e39061295c565b80156118305780601f1061180557610100808354040283529160200191611830565b820191906000526020600020905b81548152906001019060200180831161181357829003601f168201915b50505050509050919050565b6000611846612084565b90506000611852612093565b905081516000141561187357604051806020016040528060008152506118a0565b8161187d856120a2565b8260405160200161189093929190612a36565b6040516020818303038152906040525b949350505050565b601280546112bb9061295c565b600854600160a060020a031633146118e25760405160e560020a62461bcd0281526004016109f790612a01565b600a55565b600854600160a060020a031633146119145760405160e560020a62461bcd0281526004016109f790612a01565b600160a060020a0381166119935760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109f7565b6111df81611e4f565b60408051600160a060020a0386166c0100000000000000000000000002602080830191909152603482018690528415157f01000000000000000000000000000000000000000000000000000000000000000260548301528251603581840301815260559092019092528051910120600090600160a060020a0386163314611aa5576040517f2a34f7fe00000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f72656365697665725f6d69736d617463685f77726f6e675f7369676e6174757260448201527f650000000000000000000000000000000000000000000000000000000000000060648201526084016109f7565b6000611afe826040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b601554909150600160a060020a0316611b1782866121f3565b600160a060020a031614979650505050505050565b60008160ff1642448686611b3f60005490565b604051602001611b53959493929190612a79565b60408051601f1981840301815291905280516020909101206118a09190612acb565b61112a828260405180602001604052806000815250612272565b60008054821080156108cb57505060009081526004602052604090205460e060020a161590565b600081600054811015611c055760008181526004602052604090205460e060020a8116611c03575b80611bfc575060001901600081815260046020526040902054611bde565b9392505050565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611c4282611bb6565b905083600160a060020a031681600160a060020a031614611c8f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600033600160a060020a0386161480611cad5750611cad85336107e6565b80611cc8575033611cbd84610f7b565b600160a060020a0316145b905080611d01576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160a060020a038416611d41576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000838152600660209081526040808320805473ffffffffffffffffffffffffffffffffffffffff19169055600160a060020a0388811684526005835281842080546000190190558716835280832080546001019055858352600490915290207c02000000000000000000000000000000000000000000000000000000004260a060020a02861781179091558216611e075760018301600081815260046020526040902054611e05576000548114611e055760008181526004602052604090208390555b505b8284600160a060020a031686600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b60088054600160a060020a0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082600160a060020a03168260405160006040518083038185875af1925050503d8060008114611efb576040519150601f19603f3d011682016040523d82523d6000602084013e611f00565b606091505b50509050806111ed5760405160e560020a62461bcd02815260206004820152601060248201527f5472616e73666572206661696c65642e0000000000000000000000000000000060448201526064016109f7565b6040517f150b7a02000000000000000000000000000000000000000000000000000000008152600090600160a060020a0385169063150b7a0290611fa2903390899088908890600401612adf565b6020604051808303816000875af1925050508015611fdd575060408051601f3d908101601f19168201909252611fda91810190612b1b565b60015b612051573d80801561200b576040519150601f19603f3d011682016040523d82523d6000602084013e612010565b606091505b508051612049576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b600160e060020a0319167f150b7a02000000000000000000000000000000000000000000000000000000001490506118a0565b6060601080546108e09061295c565b6060601180546108e09061295c565b6060816120e257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561210c57806120f681612b38565b91506121059050600a83612b53565b91506120e6565b60008167ffffffffffffffff81111561212757612127612716565b6040519080825280601f01601f191660200182016040528015612151576020820181803683370190505b5090505b84156118a0576121666001836129b3565b9150612173600a86612acb565b61217e9060306129ca565b7f0100000000000000000000000000000000000000000000000000000000000000028183815181106121b2576121b2612b67565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506121ec600a86612b53565b9450612155565b6000806000806122028561244e565b6040805160008152602081018083528b905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa15801561225d573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b600054600160a060020a0384166122b5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826122ec576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160a060020a038416600081815260056020908152604080832080546801000000000000000189020190558483526004909152902060a060020a420286177c020000000000000000000000000000000000000000000000000000000060018714021790558190818501903b156123f9575b6040518290600160a060020a038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123a96000878480600101955087611f54565b6123df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061235e5782600054146123f457600080fd5b61243e565b5b604051600183019290600160a060020a038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106123fa575b5060009081556117459085838684565b600080600083516041146124be576040517f2a34f7fe00000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f5369676e6174757265206c656e677468206973206e6f7420363520627974657360448201526064016109f7565b50505060208101516040820151606090920151909260009190911a90565b8280546124e89061295c565b90600052602060002090601f01602090048101928261250a5760008555612550565b82601f1061252357805160ff1916838001178555612550565b82800160010185558215612550579182015b82811115612550578251825591602001919060010190612535565b5061255c929150612560565b5090565b5b8082111561255c5760008155600101612561565b600160e060020a0319811681146111df57600080fd5b60006020828403121561259d57600080fd5b8135611bfc81612575565b60005b838110156125c35781810151838201526020016125ab565b838111156117455750506000910152565b600081518084526125ec8160208601602086016125a8565b601f01601f19169290920160200192915050565b602081526000611bfc60208301846125d4565b8035801515811461262357600080fd5b919050565b60008060008060006080868803121561264057600080fd5b853594506020860135935061265760408701612613565b9250606086013567ffffffffffffffff8082111561267457600080fd5b818801915088601f83011261268857600080fd5b81358181111561269757600080fd5b8960208285010111156126a957600080fd5b9699959850939650602001949392505050565b6000602082840312156126ce57600080fd5b5035919050565b8035600160a060020a038116811461262357600080fd5b600080604083850312156126ff57600080fd5b612708836126d5565b946020939093013593505050565b60e060020a634e487b7102600052604160045260246000fd5b600067ffffffffffffffff8084111561274a5761274a612716565b604051601f8501601f19908116603f0116810190828211818310171561277257612772612716565b8160405280935085815286868601111561278b57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156127b757600080fd5b813567ffffffffffffffff8111156127ce57600080fd5b8201601f810184136127df57600080fd5b6118a08482356020840161272f565b60008060006060848603121561280357600080fd5b61280c846126d5565b925061281a602085016126d5565b9150604084013590509250925092565b60006020828403121561283c57600080fd5b813560ff81168114611bfc57600080fd5b60006020828403121561285f57600080fd5b611bfc826126d5565b60006020828403121561287a57600080fd5b611bfc82612613565b6000806040838503121561289657600080fd5b61289f836126d5565b91506128ad60208401612613565b90509250929050565b600080600080608085870312156128cc57600080fd5b6128d5856126d5565b93506128e3602086016126d5565b925060408501359150606085013567ffffffffffffffff81111561290657600080fd5b8501601f8101871361291757600080fd5b6129268782356020840161272f565b91505092959194509250565b6000806040838503121561294557600080fd5b61294e836126d5565b91506128ad602084016126d5565b60028104600182168061297057607f821691505b602082108114156129945760e060020a634e487b7102600052602260045260246000fd5b50919050565b60e060020a634e487b7102600052601160045260246000fd5b6000828210156129c5576129c561299a565b500390565b600082198211156129dd576129dd61299a565b500190565b60008160001904831182151516156129fc576129fc61299a565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008451612a488184602089016125a8565b845190830190612a5c8183602089016125a8565b8451910190612a6f8183602088016125a8565b0195945050505050565b85815284602082015260008451612a978160408501602089016125a8565b90910160408101939093525060608201526080019392505050565b60e060020a634e487b7102600052601260045260246000fd5b600082612ada57612ada612ab2565b500690565b6000600160a060020a03808716835280861660208401525083604083015260806060830152612b1160808301846125d4565b9695505050505050565b600060208284031215612b2d57600080fd5b8151611bfc81612575565b6000600019821415612b4c57612b4c61299a565b5060010190565b600082612b6257612b62612ab2565b500490565b60e060020a634e487b7102600052603260045260246000fdfea26469706673582212207fdc10352dbb3cb23fd2242f87ca1924a75b9c3ebaaa6ec9cc6f766d7b011dc064736f6c634300080b0033697066733a2f2f516d52737265756a383967546e624b33416e51457937726a546739334c56514b6e674558544159704a4b7652315700000000000000000000000086a872197044fcd9a9185e1e5fef6e2cb8f5eaca
Deployed Bytecode
0x60806040526004361061028c5760003560e060020a900480634db5eb261161015e578063a22cb465116100c5578063cd406e7f1161007e578063cd406e7f1461076b578063cec3ee5814610781578063d291b81114610796578063dff99173146107ab578063e985e9c5146107cb578063f2fde38b1461081457600080fd5b8063a22cb465146106cb578063b88d4fde146106eb578063b9c3a8181461070b578063babb36dd14610720578063c87b56dd14610735578063cab6b4ef1461075557600080fd5b80637bf08e34116101175780637bf08e3414610609578063853828b61461062a5780638da5cb5b1461063f57806395d89b411461065d5780639b102ca0146106725780639c12e1bc146106ab57600080fd5b80634db5eb26146105545780636352211e146105745780636ea0061b1461059457806370a08231146105b4578063715018a6146105d457806377ca8314146105e957600080fd5b806323b872dd116102025780633ab1a494116101bb5780633ab1a494146104a95780633d2d7f53146104c957806342842e0e146104df5780634754198c146104ff57806349a5980a146105145780634c07c5771461053457600080fd5b806323b872dd14610408578063319b3c021461042857806332cb6b0c1461044857806333039d3d1461045e578063372822b41461047357806337a984ed1461049357600080fd5b80630c31772c116102545780630c31772c146103635780630ef6a94b14610379578063122e04a81461039957806316f1e687146103b957806317c40a3a146103cf57806318160ddd146103ef57600080fd5b806301ffc9a71461029157806306fdde03146102c657806307750c28146102e8578063081812fc14610309578063095ea7b314610341575b600080fd5b34801561029d57600080fd5b506102b16102ac36600461258b565b610834565b60405190151581526020015b60405180910390f35b3480156102d257600080fd5b506102db6108d1565b6040516102bd9190612600565b6102fb6102f6366004612628565b610963565b6040519081526020016102bd565b34801561031557600080fd5b506103296103243660046126bc565b610f7b565b604051600160a060020a0390911681526020016102bd565b34801561034d57600080fd5b5061036161035c3660046126ec565b610fd8565b005b34801561036f57600080fd5b506102fb600b5481565b34801561038557600080fd5b506103616103943660046127a5565b6110ea565b3480156103a557600080fd5b5060135461032990600160a060020a031681565b3480156103c557600080fd5b506102fb600c5481565b3480156103db57600080fd5b506103616103ea3660046126bc565b61112e565b3480156103fb57600080fd5b50600154600054036102fb565b34801561041457600080fd5b506103616104233660046127ee565b6111e2565b34801561043457600080fd5b5061036161044336600461282a565b6111f2565b34801561045457600080fd5b506102fb61019081565b34801561046a57600080fd5b506102fb611227565b34801561047f57600080fd5b5060145461032990600160a060020a031681565b34801561049f57600080fd5b506102fb600d5481565b3480156104b557600080fd5b506103616104c436600461284d565b611237565b3480156104d557600080fd5b506102fb600a5481565b3480156104eb57600080fd5b506103616104fa3660046127ee565b611293565b34801561050b57600080fd5b506102db6112ae565b34801561052057600080fd5b5061036161052f366004612868565b61133c565b34801561054057600080fd5b5061036161054f36600461284d565b611398565b34801561056057600080fd5b5061036161056f3660046126bc565b6113f4565b34801561058057600080fd5b5061032961058f3660046126bc565b611479565b3480156105a057600080fd5b506103616105af3660046127a5565b611484565b3480156105c057600080fd5b506102fb6105cf36600461284d565b6114c4565b3480156105e057600080fd5b5061036161152c565b3480156105f557600080fd5b5061036161060436600461282a565b611565565b34801561061557600080fd5b506014546102b19060a060020a900460ff1681565b34801561063657600080fd5b5061036161159a565b34801561064b57600080fd5b50600854600160a060020a0316610329565b34801561066957600080fd5b506102db6115ea565b34801561067e57600080fd5b506102b161068d36600461284d565b600160a060020a031660009081526009602052604090205460ff1690565b3480156106b757600080fd5b506103616106c63660046127a5565b6115f9565b3480156106d757600080fd5b506103616106e6366004612883565b611639565b3480156106f757600080fd5b506103616107063660046128b6565b6116e8565b34801561071757600080fd5b506102fb601481565b34801561072c57600080fd5b506102db61174b565b34801561074157600080fd5b506102db6107503660046126bc565b611758565b34801561076157600080fd5b506102fb600f5481565b34801561077757600080fd5b506102fb600e5481565b34801561078d57600080fd5b506102fb600581565b3480156107a257600080fd5b506102db6118a8565b3480156107b757600080fd5b506103616107c63660046126bc565b6118b5565b3480156107d757600080fd5b506102b16107e6366004612932565b600160a060020a03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561082057600080fd5b5061036161082f36600461284d565b6118e7565b60007f01ffc9a700000000000000000000000000000000000000000000000000000000600160e060020a03198316148061089757507f80ac58cd00000000000000000000000000000000000000000000000000000000600160e060020a03198316145b806108cb57507f5b5e139f00000000000000000000000000000000000000000000000000000000600160e060020a03198316145b92915050565b6060600280546108e09061295c565b80601f016020809104026020016040519081016040528092919081815260200182805461090c9061295c565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600080600d54601461097591906129b3565b905060006109866001546000540390565b8261099460146101906129ca565b61099e91906129b3565b6109a891906129b3565b905080610a005760405160e360020a6317478fc302815260206004820152600860248201527f736f6c645f6f757400000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b333214610a525760405160e560020a62461bcd02815260206004820152600760248201527f6e6f5f626f74730000000000000000000000000000000000000000000000000060448201526064016109f7565b6001600f541215610aa95760405160e360020a6317478fc302815260206004820152601560248201527f706c656173655f666f7265706c61795f6669727374000000000000000000000060448201526064016109f7565b6001881080610ab85750606488115b15610b095760405160e360020a6317478fc302815260206004820152600a60248201527f77726f6e675f646f73650000000000000000000000000000000000000000000060448201526064016109f7565b610b4b33888888888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061199c92505050565b1515600114610bb6576040517f2a34f7fe00000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f77726f6e675f7369676e6174757265000000000000000000000000000000000060448201526064016109f7565b600060018715151415610bfd573360009081526009602052604090205460ff161515600114610bfd5750336000908152600960205260409020805460ff1916600117905560055b600a54610c0a828b6129b3565b610c1491906129e2565b341015610c7d576040517f1ffa894300000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f6e6f745f656e6f7567685f6d6f6e65790000000000000000000000000000000060448201526064016109f7565b60008060005b8b811015610d79576000610ce88a8a8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050838e610ce191906129ca565b6064611b2c565b60ff169050610cfa60146101906129ca565b600d54610d089060146129b3565b60015460005403610d1991906129ca565b1115610d255750610d79565b6000858310610d3657600b54610d3a565b600c545b905080821015610d5657610d4f6001856129ca565b9350610d64565b610d616001866129ca565b94505b50610d7290506001826129ca565b9050610c83565b50601454600160a060020a03168215610e1d576040517f296de43300000000000000000000000000000000000000000000000000000000815233600482015260248101849052600160a060020a0382169063296de43390604401600060405180830381600087803b158015610ded57600080fd5b505af1158015610e01573d6000803e3d6000fd5b5050505082600e6000828254610e1791906129ca565b90915550505b6001821015610e33576000965050505050610f70565b610e4060146101906129ca565b82600d546014610e5091906129b3565b60015460005403610e6191906129ca565b610e6b91906129ca565b1115610f60576000610e806001546000540390565b600d54610e8e9060146129b3565b610e9b60146101906129ca565b610ea591906129b3565b610eaf91906129b3565b9050610ebb3382611b75565b600160a060020a03821663296de43333610ed584876129b3565b60405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401600060405180830381600087803b158015610f1957600080fd5b505af1158015610f2d573d6000803e3d6000fd5b505050508083610f3d91906129b3565b600e6000828254610f4e91906129ca565b90915550909750610f70945050505050565b610f6a3383611b75565b50945050505b505095945050505050565b6000610f8682611b8f565b610fbc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50600090815260066020526040902054600160a060020a031690565b6000610fe382611bb6565b905080600160a060020a031683600160a060020a03161415611031576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600160a060020a038216146110815761104b81336107e6565b611081576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600854600160a060020a031633146111175760405160e560020a62461bcd0281526004016109f790612a01565b805161112a9060119060208401906124dc565b5050565b600854600160a060020a0316331461115b5760405160e560020a62461bcd0281526004016109f790612a01565b601481600d5461116b91906129ca565b11156111bd5760405160e360020a6317478fc302815260206004820152601460248201527f7465616d5f737570706c795f657863656564656400000000000000000000000060448201526064016109f7565b80600d60008282546111cf91906129ca565b909155506111df90503382611b75565b50565b6111ed838383611c37565b505050565b600854600160a060020a0316331461121f5760405160e560020a62461bcd0281526004016109f790612a01565b60ff16600c55565b61123460146101906129ca565b81565b600854600160a060020a031633146112645760405160e560020a62461bcd0281526004016109f790612a01565b6013805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6111ed838383604051806020016040528060008152506116e8565b601080546112bb9061295c565b80601f01602080910402602001604051908101604052809291908181526020018280546112e79061295c565b80156113345780601f1061130957610100808354040283529160200191611334565b820191906000526020600020905b81548152906001019060200180831161131757829003601f168201915b505050505081565b600854600160a060020a031633146113695760405160e560020a62461bcd0281526004016109f790612a01565b6014805491151560a060020a0274ff000000000000000000000000000000000000000019909216919091179055565b600854600160a060020a031633146113c55760405160e560020a62461bcd0281526004016109f790612a01565b6014805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600854600160a060020a031633146114215760405160e560020a62461bcd0281526004016109f790612a01565b600381126114745760405160e560020a62461bcd02815260206004820152601660248201527f556e737570706f72746564206d696e742073746167650000000000000000000060448201526064016109f7565b600f55565b60006108cb82611bb6565b600854600160a060020a031633146114b15760405160e560020a62461bcd0281526004016109f790612a01565b805161112a9060109060208401906124dc565b6000600160a060020a038216611506576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50600160a060020a031660009081526005602052604090205467ffffffffffffffff1690565b600854600160a060020a031633146115595760405160e560020a62461bcd0281526004016109f790612a01565b6115636000611e4f565b565b600854600160a060020a031633146115925760405160e560020a62461bcd0281526004016109f790612a01565b60ff16600b55565b600854600160a060020a031633146115c75760405160e560020a62461bcd0281526004016109f790612a01565b3031806115d357600080fd5b6013546111df90600160a060020a03163031611eae565b6060600380546108e09061295c565b600854600160a060020a031633146116265760405160e560020a62461bcd0281526004016109f790612a01565b805161112a9060129060208401906124dc565b600160a060020a03821633141561167c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000818152600760209081526040808320600160a060020a03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116f3848484611c37565b600160a060020a0383163b156117455761170f84848484611f54565b611745576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b601180546112bb9061295c565b606061176382611b8f565b611799576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60145460a060020a900460ff1661183c57601280546117b79061295c565b80601f01602080910402602001604051908101604052809291908181526020018280546117e39061295c565b80156118305780601f1061180557610100808354040283529160200191611830565b820191906000526020600020905b81548152906001019060200180831161181357829003601f168201915b50505050509050919050565b6000611846612084565b90506000611852612093565b905081516000141561187357604051806020016040528060008152506118a0565b8161187d856120a2565b8260405160200161189093929190612a36565b6040516020818303038152906040525b949350505050565b601280546112bb9061295c565b600854600160a060020a031633146118e25760405160e560020a62461bcd0281526004016109f790612a01565b600a55565b600854600160a060020a031633146119145760405160e560020a62461bcd0281526004016109f790612a01565b600160a060020a0381166119935760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109f7565b6111df81611e4f565b60408051600160a060020a0386166c0100000000000000000000000002602080830191909152603482018690528415157f01000000000000000000000000000000000000000000000000000000000000000260548301528251603581840301815260559092019092528051910120600090600160a060020a0386163314611aa5576040517f2a34f7fe00000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f72656365697665725f6d69736d617463685f77726f6e675f7369676e6174757260448201527f650000000000000000000000000000000000000000000000000000000000000060648201526084016109f7565b6000611afe826040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b601554909150600160a060020a0316611b1782866121f3565b600160a060020a031614979650505050505050565b60008160ff1642448686611b3f60005490565b604051602001611b53959493929190612a79565b60408051601f1981840301815291905280516020909101206118a09190612acb565b61112a828260405180602001604052806000815250612272565b60008054821080156108cb57505060009081526004602052604090205460e060020a161590565b600081600054811015611c055760008181526004602052604090205460e060020a8116611c03575b80611bfc575060001901600081815260046020526040902054611bde565b9392505050565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611c4282611bb6565b905083600160a060020a031681600160a060020a031614611c8f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600033600160a060020a0386161480611cad5750611cad85336107e6565b80611cc8575033611cbd84610f7b565b600160a060020a0316145b905080611d01576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160a060020a038416611d41576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000838152600660209081526040808320805473ffffffffffffffffffffffffffffffffffffffff19169055600160a060020a0388811684526005835281842080546000190190558716835280832080546001019055858352600490915290207c02000000000000000000000000000000000000000000000000000000004260a060020a02861781179091558216611e075760018301600081815260046020526040902054611e05576000548114611e055760008181526004602052604090208390555b505b8284600160a060020a031686600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b60088054600160a060020a0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082600160a060020a03168260405160006040518083038185875af1925050503d8060008114611efb576040519150601f19603f3d011682016040523d82523d6000602084013e611f00565b606091505b50509050806111ed5760405160e560020a62461bcd02815260206004820152601060248201527f5472616e73666572206661696c65642e0000000000000000000000000000000060448201526064016109f7565b6040517f150b7a02000000000000000000000000000000000000000000000000000000008152600090600160a060020a0385169063150b7a0290611fa2903390899088908890600401612adf565b6020604051808303816000875af1925050508015611fdd575060408051601f3d908101601f19168201909252611fda91810190612b1b565b60015b612051573d80801561200b576040519150601f19603f3d011682016040523d82523d6000602084013e612010565b606091505b508051612049576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b600160e060020a0319167f150b7a02000000000000000000000000000000000000000000000000000000001490506118a0565b6060601080546108e09061295c565b6060601180546108e09061295c565b6060816120e257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561210c57806120f681612b38565b91506121059050600a83612b53565b91506120e6565b60008167ffffffffffffffff81111561212757612127612716565b6040519080825280601f01601f191660200182016040528015612151576020820181803683370190505b5090505b84156118a0576121666001836129b3565b9150612173600a86612acb565b61217e9060306129ca565b7f0100000000000000000000000000000000000000000000000000000000000000028183815181106121b2576121b2612b67565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506121ec600a86612b53565b9450612155565b6000806000806122028561244e565b6040805160008152602081018083528b905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa15801561225d573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b600054600160a060020a0384166122b5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826122ec576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160a060020a038416600081815260056020908152604080832080546801000000000000000189020190558483526004909152902060a060020a420286177c020000000000000000000000000000000000000000000000000000000060018714021790558190818501903b156123f9575b6040518290600160a060020a038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123a96000878480600101955087611f54565b6123df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061235e5782600054146123f457600080fd5b61243e565b5b604051600183019290600160a060020a038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106123fa575b5060009081556117459085838684565b600080600083516041146124be576040517f2a34f7fe00000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f5369676e6174757265206c656e677468206973206e6f7420363520627974657360448201526064016109f7565b50505060208101516040820151606090920151909260009190911a90565b8280546124e89061295c565b90600052602060002090601f01602090048101928261250a5760008555612550565b82601f1061252357805160ff1916838001178555612550565b82800160010185558215612550579182015b82811115612550578251825591602001919060010190612535565b5061255c929150612560565b5090565b5b8082111561255c5760008155600101612561565b600160e060020a0319811681146111df57600080fd5b60006020828403121561259d57600080fd5b8135611bfc81612575565b60005b838110156125c35781810151838201526020016125ab565b838111156117455750506000910152565b600081518084526125ec8160208601602086016125a8565b601f01601f19169290920160200192915050565b602081526000611bfc60208301846125d4565b8035801515811461262357600080fd5b919050565b60008060008060006080868803121561264057600080fd5b853594506020860135935061265760408701612613565b9250606086013567ffffffffffffffff8082111561267457600080fd5b818801915088601f83011261268857600080fd5b81358181111561269757600080fd5b8960208285010111156126a957600080fd5b9699959850939650602001949392505050565b6000602082840312156126ce57600080fd5b5035919050565b8035600160a060020a038116811461262357600080fd5b600080604083850312156126ff57600080fd5b612708836126d5565b946020939093013593505050565b60e060020a634e487b7102600052604160045260246000fd5b600067ffffffffffffffff8084111561274a5761274a612716565b604051601f8501601f19908116603f0116810190828211818310171561277257612772612716565b8160405280935085815286868601111561278b57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156127b757600080fd5b813567ffffffffffffffff8111156127ce57600080fd5b8201601f810184136127df57600080fd5b6118a08482356020840161272f565b60008060006060848603121561280357600080fd5b61280c846126d5565b925061281a602085016126d5565b9150604084013590509250925092565b60006020828403121561283c57600080fd5b813560ff81168114611bfc57600080fd5b60006020828403121561285f57600080fd5b611bfc826126d5565b60006020828403121561287a57600080fd5b611bfc82612613565b6000806040838503121561289657600080fd5b61289f836126d5565b91506128ad60208401612613565b90509250929050565b600080600080608085870312156128cc57600080fd5b6128d5856126d5565b93506128e3602086016126d5565b925060408501359150606085013567ffffffffffffffff81111561290657600080fd5b8501601f8101871361291757600080fd5b6129268782356020840161272f565b91505092959194509250565b6000806040838503121561294557600080fd5b61294e836126d5565b91506128ad602084016126d5565b60028104600182168061297057607f821691505b602082108114156129945760e060020a634e487b7102600052602260045260246000fd5b50919050565b60e060020a634e487b7102600052601160045260246000fd5b6000828210156129c5576129c561299a565b500390565b600082198211156129dd576129dd61299a565b500190565b60008160001904831182151516156129fc576129fc61299a565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008451612a488184602089016125a8565b845190830190612a5c8183602089016125a8565b8451910190612a6f8183602088016125a8565b0195945050505050565b85815284602082015260008451612a978160408501602089016125a8565b90910160408101939093525060608201526080019392505050565b60e060020a634e487b7102600052601260045260246000fd5b600082612ada57612ada612ab2565b500690565b6000600160a060020a03808716835280861660208401525083604083015260806060830152612b1160808301846125d4565b9695505050505050565b600060208284031215612b2d57600080fd5b8151611bfc81612575565b6000600019821415612b4c57612b4c61299a565b5060010190565b600082612b6257612b62612ab2565b500490565b60e060020a634e487b7102600052603260045260246000fdfea26469706673582212207fdc10352dbb3cb23fd2242f87ca1924a75b9c3ebaaa6ec9cc6f766d7b011dc064736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000086a872197044fcd9a9185e1e5fef6e2cb8f5eaca
-----Decoded View---------------
Arg [0] : signerAddress_ (address): 0x86A872197044fcd9a9185e1e5FEF6E2cB8f5EaCa
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000086a872197044fcd9a9185e1e5fef6e2cb8f5eaca
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.