Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
RarePizzas
Compiler Version
v0.8.6+commit.11564f7e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol'; import '@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol'; import '@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol'; import '@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721EnumerableUpgradeable.sol'; import '@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol'; import '@openzeppelin/contracts-upgradeable/utils/CountersUpgradeable.sol'; import '@openzeppelin/contracts-upgradeable/utils/math/SafeMathUpgradeable.sol'; import '@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol'; import '@chainlink/contracts/src/v0.6/interfaces/AggregatorV3Interface.sol'; import '../interfaces/IOpenSeaCompatible.sol'; import '../interfaces/IRarePizzas.sol'; import '../interfaces/IRarePizzasAdmin.sol'; import '../interfaces/IRarePizzasBox.sol'; import '../interfaces/IOrderAPIConsumer.sol'; contract RarePizzas is OwnableUpgradeable, ReentrancyGuardUpgradeable, ERC721EnumerableUpgradeable, IRarePizzas, IRarePizzasAdmin, IOrderAPICallback, IOpenSeaCompatible { using AddressUpgradeable for address; using StringsUpgradeable for uint256; using CountersUpgradeable for CountersUpgradeable.Counter; using SafeMathUpgradeable for uint256; event SaleActive(bool state); event RarePizzasBoxContractUpdated(address previous, address current); event OrderAPIClientUpdated(address previous, address current); event InternalArtworkAssigned(uint256 tokenId, bytes32 artworkURI); // V1 Variables (do not modify this section when upgrading) bool public saleIsActive; bytes constant sha256MultiHash = hex'1220'; bytes constant ALPHABET = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'; string public constant _uriBase = 'ipfs://'; string private _contractURI; // Other contracts this contract interacts with IOrderAPIConsumer internal _orderAPIClient; IRarePizzasBox internal _rarePizzasBoxContract; // A collection of Box Token Id's that have been redeemed mapping(uint256 => address) internal _redeemedBoxTokenAddress; // A collection of all of the pizza artwork IPFS hashes mapping(uint256 => bytes32) internal _tokenPizzaArtworkURIs; // A collection of render jobs associated with the requestor mapping(bytes32 => address) internal _renderRequests; // A collection of render jobs associated with the box token id mapping(bytes32 => uint256) internal _renderTokenIds; // END V1 Variables function initialize(address rarePizzasBoxContract) public initializer { __Ownable_init(); __ReentrancyGuard_init(); __ERC721_init('Rare Pizzas', 'PIZZA'); saleIsActive = false; if (rarePizzasBoxContract != address(0)) { _rarePizzasBoxContract = IRarePizzasBox(rarePizzasBoxContract); } _contractURI = 'https://raw.githubusercontent.com/PizzaDAO/pizza-smartcontract/master/data/opensea_pizza_metadata.mainnet.json'; } // IOpenSeaCompatible function contractURI() public view virtual override returns (string memory) { return _contractURI; } function setContractURI(string memory URI) external virtual override onlyOwner { _contractURI = URI; } // IRarePizzas function isRedeemed(uint256 boxTokenId) public view override returns (bool) { return _redeemedBoxTokenAddress[boxTokenId] != address(0); } function addressOfRedeemer(uint256 boxTokenId) public view override returns (address) { return _redeemedBoxTokenAddress[boxTokenId]; } function redeemRarePizzasBox(uint256 boxTokenId, uint256 recipeId) public override nonReentrant { require(saleIsActive == true, 'redeem not active'); require(_msgSender() == _rarePizzasBoxContract.ownerOf(boxTokenId), 'caller must own box'); _redeemRarePizzasBox(_msgSender(), boxTokenId, recipeId); } // IOrderAPICallback // handle the callback from the order api function fulfillResponse(bytes32 request, bytes32 result) public virtual override nonReentrant { require(_msgSender() == address(_orderAPIClient), 'caller not order api'); address requestor = _renderRequests[request]; require(requestor != address(0), 'valid request must exist'); uint256 boxTokenId = _renderTokenIds[request]; require(!_exists(boxTokenId), 'token already redeemed'); _internalMintPizza(requestor, boxTokenId, result); } // IERC721 Overrides function tokenURI(uint256 tokenId) public view virtual override(ERC721Upgradeable, IERC721MetadataUpgradeable) returns (string memory) { require(_exists(tokenId), 'does not exist, paisano'); return string(abi.encodePacked(_uriBase, _base58Encode(_tokenPizzaArtworkURIs[tokenId]))); } // IRarePizzasAdmin // set the address of the order api client function setOrderAPIClient(address orderAPIClient) public virtual override onlyOwner { address previous = address(_orderAPIClient); _orderAPIClient = IOrderAPIConsumer(orderAPIClient); emit OrderAPIClientUpdated(previous, address(_orderAPIClient)); } // set the box contract address function setRarePizzasBoxContract(address boxContract) public virtual override onlyOwner { address previous = address(_rarePizzasBoxContract); _rarePizzasBoxContract = IRarePizzasBox(boxContract); emit RarePizzasBoxContractUpdated(previous, address(_rarePizzasBoxContract)); } // the multi sig can update the artwork for a pizza function setPizzaArtworkURI(uint256 tokenId, bytes32 artworkURI) public virtual override onlyOwner { _tokenPizzaArtworkURIs[tokenId] = artworkURI; emit InternalArtworkAssigned(tokenId, artworkURI); } function toggleSaleIsActive() public virtual override onlyOwner { saleIsActive = !saleIsActive; emit SaleActive(saleIsActive); } function withdraw() public virtual override onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } // Internal Stuff function _assignPizzaArtwork(uint256 tokenId, bytes32 artworkURI) internal virtual { _tokenPizzaArtworkURIs[tokenId] = artworkURI; emit InternalArtworkAssigned(tokenId, artworkURI); } function _getPizzaTokenId(uint256 boxTokenId) internal view virtual returns (uint256) { return boxTokenId; } function _externalMintPizza( address requestor, uint256 boxTokenId, uint256 recipeId ) internal virtual { (bool success, bytes memory data) = address(_orderAPIClient).call( abi.encodeWithSignature('executeRequest(address,uint256,uint256)', requestor, boxTokenId, recipeId) ); require(success == true, 'external call failed'); bytes32 requestId = bytes32(data); _renderRequests[requestId] = requestor; _renderTokenIds[requestId] = boxTokenId; } function _internalMintPizza( address requestor, uint256 boxTokenId, bytes32 artwork ) internal virtual { uint256 id = _getPizzaTokenId(boxTokenId); _safeMint(requestor, id); _assignPizzaArtwork(id, artwork); } function _redeemRarePizzasBox( address requestor, uint256 boxTokenId, uint256 recipeId ) internal virtual { require(_redeemedBoxTokenAddress[boxTokenId] == address(0), 'box already redeemed'); _redeemedBoxTokenAddress[boxTokenId] = requestor; _externalMintPizza(requestor, boxTokenId, recipeId); } function _base58Encode(bytes32 input) internal pure virtual returns (bytes memory) { // based on: https://github.com/MrChico/verifyIPFS/blob/master/contracts/verifyIPFS.sol#L28 if (input.length == 0) return new bytes(0); // prepend the stripped multihash values bytes memory source = abi.encodePacked(sha256MultiHash, input); // the ipfs hash takes up 46 characters uint8[] memory digits = new uint8[](46); digits[0] = 0; uint8 digitlength = 1; for (uint256 i = 0; i < source.length; ++i) { uint256 carry = uint8(source[i]); for (uint256 j = 0; j < digitlength; ++j) { carry += uint256(digits[j]) * 256; digits[j] = uint8(carry % 58); carry = carry / 58; } while (carry > 0) { digits[digitlength] = uint8(carry % 58); digitlength++; carry = carry / 58; } } return _toAlphabet(_reverse(digits)); } function _reverse(uint8[] memory input) internal pure virtual returns (uint8[] memory) { uint8[] memory output = new uint8[](input.length); for (uint256 i = 0; i < input.length; i++) { output[i] = input[input.length - 1 - i]; } return output; } function _toAlphabet(uint8[] memory indices) internal pure virtual returns (bytes memory) { bytes memory output = new bytes(indices.length); for (uint256 i = 0; i < indices.length; i++) { output[i] = ALPHABET[indices[i]]; } return output; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal initializer { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal initializer { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuardUpgradeable is Initializable { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; function __ReentrancyGuard_init() internal initializer { __ReentrancyGuard_init_unchained(); } function __ReentrancyGuard_init_unchained() internal initializer { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721Upgradeable.sol"; import "./IERC721ReceiverUpgradeable.sol"; import "./extensions/IERC721MetadataUpgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import "../../utils/StringsUpgradeable.sol"; import "../../utils/introspection/ERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.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 ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable 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. */ function __ERC721_init(string memory name_, string memory symbol_) internal initializer { __Context_init_unchained(); __ERC165_init_unchained(); __ERC721_init_unchained(name_, symbol_); } function __ERC721_init_unchained(string memory name_, string memory symbol_) internal initializer { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); 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: owner query for nonexistent token"); 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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721Upgradeable.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not 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: transfer caller is not 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) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721Upgradeable.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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); } /** * @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 = ERC721Upgradeable.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); } /** * @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(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); 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); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721Upgradeable.ownerOf(tokenId), to, tokenId); } /** * @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 IERC721ReceiverUpgradeable(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721ReceiverUpgradeable.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { 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 {} uint256[44] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721Upgradeable.sol"; import "./IERC721EnumerableUpgradeable.sol"; import "../../../proxy/utils/Initializable.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 ERC721EnumerableUpgradeable is Initializable, ERC721Upgradeable, IERC721EnumerableUpgradeable { function __ERC721Enumerable_init() internal initializer { __Context_init_unchained(); __ERC165_init_unchained(); __ERC721Enumerable_init_unchained(); } function __ERC721Enumerable_init_unchained() internal initializer { } // 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(IERC165Upgradeable, ERC721Upgradeable) returns (bool) { return interfaceId == type(IERC721EnumerableUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721Upgradeable.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 < ERC721EnumerableUpgradeable.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 = ERC721Upgradeable.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 = ERC721Upgradeable.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(); } uint256[46] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library CountersUpgradeable { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMathUpgradeable { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0; interface AggregatorV3Interface { function decimals() external view returns (uint8); function description() external view returns (string memory); function version() external view returns (uint256); // getRoundData and latestRoundData should both raise "No data present" // if they do not have data to report, instead of returning unset values // which could be misinterpreted as actual reported values. function getRoundData(uint80 _roundId) external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); function latestRoundData() external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/IERC721MetadataUpgradeable.sol"; interface IOpenSeaCompatible is IERC721MetadataUpgradeable { /** * Get the contract metadata */ function contractURI() external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts-upgradeable/token/ERC721/extensions/IERC721EnumerableUpgradeable.sol'; /** * Public interface for interacting with rare pizzas. * */ interface IRarePizzas { /** * Verify if a specific box has already been redeemed */ function isRedeemed(uint256 boxTokenId) external view returns (bool); /** * Get the address of the user that redeemed */ function addressOfRedeemer(uint256 boxTokenId) external view returns (address); /** * Redeem a RarePizzasBox for a pizza */ function redeemRarePizzasBox(uint256 boxTokenId, uint256 recipeId) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IRarePizzasAdmin { /** * set the contract URI that opensea uses for collections */ function setContractURI(string memory URI) external; /** * Set the contract for the order api client */ function setOrderAPIClient(address orderAPIClient) external; /** * Set the contract for boxes */ function setRarePizzasBoxContract(address boxContract) external; /** * Set the artwork for a specific tokenid (emergencies only) */ function setPizzaArtworkURI(uint256 tokenId, bytes32 uri) external; function toggleSaleIsActive() external; /** * Withdraw ether from this contract (Callable by owner) */ function withdraw() external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts-upgradeable/token/ERC721/extensions/IERC721EnumerableUpgradeable.sol'; /** * Public interface for interacting with rare pizzas */ interface IRarePizzasBox is IERC721EnumerableUpgradeable { /** * Get the btc eth exchange rate as set by the contract admin or * queried from an oracle */ function getBitcoinPriceInWei() external view returns (uint256); /** * Get the current price on the bonding curve * the btc/eth exchange rate * may be an alias to getPriceInWei() */ function getPrice() external view returns (uint256); /** * Get the current price on the bonding curve * the btc/eth exchange rate */ function getPriceInWei() external view returns (uint256); /** * Get the maximum supply of tokens */ function maxSupply() external view returns (uint256); /** * Try to purchase one token */ function purchase() external payable; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IOrderAPIConsumer { /** * Call the rendering API */ function executeRequest( address requestor, uint256 tokenId, uint256 recipeId ) external returns (bytes32 requestId); } interface IOrderAPICallback { /** * handle the return result from the order api */ function fulfillResponse(bytes32 requestId, bytes32 result) external; } interface IOrderAPIConsumerAdmin { function setAuthorizedRequestor(address requestor) external; /** * set the callback address used by the consumer */ function setCallback(address callback) external; /** * Set the job id */ function setJobId(string memory jobId) external; /** * Set the fee for executing the job */ function setFee(uint256 fee) external; function withdrawLink() external; function withdraw() external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721ReceiverUpgradeable { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721MetadataUpgradeable is IERC721Upgradeable { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.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 ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal initializer { __ERC165_init_unchained(); } function __ERC165_init_unchained() internal initializer { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165Upgradeable { /** * @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 pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721EnumerableUpgradeable is IERC721Upgradeable { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"artworkURI","type":"bytes32"}],"name":"InternalArtworkAssigned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previous","type":"address"},{"indexed":false,"internalType":"address","name":"current","type":"address"}],"name":"OrderAPIClientUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previous","type":"address"},{"indexed":false,"internalType":"address","name":"current","type":"address"}],"name":"RarePizzasBoxContractUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"state","type":"bool"}],"name":"SaleActive","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":"_uriBase","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"boxTokenId","type":"uint256"}],"name":"addressOfRedeemer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"request","type":"bytes32"},{"internalType":"bytes32","name":"result","type":"bytes32"}],"name":"fulfillResponse","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"rarePizzasBoxContract","type":"address"}],"name":"initialize","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":[{"internalType":"uint256","name":"boxTokenId","type":"uint256"}],"name":"isRedeemed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"boxTokenId","type":"uint256"},{"internalType":"uint256","name":"recipeId","type":"uint256"}],"name":"redeemRarePizzasBox","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"orderAPIClient","type":"address"}],"name":"setOrderAPIClient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes32","name":"artworkURI","type":"bytes32"}],"name":"setPizzaArtworkURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"boxContract","type":"address"}],"name":"setRarePizzasBoxContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleIsActive","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50612cea806100206000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c80638bff31771161011a578063b633a513116100ad578063e16eb95c1161007c578063e16eb95c14610442578063e8a3d4851461046c578063e985e9c514610474578063eb8d2444146104b0578063f2fde38b146104be57600080fd5b8063b633a513146103f6578063b88d4fde14610409578063c4d66de81461041c578063c87b56dd1461042f57600080fd5b8063a11d1226116100e9578063a11d1226146103a2578063a22cb465146103aa578063a9b6b0c0146103bd578063b5d2709c146103d057600080fd5b80638bff3177146103635780638da5cb5b14610376578063938e3d7b1461038757806395d89b411461039a57600080fd5b80632f745c59116101925780634f6ccce7116101615780634f6ccce7146103225780636352211e1461033557806370a0823114610348578063715018a61461035b57600080fd5b80632f745c59146102c857806332d33cd0146102db5780633ccfd60b1461030757806342842e0e1461030f57600080fd5b8063095ea7b3116101ce578063095ea7b31461027d5780630b0b980a1461029057806318160ddd146102a357806323b872dd146102b557600080fd5b806301ffc9a71461020057806306fdde0314610228578063075570f31461023d578063081812fc14610252575b600080fd5b61021361020e36600461278f565b6104d1565b60405190151581526020015b60405180910390f35b6102306104fc565b60405161021f9190612901565b61025061024b36600461276d565b61058e565b005b610265610260366004612812565b61071e565b6040516001600160a01b03909116815260200161021f565b61025061028b366004612741565b6107b3565b61025061029e3660046125d3565b6108c9565b60fd545b60405190815260200161021f565b6102506102c336600461264d565b610956565b6102a76102d6366004612741565b610987565b6102136102e9366004612812565b600090815261013160205260409020546001600160a01b0316151590565b610250610a1d565b61025061031d36600461264d565b610a7a565b6102a7610330366004612812565b610a95565b610265610343366004612812565b610b28565b6102a76103563660046125d3565b610b9f565b610250610c26565b61025061037136600461276d565b610c5c565b6033546001600160a01b0316610265565b6102506103953660046127c9565b610ccf565b610230610d0d565b610250610d1c565b6102506103b836600461270e565b610d94565b6102506103cb36600461276d565b610e59565b61023060405180604001604052806007815260200166697066733a2f2f60c81b81525081565b6102506104043660046125d3565b610fff565b61025061041736600461268e565b611084565b61025061042a3660046125d3565b6110bc565b61023061043d366004612812565b6111e8565b610265610450366004612812565b600090815261013160205260409020546001600160a01b031690565b6102306112b3565b610213610482366004612614565b6001600160a01b03918216600090815260ce6020908152604080832093909416825291909152205460ff1690565b61012d546102139060ff1681565b6102506104cc3660046125d3565b6112c3565b60006001600160e01b0319821663780e9d6360e01b14806104f657506104f68261135e565b92915050565b606060c9805461050b90612aef565b80601f016020809104026020016040519081016040528092919081815260200182805461053790612aef565b80156105845780601f1061055957610100808354040283529160200191610584565b820191906000526020600020905b81548152906001019060200180831161056757829003601f168201915b5050505050905090565b600260655414156105e65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260655561012d5460ff1615156001146106375760405162461bcd60e51b815260206004820152601160248201527072656465656d206e6f742061637469766560781b60448201526064016105dd565b610130546040516331a9108f60e11b8152600481018490526001600160a01b0390911690636352211e9060240160206040518083038186803b15801561067c57600080fd5b505afa158015610690573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b491906125f7565b6001600160a01b0316336001600160a01b03161461070a5760405162461bcd60e51b81526020600482015260136024820152720c6c2d8d8cae440daeae6e840deeedc40c4def606b1b60448201526064016105dd565b6107153383836113ae565b50506001606555565b600081815260cb60205260408120546001600160a01b03166107975760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105dd565b50600090815260cd60205260409020546001600160a01b031690565b60006107be82610b28565b9050806001600160a01b0316836001600160a01b0316141561082c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105dd565b336001600160a01b038216148061084857506108488133610482565b6108ba5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105dd565b6108c4838361143e565b505050565b6033546001600160a01b031633146108f35760405162461bcd60e51b81526004016105dd906129b4565b61013080546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527f940e2111d8699b208973b566da14572b6539f804f8a19f296b6e185a7c08ca5b91015b60405180910390a15050565b61096033826114ac565b61097c5760405162461bcd60e51b81526004016105dd906129e9565b6108c48383836115a3565b600061099283610b9f565b82106109f45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105dd565b506001600160a01b0391909116600090815260fb60209081526040808320938352929052205490565b6033546001600160a01b03163314610a475760405162461bcd60e51b81526004016105dd906129b4565b6040514790339082156108fc029083906000818181858888f19350505050158015610a76573d6000803e3d6000fd5b5050565b6108c483838360405180602001604052806000815250611084565b6000610aa060fd5490565b8210610b035760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105dd565b60fd8281548110610b1657610b16612bb5565b90600052602060002001549050919050565b600081815260cb60205260408120546001600160a01b0316806104f65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105dd565b60006001600160a01b038216610c0a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105dd565b506001600160a01b0316600090815260cc602052604090205490565b6033546001600160a01b03163314610c505760405162461bcd60e51b81526004016105dd906129b4565b610c5a600061174e565b565b6033546001600160a01b03163314610c865760405162461bcd60e51b81526004016105dd906129b4565b6000828152610132602090815260409182902083905581518481529081018390527ff774598333dc628ddee2328e70417f814873bcd17b0b2f832a7bcd061315db47910161094a565b6033546001600160a01b03163314610cf95760405162461bcd60e51b81526004016105dd906129b4565b8051610a769061012e9060208401906124c4565b606060ca805461050b90612aef565b6033546001600160a01b03163314610d465760405162461bcd60e51b81526004016105dd906129b4565b61012d805460ff8082161560ff1990921682179092556040519116151581527fe8a4303c22d8b575a6f175ea4803f56b0a4551ac9e22153304feb0ddfd6143559060200160405180910390a1565b6001600160a01b038216331415610ded5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105dd565b33600081815260ce602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60026065541415610eac5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105dd565b600260655561012f546001600160a01b0316336001600160a01b031614610f0c5760405162461bcd60e51b815260206004820152601460248201527363616c6c6572206e6f74206f726465722061706960601b60448201526064016105dd565b600082815261013360205260409020546001600160a01b031680610f725760405162461bcd60e51b815260206004820152601860248201527f76616c69642072657175657374206d757374206578697374000000000000000060448201526064016105dd565b60008381526101346020526040902054610fa381600090815260cb60205260409020546001600160a01b0316151590565b15610fe95760405162461bcd60e51b81526020600482015260166024820152751d1bdad95b88185b1c9958591e481c995919595b595960521b60448201526064016105dd565b610ff48282856117a0565b505060016065555050565b6033546001600160a01b031633146110295760405162461bcd60e51b81526004016105dd906129b4565b61012f80546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527f8c89864e929ededacf670ea76860db1a79aca04b949432506ed4ae06cecd761a910161094a565b61108e33836114ac565b6110aa5760405162461bcd60e51b81526004016105dd906129e9565b6110b6848484846117b5565b50505050565b600054610100900460ff16806110d5575060005460ff16155b6110f15760405162461bcd60e51b81526004016105dd90612966565b600054610100900460ff16158015611113576000805461ffff19166101011790555b61111b6117e8565b611123611863565b61116d6040518060400160405280600b81526020016a526172652050697a7a617360a81b8152506040518060400160405280600581526020016450495a5a4160d81b8152506118c2565b61012d805460ff191690556001600160a01b038216156111a45761013080546001600160a01b0319166001600160a01b0384161790555b6040518060a00160405280606e8152602001612c0d606e913980516111d29161012e916020909101906124c4565b508015610a76576000805461ff00191690555050565b600081815260cb60205260409020546060906001600160a01b031661124f5760405162461bcd60e51b815260206004820152601760248201527f646f6573206e6f742065786973742c2070616973616e6f00000000000000000060448201526064016105dd565b60405180604001604052806007815260200166697066733a2f2f60c81b81525061128c610132600085815260200190815260200160002054611949565b60405160200161129d929190612895565b6040516020818303038152906040529050919050565b606061012e805461050b90612aef565b6033546001600160a01b031633146112ed5760405162461bcd60e51b81526004016105dd906129b4565b6001600160a01b0381166113525760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105dd565b61135b8161174e565b50565b60006001600160e01b031982166380ac58cd60e01b148061138f57506001600160e01b03198216635b5e139f60e01b145b806104f657506301ffc9a760e01b6001600160e01b03198316146104f6565b600082815261013160205260409020546001600160a01b03161561140b5760405162461bcd60e51b8152602060048201526014602482015273189bde08185b1c9958591e481c995919595b595960621b60448201526064016105dd565b60008281526101316020526040902080546001600160a01b0319166001600160a01b0385161790556108c4838383611b1f565b600081815260cd6020526040902080546001600160a01b0319166001600160a01b038416908117909155819061147382610b28565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081815260cb60205260408120546001600160a01b03166115255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105dd565b600061153083610b28565b9050806001600160a01b0316846001600160a01b0316148061156b5750836001600160a01b03166115608461071e565b6001600160a01b0316145b8061159b57506001600160a01b03808216600090815260ce602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115b682610b28565b6001600160a01b03161461161e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105dd565b6001600160a01b0382166116805760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105dd565b61168b838383611c64565b61169660008261143e565b6001600160a01b038316600090815260cc602052604081208054600192906116bf908490612a85565b90915550506001600160a01b038216600090815260cc602052604081208054600192906116ed908490612a3a565b9091555050600081815260cb602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816117ab8482611d1c565b6110b68183610c86565b6117c08484846115a3565b6117cc84848484611d36565b6110b65760405162461bcd60e51b81526004016105dd90612914565b600054610100900460ff1680611801575060005460ff16155b61181d5760405162461bcd60e51b81526004016105dd90612966565b600054610100900460ff1615801561183f576000805461ffff19166101011790555b611847611e43565b61184f611ead565b801561135b576000805461ff001916905550565b600054610100900460ff168061187c575060005460ff16155b6118985760405162461bcd60e51b81526004016105dd90612966565b600054610100900460ff161580156118ba576000805461ffff19166101011790555b61184f611f0d565b600054610100900460ff16806118db575060005460ff16155b6118f75760405162461bcd60e51b81526004016105dd90612966565b600054610100900460ff16158015611919576000805461ffff19166101011790555b611921611e43565b611929611e43565b6119338383611f7d565b80156108c4576000805461ff0019169055505050565b6060611957565b5092915050565b6000604051806040016040528060028152602001609160f51b81525083604051602001611985929190612873565b60408051601f19818403018152602e8084526105e08401909252925060009190602082016105c0803683370190505090506000816000815181106119cb576119cb612bb5565b60ff90921660209283029190910190910152600160005b8351811015611b045760008482815181106119ff576119ff612bb5565b016020015160f81c905060005b8360ff16811015611a9957848181518110611a2957611a29612bb5565b602002602001015160ff16610100611a419190612a66565b611a4b9083612a3a565b9150611a58603a83612b5f565b858281518110611a6a57611a6a612bb5565b60ff90921660209283029190910190910152611a87603a83612a52565b9150611a9281612b24565b9050611a0c565b505b8015611af357611aac603a82612b5f565b848460ff1681518110611ac157611ac1612bb5565b60ff9092166020928302919091019091015282611add81612b3f565b9350611aec9050603a82612a52565b9050611a9b565b50611afd81612b24565b90506119e2565b50611b16611b1183612012565b6120d0565b95945050505050565b61012f546040516001600160a01b0385811660248301526044820185905260648201849052600092839291169060840160408051601f198184030181529181526020820180516001600160e01b0316630544852160e31b17905251611b849190612857565b6000604051808303816000865af19150503d8060008114611bc1576040519150601f19603f3d011682016040523d82523d6000602084013e611bc6565b606091505b509092509050600182151514611c155760405162461bcd60e51b8152602060048201526014602482015273195e1d195c9b985b0818d85b1b0819985a5b195960621b60448201526064016105dd565b6000611c2082612a9c565b60009081526101336020908152604080832080546001600160a01b0319166001600160a01b039a909a16999099179098556101349052959095209390935550505050565b6001600160a01b038316611cbf57611cba8160fd8054600083815260fe60205260408120829055600182018355919091527f9346ac6dd7de6b96975fec380d4d994c4c12e6a8897544f22915316cc6cca2800155565b611ce2565b816001600160a01b0316836001600160a01b031614611ce257611ce283826121b3565b6001600160a01b038216611cf9576108c481612250565b826001600160a01b0316826001600160a01b0316146108c4576108c482826122ff565b610a76828260405180602001604052806000815250612343565b60006001600160a01b0384163b15611e3857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d7a9033908990889088906004016128c4565b602060405180830381600087803b158015611d9457600080fd5b505af1925050508015611dc4575060408051601f3d908101601f19168201909252611dc1918101906127ac565b60015b611e1e573d808015611df2576040519150601f19603f3d011682016040523d82523d6000602084013e611df7565b606091505b508051611e165760405162461bcd60e51b81526004016105dd90612914565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061159b565b506001949350505050565b600054610100900460ff1680611e5c575060005460ff16155b611e785760405162461bcd60e51b81526004016105dd90612966565b600054610100900460ff1615801561184f576000805461ffff1916610101179055801561135b576000805461ff001916905550565b600054610100900460ff1680611ec6575060005460ff16155b611ee25760405162461bcd60e51b81526004016105dd90612966565b600054610100900460ff16158015611f04576000805461ffff19166101011790555b61184f3361174e565b600054610100900460ff1680611f26575060005460ff16155b611f425760405162461bcd60e51b81526004016105dd90612966565b600054610100900460ff16158015611f64576000805461ffff19166101011790555b6001606555801561135b576000805461ff001916905550565b600054610100900460ff1680611f96575060005460ff16155b611fb25760405162461bcd60e51b81526004016105dd90612966565b600054610100900460ff16158015611fd4576000805461ffff19166101011790555b8251611fe79060c99060208601906124c4565b508151611ffb9060ca9060208501906124c4565b5080156108c4576000805461ff0019169055505050565b60606000825167ffffffffffffffff81111561203057612030612bcb565b604051908082528060200260200182016040528015612059578160200160208202803683370190505b50905060005b8351811015611950578381600186516120789190612a85565b6120829190612a85565b8151811061209257612092612bb5565b60200260200101518282815181106120ac576120ac612bb5565b60ff90921660209283029190910190910152806120c881612b24565b91505061205f565b60606000825167ffffffffffffffff8111156120ee576120ee612bcb565b6040519080825280601f01601f191660200182016040528015612118576020820181803683370190505b50905060005b8351811015611950576040518060600160405280603a8152602001612c7b603a913984828151811061215257612152612bb5565b602002602001015160ff168151811061216d5761216d612bb5565b602001015160f81c60f81b82828151811061218a5761218a612bb5565b60200101906001600160f81b031916908160001a905350806121ab81612b24565b91505061211e565b600060016121c084610b9f565b6121ca9190612a85565b600083815260fc602052604090205490915080821461221d576001600160a01b038416600090815260fb60209081526040808320858452825280832054848452818420819055835260fc90915290208190555b50600091825260fc602090815260408084208490556001600160a01b03909416835260fb81528383209183525290812055565b60fd5460009061226290600190612a85565b600083815260fe602052604081205460fd805493945090928490811061228a5761228a612bb5565b906000526020600020015490508060fd83815481106122ab576122ab612bb5565b600091825260208083209091019290925582815260fe909152604080822084905585825281205560fd8054806122e3576122e3612b9f565b6001900381819060005260206000200160009055905550505050565b600061230a83610b9f565b6001600160a01b03909316600090815260fb60209081526040808320868452825280832085905593825260fc9052919091209190915550565b61234d8383612376565b61235a6000848484611d36565b6108c45760405162461bcd60e51b81526004016105dd90612914565b6001600160a01b0382166123cc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105dd565b600081815260cb60205260409020546001600160a01b0316156124315760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105dd565b61243d60008383611c64565b6001600160a01b038216600090815260cc60205260408120805460019290612466908490612a3a565b9091555050600081815260cb602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546124d090612aef565b90600052602060002090601f0160209004810192826124f25760008555612538565b82601f1061250b57805160ff1916838001178555612538565b82800160010185558215612538579182015b8281111561253857825182559160200191906001019061251d565b50612544929150612548565b5090565b5b808211156125445760008155600101612549565b600067ffffffffffffffff8084111561257857612578612bcb565b604051601f8501601f19908116603f011681019082821181831017156125a0576125a0612bcb565b816040528093508581528686860111156125b957600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156125e557600080fd5b81356125f081612be1565b9392505050565b60006020828403121561260957600080fd5b81516125f081612be1565b6000806040838503121561262757600080fd5b823561263281612be1565b9150602083013561264281612be1565b809150509250929050565b60008060006060848603121561266257600080fd5b833561266d81612be1565b9250602084013561267d81612be1565b929592945050506040919091013590565b600080600080608085870312156126a457600080fd5b84356126af81612be1565b935060208501356126bf81612be1565b925060408501359150606085013567ffffffffffffffff8111156126e257600080fd5b8501601f810187136126f357600080fd5b6127028782356020840161255d565b91505092959194509250565b6000806040838503121561272157600080fd5b823561272c81612be1565b91506020830135801515811461264257600080fd5b6000806040838503121561275457600080fd5b823561275f81612be1565b946020939093013593505050565b6000806040838503121561278057600080fd5b50508035926020909101359150565b6000602082840312156127a157600080fd5b81356125f081612bf6565b6000602082840312156127be57600080fd5b81516125f081612bf6565b6000602082840312156127db57600080fd5b813567ffffffffffffffff8111156127f257600080fd5b8201601f8101841361280357600080fd5b61159b8482356020840161255d565b60006020828403121561282457600080fd5b5035919050565b60008151808452612843816020860160208601612ac3565b601f01601f19169290920160200192915050565b60008251612869818460208701612ac3565b9190910192915050565b60008351612885818460208801612ac3565b9190910191825250602001919050565b600083516128a7818460208801612ac3565b8351908301906128bb818360208801612ac3565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128f79083018461282b565b9695505050505050565b6020815260006125f0602083018461282b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612a4d57612a4d612b73565b500190565b600082612a6157612a61612b89565b500490565b6000816000190483118215151615612a8057612a80612b73565b500290565b600082821015612a9757612a97612b73565b500390565b80516020808301519190811015612abd576000198160200360031b1b821691505b50919050565b60005b83811015612ade578181015183820152602001612ac6565b838111156110b65750506000910152565b600181811c90821680612b0357607f821691505b60208210811415612abd57634e487b7160e01b600052602260045260246000fd5b6000600019821415612b3857612b38612b73565b5060010190565b600060ff821660ff811415612b5657612b56612b73565b60010192915050565b600082612b6e57612b6e612b89565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461135b57600080fd5b6001600160e01b03198116811461135b57600080fdfe68747470733a2f2f7261772e67697468756275736572636f6e74656e742e636f6d2f50697a7a6144414f2f70697a7a612d736d617274636f6e74726163742f6d61737465722f646174612f6f70656e7365615f70697a7a615f6d657461646174612e6d61696e6e65742e6a736f6e31323334353637383941424344454647484a4b4c4d4e505152535455565758595a6162636465666768696a6b6d6e6f707172737475767778797aa2646970667358221220979307c8c4e154d8f5345f9d6ad26787f9c152d641f491778ec71353212975a264736f6c63430008060033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c80638bff31771161011a578063b633a513116100ad578063e16eb95c1161007c578063e16eb95c14610442578063e8a3d4851461046c578063e985e9c514610474578063eb8d2444146104b0578063f2fde38b146104be57600080fd5b8063b633a513146103f6578063b88d4fde14610409578063c4d66de81461041c578063c87b56dd1461042f57600080fd5b8063a11d1226116100e9578063a11d1226146103a2578063a22cb465146103aa578063a9b6b0c0146103bd578063b5d2709c146103d057600080fd5b80638bff3177146103635780638da5cb5b14610376578063938e3d7b1461038757806395d89b411461039a57600080fd5b80632f745c59116101925780634f6ccce7116101615780634f6ccce7146103225780636352211e1461033557806370a0823114610348578063715018a61461035b57600080fd5b80632f745c59146102c857806332d33cd0146102db5780633ccfd60b1461030757806342842e0e1461030f57600080fd5b8063095ea7b3116101ce578063095ea7b31461027d5780630b0b980a1461029057806318160ddd146102a357806323b872dd146102b557600080fd5b806301ffc9a71461020057806306fdde0314610228578063075570f31461023d578063081812fc14610252575b600080fd5b61021361020e36600461278f565b6104d1565b60405190151581526020015b60405180910390f35b6102306104fc565b60405161021f9190612901565b61025061024b36600461276d565b61058e565b005b610265610260366004612812565b61071e565b6040516001600160a01b03909116815260200161021f565b61025061028b366004612741565b6107b3565b61025061029e3660046125d3565b6108c9565b60fd545b60405190815260200161021f565b6102506102c336600461264d565b610956565b6102a76102d6366004612741565b610987565b6102136102e9366004612812565b600090815261013160205260409020546001600160a01b0316151590565b610250610a1d565b61025061031d36600461264d565b610a7a565b6102a7610330366004612812565b610a95565b610265610343366004612812565b610b28565b6102a76103563660046125d3565b610b9f565b610250610c26565b61025061037136600461276d565b610c5c565b6033546001600160a01b0316610265565b6102506103953660046127c9565b610ccf565b610230610d0d565b610250610d1c565b6102506103b836600461270e565b610d94565b6102506103cb36600461276d565b610e59565b61023060405180604001604052806007815260200166697066733a2f2f60c81b81525081565b6102506104043660046125d3565b610fff565b61025061041736600461268e565b611084565b61025061042a3660046125d3565b6110bc565b61023061043d366004612812565b6111e8565b610265610450366004612812565b600090815261013160205260409020546001600160a01b031690565b6102306112b3565b610213610482366004612614565b6001600160a01b03918216600090815260ce6020908152604080832093909416825291909152205460ff1690565b61012d546102139060ff1681565b6102506104cc3660046125d3565b6112c3565b60006001600160e01b0319821663780e9d6360e01b14806104f657506104f68261135e565b92915050565b606060c9805461050b90612aef565b80601f016020809104026020016040519081016040528092919081815260200182805461053790612aef565b80156105845780601f1061055957610100808354040283529160200191610584565b820191906000526020600020905b81548152906001019060200180831161056757829003601f168201915b5050505050905090565b600260655414156105e65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260655561012d5460ff1615156001146106375760405162461bcd60e51b815260206004820152601160248201527072656465656d206e6f742061637469766560781b60448201526064016105dd565b610130546040516331a9108f60e11b8152600481018490526001600160a01b0390911690636352211e9060240160206040518083038186803b15801561067c57600080fd5b505afa158015610690573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b491906125f7565b6001600160a01b0316336001600160a01b03161461070a5760405162461bcd60e51b81526020600482015260136024820152720c6c2d8d8cae440daeae6e840deeedc40c4def606b1b60448201526064016105dd565b6107153383836113ae565b50506001606555565b600081815260cb60205260408120546001600160a01b03166107975760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105dd565b50600090815260cd60205260409020546001600160a01b031690565b60006107be82610b28565b9050806001600160a01b0316836001600160a01b0316141561082c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105dd565b336001600160a01b038216148061084857506108488133610482565b6108ba5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105dd565b6108c4838361143e565b505050565b6033546001600160a01b031633146108f35760405162461bcd60e51b81526004016105dd906129b4565b61013080546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527f940e2111d8699b208973b566da14572b6539f804f8a19f296b6e185a7c08ca5b91015b60405180910390a15050565b61096033826114ac565b61097c5760405162461bcd60e51b81526004016105dd906129e9565b6108c48383836115a3565b600061099283610b9f565b82106109f45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105dd565b506001600160a01b0391909116600090815260fb60209081526040808320938352929052205490565b6033546001600160a01b03163314610a475760405162461bcd60e51b81526004016105dd906129b4565b6040514790339082156108fc029083906000818181858888f19350505050158015610a76573d6000803e3d6000fd5b5050565b6108c483838360405180602001604052806000815250611084565b6000610aa060fd5490565b8210610b035760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105dd565b60fd8281548110610b1657610b16612bb5565b90600052602060002001549050919050565b600081815260cb60205260408120546001600160a01b0316806104f65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105dd565b60006001600160a01b038216610c0a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105dd565b506001600160a01b0316600090815260cc602052604090205490565b6033546001600160a01b03163314610c505760405162461bcd60e51b81526004016105dd906129b4565b610c5a600061174e565b565b6033546001600160a01b03163314610c865760405162461bcd60e51b81526004016105dd906129b4565b6000828152610132602090815260409182902083905581518481529081018390527ff774598333dc628ddee2328e70417f814873bcd17b0b2f832a7bcd061315db47910161094a565b6033546001600160a01b03163314610cf95760405162461bcd60e51b81526004016105dd906129b4565b8051610a769061012e9060208401906124c4565b606060ca805461050b90612aef565b6033546001600160a01b03163314610d465760405162461bcd60e51b81526004016105dd906129b4565b61012d805460ff8082161560ff1990921682179092556040519116151581527fe8a4303c22d8b575a6f175ea4803f56b0a4551ac9e22153304feb0ddfd6143559060200160405180910390a1565b6001600160a01b038216331415610ded5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105dd565b33600081815260ce602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60026065541415610eac5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105dd565b600260655561012f546001600160a01b0316336001600160a01b031614610f0c5760405162461bcd60e51b815260206004820152601460248201527363616c6c6572206e6f74206f726465722061706960601b60448201526064016105dd565b600082815261013360205260409020546001600160a01b031680610f725760405162461bcd60e51b815260206004820152601860248201527f76616c69642072657175657374206d757374206578697374000000000000000060448201526064016105dd565b60008381526101346020526040902054610fa381600090815260cb60205260409020546001600160a01b0316151590565b15610fe95760405162461bcd60e51b81526020600482015260166024820152751d1bdad95b88185b1c9958591e481c995919595b595960521b60448201526064016105dd565b610ff48282856117a0565b505060016065555050565b6033546001600160a01b031633146110295760405162461bcd60e51b81526004016105dd906129b4565b61012f80546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527f8c89864e929ededacf670ea76860db1a79aca04b949432506ed4ae06cecd761a910161094a565b61108e33836114ac565b6110aa5760405162461bcd60e51b81526004016105dd906129e9565b6110b6848484846117b5565b50505050565b600054610100900460ff16806110d5575060005460ff16155b6110f15760405162461bcd60e51b81526004016105dd90612966565b600054610100900460ff16158015611113576000805461ffff19166101011790555b61111b6117e8565b611123611863565b61116d6040518060400160405280600b81526020016a526172652050697a7a617360a81b8152506040518060400160405280600581526020016450495a5a4160d81b8152506118c2565b61012d805460ff191690556001600160a01b038216156111a45761013080546001600160a01b0319166001600160a01b0384161790555b6040518060a00160405280606e8152602001612c0d606e913980516111d29161012e916020909101906124c4565b508015610a76576000805461ff00191690555050565b600081815260cb60205260409020546060906001600160a01b031661124f5760405162461bcd60e51b815260206004820152601760248201527f646f6573206e6f742065786973742c2070616973616e6f00000000000000000060448201526064016105dd565b60405180604001604052806007815260200166697066733a2f2f60c81b81525061128c610132600085815260200190815260200160002054611949565b60405160200161129d929190612895565b6040516020818303038152906040529050919050565b606061012e805461050b90612aef565b6033546001600160a01b031633146112ed5760405162461bcd60e51b81526004016105dd906129b4565b6001600160a01b0381166113525760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105dd565b61135b8161174e565b50565b60006001600160e01b031982166380ac58cd60e01b148061138f57506001600160e01b03198216635b5e139f60e01b145b806104f657506301ffc9a760e01b6001600160e01b03198316146104f6565b600082815261013160205260409020546001600160a01b03161561140b5760405162461bcd60e51b8152602060048201526014602482015273189bde08185b1c9958591e481c995919595b595960621b60448201526064016105dd565b60008281526101316020526040902080546001600160a01b0319166001600160a01b0385161790556108c4838383611b1f565b600081815260cd6020526040902080546001600160a01b0319166001600160a01b038416908117909155819061147382610b28565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081815260cb60205260408120546001600160a01b03166115255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105dd565b600061153083610b28565b9050806001600160a01b0316846001600160a01b0316148061156b5750836001600160a01b03166115608461071e565b6001600160a01b0316145b8061159b57506001600160a01b03808216600090815260ce602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115b682610b28565b6001600160a01b03161461161e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105dd565b6001600160a01b0382166116805760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105dd565b61168b838383611c64565b61169660008261143e565b6001600160a01b038316600090815260cc602052604081208054600192906116bf908490612a85565b90915550506001600160a01b038216600090815260cc602052604081208054600192906116ed908490612a3a565b9091555050600081815260cb602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816117ab8482611d1c565b6110b68183610c86565b6117c08484846115a3565b6117cc84848484611d36565b6110b65760405162461bcd60e51b81526004016105dd90612914565b600054610100900460ff1680611801575060005460ff16155b61181d5760405162461bcd60e51b81526004016105dd90612966565b600054610100900460ff1615801561183f576000805461ffff19166101011790555b611847611e43565b61184f611ead565b801561135b576000805461ff001916905550565b600054610100900460ff168061187c575060005460ff16155b6118985760405162461bcd60e51b81526004016105dd90612966565b600054610100900460ff161580156118ba576000805461ffff19166101011790555b61184f611f0d565b600054610100900460ff16806118db575060005460ff16155b6118f75760405162461bcd60e51b81526004016105dd90612966565b600054610100900460ff16158015611919576000805461ffff19166101011790555b611921611e43565b611929611e43565b6119338383611f7d565b80156108c4576000805461ff0019169055505050565b6060611957565b5092915050565b6000604051806040016040528060028152602001609160f51b81525083604051602001611985929190612873565b60408051601f19818403018152602e8084526105e08401909252925060009190602082016105c0803683370190505090506000816000815181106119cb576119cb612bb5565b60ff90921660209283029190910190910152600160005b8351811015611b045760008482815181106119ff576119ff612bb5565b016020015160f81c905060005b8360ff16811015611a9957848181518110611a2957611a29612bb5565b602002602001015160ff16610100611a419190612a66565b611a4b9083612a3a565b9150611a58603a83612b5f565b858281518110611a6a57611a6a612bb5565b60ff90921660209283029190910190910152611a87603a83612a52565b9150611a9281612b24565b9050611a0c565b505b8015611af357611aac603a82612b5f565b848460ff1681518110611ac157611ac1612bb5565b60ff9092166020928302919091019091015282611add81612b3f565b9350611aec9050603a82612a52565b9050611a9b565b50611afd81612b24565b90506119e2565b50611b16611b1183612012565b6120d0565b95945050505050565b61012f546040516001600160a01b0385811660248301526044820185905260648201849052600092839291169060840160408051601f198184030181529181526020820180516001600160e01b0316630544852160e31b17905251611b849190612857565b6000604051808303816000865af19150503d8060008114611bc1576040519150601f19603f3d011682016040523d82523d6000602084013e611bc6565b606091505b509092509050600182151514611c155760405162461bcd60e51b8152602060048201526014602482015273195e1d195c9b985b0818d85b1b0819985a5b195960621b60448201526064016105dd565b6000611c2082612a9c565b60009081526101336020908152604080832080546001600160a01b0319166001600160a01b039a909a16999099179098556101349052959095209390935550505050565b6001600160a01b038316611cbf57611cba8160fd8054600083815260fe60205260408120829055600182018355919091527f9346ac6dd7de6b96975fec380d4d994c4c12e6a8897544f22915316cc6cca2800155565b611ce2565b816001600160a01b0316836001600160a01b031614611ce257611ce283826121b3565b6001600160a01b038216611cf9576108c481612250565b826001600160a01b0316826001600160a01b0316146108c4576108c482826122ff565b610a76828260405180602001604052806000815250612343565b60006001600160a01b0384163b15611e3857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d7a9033908990889088906004016128c4565b602060405180830381600087803b158015611d9457600080fd5b505af1925050508015611dc4575060408051601f3d908101601f19168201909252611dc1918101906127ac565b60015b611e1e573d808015611df2576040519150601f19603f3d011682016040523d82523d6000602084013e611df7565b606091505b508051611e165760405162461bcd60e51b81526004016105dd90612914565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061159b565b506001949350505050565b600054610100900460ff1680611e5c575060005460ff16155b611e785760405162461bcd60e51b81526004016105dd90612966565b600054610100900460ff1615801561184f576000805461ffff1916610101179055801561135b576000805461ff001916905550565b600054610100900460ff1680611ec6575060005460ff16155b611ee25760405162461bcd60e51b81526004016105dd90612966565b600054610100900460ff16158015611f04576000805461ffff19166101011790555b61184f3361174e565b600054610100900460ff1680611f26575060005460ff16155b611f425760405162461bcd60e51b81526004016105dd90612966565b600054610100900460ff16158015611f64576000805461ffff19166101011790555b6001606555801561135b576000805461ff001916905550565b600054610100900460ff1680611f96575060005460ff16155b611fb25760405162461bcd60e51b81526004016105dd90612966565b600054610100900460ff16158015611fd4576000805461ffff19166101011790555b8251611fe79060c99060208601906124c4565b508151611ffb9060ca9060208501906124c4565b5080156108c4576000805461ff0019169055505050565b60606000825167ffffffffffffffff81111561203057612030612bcb565b604051908082528060200260200182016040528015612059578160200160208202803683370190505b50905060005b8351811015611950578381600186516120789190612a85565b6120829190612a85565b8151811061209257612092612bb5565b60200260200101518282815181106120ac576120ac612bb5565b60ff90921660209283029190910190910152806120c881612b24565b91505061205f565b60606000825167ffffffffffffffff8111156120ee576120ee612bcb565b6040519080825280601f01601f191660200182016040528015612118576020820181803683370190505b50905060005b8351811015611950576040518060600160405280603a8152602001612c7b603a913984828151811061215257612152612bb5565b602002602001015160ff168151811061216d5761216d612bb5565b602001015160f81c60f81b82828151811061218a5761218a612bb5565b60200101906001600160f81b031916908160001a905350806121ab81612b24565b91505061211e565b600060016121c084610b9f565b6121ca9190612a85565b600083815260fc602052604090205490915080821461221d576001600160a01b038416600090815260fb60209081526040808320858452825280832054848452818420819055835260fc90915290208190555b50600091825260fc602090815260408084208490556001600160a01b03909416835260fb81528383209183525290812055565b60fd5460009061226290600190612a85565b600083815260fe602052604081205460fd805493945090928490811061228a5761228a612bb5565b906000526020600020015490508060fd83815481106122ab576122ab612bb5565b600091825260208083209091019290925582815260fe909152604080822084905585825281205560fd8054806122e3576122e3612b9f565b6001900381819060005260206000200160009055905550505050565b600061230a83610b9f565b6001600160a01b03909316600090815260fb60209081526040808320868452825280832085905593825260fc9052919091209190915550565b61234d8383612376565b61235a6000848484611d36565b6108c45760405162461bcd60e51b81526004016105dd90612914565b6001600160a01b0382166123cc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105dd565b600081815260cb60205260409020546001600160a01b0316156124315760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105dd565b61243d60008383611c64565b6001600160a01b038216600090815260cc60205260408120805460019290612466908490612a3a565b9091555050600081815260cb602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546124d090612aef565b90600052602060002090601f0160209004810192826124f25760008555612538565b82601f1061250b57805160ff1916838001178555612538565b82800160010185558215612538579182015b8281111561253857825182559160200191906001019061251d565b50612544929150612548565b5090565b5b808211156125445760008155600101612549565b600067ffffffffffffffff8084111561257857612578612bcb565b604051601f8501601f19908116603f011681019082821181831017156125a0576125a0612bcb565b816040528093508581528686860111156125b957600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156125e557600080fd5b81356125f081612be1565b9392505050565b60006020828403121561260957600080fd5b81516125f081612be1565b6000806040838503121561262757600080fd5b823561263281612be1565b9150602083013561264281612be1565b809150509250929050565b60008060006060848603121561266257600080fd5b833561266d81612be1565b9250602084013561267d81612be1565b929592945050506040919091013590565b600080600080608085870312156126a457600080fd5b84356126af81612be1565b935060208501356126bf81612be1565b925060408501359150606085013567ffffffffffffffff8111156126e257600080fd5b8501601f810187136126f357600080fd5b6127028782356020840161255d565b91505092959194509250565b6000806040838503121561272157600080fd5b823561272c81612be1565b91506020830135801515811461264257600080fd5b6000806040838503121561275457600080fd5b823561275f81612be1565b946020939093013593505050565b6000806040838503121561278057600080fd5b50508035926020909101359150565b6000602082840312156127a157600080fd5b81356125f081612bf6565b6000602082840312156127be57600080fd5b81516125f081612bf6565b6000602082840312156127db57600080fd5b813567ffffffffffffffff8111156127f257600080fd5b8201601f8101841361280357600080fd5b61159b8482356020840161255d565b60006020828403121561282457600080fd5b5035919050565b60008151808452612843816020860160208601612ac3565b601f01601f19169290920160200192915050565b60008251612869818460208701612ac3565b9190910192915050565b60008351612885818460208801612ac3565b9190910191825250602001919050565b600083516128a7818460208801612ac3565b8351908301906128bb818360208801612ac3565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128f79083018461282b565b9695505050505050565b6020815260006125f0602083018461282b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612a4d57612a4d612b73565b500190565b600082612a6157612a61612b89565b500490565b6000816000190483118215151615612a8057612a80612b73565b500290565b600082821015612a9757612a97612b73565b500390565b80516020808301519190811015612abd576000198160200360031b1b821691505b50919050565b60005b83811015612ade578181015183820152602001612ac6565b838111156110b65750506000910152565b600181811c90821680612b0357607f821691505b60208210811415612abd57634e487b7160e01b600052602260045260246000fd5b6000600019821415612b3857612b38612b73565b5060010190565b600060ff821660ff811415612b5657612b56612b73565b60010192915050565b600082612b6e57612b6e612b89565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461135b57600080fd5b6001600160e01b03198116811461135b57600080fdfe68747470733a2f2f7261772e67697468756275736572636f6e74656e742e636f6d2f50697a7a6144414f2f70697a7a612d736d617274636f6e74726163742f6d61737465722f646174612f6f70656e7365615f70697a7a615f6d657461646174612e6d61696e6e65742e6a736f6e31323334353637383941424344454647484a4b4c4d4e505152535455565758595a6162636465666768696a6b6d6e6f707172737475767778797aa2646970667358221220979307c8c4e154d8f5345f9d6ad26787f9c152d641f491778ec71353212975a264736f6c63430008060033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.