Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 121 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 16927431 | 566 days ago | IN | 0 ETH | 0.00304635 | ||||
Safe Transfer Fr... | 16377120 | 644 days ago | IN | 0 ETH | 0.00399701 | ||||
Safe Transfer Fr... | 16171297 | 672 days ago | IN | 0 ETH | 0.00174211 | ||||
Set Approval For... | 15730950 | 734 days ago | IN | 0 ETH | 0.00038966 | ||||
Mint | 15537643 | 761 days ago | IN | 0 ETH | 0.00875856 | ||||
Mint | 15496423 | 768 days ago | IN | 0 ETH | 0.00298582 | ||||
Mint | 15496399 | 768 days ago | IN | 0 ETH | 0.00301214 | ||||
Mint | 15496387 | 768 days ago | IN | 0 ETH | 0.00394498 | ||||
Mint | 15496245 | 768 days ago | IN | 0 ETH | 0.00422657 | ||||
Set Approval For... | 15483949 | 770 days ago | IN | 0 ETH | 0.00028684 | ||||
Mint | 15483947 | 770 days ago | IN | 0 ETH | 0.0019629 | ||||
Mint | 15482450 | 770 days ago | IN | 0 ETH | 0.00344611 | ||||
Set Approval For... | 15482376 | 770 days ago | IN | 0 ETH | 0.00044542 | ||||
Mint | 15482369 | 770 days ago | IN | 0 ETH | 0.00304037 | ||||
Safe Transfer Fr... | 15397459 | 783 days ago | IN | 0 ETH | 0.00163516 | ||||
Mint | 15385890 | 785 days ago | IN | 0 ETH | 0.00256443 | ||||
Mint | 15385780 | 785 days ago | IN | 0 ETH | 0.00261579 | ||||
Mint | 15385749 | 785 days ago | IN | 0 ETH | 0.00304359 | ||||
Set Approval For... | 15385706 | 785 days ago | IN | 0 ETH | 0.00070249 | ||||
Mint | 15385679 | 785 days ago | IN | 0 ETH | 0.00211573 | ||||
Mint | 15385405 | 785 days ago | IN | 0 ETH | 0.00633081 | ||||
Set Approval For... | 15363475 | 789 days ago | IN | 0 ETH | 0.00042292 | ||||
Mint | 15363001 | 789 days ago | IN | 0 ETH | 0.00287885 | ||||
Mint | 15362988 | 789 days ago | IN | 0 ETH | 0.00278612 | ||||
Mint | 15362977 | 789 days ago | IN | 0 ETH | 0.00361785 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
AutenticaERC721
Compiler Version
v0.8.15+commit.e14f2714
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.15 <0.9.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/interfaces/IERC2981.sol"; import "./IERC721Autentica.sol"; contract AutenticaERC721 is Context, ERC721URIStorage, ERC721Enumerable, IERC721Autentica, IERC2981, AccessControl { /// Number of decimals used for fees. uint8 public constant DECIMALS = 2; /// Create a new role identifier for the operator role. bytes32 public constant OPERATOR_ROLE = keccak256("OPERATOR_ROLE"); /// Additional token details needed for trading. struct TokenDetails { /// Address of the wallet that created the token. address creator; /// Address of the wallet who paid for gas fees. address investor; /// The value ranges between 0 and 100 multiplied by (10 ** DECIMALS). uint256 royaltyFee; /// The value ranges between 0 and 100 multiplied by (10 ** DECIMALS). uint256 investorFee; } /** * @dev Emitted when the address of the Autentica Marketplace smart contract has been updated. */ event ChangedMarketplace( address indexed oldAddress, address indexed newAddress ); // Address of the Autentica Marketplace smart contract. address private _marketplace; /** * @dev Mapping from token ID to the token details structure which * contains information like the creator and investor address, royalty fee * and the investor fee. * * NOTE: The Autentica Marketplace smart contract supports royalties, so in order for the * creator to be paid, we need to know who created the token and that information must * stay the same even if the person who owns the token changes. * * NOTE: Autentica lets other people to pay for the gas fees of the token minting so * in that case the minter is not the creator and owner of the token. */ mapping(uint256 => TokenDetails) private _tokenDetails; /** * Initializes the smart contract. */ constructor() ERC721("Autentica Market", "AUTMKT") { // Grant the admin role to the owner _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); // Grant the operator role to the owner _setupRole(OPERATOR_ROLE, _msgSender()); } /** * Returns the address of the Autentica Marketplace smart contract. */ function marketplace() external view returns (address) { return _marketplace; } /** * @dev Sets the Autentica Marketplace smart contract address. * Requirements: * * - The caller must be admin. */ function setMarketplace(address marketplaceAddress) external returns (address) { require( hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "AutenticaERC721: Only admins can change this" ); // Keep a reference to the old address address oldMarketplace = _marketplace; // Change the marketplace address _marketplace = marketplaceAddress; // Emit the event emit ChangedMarketplace(oldMarketplace, _marketplace); return _marketplace; } /** * @dev Number of decimals used for fees. */ function decimals() external pure returns (uint8) { return DECIMALS; } /** * @dev Returns the Royalty fee of the `tokenId` token. * @param tokenId NFT ID. * * Requirements: * * - Token must exist. */ function getRoyaltyFee(uint256 tokenId) external view returns (uint256) { require(_exists(tokenId), "AutenticaERC721: Token doesn't exist"); return _tokenDetails[tokenId].royaltyFee; } /** * @dev Returns the Investor fee of the `tokenId` token. * @param tokenId NFT ID. * * Requirements: * * - Token must exist. */ function getInvestorFee(uint256 tokenId) external view returns (uint256) { require(_exists(tokenId), "AutenticaERC721: Token doesn't exist"); return _tokenDetails[tokenId].investorFee; } /** * @dev Returns the creator of the `tokenId` token. * @param tokenId NFT ID. * * NOTE: The Autentica Marketplace smart contract supports royalties, so in order for the * creator to be paid, we need to know who created the token and that information must * stay the same even if the person who owns the token changes. * * Requirements: * * - Token must exist. */ function getCreator(uint256 tokenId) external view returns (address) { require(_exists(tokenId), "AutenticaERC721: Token doesn't exist"); return _tokenDetails[tokenId].creator; } /** * @dev Returns the investor of the `tokenId` token. * @param tokenId NFT ID. * * NOTE: Autentica lets other people to pay for the gas fees of the token minting so * in that case the minter is not the creator and owner of the token. * * Requirements: * * - Token must exist. */ function getInvestor(uint256 tokenId) external view returns (address) { require(_exists(tokenId), "AutenticaERC721: Token doesn't exist"); return _tokenDetails[tokenId].investor; } /** * @dev Returns the token details of the `tokenId` token. * @param tokenId NFT ID. * * Requirements: * * - Token must exist. */ function getTokenDetails(uint256 tokenId) external view returns (TokenDetails memory) { require(_exists(tokenId), "AutenticaERC721: Token doesn't exist"); return _tokenDetails[tokenId]; } /** * @dev Creates a token for `_msgSender()`. The creator of the token and the owner of it will * be assigned to `_msgSender()`. * * @param tokenId Token ID. * @param uri Token URI. * @param royaltyFee Royalty fee. * * See {ERC721-_mint}. * * Requirements: * * - The `royaltyFee` must be less than or equal to 100 * (10 ** DECIMALS), meaning 100%. */ function mint( uint256 tokenId, string memory uri, uint256 royaltyFee ) external { // Validate the operation canPerformMint(tokenId, royaltyFee); // Creator and Owner of the token address sender = _msgSender(); // Mint _safeMint(sender, tokenId); _setTokenURI(tokenId, uri); // Set the token details _tokenDetails[tokenId] = TokenDetails({ creator: sender, investor: address(0x0), // There is no investor in this case royaltyFee: royaltyFee, investorFee: 0 // This fee is zero because there is not investor in this case }); } /** * Creates a token on behalf of a creator and approves the Autentica Marketplace smart contract. * The creator of the token and the owner of it will be assigned to `creator` * while the investor will be set to `_msgSender()`. * * @param creator Token creator and owner. * @param tokenId Token ID. * @param uri Token URI. * @param royaltyFee Royalty fee. * @param investorFee Investor fee. * @param v ECDSA `v` parameter. * @param r ECDSA `r` parameter. * @param s ECDSA `s` parameter. * * See {ERC721-_mint}. * * Requirements: * * - The `royaltyFee` must be less than or equal to 100 * (10 ** DECIMALS), meaning 100%. * - the `investorFee` must be less than or equal to 100 * (10 ** DECIMALS), meaning 100%. * - The investor can't be the creator. * - The ECDSA signature must be signed by someone with the admin or operator role. */ function investorMintingAndApproveMarketplace( address creator, uint256 tokenId, string memory uri, uint256 royaltyFee, uint256 investorFee, uint8 v, bytes32 r, bytes32 s ) external { // Validate the operation canPerformInvestorMinting( creator, tokenId, royaltyFee, investorFee, v, r, s ); // Mint _safeMint(creator, tokenId); _setTokenURI(tokenId, uri); // Set the token details _tokenDetails[tokenId] = TokenDetails({ creator: creator, investor: _msgSender(), royaltyFee: royaltyFee, investorFee: investorFee }); // Approve the Autentica Marketplace smart contract for this specific token only. _approve(_marketplace, tokenId); } /** * @notice Validate the mint. * * @param tokenId Token ID. * @param royaltyFee Royalty fee. */ function canPerformMint(uint256 tokenId, uint256 royaltyFee) public view returns (bool) { // Make sure that the token doesn't exist require(!_exists(tokenId), "AutenticaERC721: Token already minted"); // Make sure that the royalty fee is valid _validateFee(royaltyFee); return true; } /** * @notice Validate the investor minting. * * @param creator Token creator and owner. * @param tokenId Token ID. * @param royaltyFee Royalty fee. * @param investorFee Investor fee. * @param v ECDSA `v` parameter. * @param r ECDSA `r` parameter. * @param s ECDSA `s` parameter. */ function canPerformInvestorMinting( address creator, uint256 tokenId, uint256 royaltyFee, uint256 investorFee, uint8 v, bytes32 r, bytes32 s ) public view returns (bool) { // Make sure that the token doesn't exist require(!_exists(tokenId), "AutenticaERC721: Token already minted"); // Make sure that the fees are valid _validateFee(royaltyFee); _validateFee(investorFee); // Make sure that the investor is not the creator require( _msgSender() != creator, "AutenticaERC721: Investor can't be the creator" ); // Check signature require( _validateInvestorMintingSignature( creator, tokenId, royaltyFee, investorFee, v, r, s ), "AutenticaERC721: Invalid signature" ); // Make sure that the marketplace address is set require(_marketplace != address(0x0), "AutenticaERC721: Marketplace address not set"); return true; } /** * @dev Returns whether `tokenId` exists. */ function exists(uint256 tokenId) external view returns (bool) { return super._exists(tokenId); } /** * Returns the Uniform Resource Identifier (URI) for a token. * @param tokenId Token ID for which to return the URI. * * Requirements: * * - Token must exist. */ function tokenURI(uint256 tokenId) public view virtual override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } /** * @dev Called with the sale price to determine how much royalty is owed and to whom. * @param tokenId - the NFT asset queried for royalty information * @param salePrice - the sale price of the NFT asset specified by `tokenId` * @return receiver - address of who should be sent the royalty payment * @return royaltyAmount - the royalty payment amount for `salePrice` */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount) { if ( _exists(tokenId) == false || _tokenDetails[tokenId].creator == address(0x0) || _tokenDetails[tokenId].royaltyFee == 0 ) { // Zero out everything return (address(0x0), 0); } else { // Return the address of the creator and the royalty proceeds return ( _tokenDetails[tokenId].creator, (salePrice * _tokenDetails[tokenId].royaltyFee) / (100 * 10**DECIMALS) ); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable, AccessControl, IERC165) returns (bool) { return interfaceId == type(IERC721Autentica).interfaceId || interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Destroys `tokenId`. * The creator, investor and royalty fee information is cleared when the token is burned. * * @param tokenId Token ID to burn. * * See {ERC721-_burn}. */ function _burn(uint256 tokenId) internal virtual override(ERC721, ERC721URIStorage) { super._burn(tokenId); // Cleanup the rest of the information delete _tokenDetails[tokenId]; } /** * Hook that is called before any token transfer. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } /** * Returns `true` if the signer has the admin or the operator role. * * @param creator - Artist. * @param tokenId - Token ID. * @param royaltyFee - Creator fee percentage. * @param investorFee - Investor fee percentage. * @param v ECDSA `v` parameter. * @param r ECDSA `r` parameter. * @param s ECDSA `s` parameter. */ function _validateInvestorMintingSignature( address creator, uint256 tokenId, uint256 royaltyFee, uint256 investorFee, uint8 v, bytes32 r, bytes32 s ) private view returns (bool) { bytes32 hash = keccak256( abi.encode(address(this), creator, tokenId, royaltyFee, investorFee) ); address signer = ecrecover( keccak256( abi.encodePacked("\x19Ethereum Signed Message:\n32", hash) ), v, r, s ); return hasRole(DEFAULT_ADMIN_ROLE, signer) || hasRole(OPERATOR_ROLE, signer); } /** * @dev Validates the fee value if it's within the allowed range. * * NOTE: The `value` must be less than or equal to 100 * (10 ** DECIMALS), meaning 100%. */ function _validateFee(uint256 value) private pure { require( value <= 100 * (10**DECIMALS), "AutenticaERC721: Fee must be less than or equal to 100%" ); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.15 <0.9.0; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; interface IERC721Autentica is IERC721 { /** * @dev Number of decimals used for fees. */ function decimals() external view returns (uint8); /** * @dev Returns the Royalty fee of the `tokenId` token. * @param tokenId NFT ID. */ function getRoyaltyFee(uint256 tokenId) external view returns (uint256); /** * @dev Returns the Investor fee of the `tokenId` token. * @param tokenId NFT ID. */ function getInvestorFee(uint256 tokenId) external view returns (uint256); /** * @dev Returns the creator of the `tokenId` token. * @param tokenId NFT ID. * * NOTE: The Autentica Marketplace smart contract supports royalties, so in order for the * creator to be paid, we need to know who created the token and that information must * stay the same even if the person who owns the token changes. */ function getCreator(uint256 tokenId) external view returns (address); /** * @dev Returns the investor of the `tokenId` token. * @param tokenId NFT ID. * * NOTE: Autentica lets other people to pay for the gas fees of the token minting so * in that case the minter is not the creator and owner of the token. */ function getInvestor(uint256 tokenId) external view returns (address); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) 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); /** * @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 // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev See {ERC721-_burn}. This override additionally checks to see if a * token-specific URI was set for the token, and if so, it deletes the token URI from * the storage mapping. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721Burnable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../../utils/Context.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _burn(tokenId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); 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 overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * May emit a {RoleGranted} event. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"ChangedMarketplace","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DECIMALS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_ROLE","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":[{"internalType":"address","name":"creator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"royaltyFee","type":"uint256"},{"internalType":"uint256","name":"investorFee","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"canPerformInvestorMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"royaltyFee","type":"uint256"}],"name":"canPerformMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getCreator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getInvestor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getInvestorFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getRoyaltyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenDetails","outputs":[{"components":[{"internalType":"address","name":"creator","type":"address"},{"internalType":"address","name":"investor","type":"address"},{"internalType":"uint256","name":"royaltyFee","type":"uint256"},{"internalType":"uint256","name":"investorFee","type":"uint256"}],"internalType":"struct AutenticaERC721.TokenDetails","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"creator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"uri","type":"string"},{"internalType":"uint256","name":"royaltyFee","type":"uint256"},{"internalType":"uint256","name":"investorFee","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"investorMintingAndApproveMarketplace","outputs":[],"stateMutability":"nonpayable","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":"marketplace","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"uri","type":"string"},{"internalType":"uint256","name":"royaltyFee","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"marketplaceAddress","type":"address"}],"name":"setMarketplace","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280601081526020016f105d5d195b9d1a58d84813585c9ad95d60821b815250604051806040016040528060068152602001651055551352d560d21b81525081600090816200006b919062000217565b5060016200007a828262000217565b506200008c91506000905033620000be565b620000b87f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92933620000be565b620002e3565b620000ca8282620000ce565b5050565b6000828152600b602090815260408083206001600160a01b038516845290915290205460ff16620000ca576000828152600b602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200012e3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200019d57607f821691505b602082108103620001be57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200021257600081815260208120601f850160051c81016020861015620001ed5750805b601f850160051c820191505b818110156200020e57828155600101620001f9565b5050505b505050565b81516001600160401b0381111562000233576200023362000172565b6200024b8162000244845462000188565b84620001c4565b602080601f8311600181146200028357600084156200026a5750858301515b600019600386901b1c1916600185901b1785556200020e565b600085815260208120601f198616915b82811015620002b45788860151825594840194600190910190840162000293565b5085821015620002d35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612d3280620002f36000396000f3fe608060405234801561001057600080fd5b50600436106102325760003560e01c806370a0823111610130578063acca6b31116100b8578063d48e638a1161007c578063d48e638a1461052d578063d547741f14610540578063e985e9c514610553578063f5b541a61461058f578063f915765b146105b657600080fd5b8063acca6b311461048d578063b88d4fde146104a0578063c1e03728146104b3578063c87b56dd14610507578063c99dccf91461051a57600080fd5b806395d89b41116100ff57806395d89b41146104465780639e4c01411461044e578063a217fddf14610461578063a22cb46514610469578063abc8c7af1461047c57600080fd5b806370a08231146103fa57806373ad6c2d1461040d5780637a3e0a261461042057806391d148541461043357600080fd5b80632f2ff15d116101be57806342842e0e1161018257806342842e0e1461039b578063453ac2aa146103ae5780634f558e79146103c15780634f6ccce7146103d45780636352211e146103e757600080fd5b80632f2ff15d146103485780632f745c591461035b578063313ce5671461036e57806336568abe1461037557806340ed7b4c1461038857600080fd5b806318160ddd1161020557806318160ddd146102b457806323b872dd146102c6578063248a9ca3146102d95780632a55205a146102fc5780632e0f26251461032e57600080fd5b806301ffc9a71461023757806306fdde031461025f578063081812fc14610274578063095ea7b31461029f575b600080fd5b61024a61024536600461232f565b6105c9565b60405190151581526020015b60405180910390f35b61026761060f565b60405161025691906123a4565b6102876102823660046123b7565b6106a1565b6040516001600160a01b039091168152602001610256565b6102b26102ad3660046123ec565b6106c8565b005b6009545b604051908152602001610256565b6102b26102d4366004612416565b6107e2565b6102b86102e73660046123b7565b6000908152600b602052604090206001015490565b61030f61030a366004612452565b610813565b604080516001600160a01b039093168352602083019190915201610256565b610336600281565b60405160ff9091168152602001610256565b6102b2610356366004612474565b6108cb565b6102b86103693660046123ec565b6108f0565b6002610336565b6102b2610383366004612474565b610986565b61024a610396366004612452565b610a04565b6102b26103a9366004612416565b610a3e565b6102b26103bc36600461255d565b610a59565b61024a6103cf3660046123b7565b610b1f565b6102b86103e23660046123b7565b610b2a565b6102876103f53660046123b7565b610bbd565b6102b86104083660046125ec565b610c1d565b61028761041b3660046125ec565b610ca3565b61024a61042e366004612607565b610d70565b61024a610441366004612474565b610efa565b610267610f25565b6102b861045c3660046123b7565b610f34565b6102b8600081565b6102b261047736600461266a565b610f71565b600c546001600160a01b0316610287565b6102b261049b3660046126a6565b610f7c565b6102b26104ae3660046126f6565b611015565b6104c66104c13660046123b7565b61104d565b604051610256919081516001600160a01b03908116825260208084015190911690820152604080830151908201526060918201519181019190915260800190565b6102676105153660046123b7565b6110e7565b6102876105283660046123b7565b6110f2565b61028761053b3660046123b7565b611138565b6102b261054e366004612474565b61117b565b61024a610561366004612772565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102b87f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92981565b6102b86105c43660046123b7565b6111a0565b60006001600160e01b031982166325bb1e8760e11b14806105fa57506001600160e01b0319821663152a902d60e11b145b806106095750610609826111dd565b92915050565b60606000805461061e9061279c565b80601f016020809104026020016040519081016040528092919081815260200182805461064a9061279c565b80156106975780601f1061066c57610100808354040283529160200191610697565b820191906000526020600020905b81548152906001019060200180831161067a57829003601f168201915b5050505050905090565b60006106ac82611202565b506000908152600460205260409020546001600160a01b031690565b60006106d382610bbd565b9050806001600160a01b0316836001600160a01b0316036107455760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061076157506107618133610561565b6107d35760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606482015260840161073c565b6107dd8383611255565b505050565b6107ec33826112c3565b6108085760405162461bcd60e51b815260040161073c906127d6565b6107dd838383611342565b60008061081f846114e9565b158061084057506000848152600d60205260409020546001600160a01b0316155b8061085a57506000848152600d6020526040902060020154155b1561086a575060009050806108c4565b6000848152600d60205260409020546001600160a01b031661088e6002600a61291e565b61089990606461292d565b6000868152600d60205260409020600201546108b5908661292d565b6108bf9190612962565b915091505b9250929050565b6000828152600b60205260409020600101546108e681611506565b6107dd8383611510565b60006108fb83610c1d565b821061095d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161073c565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6001600160a01b03811633146109f65760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161073c565b610a008282611596565b5050565b6000610a0f836114e9565b15610a2c5760405162461bcd60e51b815260040161073c90612976565b610a35826115fd565b50600192915050565b6107dd83838360405180602001604052806000815250611015565b610a6888888787878787610d70565b50610a738888611689565b610a7d87876116a3565b6040518060800160405280896001600160a01b03168152602001610a9e3390565b6001600160a01b0390811682526020808301899052604092830188905260008b8152600d8252839020845181549084166001600160a01b0319918216178255918501516001820180549185169190931617909155918301516002830155606090920151600390910155600c54610b15911688611255565b5050505050505050565b6000610609826114e9565b6000610b3560095490565b8210610b985760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161073c565b60098281548110610bab57610bab6129bb565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106095760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161073c565b60006001600160a01b038216610c875760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161073c565b506001600160a01b031660009081526003602052604090205490565b6000610caf8133610efa565b610d105760405162461bcd60e51b815260206004820152602c60248201527f417574656e746963614552433732313a204f6e6c792061646d696e732063616e60448201526b206368616e6765207468697360a01b606482015260840161073c565b600c80546001600160a01b038481166001600160a01b0319831681179093556040519116919082907ea65b4099f660d62e650fc92aa9c593d212d37b69d763939568ef02d7b78b5190600090a35050600c546001600160a01b0316919050565b6000610d7b876114e9565b15610d985760405162461bcd60e51b815260040161073c90612976565b610da1866115fd565b610daa856115fd565b6001600160a01b0388163303610e195760405162461bcd60e51b815260206004820152602e60248201527f417574656e746963614552433732313a20496e766573746f722063616e27742060448201526d3132903a34329031b932b0ba37b960911b606482015260840161073c565b610e2888888888888888611727565b610e7f5760405162461bcd60e51b815260206004820152602260248201527f417574656e746963614552433732313a20496e76616c6964207369676e617475604482015261726560f01b606482015260840161073c565b600c546001600160a01b0316610eec5760405162461bcd60e51b815260206004820152602c60248201527f417574656e746963614552433732313a204d61726b6574706c6163652061646460448201526b1c995cdcc81b9bdd081cd95d60a21b606482015260840161073c565b506001979650505050505050565b6000918252600b602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606001805461061e9061279c565b6000610f3f826114e9565b610f5b5760405162461bcd60e51b815260040161073c906129d1565b506000908152600d602052604090206002015490565b610a00338383611860565b610f868382610a04565b5033610f928185611689565b610f9c84846116a3565b604080516080810182526001600160a01b0392831681526000602080830182815283850196875260608401838152988352600d909152929020905181549084166001600160a01b031991821617825591516001820180549190941692169190911790915590516002820155915160039092019190915550565b61101f33836112c3565b61103b5760405162461bcd60e51b815260040161073c906127d6565b6110478484848461192e565b50505050565b60408051608081018252600080825260208201819052918101829052606081019190915261107a826114e9565b6110965760405162461bcd60e51b815260040161073c906129d1565b506000908152600d6020908152604091829020825160808101845281546001600160a01b03908116825260018301541692810192909252600281015492820192909252600390910154606082015290565b606061060982611961565b60006110fd826114e9565b6111195760405162461bcd60e51b815260040161073c906129d1565b506000908152600d60205260409020600101546001600160a01b031690565b6000611143826114e9565b61115f5760405162461bcd60e51b815260040161073c906129d1565b506000908152600d60205260409020546001600160a01b031690565b6000828152600b602052604090206001015461119681611506565b6107dd8383611596565b60006111ab826114e9565b6111c75760405162461bcd60e51b815260040161073c906129d1565b506000908152600d602052604090206003015490565b60006001600160e01b03198216637965db0b60e01b1480610609575061060982611a69565b61120b816114e9565b6112525760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161073c565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061128a82610bbd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806112cf83610bbd565b9050806001600160a01b0316846001600160a01b0316148061131657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061133a5750836001600160a01b031661132f846106a1565b6001600160a01b0316145b949350505050565b826001600160a01b031661135582610bbd565b6001600160a01b0316146113b95760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161073c565b6001600160a01b03821661141b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161073c565b611426838383611a8e565b611431600082611255565b6001600160a01b038316600090815260036020526040812080546001929061145a908490612a15565b90915550506001600160a01b0382166000908152600360205260408120805460019290611488908490612a2c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000908152600260205260409020546001600160a01b0316151590565b6112528133611a99565b61151a8282610efa565b610a00576000828152600b602090815260408083206001600160a01b03851684529091529020805460ff191660011790556115523390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6115a08282610efa565b15610a00576000828152600b602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6116096002600a61291e565b61161490606461292d565b8111156112525760405162461bcd60e51b815260206004820152603760248201527f417574656e746963614552433732313a20466565206d757374206265206c657360448201527f73207468616e206f7220657175616c20746f2031303025000000000000000000606482015260840161073c565b610a00828260405180602001604052806000815250611afd565b6116ac826114e9565b61170f5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b606482015260840161073c565b60008281526006602052604090206107dd8282612a92565b60408051306020808301919091526001600160a01b038a1682840152606082018990526080820188905260a08083018890528351808403909101815260c0830190935282519201919091207f19457468657265756d205369676e6564204d6573736167653a0a33320000000060e083015260fc8201819052600091829060019061011c0160408051601f198184030181528282528051602091820120600084529083018083525260ff891690820152606081018790526080810186905260a0016020604051602081039080840390855afa158015611809573d6000803e3d6000fd5b5050604051601f19015191506118229050600082610efa565b8061185257506118527f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92982610efa565b9a9950505050505050505050565b816001600160a01b0316836001600160a01b0316036118c15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161073c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611939848484611342565b61194584848484611b30565b6110475760405162461bcd60e51b815260040161073c90612b52565b606061196c82611202565b600082815260066020526040812080546119859061279c565b80601f01602080910402602001604051908101604052809291908181526020018280546119b19061279c565b80156119fe5780601f106119d3576101008083540402835291602001916119fe565b820191906000526020600020905b8154815290600101906020018083116119e157829003601f168201915b505050505090506000611a1c60408051602081019091526000815290565b90508051600003611a2e575092915050565b815115611a60578082604051602001611a48929190612ba4565b60405160208183030381529060405292505050919050565b61133a84611c31565b60006001600160e01b0319821663780e9d6360e01b1480610609575061060982611ca5565b6107dd838383611cf5565b611aa38282610efa565b610a0057611abb816001600160a01b03166014611dad565b611ac6836020611dad565b604051602001611ad7929190612bd3565b60408051601f198184030181529082905262461bcd60e51b825261073c916004016123a4565b611b078383611f49565b611b146000848484611b30565b6107dd5760405162461bcd60e51b815260040161073c90612b52565b60006001600160a01b0384163b15611c2657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b74903390899088908890600401612c48565b6020604051808303816000875af1925050508015611baf575060408051601f3d908101601f19168201909252611bac91810190612c85565b60015b611c0c573d808015611bdd576040519150601f19603f3d011682016040523d82523d6000602084013e611be2565b606091505b508051600003611c045760405162461bcd60e51b815260040161073c90612b52565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061133a565b506001949350505050565b6060611c3c82611202565b6000611c5360408051602081019091526000815290565b90506000815111611c735760405180602001604052806000815250611c9e565b80611c7d84612088565b604051602001611c8e929190612ba4565b6040516020818303038152906040525b9392505050565b60006001600160e01b031982166380ac58cd60e01b1480611cd657506001600160e01b03198216635b5e139f60e01b145b8061060957506301ffc9a760e01b6001600160e01b0319831614610609565b6001600160a01b038316611d5057611d4b81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611d73565b816001600160a01b0316836001600160a01b031614611d7357611d738382612189565b6001600160a01b038216611d8a576107dd81612226565b826001600160a01b0316826001600160a01b0316146107dd576107dd82826122d5565b60606000611dbc83600261292d565b611dc7906002612a2c565b67ffffffffffffffff811115611ddf57611ddf6124a0565b6040519080825280601f01601f191660200182016040528015611e09576020820181803683370190505b509050600360fc1b81600081518110611e2457611e246129bb565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611e5357611e536129bb565b60200101906001600160f81b031916908160001a9053506000611e7784600261292d565b611e82906001612a2c565b90505b6001811115611efa576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611eb657611eb66129bb565b1a60f81b828281518110611ecc57611ecc6129bb565b60200101906001600160f81b031916908160001a90535060049490941c93611ef381612ca2565b9050611e85565b508315611c9e5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161073c565b6001600160a01b038216611f9f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161073c565b611fa8816114e9565b15611ff55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161073c565b61200160008383611a8e565b6001600160a01b038216600090815260036020526040812080546001929061202a908490612a2c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060816000036120af5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120d957806120c381612cb9565b91506120d29050600a83612962565b91506120b3565b60008167ffffffffffffffff8111156120f4576120f46124a0565b6040519080825280601f01601f19166020018201604052801561211e576020820181803683370190505b5090505b841561133a57612133600183612a15565b9150612140600a86612cd2565b61214b906030612a2c565b60f81b818381518110612160576121606129bb565b60200101906001600160f81b031916908160001a905350612182600a86612962565b9450612122565b6000600161219684610c1d565b6121a09190612a15565b6000838152600860205260409020549091508082146121f3576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061223890600190612a15565b6000838152600a602052604081205460098054939450909284908110612260576122606129bb565b906000526020600020015490508060098381548110612281576122816129bb565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806122b9576122b9612ce6565b6001900381819060005260206000200160009055905550505050565b60006122e083610c1d565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160e01b03198116811461125257600080fd5b60006020828403121561234157600080fd5b8135611c9e81612319565b60005b8381101561236757818101518382015260200161234f565b838111156110475750506000910152565b6000815180845261239081602086016020860161234c565b601f01601f19169290920160200192915050565b602081526000611c9e6020830184612378565b6000602082840312156123c957600080fd5b5035919050565b80356001600160a01b03811681146123e757600080fd5b919050565b600080604083850312156123ff57600080fd5b612408836123d0565b946020939093013593505050565b60008060006060848603121561242b57600080fd5b612434846123d0565b9250612442602085016123d0565b9150604084013590509250925092565b6000806040838503121561246557600080fd5b50508035926020909101359150565b6000806040838503121561248757600080fd5b82359150612497602084016123d0565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156124d1576124d16124a0565b604051601f8501601f19908116603f011681019082821181831017156124f9576124f96124a0565b8160405280935085815286868601111561251257600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261253d57600080fd5b611c9e838335602085016124b6565b803560ff811681146123e757600080fd5b600080600080600080600080610100898b03121561257a57600080fd5b612583896123d0565b975060208901359650604089013567ffffffffffffffff8111156125a657600080fd5b6125b28b828c0161252c565b96505060608901359450608089013593506125cf60a08a0161254c565b925060c0890135915060e089013590509295985092959890939650565b6000602082840312156125fe57600080fd5b611c9e826123d0565b600080600080600080600060e0888a03121561262257600080fd5b61262b886123d0565b965060208801359550604088013594506060880135935061264e6080890161254c565b925060a0880135915060c0880135905092959891949750929550565b6000806040838503121561267d57600080fd5b612686836123d0565b91506020830135801515811461269b57600080fd5b809150509250929050565b6000806000606084860312156126bb57600080fd5b83359250602084013567ffffffffffffffff8111156126d957600080fd5b6126e58682870161252c565b925050604084013590509250925092565b6000806000806080858703121561270c57600080fd5b612715856123d0565b9350612723602086016123d0565b925060408501359150606085013567ffffffffffffffff81111561274657600080fd5b8501601f8101871361275757600080fd5b612766878235602084016124b6565b91505092959194509250565b6000806040838503121561278557600080fd5b61278e836123d0565b9150612497602084016123d0565b600181811c908216806127b057607f821691505b6020821081036127d057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561287557816000190482111561285b5761285b612824565b8085161561286857918102915b93841c939080029061283f565b509250929050565b60008261288c57506001610609565b8161289957506000610609565b81600181146128af57600281146128b9576128d5565b6001915050610609565b60ff8411156128ca576128ca612824565b50506001821b610609565b5060208310610133831016604e8410600b84101617156128f8575081810a610609565b612902838361283a565b806000190482111561291657612916612824565b029392505050565b6000611c9e60ff84168361287d565b600081600019048311821515161561294757612947612824565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826129715761297161294c565b500490565b60208082526025908201527f417574656e746963614552433732313a20546f6b656e20616c7265616479206d6040820152641a5b9d195960da1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60208082526024908201527f417574656e746963614552433732313a20546f6b656e20646f65736e277420656040820152631e1a5cdd60e21b606082015260800190565b600082821015612a2757612a27612824565b500390565b60008219821115612a3f57612a3f612824565b500190565b601f8211156107dd57600081815260208120601f850160051c81016020861015612a6b5750805b601f850160051c820191505b81811015612a8a57828155600101612a77565b505050505050565b815167ffffffffffffffff811115612aac57612aac6124a0565b612ac081612aba845461279c565b84612a44565b602080601f831160018114612af55760008415612add5750858301515b600019600386901b1c1916600185901b178555612a8a565b600085815260208120601f198616915b82811015612b2457888601518255948401946001909101908401612b05565b5085821015612b425787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351612bb681846020880161234c565b835190830190612bca81836020880161234c565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612c0b81601785016020880161234c565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612c3c81602884016020880161234c565b01602801949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c7b90830184612378565b9695505050505050565b600060208284031215612c9757600080fd5b8151611c9e81612319565b600081612cb157612cb1612824565b506000190190565b600060018201612ccb57612ccb612824565b5060010190565b600082612ce157612ce161294c565b500690565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220597c27530c661e48adfd01257f962052c2c72e65434524b9749826d0cf240fa264736f6c634300080f0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102325760003560e01c806370a0823111610130578063acca6b31116100b8578063d48e638a1161007c578063d48e638a1461052d578063d547741f14610540578063e985e9c514610553578063f5b541a61461058f578063f915765b146105b657600080fd5b8063acca6b311461048d578063b88d4fde146104a0578063c1e03728146104b3578063c87b56dd14610507578063c99dccf91461051a57600080fd5b806395d89b41116100ff57806395d89b41146104465780639e4c01411461044e578063a217fddf14610461578063a22cb46514610469578063abc8c7af1461047c57600080fd5b806370a08231146103fa57806373ad6c2d1461040d5780637a3e0a261461042057806391d148541461043357600080fd5b80632f2ff15d116101be57806342842e0e1161018257806342842e0e1461039b578063453ac2aa146103ae5780634f558e79146103c15780634f6ccce7146103d45780636352211e146103e757600080fd5b80632f2ff15d146103485780632f745c591461035b578063313ce5671461036e57806336568abe1461037557806340ed7b4c1461038857600080fd5b806318160ddd1161020557806318160ddd146102b457806323b872dd146102c6578063248a9ca3146102d95780632a55205a146102fc5780632e0f26251461032e57600080fd5b806301ffc9a71461023757806306fdde031461025f578063081812fc14610274578063095ea7b31461029f575b600080fd5b61024a61024536600461232f565b6105c9565b60405190151581526020015b60405180910390f35b61026761060f565b60405161025691906123a4565b6102876102823660046123b7565b6106a1565b6040516001600160a01b039091168152602001610256565b6102b26102ad3660046123ec565b6106c8565b005b6009545b604051908152602001610256565b6102b26102d4366004612416565b6107e2565b6102b86102e73660046123b7565b6000908152600b602052604090206001015490565b61030f61030a366004612452565b610813565b604080516001600160a01b039093168352602083019190915201610256565b610336600281565b60405160ff9091168152602001610256565b6102b2610356366004612474565b6108cb565b6102b86103693660046123ec565b6108f0565b6002610336565b6102b2610383366004612474565b610986565b61024a610396366004612452565b610a04565b6102b26103a9366004612416565b610a3e565b6102b26103bc36600461255d565b610a59565b61024a6103cf3660046123b7565b610b1f565b6102b86103e23660046123b7565b610b2a565b6102876103f53660046123b7565b610bbd565b6102b86104083660046125ec565b610c1d565b61028761041b3660046125ec565b610ca3565b61024a61042e366004612607565b610d70565b61024a610441366004612474565b610efa565b610267610f25565b6102b861045c3660046123b7565b610f34565b6102b8600081565b6102b261047736600461266a565b610f71565b600c546001600160a01b0316610287565b6102b261049b3660046126a6565b610f7c565b6102b26104ae3660046126f6565b611015565b6104c66104c13660046123b7565b61104d565b604051610256919081516001600160a01b03908116825260208084015190911690820152604080830151908201526060918201519181019190915260800190565b6102676105153660046123b7565b6110e7565b6102876105283660046123b7565b6110f2565b61028761053b3660046123b7565b611138565b6102b261054e366004612474565b61117b565b61024a610561366004612772565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102b87f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92981565b6102b86105c43660046123b7565b6111a0565b60006001600160e01b031982166325bb1e8760e11b14806105fa57506001600160e01b0319821663152a902d60e11b145b806106095750610609826111dd565b92915050565b60606000805461061e9061279c565b80601f016020809104026020016040519081016040528092919081815260200182805461064a9061279c565b80156106975780601f1061066c57610100808354040283529160200191610697565b820191906000526020600020905b81548152906001019060200180831161067a57829003601f168201915b5050505050905090565b60006106ac82611202565b506000908152600460205260409020546001600160a01b031690565b60006106d382610bbd565b9050806001600160a01b0316836001600160a01b0316036107455760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061076157506107618133610561565b6107d35760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606482015260840161073c565b6107dd8383611255565b505050565b6107ec33826112c3565b6108085760405162461bcd60e51b815260040161073c906127d6565b6107dd838383611342565b60008061081f846114e9565b158061084057506000848152600d60205260409020546001600160a01b0316155b8061085a57506000848152600d6020526040902060020154155b1561086a575060009050806108c4565b6000848152600d60205260409020546001600160a01b031661088e6002600a61291e565b61089990606461292d565b6000868152600d60205260409020600201546108b5908661292d565b6108bf9190612962565b915091505b9250929050565b6000828152600b60205260409020600101546108e681611506565b6107dd8383611510565b60006108fb83610c1d565b821061095d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161073c565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6001600160a01b03811633146109f65760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161073c565b610a008282611596565b5050565b6000610a0f836114e9565b15610a2c5760405162461bcd60e51b815260040161073c90612976565b610a35826115fd565b50600192915050565b6107dd83838360405180602001604052806000815250611015565b610a6888888787878787610d70565b50610a738888611689565b610a7d87876116a3565b6040518060800160405280896001600160a01b03168152602001610a9e3390565b6001600160a01b0390811682526020808301899052604092830188905260008b8152600d8252839020845181549084166001600160a01b0319918216178255918501516001820180549185169190931617909155918301516002830155606090920151600390910155600c54610b15911688611255565b5050505050505050565b6000610609826114e9565b6000610b3560095490565b8210610b985760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161073c565b60098281548110610bab57610bab6129bb565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106095760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161073c565b60006001600160a01b038216610c875760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161073c565b506001600160a01b031660009081526003602052604090205490565b6000610caf8133610efa565b610d105760405162461bcd60e51b815260206004820152602c60248201527f417574656e746963614552433732313a204f6e6c792061646d696e732063616e60448201526b206368616e6765207468697360a01b606482015260840161073c565b600c80546001600160a01b038481166001600160a01b0319831681179093556040519116919082907ea65b4099f660d62e650fc92aa9c593d212d37b69d763939568ef02d7b78b5190600090a35050600c546001600160a01b0316919050565b6000610d7b876114e9565b15610d985760405162461bcd60e51b815260040161073c90612976565b610da1866115fd565b610daa856115fd565b6001600160a01b0388163303610e195760405162461bcd60e51b815260206004820152602e60248201527f417574656e746963614552433732313a20496e766573746f722063616e27742060448201526d3132903a34329031b932b0ba37b960911b606482015260840161073c565b610e2888888888888888611727565b610e7f5760405162461bcd60e51b815260206004820152602260248201527f417574656e746963614552433732313a20496e76616c6964207369676e617475604482015261726560f01b606482015260840161073c565b600c546001600160a01b0316610eec5760405162461bcd60e51b815260206004820152602c60248201527f417574656e746963614552433732313a204d61726b6574706c6163652061646460448201526b1c995cdcc81b9bdd081cd95d60a21b606482015260840161073c565b506001979650505050505050565b6000918252600b602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606001805461061e9061279c565b6000610f3f826114e9565b610f5b5760405162461bcd60e51b815260040161073c906129d1565b506000908152600d602052604090206002015490565b610a00338383611860565b610f868382610a04565b5033610f928185611689565b610f9c84846116a3565b604080516080810182526001600160a01b0392831681526000602080830182815283850196875260608401838152988352600d909152929020905181549084166001600160a01b031991821617825591516001820180549190941692169190911790915590516002820155915160039092019190915550565b61101f33836112c3565b61103b5760405162461bcd60e51b815260040161073c906127d6565b6110478484848461192e565b50505050565b60408051608081018252600080825260208201819052918101829052606081019190915261107a826114e9565b6110965760405162461bcd60e51b815260040161073c906129d1565b506000908152600d6020908152604091829020825160808101845281546001600160a01b03908116825260018301541692810192909252600281015492820192909252600390910154606082015290565b606061060982611961565b60006110fd826114e9565b6111195760405162461bcd60e51b815260040161073c906129d1565b506000908152600d60205260409020600101546001600160a01b031690565b6000611143826114e9565b61115f5760405162461bcd60e51b815260040161073c906129d1565b506000908152600d60205260409020546001600160a01b031690565b6000828152600b602052604090206001015461119681611506565b6107dd8383611596565b60006111ab826114e9565b6111c75760405162461bcd60e51b815260040161073c906129d1565b506000908152600d602052604090206003015490565b60006001600160e01b03198216637965db0b60e01b1480610609575061060982611a69565b61120b816114e9565b6112525760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161073c565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061128a82610bbd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806112cf83610bbd565b9050806001600160a01b0316846001600160a01b0316148061131657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061133a5750836001600160a01b031661132f846106a1565b6001600160a01b0316145b949350505050565b826001600160a01b031661135582610bbd565b6001600160a01b0316146113b95760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161073c565b6001600160a01b03821661141b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161073c565b611426838383611a8e565b611431600082611255565b6001600160a01b038316600090815260036020526040812080546001929061145a908490612a15565b90915550506001600160a01b0382166000908152600360205260408120805460019290611488908490612a2c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000908152600260205260409020546001600160a01b0316151590565b6112528133611a99565b61151a8282610efa565b610a00576000828152600b602090815260408083206001600160a01b03851684529091529020805460ff191660011790556115523390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6115a08282610efa565b15610a00576000828152600b602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6116096002600a61291e565b61161490606461292d565b8111156112525760405162461bcd60e51b815260206004820152603760248201527f417574656e746963614552433732313a20466565206d757374206265206c657360448201527f73207468616e206f7220657175616c20746f2031303025000000000000000000606482015260840161073c565b610a00828260405180602001604052806000815250611afd565b6116ac826114e9565b61170f5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b606482015260840161073c565b60008281526006602052604090206107dd8282612a92565b60408051306020808301919091526001600160a01b038a1682840152606082018990526080820188905260a08083018890528351808403909101815260c0830190935282519201919091207f19457468657265756d205369676e6564204d6573736167653a0a33320000000060e083015260fc8201819052600091829060019061011c0160408051601f198184030181528282528051602091820120600084529083018083525260ff891690820152606081018790526080810186905260a0016020604051602081039080840390855afa158015611809573d6000803e3d6000fd5b5050604051601f19015191506118229050600082610efa565b8061185257506118527f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92982610efa565b9a9950505050505050505050565b816001600160a01b0316836001600160a01b0316036118c15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161073c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611939848484611342565b61194584848484611b30565b6110475760405162461bcd60e51b815260040161073c90612b52565b606061196c82611202565b600082815260066020526040812080546119859061279c565b80601f01602080910402602001604051908101604052809291908181526020018280546119b19061279c565b80156119fe5780601f106119d3576101008083540402835291602001916119fe565b820191906000526020600020905b8154815290600101906020018083116119e157829003601f168201915b505050505090506000611a1c60408051602081019091526000815290565b90508051600003611a2e575092915050565b815115611a60578082604051602001611a48929190612ba4565b60405160208183030381529060405292505050919050565b61133a84611c31565b60006001600160e01b0319821663780e9d6360e01b1480610609575061060982611ca5565b6107dd838383611cf5565b611aa38282610efa565b610a0057611abb816001600160a01b03166014611dad565b611ac6836020611dad565b604051602001611ad7929190612bd3565b60408051601f198184030181529082905262461bcd60e51b825261073c916004016123a4565b611b078383611f49565b611b146000848484611b30565b6107dd5760405162461bcd60e51b815260040161073c90612b52565b60006001600160a01b0384163b15611c2657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b74903390899088908890600401612c48565b6020604051808303816000875af1925050508015611baf575060408051601f3d908101601f19168201909252611bac91810190612c85565b60015b611c0c573d808015611bdd576040519150601f19603f3d011682016040523d82523d6000602084013e611be2565b606091505b508051600003611c045760405162461bcd60e51b815260040161073c90612b52565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061133a565b506001949350505050565b6060611c3c82611202565b6000611c5360408051602081019091526000815290565b90506000815111611c735760405180602001604052806000815250611c9e565b80611c7d84612088565b604051602001611c8e929190612ba4565b6040516020818303038152906040525b9392505050565b60006001600160e01b031982166380ac58cd60e01b1480611cd657506001600160e01b03198216635b5e139f60e01b145b8061060957506301ffc9a760e01b6001600160e01b0319831614610609565b6001600160a01b038316611d5057611d4b81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611d73565b816001600160a01b0316836001600160a01b031614611d7357611d738382612189565b6001600160a01b038216611d8a576107dd81612226565b826001600160a01b0316826001600160a01b0316146107dd576107dd82826122d5565b60606000611dbc83600261292d565b611dc7906002612a2c565b67ffffffffffffffff811115611ddf57611ddf6124a0565b6040519080825280601f01601f191660200182016040528015611e09576020820181803683370190505b509050600360fc1b81600081518110611e2457611e246129bb565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611e5357611e536129bb565b60200101906001600160f81b031916908160001a9053506000611e7784600261292d565b611e82906001612a2c565b90505b6001811115611efa576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611eb657611eb66129bb565b1a60f81b828281518110611ecc57611ecc6129bb565b60200101906001600160f81b031916908160001a90535060049490941c93611ef381612ca2565b9050611e85565b508315611c9e5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161073c565b6001600160a01b038216611f9f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161073c565b611fa8816114e9565b15611ff55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161073c565b61200160008383611a8e565b6001600160a01b038216600090815260036020526040812080546001929061202a908490612a2c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060816000036120af5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120d957806120c381612cb9565b91506120d29050600a83612962565b91506120b3565b60008167ffffffffffffffff8111156120f4576120f46124a0565b6040519080825280601f01601f19166020018201604052801561211e576020820181803683370190505b5090505b841561133a57612133600183612a15565b9150612140600a86612cd2565b61214b906030612a2c565b60f81b818381518110612160576121606129bb565b60200101906001600160f81b031916908160001a905350612182600a86612962565b9450612122565b6000600161219684610c1d565b6121a09190612a15565b6000838152600860205260409020549091508082146121f3576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061223890600190612a15565b6000838152600a602052604081205460098054939450909284908110612260576122606129bb565b906000526020600020015490508060098381548110612281576122816129bb565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806122b9576122b9612ce6565b6001900381819060005260206000200160009055905550505050565b60006122e083610c1d565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160e01b03198116811461125257600080fd5b60006020828403121561234157600080fd5b8135611c9e81612319565b60005b8381101561236757818101518382015260200161234f565b838111156110475750506000910152565b6000815180845261239081602086016020860161234c565b601f01601f19169290920160200192915050565b602081526000611c9e6020830184612378565b6000602082840312156123c957600080fd5b5035919050565b80356001600160a01b03811681146123e757600080fd5b919050565b600080604083850312156123ff57600080fd5b612408836123d0565b946020939093013593505050565b60008060006060848603121561242b57600080fd5b612434846123d0565b9250612442602085016123d0565b9150604084013590509250925092565b6000806040838503121561246557600080fd5b50508035926020909101359150565b6000806040838503121561248757600080fd5b82359150612497602084016123d0565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156124d1576124d16124a0565b604051601f8501601f19908116603f011681019082821181831017156124f9576124f96124a0565b8160405280935085815286868601111561251257600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261253d57600080fd5b611c9e838335602085016124b6565b803560ff811681146123e757600080fd5b600080600080600080600080610100898b03121561257a57600080fd5b612583896123d0565b975060208901359650604089013567ffffffffffffffff8111156125a657600080fd5b6125b28b828c0161252c565b96505060608901359450608089013593506125cf60a08a0161254c565b925060c0890135915060e089013590509295985092959890939650565b6000602082840312156125fe57600080fd5b611c9e826123d0565b600080600080600080600060e0888a03121561262257600080fd5b61262b886123d0565b965060208801359550604088013594506060880135935061264e6080890161254c565b925060a0880135915060c0880135905092959891949750929550565b6000806040838503121561267d57600080fd5b612686836123d0565b91506020830135801515811461269b57600080fd5b809150509250929050565b6000806000606084860312156126bb57600080fd5b83359250602084013567ffffffffffffffff8111156126d957600080fd5b6126e58682870161252c565b925050604084013590509250925092565b6000806000806080858703121561270c57600080fd5b612715856123d0565b9350612723602086016123d0565b925060408501359150606085013567ffffffffffffffff81111561274657600080fd5b8501601f8101871361275757600080fd5b612766878235602084016124b6565b91505092959194509250565b6000806040838503121561278557600080fd5b61278e836123d0565b9150612497602084016123d0565b600181811c908216806127b057607f821691505b6020821081036127d057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561287557816000190482111561285b5761285b612824565b8085161561286857918102915b93841c939080029061283f565b509250929050565b60008261288c57506001610609565b8161289957506000610609565b81600181146128af57600281146128b9576128d5565b6001915050610609565b60ff8411156128ca576128ca612824565b50506001821b610609565b5060208310610133831016604e8410600b84101617156128f8575081810a610609565b612902838361283a565b806000190482111561291657612916612824565b029392505050565b6000611c9e60ff84168361287d565b600081600019048311821515161561294757612947612824565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826129715761297161294c565b500490565b60208082526025908201527f417574656e746963614552433732313a20546f6b656e20616c7265616479206d6040820152641a5b9d195960da1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60208082526024908201527f417574656e746963614552433732313a20546f6b656e20646f65736e277420656040820152631e1a5cdd60e21b606082015260800190565b600082821015612a2757612a27612824565b500390565b60008219821115612a3f57612a3f612824565b500190565b601f8211156107dd57600081815260208120601f850160051c81016020861015612a6b5750805b601f850160051c820191505b81811015612a8a57828155600101612a77565b505050505050565b815167ffffffffffffffff811115612aac57612aac6124a0565b612ac081612aba845461279c565b84612a44565b602080601f831160018114612af55760008415612add5750858301515b600019600386901b1c1916600185901b178555612a8a565b600085815260208120601f198616915b82811015612b2457888601518255948401946001909101908401612b05565b5085821015612b425787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351612bb681846020880161234c565b835190830190612bca81836020880161234c565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612c0b81601785016020880161234c565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612c3c81602884016020880161234c565b01602801949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c7b90830184612378565b9695505050505050565b600060208284031215612c9757600080fd5b8151611c9e81612319565b600081612cb157612cb1612824565b506000190190565b600060018201612ccb57612ccb612824565b5060010190565b600082612ce157612ce161294c565b500690565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220597c27530c661e48adfd01257f962052c2c72e65434524b9749826d0cf240fa264736f6c634300080f0033
Loading...
Loading
Loading...
Loading
OVERVIEW
Collection of authentic NFTs minted on Autentica NFT Marketplace.Multichain Portfolio | 27 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.