Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Multichain Info
No addresses found
Latest 6 from a total of 6 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer Ownersh... | 15238109 | 980 days ago | IN | 0 ETH | 0.00061531 | ||||
Set Max Mint Per... | 15238042 | 980 days ago | IN | 0 ETH | 0.00076105 | ||||
Set Paused | 15238042 | 980 days ago | IN | 0 ETH | 0.00076611 | ||||
Set Whitelist Si... | 15238042 | 980 days ago | IN | 0 ETH | 0.00077002 | ||||
Set Placeholder ... | 15238042 | 980 days ago | IN | 0 ETH | 0.00299691 | ||||
Set Treasury | 15238042 | 980 days ago | IN | 0 ETH | 0.00120718 |
Loading...
Loading
Contract Name:
KaijuLegends
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "erc721a/contracts/ERC721A.sol"; contract KaijuLegends is Ownable, ERC721A, ReentrancyGuard, Pausable { /* ======== LIBRARIES ======== */ using ECDSA for bytes32; /* ======== EVENTS ======== */ event UpdatePrivateSaleActive(bool privateSaleActive); event UpdateMaxMintPerTx(uint256 maxMintPerTx); event UpdatePrivateSaleSupply(uint256 privateSaleSupply); event UpdateTreasury(address treasury); event UpdateWhitelistSigner(address whitelistSigner); event UpdateBaseURI(string baseURI); event UpdatePlaceholderURI(string placeholderURI); event UpdatePrivateSalePrice(uint256 privateSalePrice); event UpdatePrivateSaleMaxMint(uint256 privateSaleMaxMint); /* ======== VARIABLES ======== */ bool public privateSaleActive = true; uint256 public constant COLLECTION_SUPPLY = 7777; uint256 public maxMintPerTx = 9999; uint256 public privateSaleMaxMint = 9999; uint256 public privateSaleSupply = 4777; uint256 public privateSalePrice = .15 ether; address public treasury; address public whitelistSigner; string public baseURI; string public placeholderURI; bytes32 public DOMAIN_SEPARATOR; bytes32 public constant PRESALE_TYPEHASH = keccak256("PrivateSale(address buyer)"); /* ======== CONSTRUCTOR ======== */ constructor() ERC721A("Miauw Miauw", "Miauww") { _pause(); uint256 chainId; assembly { chainId := chainid() } DOMAIN_SEPARATOR = keccak256( abi.encode( keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ), keccak256(bytes("KAIJU")), keccak256(bytes("1")), chainId, address(this) ) ); whitelistSigner = owner(); } /* ======== MODIFIERS ======== */ /* * @notice: Checks if the msg.sender is the owner or the treasury address */ modifier callerIsTreasuryOrOwner() { require( treasury == _msgSender() || owner() == _msgSender(), "The caller is another address" ); _; } /* ======== SETTERS ======== */ /* * @notice: Pause the smart contract * @param: paused_: A boolean to pause or unpause the contract */ function setPaused(bool paused_) external onlyOwner { if (paused_) _pause(); else _unpause(); } /* * @notice: Set the private sale enabled or enabled * @param: privateSaleActive_: A boolean to pause or unpause the private sale */ function setPrivateSale(bool privateSaleActive_) external onlyOwner { require( privateSaleActive != privateSaleActive_, "KaijuLegends: Sale is the same" ); privateSaleActive = privateSaleActive_; emit UpdatePrivateSaleActive(privateSaleActive_); } /* * @notice: Set the private sale price * @param: privateSalePrice_: The new price for the private sale in WEI */ function setPrivateSalePrice(uint256 privateSalePrice_) external onlyOwner { privateSalePrice = privateSalePrice_; emit UpdatePrivateSalePrice(privateSalePrice_); } /* * @notice: Set the max mint per transaction * @param: maxMintPerTx_: The new max mint per transaction */ function setMaxMintPerTx(uint256 maxMintPerTx_) external onlyOwner { maxMintPerTx = maxMintPerTx_; emit UpdateMaxMintPerTx(maxMintPerTx_); } /* * @notice: Set the private sale supply * @param: privateSaleSupply_: The mint amount you want to sell for the private sale */ function setPrivateSaleSupply(uint256 privateSaleSupply_) external onlyOwner { privateSaleSupply = privateSaleSupply_; emit UpdatePrivateSaleSupply(privateSaleSupply_); } /* * @notice: Set the new base URI * @param: baseURI_: The string of the new base uri */ function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; emit UpdateBaseURI(baseURI_); } /* * @notice: Set the new placeholder URI * @param: placeholderURI_: The string of the new placeholder URI */ function setPlaceholderURI(string memory placeholderURI_) external onlyOwner { placeholderURI = placeholderURI_; emit UpdatePlaceholderURI(placeholderURI_); } /* * @notice: Set the new treasury address * @param: treasury_: The address of the new treasury */ function setTreasury(address treasury_) external onlyOwner { treasury = treasury_; emit UpdateTreasury(treasury_); } /* * @notice: Set the new whitelist signer * @param: whitelistSigner_: The address of the new whitelist signer */ function setWhitelistSigner(address whitelistSigner_) external onlyOwner { whitelistSigner = whitelistSigner_; emit UpdateWhitelistSigner(whitelistSigner_); } /* * @notice: Set the new private sale max mint per wallet * @param: privateSaleMaxMint_: The max amount per wallet */ function setPrivateSaleMaxMint(uint256 privateSaleMaxMint_) external onlyOwner { privateSaleMaxMint = privateSaleMaxMint_; emit UpdatePrivateSaleMaxMint(privateSaleMaxMint_); } /* ======== INTERNAL ======== */ /* * @notice: Validations of the mint process */ function _validateMint(uint256 quantity_) private { require( privateSaleActive, "KaijuLegends: Private sale has not begun yet" ); require( (totalSupply() + quantity_) <= privateSaleSupply, "KaijuLegends: Reached max private sale supply" ); require( quantity_ > 0 && quantity_ <= maxMintPerTx, "KaijuLegends: Reached max mint per tx" ); require( (_numberMinted(_msgSender()) + quantity_) <= privateSaleMaxMint, "KaijuLegends: Reached max mint per wallet" ); _refundIfOver(privateSalePrice * quantity_); } /* * @notice: Recovering the hash and checking if the signer is equal to the `whitelistSigner` */ function _validatePrivateSaleSignature(bytes memory signature_) private view { // Verify EIP-712 signature bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", DOMAIN_SEPARATOR, keccak256(abi.encode(PRESALE_TYPEHASH, _msgSender())) ) ); address recoveredAddress = digest.recover(signature_); require( recoveredAddress != address(0) && recoveredAddress == address(whitelistSigner), "KaijuLegends: Invalid signature" ); } /* * @notice: If a user sends more ETH than the actuall mint price than the exceeded amount will be send back * @param: price_: The total price for the mint */ function _refundIfOver(uint256 price_) private { require(msg.value >= price_, "Need to send more ETH."); if (msg.value > price_) { payable(_msgSender()).transfer(msg.value - price_); } } /* ======== EXTERNAL ======== */ /* * @notice: The private sale mint * @param: quantity_: The mint amount * @param: signature_: The signature hash that will be used to verify the user has been whitelisted */ function privateSaleMint(uint256 quantity_, bytes memory signature_) external payable whenNotPaused { _validateMint(quantity_); _validatePrivateSaleSignature(signature_); _safeMint(_msgSender(), quantity_); } /* * @notice: This batch mint is meant for the CRYPTO.COM sale / Giveaways / Collaborations. Only the `treasury / owner` can mint them to a wallet * @param: to_: The address that will receive the token ids * @param: quantity_: The mint amount */ function batchMint(address to_, uint256 quantity_) external callerIsTreasuryOrOwner { require( (totalSupply() + quantity_) <= COLLECTION_SUPPLY, "KaijuLegends: Reached max supply" ); _safeMint(to_, quantity_); } /* * @notice: Withdraw the ETH from the contract to the treasury address */ function withdrawEth() external callerIsTreasuryOrOwner nonReentrant { payable(address(treasury)).transfer(address(this).balance); } /* * @notice: Burn a token id to reduce the token supply */ function burn(uint256 tokenId) external { _burn(tokenId); } /* ======== OVERRIDES ======== */ /* * @notice: returns the baseURI for the token metadata */ function _baseURI() internal view virtual override returns (string memory) { return baseURI; } /* * @notice: returns a URI for the tokenId * @param: tokenId_: the minted token id */ function tokenURI(uint256 tokenId_) public view override returns (string memory) { require(_exists(tokenId_), "URI query for nonexistent token"); if (bytes(baseURI).length <= 0) { return placeholderURI; } string memory uri = _baseURI(); return string(abi.encodePacked(uri, Strings.toString(tokenId_))); } function numberMinted(address owner) external view returns (uint256) { return _numberMinted(owner); } }
// SPDX-License-Identifier: MIT 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @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; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 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 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 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 // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @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 Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. 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; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _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 ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * 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 See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].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 { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * 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) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // 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. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @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 override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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.isContract() && !_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 && !_ownerships[tokenId].burned; } 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 { _mint(to, quantity, _data, true); } /** * @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, bytes memory _data, bool safe ) 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 { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { 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 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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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 { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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 { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @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 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == 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 {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"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":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"baseURI","type":"string"}],"name":"UpdateBaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxMintPerTx","type":"uint256"}],"name":"UpdateMaxMintPerTx","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"placeholderURI","type":"string"}],"name":"UpdatePlaceholderURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"privateSaleActive","type":"bool"}],"name":"UpdatePrivateSaleActive","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"privateSaleMaxMint","type":"uint256"}],"name":"UpdatePrivateSaleMaxMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"privateSalePrice","type":"uint256"}],"name":"UpdatePrivateSalePrice","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"privateSaleSupply","type":"uint256"}],"name":"UpdatePrivateSaleSupply","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"treasury","type":"address"}],"name":"UpdateTreasury","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"whitelistSigner","type":"address"}],"name":"UpdateWhitelistSigner","type":"event"},{"inputs":[],"name":"COLLECTION_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","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":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeholderURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSaleMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity_","type":"uint256"},{"internalType":"bytes","name":"signature_","type":"bytes"}],"name":"privateSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"privateSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintPerTx_","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused_","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"placeholderURI_","type":"string"}],"name":"setPlaceholderURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"privateSaleActive_","type":"bool"}],"name":"setPrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"privateSaleMaxMint_","type":"uint256"}],"name":"setPrivateSaleMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"privateSalePrice_","type":"uint256"}],"name":"setPrivateSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"privateSaleSupply_","type":"uint256"}],"name":"setPrivateSaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"treasury_","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"whitelistSigner_","type":"address"}],"name":"setWhitelistSigner","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":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600a805461ff00191661010017905561270f600b819055600c556112a9600d55670214e8348c4f0000600e553480156200003d57600080fd5b506040518060400160405280600b81526020016a4d69617577204d6961757760a81b815250604051806040016040528060068152602001654d696175777760d01b8152506200009b62000095620001db60201b60201c565b620001df565b8151620000b0906003906020850190620002cd565b508051620000c6906004906020840190620002cd565b50600060019081556009555050600a805460ff19169055620000e76200022f565b60408051808201825260058152644b41494a5560d81b6020918201528151808301835260018152603160f81b9082015281517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818301527f78f0bdb1ea825b96f1d4d76060cfa7d018d7b706e5e25bd342718ae9a5eadceb818401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a0808301919091528351808303909101815260c09091019092528151910120601355600054601080546001600160a01b0319166001600160a01b03909216919091179055620003b0565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600a5460ff16156200027a5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640160405180910390fd5b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002b03390565b6040516001600160a01b03909116815260200160405180910390a1565b828054620002db9062000373565b90600052602060002090601f016020900481019282620002ff57600085556200034a565b82601f106200031a57805160ff19168380011785556200034a565b828001600101855582156200034a579182015b828111156200034a5782518255916020019190600101906200032d565b50620003589291506200035c565b5090565b5b808211156200035857600081556001016200035d565b600181811c908216806200038857607f821691505b60208210811415620003aa57634e487b7160e01b600052602260045260246000fd5b50919050565b612c9380620003c06000396000f3fe6080604052600436106102725760003560e01c80636c0360eb1161014f578063a22cb465116100c1578063de7fcb1d1161007a578063de7fcb1d1461072c578063e985e9c514610742578063ef81b4d41461078b578063f0f44260146107ab578063f2fde38b146107cb578063f560d415146107eb57600080fd5b8063a22cb46514610658578063b88d4fde14610678578063c87b56dd14610698578063d3381438146106b8578063d4ae7522146106d8578063dc33e6811461070c57600080fd5b8063731963681161011357806373196368146105ba5780637bc36e04146105d05780638da5cb5b146105f057806395d89b411461060e578063993847d114610623578063a0ef91df1461064357600080fd5b80636c0360eb146105485780636f86b0c81461055d57806370a0823114610570578063715018a6146105905780637313cba9146105a557600080fd5b80633644e515116101e85780634f1fab8c116101ac5780634f1fab8c1461049057806355f804b3146104b05780635c975abb146104d0578063616cdb1e146104e857806361d027b3146105085780636352211e1461052857600080fd5b80633644e515146103fa57806342842e0e1461041057806342966c681461043057806343508b051461045057806347f058751461047057600080fd5b8063108559731161023a578063108559731461034c57806316c38b3c1461036257806318160ddd1461038257806323b872dd1461039b5780632a237bb6146103bb5780633574a2dd146103da57600080fd5b806301ffc9a71461027757806302693ef8146102ac57806306fdde03146102d0578063081812fc146102f2578063095ea7b31461032a575b600080fd5b34801561028357600080fd5b506102976102923660046126ee565b610801565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c2600d5481565b6040519081526020016102a3565b3480156102dc57600080fd5b506102e5610853565b6040516102a3919061276a565b3480156102fe57600080fd5b5061031261030d36600461277d565b6108e5565b6040516001600160a01b0390911681526020016102a3565b34801561033657600080fd5b5061034a6103453660046127b2565b610929565b005b34801561035857600080fd5b506102c2600c5481565b34801561036e57600080fd5b5061034a61037d3660046127ec565b6109b7565b34801561038e57600080fd5b50600254600154036102c2565b3480156103a757600080fd5b5061034a6103b6366004612807565b610a03565b3480156103c757600080fd5b50600a5461029790610100900460ff1681565b3480156103e657600080fd5b5061034a6103f53660046128ce565b610a0e565b34801561040657600080fd5b506102c260135481565b34801561041c57600080fd5b5061034a61042b366004612807565b610a86565b34801561043c57600080fd5b5061034a61044b36600461277d565b610aa1565b34801561045c57600080fd5b5061034a61046b3660046127b2565b610aaa565b34801561047c57600080fd5b5061034a61048b36600461277d565b610b90565b34801561049c57600080fd5b5061034a6104ab36600461277d565b610bef565b3480156104bc57600080fd5b5061034a6104cb3660046128ce565b610c4e565b3480156104dc57600080fd5b50600a5460ff16610297565b3480156104f457600080fd5b5061034a61050336600461277d565b610cbb565b34801561051457600080fd5b50600f54610312906001600160a01b031681565b34801561053457600080fd5b5061031261054336600461277d565b610d1a565b34801561055457600080fd5b506102e5610d2c565b61034a61056b366004612936565b610dba565b34801561057c57600080fd5b506102c261058b36600461297c565b610e1c565b34801561059c57600080fd5b5061034a610e6a565b3480156105b157600080fd5b506102e5610ea0565b3480156105c657600080fd5b506102c2611e6181565b3480156105dc57600080fd5b5061034a6105eb36600461277d565b610ead565b3480156105fc57600080fd5b506000546001600160a01b0316610312565b34801561061a57600080fd5b506102e5610f0c565b34801561062f57600080fd5b5061034a61063e3660046127ec565b610f1b565b34801561064f57600080fd5b5061034a610fec565b34801561066457600080fd5b5061034a610673366004612997565b6110f4565b34801561068457600080fd5b5061034a6106933660046129ca565b61118a565b3480156106a457600080fd5b506102e56106b336600461277d565b6111db565b3480156106c457600080fd5b5061034a6106d336600461297c565b611318565b3480156106e457600080fd5b506102c27f4dfdc40c587c7b6d3c5c8f9c04c90b899ebfe162f19568448c564b1f42701e9381565b34801561071857600080fd5b506102c261072736600461297c565b611390565b34801561073857600080fd5b506102c2600b5481565b34801561074e57600080fd5b5061029761075d366004612a31565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561079757600080fd5b50601054610312906001600160a01b031681565b3480156107b757600080fd5b5061034a6107c636600461297c565b61139b565b3480156107d757600080fd5b5061034a6107e636600461297c565b611413565b3480156107f757600080fd5b506102c2600e5481565b60006001600160e01b031982166380ac58cd60e01b148061083257506001600160e01b03198216635b5e139f60e01b145b8061084d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461086290612a5b565b80601f016020809104026020016040519081016040528092919081815260200182805461088e90612a5b565b80156108db5780601f106108b0576101008083540402835291602001916108db565b820191906000526020600020905b8154815290600101906020018083116108be57829003601f168201915b5050505050905090565b60006108f0826114ab565b61090d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061093482610d1a565b9050806001600160a01b0316836001600160a01b031614156109695760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109895750610987813361075d565b155b156109a7576040516367d9dca160e11b815260040160405180910390fd5b6109b28383836114d7565b505050565b6000546001600160a01b031633146109ea5760405162461bcd60e51b81526004016109e190612a96565b60405180910390fd5b80156109fb576109f8611533565b50565b6109f86115cb565b6109b2838383611645565b6000546001600160a01b03163314610a385760405162461bcd60e51b81526004016109e190612a96565b8051610a4b90601290602084019061263f565b507f4c0b5770ef4b7d927d2dd9a1b970656f8e02cafa4bc1814c35ed3bc8de0cd75b81604051610a7b919061276a565b60405180910390a150565b6109b28383836040518060200160405280600081525061118a565b6109f881611847565b600f546001600160a01b0316331480610acd57506000546001600160a01b031633145b610b195760405162461bcd60e51b815260206004820152601d60248201527f5468652063616c6c657220697320616e6f74686572206164647265737300000060448201526064016109e1565b611e6181610b2a6002546001540390565b610b349190612ae1565b1115610b825760405162461bcd60e51b815260206004820181905260248201527f4b61696a754c6567656e64733a2052656163686564206d617820737570706c7960448201526064016109e1565b610b8c82826119b2565b5050565b6000546001600160a01b03163314610bba5760405162461bcd60e51b81526004016109e190612a96565b600d8190556040518181527fc7dd93ff4ddb4bae78c1f851a2141d4e9586cd5548441c078ed5b603390b19c190602001610a7b565b6000546001600160a01b03163314610c195760405162461bcd60e51b81526004016109e190612a96565b600c8190556040518181527f561fbd7b747dd71b11ec7f01f975b5547bcf4a4e34444663bed65aec1ffcb74290602001610a7b565b6000546001600160a01b03163314610c785760405162461bcd60e51b81526004016109e190612a96565b8051610c8b90601190602084019061263f565b507f157d450c8fb1377294d9db75af1de2753efc52d8e5578551d70d2c7d9cd74df981604051610a7b919061276a565b6000546001600160a01b03163314610ce55760405162461bcd60e51b81526004016109e190612a96565b600b8190556040518181527fe38cadc91f9651fcac2407628a2b943ac5c6ca7af8d8c0e5795c7f4b83db7b3890602001610a7b565b6000610d25826119cc565b5192915050565b60118054610d3990612a5b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6590612a5b565b8015610db25780601f10610d8757610100808354040283529160200191610db2565b820191906000526020600020905b815481529060010190602001808311610d9557829003601f168201915b505050505081565b600a5460ff1615610e005760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016109e1565b610e0982611ae6565b610e1281611cca565b610b8c33836119b2565b60006001600160a01b038216610e45576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610e945760405162461bcd60e51b81526004016109e190612a96565b610e9e6000611df0565b565b60128054610d3990612a5b565b6000546001600160a01b03163314610ed75760405162461bcd60e51b81526004016109e190612a96565b600e8190556040518181527f60184c1d3dafb0da9292ec4c904b84ce75399bc8476dfd9a308439a220691c1b90602001610a7b565b60606004805461086290612a5b565b6000546001600160a01b03163314610f455760405162461bcd60e51b81526004016109e190612a96565b600a5460ff6101009091041615158115151415610fa45760405162461bcd60e51b815260206004820152601e60248201527f4b61696a754c6567656e64733a2053616c65206973207468652073616d65000060448201526064016109e1565b600a80548215156101000261ff00199091161790556040517eae155da4b16482f1f1de21b801a3b841d5967fe2a1e3fe8d5355d3582e474790610a7b90831515815260200190565b600f546001600160a01b031633148061100f57506000546001600160a01b031633145b61105b5760405162461bcd60e51b815260206004820152601d60248201527f5468652063616c6c657220697320616e6f74686572206164647265737300000060448201526064016109e1565b600260095414156110ae5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109e1565b6002600955600f546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156110ec573d6000803e3d6000fd5b506001600955565b6001600160a01b03821633141561111e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611195848484611645565b6001600160a01b0383163b151580156111b757506111b584848484611e40565b155b156111d5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606111e6826114ab565b6112325760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064016109e1565b60006011805461124190612a5b565b9050116112da576012805461125590612a5b565b80601f016020809104026020016040519081016040528092919081815260200182805461128190612a5b565b80156112ce5780601f106112a3576101008083540402835291602001916112ce565b820191906000526020600020905b8154815290600101906020018083116112b157829003601f168201915b50505050509050919050565b60006112e4611f38565b9050806112f084611f47565b604051602001611301929190612af9565b604051602081830303815290604052915050919050565b6000546001600160a01b031633146113425760405162461bcd60e51b81526004016109e190612a96565b601080546001600160a01b0319166001600160a01b0383169081179091556040519081527f4fae1dd8011a0c123d814d1e6d18dda34e3a36e8014868303adaf26e25ea0c8d90602001610a7b565b600061084d82612044565b6000546001600160a01b031633146113c55760405162461bcd60e51b81526004016109e190612a96565b600f80546001600160a01b0319166001600160a01b0383169081179091556040519081527f1f54d231bb9d500b1923e4a1cb25e600f366a8368873d9af7c1c623814df19fc90602001610a7b565b6000546001600160a01b0316331461143d5760405162461bcd60e51b81526004016109e190612a96565b6001600160a01b0381166114a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109e1565b6109f881611df0565b60006001548210801561084d575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600a5460ff16156115795760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016109e1565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115ae3390565b6040516001600160a01b03909116815260200160405180910390a1565b600a5460ff166116145760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016109e1565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336115ae565b6000611650826119cc565b80519091506000906001600160a01b0316336001600160a01b0316148061167e5750815161167e903361075d565b8061169957503361168e846108e5565b6001600160a01b0316145b9050806116b957604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146116ee5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661171557604051633a954ecd60e21b815260040160405180910390fd5b61172560008484600001516114d7565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661180f5760015481101561180f57825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b0316600080516020612c3e83398151915260405160405180910390a45b5050505050565b6000611852826119cc565b905061186460008383600001516114d7565b80516001600160a01b039081166000908152600660209081526040808320805467ffffffffffffffff1981166001600160401b0391821660001901821617909155855185168452818420805467ffffffffffffffff60801b198116600160801b9182900484166001908101851690920217909155865188865260059094528285208054600160e01b9588166001600160e01b031990911617600160a01b42909416939093029290921760ff60e01b191693909317905590850180835291205490911661197b5760015481101561197b57815160008281526005602090815260409091208054918501516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b50805160405183916000916001600160a01b0390911690600080516020612c3e833981519152908390a45050600280546001019055565b610b8c828260405180602001604052806000815250612099565b604080516060810182526000808252602082018190529181019190915281600154811015611acd57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611acb5780516001600160a01b031615611a62579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611ac6579392505050565b611a62565b505b604051636f96cda160e11b815260040160405180910390fd5b600a54610100900460ff16611b525760405162461bcd60e51b815260206004820152602c60248201527f4b61696a754c6567656e64733a20507269766174652073616c6520686173206e60448201526b1bdd08189959dd5b881e595d60a21b60648201526084016109e1565b600d5481611b636002546001540390565b611b6d9190612ae1565b1115611bd15760405162461bcd60e51b815260206004820152602d60248201527f4b61696a754c6567656e64733a2052656163686564206d61782070726976617460448201526c652073616c6520737570706c7960981b60648201526084016109e1565b600081118015611be35750600b548111155b611c3d5760405162461bcd60e51b815260206004820152602560248201527f4b61696a754c6567656e64733a2052656163686564206d6178206d696e7420706044820152640cae440e8f60db1b60648201526084016109e1565b600c5481611c4a33612044565b611c549190612ae1565b1115611cb45760405162461bcd60e51b815260206004820152602960248201527f4b61696a754c6567656e64733a2052656163686564206d6178206d696e742070604482015268195c881dd85b1b195d60ba1b60648201526084016109e1565b6109f881600e54611cc59190612b28565b6120a6565b60006013547f4dfdc40c587c7b6d3c5c8f9c04c90b899ebfe162f19568448c564b1f42701e93611cf73390565b604051602001611d1a9291909182526001600160a01b0316602082015260400190565b60405160208183030381529060405280519060200120604051602001611d5792919061190160f01b81526002810192909252602282015260420190565b60408051601f19818403018152919052805160209091012090506000611d7d828461212d565b90506001600160a01b03811615801590611da457506010546001600160a01b038281169116145b6109b25760405162461bcd60e51b815260206004820152601f60248201527f4b61696a754c6567656e64733a20496e76616c6964207369676e61747572650060448201526064016109e1565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e75903390899088908890600401612b47565b602060405180830381600087803b158015611e8f57600080fd5b505af1925050508015611ebf575060408051601f3d908101601f19168201909252611ebc91810190612b84565b60015b611f1a573d808015611eed576040519150601f19603f3d011682016040523d82523d6000602084013e611ef2565b606091505b508051611f12576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606011805461086290612a5b565b606081611f6b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f955780611f7f81612ba1565b9150611f8e9050600a83612bd2565b9150611f6f565b6000816001600160401b03811115611faf57611faf612843565b6040519080825280601f01601f191660200182016040528015611fd9576020820181803683370190505b5090505b8415611f3057611fee600183612be6565b9150611ffb600a86612bfd565b612006906030612ae1565b60f81b81838151811061201b5761201b612c11565b60200101906001600160f81b031916908160001a90535061203d600a86612bd2565b9450611fdd565b60006001600160a01b03821661206d576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b6109b28383836001612151565b803410156120ef5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b60448201526064016109e1565b803411156109f857336108fc6121058334612be6565b6040518115909202916000818181858888f19350505050158015610b8c573d6000803e3d6000fd5b600080600061213c85856122f8565b9150915061214981612368565b509392505050565b6001546001600160a01b03851661217a57604051622e076360e81b815260040160405180910390fd5b836121985760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561224457506001600160a01b0387163b15155b156122bb575b60405182906001600160a01b03891690600090600080516020612c3e833981519152908290a46122836000888480600101955088611e40565b6122a0576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561224a5782600154146122b657600080fd5b6122ef565b5b6040516001830192906001600160a01b03891690600090600080516020612c3e833981519152908290a4808214156122bc575b50600155611840565b60008082516041141561232f5760208301516040840151606085015160001a61232387828585612523565b94509450505050612361565b825160401415612359576020830151604084015161234e868383612610565b935093505050612361565b506000905060025b9250929050565b600081600481111561237c5761237c612c27565b14156123855750565b600181600481111561239957612399612c27565b14156123e75760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016109e1565b60028160048111156123fb576123fb612c27565b14156124495760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016109e1565b600381600481111561245d5761245d612c27565b14156124b65760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016109e1565b60048160048111156124ca576124ca612c27565b14156109f85760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016109e1565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561255a5750600090506003612607565b8460ff16601b1415801561257257508460ff16601c14155b156125835750600090506004612607565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156125d7573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661260057600060019250925050612607565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b0161263187828885612523565b935093505050935093915050565b82805461264b90612a5b565b90600052602060002090601f01602090048101928261266d57600085556126b3565b82601f1061268657805160ff19168380011785556126b3565b828001600101855582156126b3579182015b828111156126b3578251825591602001919060010190612698565b506126bf9291506126c3565b5090565b5b808211156126bf57600081556001016126c4565b6001600160e01b0319811681146109f857600080fd5b60006020828403121561270057600080fd5b813561270b816126d8565b9392505050565b60005b8381101561272d578181015183820152602001612715565b838111156111d55750506000910152565b60008151808452612756816020860160208601612712565b601f01601f19169290920160200192915050565b60208152600061270b602083018461273e565b60006020828403121561278f57600080fd5b5035919050565b80356001600160a01b03811681146127ad57600080fd5b919050565b600080604083850312156127c557600080fd5b6127ce83612796565b946020939093013593505050565b803580151581146127ad57600080fd5b6000602082840312156127fe57600080fd5b61270b826127dc565b60008060006060848603121561281c57600080fd5b61282584612796565b925061283360208501612796565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561287357612873612843565b604051601f8501601f19908116603f0116810190828211818310171561289b5761289b612843565b816040528093508581528686860111156128b457600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156128e057600080fd5b81356001600160401b038111156128f657600080fd5b8201601f8101841361290757600080fd5b611f3084823560208401612859565b600082601f83011261292757600080fd5b61270b83833560208501612859565b6000806040838503121561294957600080fd5b8235915060208301356001600160401b0381111561296657600080fd5b61297285828601612916565b9150509250929050565b60006020828403121561298e57600080fd5b61270b82612796565b600080604083850312156129aa57600080fd5b6129b383612796565b91506129c1602084016127dc565b90509250929050565b600080600080608085870312156129e057600080fd5b6129e985612796565b93506129f760208601612796565b92506040850135915060608501356001600160401b03811115612a1957600080fd5b612a2587828801612916565b91505092959194509250565b60008060408385031215612a4457600080fd5b612a4d83612796565b91506129c160208401612796565b600181811c90821680612a6f57607f821691505b60208210811415612a9057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612af457612af4612acb565b500190565b60008351612b0b818460208801612712565b835190830190612b1f818360208801612712565b01949350505050565b6000816000190483118215151615612b4257612b42612acb565b500290565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b7a9083018461273e565b9695505050505050565b600060208284031215612b9657600080fd5b815161270b816126d8565b6000600019821415612bb557612bb5612acb565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612be157612be1612bbc565b500490565b600082821015612bf857612bf8612acb565b500390565b600082612c0c57612c0c612bbc565b500690565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220c8c75188dec91803de81296000919cdec500eef2499f15390706bad9cecd09cc64736f6c63430008090033
Deployed Bytecode
0x6080604052600436106102725760003560e01c80636c0360eb1161014f578063a22cb465116100c1578063de7fcb1d1161007a578063de7fcb1d1461072c578063e985e9c514610742578063ef81b4d41461078b578063f0f44260146107ab578063f2fde38b146107cb578063f560d415146107eb57600080fd5b8063a22cb46514610658578063b88d4fde14610678578063c87b56dd14610698578063d3381438146106b8578063d4ae7522146106d8578063dc33e6811461070c57600080fd5b8063731963681161011357806373196368146105ba5780637bc36e04146105d05780638da5cb5b146105f057806395d89b411461060e578063993847d114610623578063a0ef91df1461064357600080fd5b80636c0360eb146105485780636f86b0c81461055d57806370a0823114610570578063715018a6146105905780637313cba9146105a557600080fd5b80633644e515116101e85780634f1fab8c116101ac5780634f1fab8c1461049057806355f804b3146104b05780635c975abb146104d0578063616cdb1e146104e857806361d027b3146105085780636352211e1461052857600080fd5b80633644e515146103fa57806342842e0e1461041057806342966c681461043057806343508b051461045057806347f058751461047057600080fd5b8063108559731161023a578063108559731461034c57806316c38b3c1461036257806318160ddd1461038257806323b872dd1461039b5780632a237bb6146103bb5780633574a2dd146103da57600080fd5b806301ffc9a71461027757806302693ef8146102ac57806306fdde03146102d0578063081812fc146102f2578063095ea7b31461032a575b600080fd5b34801561028357600080fd5b506102976102923660046126ee565b610801565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c2600d5481565b6040519081526020016102a3565b3480156102dc57600080fd5b506102e5610853565b6040516102a3919061276a565b3480156102fe57600080fd5b5061031261030d36600461277d565b6108e5565b6040516001600160a01b0390911681526020016102a3565b34801561033657600080fd5b5061034a6103453660046127b2565b610929565b005b34801561035857600080fd5b506102c2600c5481565b34801561036e57600080fd5b5061034a61037d3660046127ec565b6109b7565b34801561038e57600080fd5b50600254600154036102c2565b3480156103a757600080fd5b5061034a6103b6366004612807565b610a03565b3480156103c757600080fd5b50600a5461029790610100900460ff1681565b3480156103e657600080fd5b5061034a6103f53660046128ce565b610a0e565b34801561040657600080fd5b506102c260135481565b34801561041c57600080fd5b5061034a61042b366004612807565b610a86565b34801561043c57600080fd5b5061034a61044b36600461277d565b610aa1565b34801561045c57600080fd5b5061034a61046b3660046127b2565b610aaa565b34801561047c57600080fd5b5061034a61048b36600461277d565b610b90565b34801561049c57600080fd5b5061034a6104ab36600461277d565b610bef565b3480156104bc57600080fd5b5061034a6104cb3660046128ce565b610c4e565b3480156104dc57600080fd5b50600a5460ff16610297565b3480156104f457600080fd5b5061034a61050336600461277d565b610cbb565b34801561051457600080fd5b50600f54610312906001600160a01b031681565b34801561053457600080fd5b5061031261054336600461277d565b610d1a565b34801561055457600080fd5b506102e5610d2c565b61034a61056b366004612936565b610dba565b34801561057c57600080fd5b506102c261058b36600461297c565b610e1c565b34801561059c57600080fd5b5061034a610e6a565b3480156105b157600080fd5b506102e5610ea0565b3480156105c657600080fd5b506102c2611e6181565b3480156105dc57600080fd5b5061034a6105eb36600461277d565b610ead565b3480156105fc57600080fd5b506000546001600160a01b0316610312565b34801561061a57600080fd5b506102e5610f0c565b34801561062f57600080fd5b5061034a61063e3660046127ec565b610f1b565b34801561064f57600080fd5b5061034a610fec565b34801561066457600080fd5b5061034a610673366004612997565b6110f4565b34801561068457600080fd5b5061034a6106933660046129ca565b61118a565b3480156106a457600080fd5b506102e56106b336600461277d565b6111db565b3480156106c457600080fd5b5061034a6106d336600461297c565b611318565b3480156106e457600080fd5b506102c27f4dfdc40c587c7b6d3c5c8f9c04c90b899ebfe162f19568448c564b1f42701e9381565b34801561071857600080fd5b506102c261072736600461297c565b611390565b34801561073857600080fd5b506102c2600b5481565b34801561074e57600080fd5b5061029761075d366004612a31565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561079757600080fd5b50601054610312906001600160a01b031681565b3480156107b757600080fd5b5061034a6107c636600461297c565b61139b565b3480156107d757600080fd5b5061034a6107e636600461297c565b611413565b3480156107f757600080fd5b506102c2600e5481565b60006001600160e01b031982166380ac58cd60e01b148061083257506001600160e01b03198216635b5e139f60e01b145b8061084d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461086290612a5b565b80601f016020809104026020016040519081016040528092919081815260200182805461088e90612a5b565b80156108db5780601f106108b0576101008083540402835291602001916108db565b820191906000526020600020905b8154815290600101906020018083116108be57829003601f168201915b5050505050905090565b60006108f0826114ab565b61090d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061093482610d1a565b9050806001600160a01b0316836001600160a01b031614156109695760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109895750610987813361075d565b155b156109a7576040516367d9dca160e11b815260040160405180910390fd5b6109b28383836114d7565b505050565b6000546001600160a01b031633146109ea5760405162461bcd60e51b81526004016109e190612a96565b60405180910390fd5b80156109fb576109f8611533565b50565b6109f86115cb565b6109b2838383611645565b6000546001600160a01b03163314610a385760405162461bcd60e51b81526004016109e190612a96565b8051610a4b90601290602084019061263f565b507f4c0b5770ef4b7d927d2dd9a1b970656f8e02cafa4bc1814c35ed3bc8de0cd75b81604051610a7b919061276a565b60405180910390a150565b6109b28383836040518060200160405280600081525061118a565b6109f881611847565b600f546001600160a01b0316331480610acd57506000546001600160a01b031633145b610b195760405162461bcd60e51b815260206004820152601d60248201527f5468652063616c6c657220697320616e6f74686572206164647265737300000060448201526064016109e1565b611e6181610b2a6002546001540390565b610b349190612ae1565b1115610b825760405162461bcd60e51b815260206004820181905260248201527f4b61696a754c6567656e64733a2052656163686564206d617820737570706c7960448201526064016109e1565b610b8c82826119b2565b5050565b6000546001600160a01b03163314610bba5760405162461bcd60e51b81526004016109e190612a96565b600d8190556040518181527fc7dd93ff4ddb4bae78c1f851a2141d4e9586cd5548441c078ed5b603390b19c190602001610a7b565b6000546001600160a01b03163314610c195760405162461bcd60e51b81526004016109e190612a96565b600c8190556040518181527f561fbd7b747dd71b11ec7f01f975b5547bcf4a4e34444663bed65aec1ffcb74290602001610a7b565b6000546001600160a01b03163314610c785760405162461bcd60e51b81526004016109e190612a96565b8051610c8b90601190602084019061263f565b507f157d450c8fb1377294d9db75af1de2753efc52d8e5578551d70d2c7d9cd74df981604051610a7b919061276a565b6000546001600160a01b03163314610ce55760405162461bcd60e51b81526004016109e190612a96565b600b8190556040518181527fe38cadc91f9651fcac2407628a2b943ac5c6ca7af8d8c0e5795c7f4b83db7b3890602001610a7b565b6000610d25826119cc565b5192915050565b60118054610d3990612a5b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6590612a5b565b8015610db25780601f10610d8757610100808354040283529160200191610db2565b820191906000526020600020905b815481529060010190602001808311610d9557829003601f168201915b505050505081565b600a5460ff1615610e005760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016109e1565b610e0982611ae6565b610e1281611cca565b610b8c33836119b2565b60006001600160a01b038216610e45576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610e945760405162461bcd60e51b81526004016109e190612a96565b610e9e6000611df0565b565b60128054610d3990612a5b565b6000546001600160a01b03163314610ed75760405162461bcd60e51b81526004016109e190612a96565b600e8190556040518181527f60184c1d3dafb0da9292ec4c904b84ce75399bc8476dfd9a308439a220691c1b90602001610a7b565b60606004805461086290612a5b565b6000546001600160a01b03163314610f455760405162461bcd60e51b81526004016109e190612a96565b600a5460ff6101009091041615158115151415610fa45760405162461bcd60e51b815260206004820152601e60248201527f4b61696a754c6567656e64733a2053616c65206973207468652073616d65000060448201526064016109e1565b600a80548215156101000261ff00199091161790556040517eae155da4b16482f1f1de21b801a3b841d5967fe2a1e3fe8d5355d3582e474790610a7b90831515815260200190565b600f546001600160a01b031633148061100f57506000546001600160a01b031633145b61105b5760405162461bcd60e51b815260206004820152601d60248201527f5468652063616c6c657220697320616e6f74686572206164647265737300000060448201526064016109e1565b600260095414156110ae5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109e1565b6002600955600f546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156110ec573d6000803e3d6000fd5b506001600955565b6001600160a01b03821633141561111e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611195848484611645565b6001600160a01b0383163b151580156111b757506111b584848484611e40565b155b156111d5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606111e6826114ab565b6112325760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064016109e1565b60006011805461124190612a5b565b9050116112da576012805461125590612a5b565b80601f016020809104026020016040519081016040528092919081815260200182805461128190612a5b565b80156112ce5780601f106112a3576101008083540402835291602001916112ce565b820191906000526020600020905b8154815290600101906020018083116112b157829003601f168201915b50505050509050919050565b60006112e4611f38565b9050806112f084611f47565b604051602001611301929190612af9565b604051602081830303815290604052915050919050565b6000546001600160a01b031633146113425760405162461bcd60e51b81526004016109e190612a96565b601080546001600160a01b0319166001600160a01b0383169081179091556040519081527f4fae1dd8011a0c123d814d1e6d18dda34e3a36e8014868303adaf26e25ea0c8d90602001610a7b565b600061084d82612044565b6000546001600160a01b031633146113c55760405162461bcd60e51b81526004016109e190612a96565b600f80546001600160a01b0319166001600160a01b0383169081179091556040519081527f1f54d231bb9d500b1923e4a1cb25e600f366a8368873d9af7c1c623814df19fc90602001610a7b565b6000546001600160a01b0316331461143d5760405162461bcd60e51b81526004016109e190612a96565b6001600160a01b0381166114a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109e1565b6109f881611df0565b60006001548210801561084d575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600a5460ff16156115795760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016109e1565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115ae3390565b6040516001600160a01b03909116815260200160405180910390a1565b600a5460ff166116145760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016109e1565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336115ae565b6000611650826119cc565b80519091506000906001600160a01b0316336001600160a01b0316148061167e5750815161167e903361075d565b8061169957503361168e846108e5565b6001600160a01b0316145b9050806116b957604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146116ee5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661171557604051633a954ecd60e21b815260040160405180910390fd5b61172560008484600001516114d7565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661180f5760015481101561180f57825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b0316600080516020612c3e83398151915260405160405180910390a45b5050505050565b6000611852826119cc565b905061186460008383600001516114d7565b80516001600160a01b039081166000908152600660209081526040808320805467ffffffffffffffff1981166001600160401b0391821660001901821617909155855185168452818420805467ffffffffffffffff60801b198116600160801b9182900484166001908101851690920217909155865188865260059094528285208054600160e01b9588166001600160e01b031990911617600160a01b42909416939093029290921760ff60e01b191693909317905590850180835291205490911661197b5760015481101561197b57815160008281526005602090815260409091208054918501516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b50805160405183916000916001600160a01b0390911690600080516020612c3e833981519152908390a45050600280546001019055565b610b8c828260405180602001604052806000815250612099565b604080516060810182526000808252602082018190529181019190915281600154811015611acd57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611acb5780516001600160a01b031615611a62579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611ac6579392505050565b611a62565b505b604051636f96cda160e11b815260040160405180910390fd5b600a54610100900460ff16611b525760405162461bcd60e51b815260206004820152602c60248201527f4b61696a754c6567656e64733a20507269766174652073616c6520686173206e60448201526b1bdd08189959dd5b881e595d60a21b60648201526084016109e1565b600d5481611b636002546001540390565b611b6d9190612ae1565b1115611bd15760405162461bcd60e51b815260206004820152602d60248201527f4b61696a754c6567656e64733a2052656163686564206d61782070726976617460448201526c652073616c6520737570706c7960981b60648201526084016109e1565b600081118015611be35750600b548111155b611c3d5760405162461bcd60e51b815260206004820152602560248201527f4b61696a754c6567656e64733a2052656163686564206d6178206d696e7420706044820152640cae440e8f60db1b60648201526084016109e1565b600c5481611c4a33612044565b611c549190612ae1565b1115611cb45760405162461bcd60e51b815260206004820152602960248201527f4b61696a754c6567656e64733a2052656163686564206d6178206d696e742070604482015268195c881dd85b1b195d60ba1b60648201526084016109e1565b6109f881600e54611cc59190612b28565b6120a6565b60006013547f4dfdc40c587c7b6d3c5c8f9c04c90b899ebfe162f19568448c564b1f42701e93611cf73390565b604051602001611d1a9291909182526001600160a01b0316602082015260400190565b60405160208183030381529060405280519060200120604051602001611d5792919061190160f01b81526002810192909252602282015260420190565b60408051601f19818403018152919052805160209091012090506000611d7d828461212d565b90506001600160a01b03811615801590611da457506010546001600160a01b038281169116145b6109b25760405162461bcd60e51b815260206004820152601f60248201527f4b61696a754c6567656e64733a20496e76616c6964207369676e61747572650060448201526064016109e1565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e75903390899088908890600401612b47565b602060405180830381600087803b158015611e8f57600080fd5b505af1925050508015611ebf575060408051601f3d908101601f19168201909252611ebc91810190612b84565b60015b611f1a573d808015611eed576040519150601f19603f3d011682016040523d82523d6000602084013e611ef2565b606091505b508051611f12576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606011805461086290612a5b565b606081611f6b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f955780611f7f81612ba1565b9150611f8e9050600a83612bd2565b9150611f6f565b6000816001600160401b03811115611faf57611faf612843565b6040519080825280601f01601f191660200182016040528015611fd9576020820181803683370190505b5090505b8415611f3057611fee600183612be6565b9150611ffb600a86612bfd565b612006906030612ae1565b60f81b81838151811061201b5761201b612c11565b60200101906001600160f81b031916908160001a90535061203d600a86612bd2565b9450611fdd565b60006001600160a01b03821661206d576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b6109b28383836001612151565b803410156120ef5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b60448201526064016109e1565b803411156109f857336108fc6121058334612be6565b6040518115909202916000818181858888f19350505050158015610b8c573d6000803e3d6000fd5b600080600061213c85856122f8565b9150915061214981612368565b509392505050565b6001546001600160a01b03851661217a57604051622e076360e81b815260040160405180910390fd5b836121985760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561224457506001600160a01b0387163b15155b156122bb575b60405182906001600160a01b03891690600090600080516020612c3e833981519152908290a46122836000888480600101955088611e40565b6122a0576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561224a5782600154146122b657600080fd5b6122ef565b5b6040516001830192906001600160a01b03891690600090600080516020612c3e833981519152908290a4808214156122bc575b50600155611840565b60008082516041141561232f5760208301516040840151606085015160001a61232387828585612523565b94509450505050612361565b825160401415612359576020830151604084015161234e868383612610565b935093505050612361565b506000905060025b9250929050565b600081600481111561237c5761237c612c27565b14156123855750565b600181600481111561239957612399612c27565b14156123e75760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016109e1565b60028160048111156123fb576123fb612c27565b14156124495760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016109e1565b600381600481111561245d5761245d612c27565b14156124b65760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016109e1565b60048160048111156124ca576124ca612c27565b14156109f85760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016109e1565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561255a5750600090506003612607565b8460ff16601b1415801561257257508460ff16601c14155b156125835750600090506004612607565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156125d7573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661260057600060019250925050612607565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b0161263187828885612523565b935093505050935093915050565b82805461264b90612a5b565b90600052602060002090601f01602090048101928261266d57600085556126b3565b82601f1061268657805160ff19168380011785556126b3565b828001600101855582156126b3579182015b828111156126b3578251825591602001919060010190612698565b506126bf9291506126c3565b5090565b5b808211156126bf57600081556001016126c4565b6001600160e01b0319811681146109f857600080fd5b60006020828403121561270057600080fd5b813561270b816126d8565b9392505050565b60005b8381101561272d578181015183820152602001612715565b838111156111d55750506000910152565b60008151808452612756816020860160208601612712565b601f01601f19169290920160200192915050565b60208152600061270b602083018461273e565b60006020828403121561278f57600080fd5b5035919050565b80356001600160a01b03811681146127ad57600080fd5b919050565b600080604083850312156127c557600080fd5b6127ce83612796565b946020939093013593505050565b803580151581146127ad57600080fd5b6000602082840312156127fe57600080fd5b61270b826127dc565b60008060006060848603121561281c57600080fd5b61282584612796565b925061283360208501612796565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561287357612873612843565b604051601f8501601f19908116603f0116810190828211818310171561289b5761289b612843565b816040528093508581528686860111156128b457600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156128e057600080fd5b81356001600160401b038111156128f657600080fd5b8201601f8101841361290757600080fd5b611f3084823560208401612859565b600082601f83011261292757600080fd5b61270b83833560208501612859565b6000806040838503121561294957600080fd5b8235915060208301356001600160401b0381111561296657600080fd5b61297285828601612916565b9150509250929050565b60006020828403121561298e57600080fd5b61270b82612796565b600080604083850312156129aa57600080fd5b6129b383612796565b91506129c1602084016127dc565b90509250929050565b600080600080608085870312156129e057600080fd5b6129e985612796565b93506129f760208601612796565b92506040850135915060608501356001600160401b03811115612a1957600080fd5b612a2587828801612916565b91505092959194509250565b60008060408385031215612a4457600080fd5b612a4d83612796565b91506129c160208401612796565b600181811c90821680612a6f57607f821691505b60208210811415612a9057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612af457612af4612acb565b500190565b60008351612b0b818460208801612712565b835190830190612b1f818360208801612712565b01949350505050565b6000816000190483118215151615612b4257612b42612acb565b500290565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b7a9083018461273e565b9695505050505050565b600060208284031215612b9657600080fd5b815161270b816126d8565b6000600019821415612bb557612bb5612acb565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612be157612be1612bbc565b500490565b600082821015612bf857612bf8612acb565b500390565b600082612c0c57612c0c612bbc565b500690565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220c8c75188dec91803de81296000919cdec500eef2499f15390706bad9cecd09cc64736f6c63430008090033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.