Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 41 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Settle Auction | 18522034 | 756 days ago | IN | 0 ETH | 0.01045864 | ||||
| Pause | 18522028 | 756 days ago | IN | 0 ETH | 0.00181925 | ||||
| Create Bid | 18522026 | 756 days ago | IN | 0.001 ETH | 0.00575743 | ||||
| Set Minimum Bid | 18522022 | 756 days ago | IN | 0 ETH | 0.00094786 | ||||
| Set Buy Now Pric... | 18522009 | 756 days ago | IN | 0 ETH | 0.00109461 | ||||
| Set Buy Now Pric... | 17830147 | 853 days ago | IN | 0 ETH | 0.0011859 | ||||
| Set Buy Now Pric... | 17830108 | 853 days ago | IN | 0 ETH | 0.00126916 | ||||
| Set Buy Now Pric... | 17830099 | 853 days ago | IN | 0 ETH | 0.00119802 | ||||
| Set Buy Now Pric... | 17830097 | 853 days ago | IN | 0 ETH | 0.00121734 | ||||
| Set Buy Now Pric... | 17830095 | 853 days ago | IN | 0 ETH | 0.00128346 | ||||
| Set Buy Now Pric... | 17830082 | 853 days ago | IN | 0 ETH | 0.00125465 | ||||
| Set Buy Now Pric... | 17830079 | 853 days ago | IN | 0 ETH | 0.00125359 | ||||
| Set Buy Now Pric... | 17830076 | 853 days ago | IN | 0 ETH | 0.00127873 | ||||
| Set Buy Now Pric... | 17830073 | 853 days ago | IN | 0 ETH | 0.00134276 | ||||
| Set Buy Now Pric... | 17830056 | 853 days ago | IN | 0 ETH | 0.0008507 | ||||
| Settle Current A... | 17829999 | 853 days ago | IN | 0 ETH | 0.01049253 | ||||
| Set Buy Now Pric... | 17829983 | 853 days ago | IN | 0 ETH | 0.00128818 | ||||
| Create Bid | 17829982 | 853 days ago | IN | 0.02 ETH | 0.00435519 | ||||
| Set Buy Now Pric... | 17829968 | 853 days ago | IN | 0 ETH | 0.00085448 | ||||
| Set Buy Now Pric... | 17829199 | 853 days ago | IN | 0 ETH | 0.0011965 | ||||
| Unpause | 17829176 | 853 days ago | IN | 0 ETH | 0.00085195 | ||||
| Set Buy Now Pric... | 17829175 | 853 days ago | IN | 0 ETH | 0.0014444 | ||||
| Set Buy Now Pric... | 17829157 | 853 days ago | IN | 0 ETH | 0.00081 | ||||
| Set Buy Now Pric... | 17829134 | 853 days ago | IN | 0 ETH | 0.00159045 | ||||
| Set Buy Now Pric... | 17829125 | 853 days ago | IN | 0 ETH | 0.00124315 |
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
OasisAuctionHouse
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0
// The Wildxyz auctionhouse.sol
// AuctionHouse.sol is a modified version of the original code from the
// NounsAuctionHouse.sol which is a modified version of Zora's AuctionHouse.sol:
// https://github.com/ourzora/auction-house/
// licensed under the GPL-3.0 license.
// _pause() and _unpause() stop/starts all auctions/buyitnows
// state (0= auction + buy it now; 1= buy it now only)
pragma solidity ^0.8.18;
import './Pausable.sol';
import './ReentrancyGuard.sol';
import './Ownable.sol';
import './IOasis.sol';
import './IAuctionHouse.sol';
contract OasisAuctionHouse is
IAuctionHouse,
Pausable,
ReentrancyGuard,
Ownable
{
// auction variables
uint256 public state = 0; // 0 = auction + buy it now, 1 = buy it now only
uint256 public timeBuffer = 120; // min amount of time left in an auction after last bid
uint256 public minimumBid = .1 ether; // The minimum price accepted in an auction
uint256 public duration = 300; // 86400 duration of the next auction in seconds; to end at next noon
uint256 public constant fixedDuration = 300; // never changes
uint8 public minBidIncrementPercentage = 10; // The minimum bid increment percentage
address payable public payee; // The address that receives funds from the auction
address[] public standingBidders; // list of addresses with standing bids
address payable admin; // admin address (for buy now)
Oasis public oasis; // The oasis contract
uint256 public currentTokenId; // The current token ID being auctioned
// The active auction
IAuctionHouse.Auction public auction;
// Only allow the auction functions to be active when not paused
modifier onlyUnpaused() {
require(!paused(), 'AuctionHouse: paused');
_;
}
// modifier for onlyOwner or admin
modifier onlyOwnerOrAdmin() {
require(msg.sender == owner() || msg.sender == admin, 'AuctionHouse: only owner or admin');
_;
}
// Bids Struct
struct Bid {
address payable bidder; // The address of the bidder
uint256 amount; // The amount of the bid
bool minted; // has the bid been minted
uint256 timestamp; // timestamp of the bid
bool refunded; // refund difference between winning_bid and max_bid for winner; and all for losers // enter reentrancy guard
bool winner; // is the bid the winner
bool standing; // if not winner, bid rolls to next auction
}
// mapping of Bid structs
mapping(address => Bid) public Bids;
// mapping of buy it now prices: tokenId => price
mapping(uint256 => uint256) public buyNowPrices;
constructor(Oasis _oasis) {
oasis = _oasis;
// set the payee to the contract owner
payee = payable(0x710900ca8c7C280B0E6bb005e60dFE1cf6E5FA4c);
admin = payable(msg.sender);
_pause();
}
/* ADMIN VARIABLE SETTERS FUNCTIONS */
// add/edit buy it now price mapping
function setBuyNowPrices(uint256[] calldata _tokenId, uint256[] calldata _price) external onlyOwnerOrAdmin {
require(_tokenId.length == _price.length, 'AuctionHouse: invalid input');
for (uint256 i = 0; i < _tokenId.length; i++) {
buyNowPrices[_tokenId[i]] = _price[i];
}
}
// change the state
function setState(uint256 _state) external onlyOwnerOrAdmin {
require(state < 2, 'AuctionHouse: invalid state');
state = _state;
}
// edit admin address
function setAdmin(address payable _admin) external onlyOwner {
admin = _admin;
}
// set the 721 contract address
function set721ContractAddress(Oasis _newOasis) public onlyOwner {
oasis = _newOasis;
}
// set the time buffer
function setTimeBuffer(uint256 _timeBuffer) external onlyOwner override {
timeBuffer = _timeBuffer;
emit AuctionTimeBufferUpdated(_timeBuffer);
}
// set the minimum bid
function setMinimumBid(uint256 _minimumBid) external onlyOwnerOrAdmin {
minimumBid = _minimumBid;
}
// change close time of current auction
function changeCloseTime(uint256 _closeTime) external onlyOwnerOrAdmin {
auction.endTime = _closeTime;
}
// set the duration
function setDuration(uint256 _duration) external onlyOwner override {
duration = _duration;
emit AuctionDurationUpdated(_duration);
}
// set the min bid increment percentage
function setMinBidIncrementPercentage(uint8 _minBidIncrementPercentage)
external
onlyOwner
override
{
minBidIncrementPercentage = _minBidIncrementPercentage;
emit AuctionMinBidIncrementPercentageUpdated(_minBidIncrementPercentage);
}
// promo mint
function promoMint(address _to, uint256 _qty) external onlyOwner {
oasis.promoMint(_to, _qty);
}
// pause
function pause() external onlyOwner override {
_pause();
}
// unpause
function unpause() external onlyOwner override {
_unpause();
if (auction.startTime == 0 || auction.settled) {
_createAuction();
}
}
// Settle the current auction (only when paused)
function settleAuction() external whenPaused onlyOwner nonReentrant override {
_settleAuction();
}
// withdraw
function withdraw() external onlyOwner {
(bool success, ) = payee.call{value: address(this).balance}("");
require(success, "Failed to send to payee.");
}
// update payee for withdraw
function setPayee(address payable _payee) public onlyOwner {
payee = _payee;
}
/* END ADMIN VARIABLE SETTERS FUNCTIONS */
/* PUBLIC FUNCTIONS */
// Settles and creates a new auction
function settleCurrentAndCreateNewAuction() external nonReentrant override {
_settleAuction();
_createAuction();
_processStandingBids();
require(block.timestamp >= auction.startTime, 'AuctionHouse: auction not started');
}
// adds highest standing bid to newly created auction
function _processStandingBids() internal {
IAuctionHouse.Auction memory _auction = auction;
uint256 this_amount = 0;
address this_bidder;
// loop through standing bidders and add the highest bid to the new auction
// also emit all the bids so they will attach to new auction
for (uint i = 0; i < standingBidders.length; i++) {
if (Bids[standingBidders[i]].amount > this_amount
&& Bids[standingBidders[i]].refunded == false
&& Bids[standingBidders[i]].standing == true) {
this_amount = Bids[standingBidders[i]].amount;
this_bidder = standingBidders[i];
}
emit AuctionBid(
_auction.tokenId,
standingBidders[i],
Bids[standingBidders[i]].amount,
true,
false,
true
);
}
if (this_amount > 0) {
auction.bidder = payable(this_bidder);
auction.amount = this_amount;
}
}
// cancel all standing bids admin only
function cancelAllStandingBid() public nonReentrant onlyOwner {
IAuctionHouse.Auction memory _auction = auction;
// loop through standing bidders
for (uint i = 0; i < standingBidders.length; i++) {
if (_auction.bidder != standingBidders[i]) {
// not highest bidder, refund
_safeTransferETH(standingBidders[i], Bids[standingBidders[i]].amount);
Bids[standingBidders[i]].refunded = true;
}
Bids[standingBidders[i]].standing = false;
// update list of standing bidders
standingBidders[i] = standingBidders[standingBidders.length - 1];
standingBidders.pop();
emit CancelStandingBid(standingBidders[i]);
}
}
// admin can place bid on behalf of bidder
function ownerBidOnBehalf(uint256 _currentTokenId, bool _standing, address _bidder) external payable nonReentrant onlyOwner {
// Query the auction state
IAuctionHouse.Auction memory _auction = auction;
// Check that the auction is live
require(_currentTokenId == _auction.tokenId, 'Bid on wrong tokenId.');
require(block.timestamp < _auction.endTime, "Auction has ended");
require(block.timestamp > _auction.startTime, "Auction has not started");
require(msg.value >= minimumBid, "Bid is too low.");
require(msg.value > _auction.amount, "Bid is too low.");
// A reference to benchmark the new bid against
address payable lastBidder = _auction.bidder;
// Refund the previous highest bidder,
// if not standing bid
if (lastBidder != address(0) && Bids[lastBidder].standing == false && Bids[lastBidder].refunded == false) {
_safeTransferETH(lastBidder, _auction.amount);
Bids[lastBidder].refunded = true;
}
// if overbidding self, remove old bid
// clear standing bids from same sender
if (Bids[_bidder].refunded == false) {
if (Bids[_bidder].standing == true) {
// loop through standing bidders and remove the address
for (uint i = 0; i < standingBidders.length; i++) {
if (standingBidders[i] == _bidder) {
standingBidders[i] = standingBidders[standingBidders.length - 1];
standingBidders.pop();
break;
}
}
}
_safeTransferETH(_bidder, Bids[_bidder].amount);
Bids[_bidder].refunded = true;
}
Bid memory new_bid;
new_bid.bidder = payable(_bidder);
new_bid.amount = msg.value;
new_bid.timestamp = block.timestamp;
new_bid.winner = false;
new_bid.refunded = false;
new_bid.standing = _standing;
Bids[_bidder] = new_bid;
if (_standing == true) {
standingBidders.push(_bidder);
}
// Update the auction state with the new bid bidder and the new amount
auction.bidder = payable(_bidder);
auction.amount = msg.value;
// Extend the auction if the bid was received within the time buffer
bool extended = _auction.endTime - block.timestamp < timeBuffer;
if (extended) {
auction.endTime = _auction.endTime = _auction.endTime + timeBuffer;
auction.extendedTime = _auction.extendedTime + timeBuffer;
}
emit AuctionBid(currentTokenId, _bidder, Bids[_bidder].amount, _standing, extended, false);
if (extended) {
emit AuctionExtended(currentTokenId, _auction.endTime);
}
}
// Bidder cancel standing bid
function cancelStandingBid() public nonReentrant {
IAuctionHouse.Auction memory _auction = auction;
require(Bids[msg.sender].standing == true, "No standing bid to cancel.");
if (_auction.bidder != msg.sender) {
// not highest bidder, refund
_safeTransferETH(msg.sender, Bids[msg.sender].amount);
Bids[msg.sender].refunded = true;
}
Bids[msg.sender].standing = false;
// loop through standing bidders and remove the address
for (uint i = 0; i < standingBidders.length; i++) {
if (standingBidders[i] == msg.sender) {
standingBidders[i] = standingBidders[standingBidders.length - 1];
standingBidders.pop();
break;
}
}
emit CancelStandingBid(msg.sender);
}
// Creates bids for the current auction
function createBid(uint256 _currentTokenId, bool _standing) external payable nonReentrant onlyUnpaused {
IAuctionHouse.Auction memory _auction = auction;
address payable lastBidder = _auction.bidder;
uint256 _bidAmount;
// Check that the auction is live
require(_currentTokenId == _auction.tokenId, 'Bid on wrong tokenId.');
require(block.timestamp < _auction.endTime, "Auction has ended");
require(block.timestamp > _auction.startTime, "Auction has not started");
// if not standing bid, and not current bidder: refund high bidder
if (lastBidder != address(0) && Bids[lastBidder].standing == false && Bids[lastBidder].refunded == false && lastBidder != msg.sender) {
_safeTransferETH(lastBidder, _auction.amount);
Bids[lastBidder].refunded = true;
}
// upsert this bid
if (lastBidder == msg.sender || (Bids[msg.sender].standing == true && Bids[msg.sender].refunded == false)) {
// if current high bidder or losing standing bid: update the Bid struct
_bidAmount = Bids[msg.sender].amount + msg.value;
require(
(
_bidAmount >= _auction.amount + ((_auction.amount * minBidIncrementPercentage) / 100)
)
||
(
buyNowPrices[_currentTokenId] > 0 && _bidAmount >= buyNowPrices[_currentTokenId]
),
"Bid is too low."
);
Bids[msg.sender].amount = _bidAmount;
Bids[msg.sender].timestamp = block.timestamp;
Bids[msg.sender].refunded = false;
// if bidder is changing standing status, update standingBidders array
if (_standing == true && Bids[msg.sender].standing == false) {
standingBidders.push(msg.sender);
} else if (_standing == false && Bids[msg.sender].standing == true) {
// loop through standing bidders and remove the address
for (uint i = 0; i < standingBidders.length; i++) {
if (standingBidders[i] == msg.sender) {
standingBidders[i] = standingBidders[standingBidders.length - 1];
standingBidders.pop();
break;
}
}
}
Bids[msg.sender].standing = _standing;
} else {
require(
(
msg.value >= _auction.amount + ((_auction.amount * minBidIncrementPercentage) / 100)
)
||
(
buyNowPrices[_currentTokenId] > 0 && msg.value >= buyNowPrices[_currentTokenId]
),
"Bid is too low."
);
require(msg.value >= minimumBid, "Bid is too low.");
// else, add new bid to Bid struct
_bidAmount = msg.value;
Bid memory new_bid;
new_bid.bidder = payable(msg.sender);
new_bid.amount = _bidAmount;
new_bid.timestamp = block.timestamp;
new_bid.winner = false;
new_bid.refunded = false;
new_bid.standing = _standing;
Bids[msg.sender] = new_bid;
if (_standing == true) {
standingBidders.push(msg.sender);
}
}
// Update the auction state with the new bid bidder and the new amount
auction.bidder = payable(msg.sender);
auction.amount = _bidAmount;
// Extend the auction if the bid was received within the time buffer
bool extended = _auction.endTime - block.timestamp < timeBuffer;
if (extended) {
auction.endTime = _auction.endTime = _auction.endTime + timeBuffer;
auction.extendedTime = _auction.extendedTime + timeBuffer;
}
emit AuctionBid(currentTokenId, msg.sender, _bidAmount, _standing, extended, false);
if (extended) {
emit AuctionExtended(currentTokenId, _auction.endTime);
}
// if this bid >= buy it now price:
// set duration to clsoetime -now + duration
// set close time to now
if (buyNowPrices[_currentTokenId] > 0 && _bidAmount >= buyNowPrices[_currentTokenId]) {
duration = _auction.endTime - block.timestamp + duration;
auction.endTime = _auction.endTime = block.timestamp;
emit BuyNow(_currentTokenId, msg.sender, _bidAmount);
}
}
/* END PUBLIC FUNCTIONS */
/* INTERNAL FUNCTIONS */
/**
* @notice Create an auction.
* @dev Store the auction details in the `auction` state variable and emit an AuctionCreated event.
* If the mint reverts, the minter was updated without pausing this contract first. To remedy this,
* catch the revert and pause this contract.
*/
function _createAuction() internal {
try oasis.mint(address(this)) returns (uint256 tokenId) {
require(auction.endTime < block.timestamp, "AuctionHouse: auction not ended");
IAuctionHouse.Auction memory _auction = auction;
uint256 _newEndTime;
if (state == 1 && buyNowPrices[tokenId] >= 0) {
_newEndTime = block.timestamp + 3153600000; // 100 years in seconds is 3153600000
minimumBid = buyNowPrices[tokenId];
} else {
_newEndTime = block.timestamp + duration - _auction.extendedTime;
minimumBid = .1 ether;
}
auction = Auction({
tokenId: tokenId,
amount: 0,
startTime: block.timestamp,
endTime: _newEndTime,
bidder: payable(0),
settled: false,
extendedTime: 0
});
currentTokenId = tokenId;
duration = fixedDuration;
if (state == 1 && buyNowPrices[tokenId] == 0) {
_pause();
}
emit AuctionCreated(tokenId, auction.startTime, auction.endTime);
} catch Error(string memory) {
_pause();
}
}
/**
* Settle an auction, finalizing the bid and paying out to the owner.
* If there are no bids, the Oasis is burned.
*/
function _settleAuction() internal {
require(auction.startTime != 0, "Auction hasn't begun");
IAuctionHouse.Auction memory _auction = auction;
Bid storage winning_bid = Bids[_auction.bidder];
require(_auction.startTime != 0, "Auction hasn't begun");
require(!_auction.settled, "Auction has already been settled");
require(
block.timestamp >= _auction.endTime,
"Auction hasn't completed"
);
auction.settled = true;
if (_auction.bidder == address(0)) {
oasis.burn(_auction.tokenId);
} else {
oasis.transferFrom(
address(this),
_auction.bidder,
_auction.tokenId
);
winning_bid.winner = true;
winning_bid.minted = true;
if (winning_bid.standing == true) {
winning_bid.standing = false;
// loop through standing bidders and remove the address
for (uint i = 0; i < standingBidders.length; i++) {
if (standingBidders[i] == _auction.bidder) {
standingBidders[i] = standingBidders[standingBidders.length - 1];
standingBidders.pop();
break;
}
}
}
}
if (_auction.amount > 0) {
_safeTransferETH(payee, _auction.amount);
}
emit AuctionSettled(_auction.tokenId, _auction.bidder, _auction.amount);
}
/**
* Transfer ETH and return the success status.
* This function only forwards 30,000 gas to the callee.
*/
function _safeTransferETH(address to, uint256 value)
internal
returns (bool)
{
(bool success, ) = to.call{value: value, gas: 30_000}(new bytes(0));
return success;
}
}// SPDX-License-Identifier: GPL-3.0
/// @title Interface for Auction Houses
pragma solidity ^0.8.6;
import { Oasis } from "./Oasis.sol";
interface IAuctionHouse {
struct Auction {
// ID for the (ERC721 token ID)
uint256 tokenId;
// The current highest bid amount
uint256 amount;
// The time that the auction started
uint256 startTime;
// The time that the auction is scheduled to end
uint256 endTime;
// The address of the current highest bid
address payable bidder;
// Whether or not the auction has been settled
bool settled;
// amount of time auction was extended
uint256 extendedTime;
}
event AuctionCreated(uint256 indexed tokenId, uint256 startTime, uint256 endTime);
event AuctionBid(uint256 indexed tokenId, address sender, uint256 value, bool standing, bool extended, bool rollover);
event AuctionExtended(uint256 indexed tokenId, uint256 endTime);
event AuctionSettled(uint256 indexed tokenId, address winner, uint256 amount);
event AuctionTimeBufferUpdated(uint256 timeBuffer);
event AuctionReservePriceUpdated(uint256 reservePrice);
event AuctionMinBidIncrementPercentageUpdated(uint256 minBidIncrementPercentage);
event AuctionDurationUpdated(uint256 duration);
event CancelStandingBid(address bidder);
event BuyNow(uint256 indexed tokenId, address buyer, uint256 amount);
function settleAuction() external;
function settleCurrentAndCreateNewAuction() external;
function createBid(uint256 _currentTokenId, bool _standing) external payable;
function cancelStandingBid() external;
function pause() external;
function unpause() external;
function setTimeBuffer(uint256 timeBuffer) external;
function setMinBidIncrementPercentage(uint8 minBidIncrementPercentage) external;
function setDuration(uint256 _duration) external;
}// SPDX-License-Identifier: GPL-3.0
/// @title Interface for the Token
pragma solidity ^0.8.6;
import './IERC721.sol';
interface IOasis is IERC721 {
event OperatorFlagged(address flaggedOperator, bool status);
event TokenCreated(uint256 indexed tokenId);
event TokenBurned(uint256 indexed tokenId);
event MinterUpdated(address minter);
event MinterLocked();
function mint(address _to) external returns (uint256);
function promoMint(address to, uint256 quantity) external returns (uint256);
function burn(uint256 tokenId) external;
function setMinter(address minter) external;
//function lockMinter() external;
function setBaseURI(string memory _newBaseURI) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "./Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)
pragma solidity ^0.8.0;
import "./Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
require(paused(), "Pausable: not paused");
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
* or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
* understand this adds an external call which potentially creates a reentrancy vulnerability.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}// SPDX-License-Identifier: GPL-3.0
/** @title The Wild Oasis ERC-721 token
* @dev This contract is for the Oasis project by Wildxyz
*/
// LICENSE
// Oasis.sol is a modified version of the original code from the
// NounsToken.sol— an implementation of OpenZeppelin's ERC-721:
// https://github.com/nounsDAO/nouns-monorepo/blob/master/packages/nouns-contracts/contracts/NounsToken.sol
// The original code is licensed under the GPL-3.0 license
// Thank you to the Nouns team for the inspiration and code!
pragma solidity ^0.8.6;
import {UpdatableOperatorFilterer} from './UpdatableOperatorFilterer.sol';
import {RevokableDefaultOperatorFilterer} from './RevokableDefaultOperatorFilterer.sol';
import { Ownable } from './Ownable.sol';
import { ERC721 } from './ERC721.sol';
import { IERC721 } from './IERC721.sol';
import { Strings } from './Strings.sol';
import { ERC721Checkpointable } from './ERC721Checkpointable.sol';
import { IOasis } from './IOasis.sol';
contract Oasis is IOasis, Ownable, RevokableDefaultOperatorFilterer, ERC721Checkpointable {
// An address who has permissions to mint Oasis tokens
address public minter;
// The internal Oasis ID tracker
uint256 public _currentTokenId;
// URI
string public baseURI = "";
// Mapping of operators to whether they are approved or not
mapping(address => bool) public authorized;
// Mapping of addresses flagged for denying token interactions
mapping(address => bool) public blockList;
/**
* @notice Require that the sender is the minter.
*/
modifier onlyMinter() {
require(msg.sender == minter, "Sender is not the minter");
_;
}
constructor(address _minter) ERC721("Oasis", "OP") {
minter = _minter;
}
/**
* @notice updates the deny list
* @param flaggedOperator the address to be added to the deny list
* @param status whether the address is to be added or removed from the deny list
*/
function updateDenyList(address flaggedOperator, bool status) public onlyOwner {
_updateDenyList(flaggedOperator, status);
}
/**
* @notice Override isApprovedForAll
* @param _owner The owner of the Nouns
* @param operator The operator to check if approved
*/
function isApprovedForAll(address _owner, address operator) public view override(IERC721, ERC721) returns (bool) {
require(blockList[operator] == false, "Operator has been denied by contract owner.");
if (authorized[operator] == true) {
return true;
}
return super.isApprovedForAll(_owner, operator);
}
/* OS */
function setApprovalForAll(address operator, bool approved) public override(IERC721, ERC721) onlyAllowedOperatorApproval(operator) {
super.setApprovalForAll(operator, approved);
}
function approve(address operator, uint256 tokenId) public override(IERC721, ERC721) onlyAllowedOperatorApproval(operator) {
super.approve(operator, tokenId);
}
function transferFrom(address from, address to, uint256 tokenId) public override(IERC721, ERC721) onlyAllowedOperator(from) {
super.transferFrom(from, to, tokenId);
}
function safeTransferFrom(address from, address to, uint256 tokenId) public override(IERC721, ERC721) onlyAllowedOperator(from) {
super.safeTransferFrom(from, to, tokenId);
}
function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
public
override(IERC721, ERC721)
onlyAllowedOperator(from)
{
super.safeTransferFrom(from, to, tokenId, data);
}
function owner() public view virtual override (Ownable, UpdatableOperatorFilterer) returns (address) {
return Ownable.owner();
}
/**
* @notice sets the authorized operators for interacting with the contract
* @param operator the address to be added to the authorized operators
* @param approved whether the address is approved or not within authorized operators
*/
function setAuthorized(address operator, bool approved) public onlyOwner {
authorized[operator] = approved;
}
/**
* @notice Mint an Oasis token to the given address.
* @dev Only callable by the minter.
* @param _to The address to mint the Oasis token to.
* @return The ID of the newly minted Oasis token.
*/
function mint(address _to) public onlyMinter override returns (uint256) {
return _mintTo(_to, _currentTokenId++);
}
/**
* @notice Mint an Oasis token to the given address.
* @dev Only callable by the minter.
* @param to The address to mint the Oasis token to.
* @param quantity The number of tokens to mint.
* @return The ID of the newly minted Oasis token.
*/
function promoMint(address to, uint256 quantity)
public
onlyMinter
override
returns (uint256)
{
uint256 tokenId = _currentTokenId;
for (uint256 i = 0; i < quantity; i++) {
_mintTo(to, tokenId++);
}
_currentTokenId = tokenId;
return tokenId;
}
/**
* @notice Burn a pass.
* @dev Only callable by the minter.
* @param tokenId The ID of the Oasis token to burn.
*/
function burn(uint256 tokenId) public onlyMinter override {
_burn(tokenId);
emit TokenBurned(tokenId);
}
/** @notice Provides the tokenURI of a specific token
* @param _tokenId: the token ID
* @return the URI of the token
*/
function tokenURI(uint256 _tokenId)
public
view
override
returns (string memory)
{
require(_exists(_tokenId), "Token does not exist.");
return
string(
abi.encodePacked(
baseURI,
Strings.toString(_tokenId),
".json"
)
);
}
/**
* @notice Set the token minter.
* @dev Only callable by the owner when not locked.
* @param _minter The address of the new minter.
*/
function setMinter(address _minter) external onlyOwner override {
minter = _minter;
//emit MinterUpdated(_minter);
}
/**
* @notice Set the base URI.
* @dev Only callable by the owner.
* @param _newBaseURI The new base URI.
*/
function setBaseURI(string memory _newBaseURI) public onlyOwner override {
baseURI = _newBaseURI;
}
//////////////////////////
// Internal Functions ////
//////////////////////////
/**
* @notice updates the deny list
* @param flaggedOperator The address to be approved.
* @param status True if the operator is approved, false to revoke approval.
*/
function _updateDenyList(address flaggedOperator, bool status) internal virtual {
blockList[flaggedOperator] = status;
//emit OperatorFlagged(flaggedOperator, status);
}
/** @notice Mints a new token
* @param to: the address of the new owner looking to mint
* @param tokenId: the token ID
* @return the ID of the newly minted token
*/
function _mintTo(address to, uint256 tokenId) internal returns (uint256) {
_mint(to, tokenId);
emit TokenCreated(tokenId);
return tokenId;
}
}// SPDX-License-Identifier: MIT
// @title Vote checkpointing for an ERC-721 token.
// LICENSE
// ERC721Checkpointable.sol uses and modifies part of Compound Lab's Comp.sol:
// https://github.com/compound-finance/compound-protocol/blob/ae4388e780a8d596d97619d9704a931a2752c2bc/contracts/Governance/Comp.sol
//
// Comp.sol source code Copyright 2020 Compound Labs, Inc. licensed under the BSD-3-Clause license.
// With modifications by Nounders DAO.
//
// Additional conditions of BSD-3-Clause can be found here: https://opensource.org/licenses/BSD-3-Clause
//
// MODIFICATIONS
// Checkpointing logic from Comp.sol has been used with the following modifications:
// - `delegates` is renamed to `_delegates` and is set to private
// - `delegates` is a public function that uses the `_delegates` mapping look-up, but unlike
// Comp.sol, returns the delegator's own address if there is no delegate.
// This avoids the delegator needing to "delegate to self" with an additional transaction
// - `_transferTokens()` is renamed `_beforeTokenTransfer()` and adapted to hook into OpenZeppelin's ERC721 hooks.
// Thank you to the Nouns team for the inspiration and code!
pragma solidity ^0.8.6;
import './ERC721Enumerable.sol';
abstract contract ERC721Checkpointable is ERC721Enumerable {
/// @notice Defines decimals as per ERC-20 convention to make integrations with 3rd party governance platforms easier
uint8 public constant decimals = 0;
/// @notice A record of each accounts delegate
mapping(address => address) private _delegates;
/// @notice A checkpoint for marking number of votes from a given block
struct Checkpoint {
uint32 fromBlock;
uint96 votes;
}
/// @notice A record of votes checkpoints for each account, by index
mapping(address => mapping(uint32 => Checkpoint)) public checkpoints;
/// @notice The number of checkpoints for each account
mapping(address => uint32) public numCheckpoints;
/// @notice The EIP-712 typehash for the contract's domain
bytes32 public constant DOMAIN_TYPEHASH =
keccak256('EIP712Domain(string name,uint256 chainId,address verifyingContract)');
/// @notice The EIP-712 typehash for the delegation struct used by the contract
bytes32 public constant DELEGATION_TYPEHASH =
keccak256('Delegation(address delegatee,uint256 nonce,uint256 expiry)');
/// @notice A record of states for signing / validating signatures
mapping(address => uint256) public nonces;
/// @notice An event thats emitted when an account changes its delegate
event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);
/// @notice An event thats emitted when a delegate account's vote balance changes
event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance);
/**
* @notice The votes a delegator can delegate, which is the current balance of the delegator.
* @dev Used when calling `_delegate()`
*/
function votesToDelegate(address delegator) public view returns (uint96) {
return safe96(balanceOf(delegator), 'ERC721Checkpointable::votesToDelegate: amount exceeds 96 bits');
}
/**
* @notice Overrides the standard `Comp.sol` delegates mapping to return
* the delegator's own address if they haven't delegated.
* This avoids having to delegate to oneself.
*/
function delegates(address delegator) public view returns (address) {
address current = _delegates[delegator];
return current == address(0) ? delegator : current;
}
/**
* @notice Adapted from `_transferTokens()` in `Comp.sol` to update delegate votes.
* @dev hooks into OpenZeppelin's `ERC721._transfer`
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId,
uint256 batchSize
) internal override {
super._beforeTokenTransfer(from, to, tokenId, batchSize);
/// @notice Differs from `_transferTokens()` to use `delegates` override method to simulate auto-delegation
_moveDelegates(delegates(from), delegates(to), 1);
}
/**
* @notice Delegate votes from `msg.sender` to `delegatee`
* @param delegatee The address to delegate votes to
*/
function delegate(address delegatee) public {
if (delegatee == address(0)) delegatee = msg.sender;
return _delegate(msg.sender, delegatee);
}
/**
* @notice Delegates votes from signatory to `delegatee`
* @param delegatee The address to delegate votes to
* @param nonce The contract state required to match the signature
* @param expiry The time at which to expire the signature
* @param v The recovery byte of the signature
* @param r Half of the ECDSA signature pair
* @param s Half of the ECDSA signature pair
*/
function delegateBySig(
address delegatee,
uint256 nonce,
uint256 expiry,
uint8 v,
bytes32 r,
bytes32 s
) public {
bytes32 domainSeparator = keccak256(
abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name())), getChainId(), address(this))
);
bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry));
bytes32 digest = keccak256(abi.encodePacked('\x19\x01', domainSeparator, structHash));
address signatory = ecrecover(digest, v, r, s);
require(signatory != address(0), 'ERC721Checkpointable::delegateBySig: invalid signature');
require(nonce == nonces[signatory]++, 'ERC721Checkpointable::delegateBySig: invalid nonce');
require(block.timestamp <= expiry, 'ERC721Checkpointable::delegateBySig: signature expired');
return _delegate(signatory, delegatee);
}
/**
* @notice Gets the current votes balance for `account`
* @param account The address to get votes balance
* @return The number of current votes for `account`
*/
function getCurrentVotes(address account) external view returns (uint96) {
uint32 nCheckpoints = numCheckpoints[account];
return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
}
/**
* @notice Determine the prior number of votes for an account as of a block number
* @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
* @param account The address of the account to check
* @param blockNumber The block number to get the vote balance at
* @return The number of votes the account had as of the given block
*/
function getPriorVotes(address account, uint256 blockNumber) public view returns (uint96) {
require(blockNumber < block.number, 'ERC721Checkpointable::getPriorVotes: not yet determined');
uint32 nCheckpoints = numCheckpoints[account];
if (nCheckpoints == 0) {
return 0;
}
// First check most recent balance
if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
return checkpoints[account][nCheckpoints - 1].votes;
}
// Next check implicit zero balance
if (checkpoints[account][0].fromBlock > blockNumber) {
return 0;
}
uint32 lower = 0;
uint32 upper = nCheckpoints - 1;
while (upper > lower) {
uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
Checkpoint memory cp = checkpoints[account][center];
if (cp.fromBlock == blockNumber) {
return cp.votes;
} else if (cp.fromBlock < blockNumber) {
lower = center;
} else {
upper = center - 1;
}
}
return checkpoints[account][lower].votes;
}
function _delegate(address delegator, address delegatee) internal {
/// @notice differs from `_delegate()` in `Comp.sol` to use `delegates` override method to simulate auto-delegation
address currentDelegate = delegates(delegator);
_delegates[delegator] = delegatee;
emit DelegateChanged(delegator, currentDelegate, delegatee);
uint96 amount = votesToDelegate(delegator);
_moveDelegates(currentDelegate, delegatee, amount);
}
function _moveDelegates(
address srcRep,
address dstRep,
uint96 amount
) internal {
if (srcRep != dstRep && amount > 0) {
if (srcRep != address(0)) {
uint32 srcRepNum = numCheckpoints[srcRep];
uint96 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
uint96 srcRepNew = sub96(srcRepOld, amount, 'ERC721Checkpointable::_moveDelegates: amount underflows');
_writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
}
if (dstRep != address(0)) {
uint32 dstRepNum = numCheckpoints[dstRep];
uint96 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
uint96 dstRepNew = add96(dstRepOld, amount, 'ERC721Checkpointable::_moveDelegates: amount overflows');
_writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
}
}
}
function _writeCheckpoint(
address delegatee,
uint32 nCheckpoints,
uint96 oldVotes,
uint96 newVotes
) internal {
uint32 blockNumber = safe32(
block.number,
'ERC721Checkpointable::_writeCheckpoint: block number exceeds 32 bits'
);
if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
} else {
checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
numCheckpoints[delegatee] = nCheckpoints + 1;
}
emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
}
function safe32(uint256 n, string memory errorMessage) internal pure returns (uint32) {
require(n < 2**32, errorMessage);
return uint32(n);
}
function safe96(uint256 n, string memory errorMessage) internal pure returns (uint96) {
require(n < 2**96, errorMessage);
return uint96(n);
}
function add96(
uint96 a,
uint96 b,
string memory errorMessage
) internal pure returns (uint96) {
uint96 c = a + b;
require(c >= a, errorMessage);
return c;
}
function sub96(
uint96 a,
uint96 b,
string memory errorMessage
) internal pure returns (uint96) {
require(b <= a, errorMessage);
return a - b;
}
function getChainId() internal view returns (uint256) {
uint256 chainId;
assembly {
chainId := chainid()
}
return chainId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./Math.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @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] = _SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: address zero is not a valid owner");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _ownerOf(tokenId);
require(owner != address(0), "ERC721: invalid token ID");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
_requireMinted(tokenId);
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not token owner or approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
_requireMinted(tokenId);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
*/
function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
return _owners[tokenId];
}
/**
* @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 _ownerOf(tokenId) != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId, 1);
// Check that tokenId was not minted by `_beforeTokenTransfer` hook
require(!_exists(tokenId), "ERC721: token already minted");
unchecked {
// Will not overflow unless all 2**256 token ids are minted to the same owner.
// Given that tokens are minted one by one, it is impossible in practice that
// this ever happens. Might change if we allow batch minting.
// The ERC fails to describe this case.
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId, 1);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
* This is an internal function that does not check if the sender is authorized to operate on the token.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId, 1);
// Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
owner = ERC721.ownerOf(tokenId);
// Clear approvals
delete _tokenApprovals[tokenId];
unchecked {
// Cannot overflow, as that would require more tokens to be burned/transferred
// out than the owner initially received through minting and transferring in.
_balances[owner] -= 1;
}
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId, 1);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId, 1);
// Check that tokenId was not transferred by `_beforeTokenTransfer` hook
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
// Clear approvals from the previous owner
delete _tokenApprovals[tokenId];
unchecked {
// `_balances[from]` cannot overflow for the same reason as described in `_burn`:
// `from`'s balance is the number of token held, which is at least one before the current
// transfer.
// `_balances[to]` could overflow in the conditions described in `_mint`. That would require
// all 2**256 token ids to be minted, which in practice is impossible.
_balances[from] -= 1;
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId, 1);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits an {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Reverts if the `tokenId` has not been minted yet.
*/
function _requireMinted(uint256 tokenId) internal view virtual {
require(_exists(tokenId), "ERC721: invalid token ID");
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
/// @solidity memory-safe-assembly
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
* - When `from` is zero, the tokens will be minted for `to`.
* - When `to` is zero, ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256, /* firstTokenId */
uint256 batchSize
) internal virtual {
if (batchSize > 1) {
if (from != address(0)) {
_balances[from] -= batchSize;
}
if (to != address(0)) {
_balances[to] += batchSize;
}
}
}
/**
* @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
* - When `from` is zero, the tokens were minted for `to`.
* - When `to` is zero, ``from``'s tokens were burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 firstTokenId,
uint256 batchSize
) internal virtual {}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import {RevokableOperatorFilterer} from "./RevokableOperatorFilterer.sol";
/**
* @title RevokableDefaultOperatorFilterer
* @notice Inherits from RevokableOperatorFilterer and automatically subscribes to the default OpenSea subscription.
* Note that OpenSea will disable creator fee enforcement if filtered operators begin fulfilling orders
* on-chain, eg, if the registry is revoked or bypassed.
*/
abstract contract RevokableDefaultOperatorFilterer is RevokableOperatorFilterer {
address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);
constructor() RevokableOperatorFilterer(0x000000000000AAeB6D7670E522A718067333cd4E, DEFAULT_SUBSCRIPTION, true) {}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";
/**
* @title UpdatableOperatorFilterer
* @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
* registrant's entries in the OperatorFilterRegistry. This contract allows the Owner to update the
* OperatorFilterRegistry address via updateOperatorFilterRegistryAddress, including to the zero address,
* which will bypass registry checks.
* Note that OpenSea will still disable creator fee enforcement if filtered operators begin fulfilling orders
* on-chain, eg, if the registry is revoked or bypassed.
* @dev This smart contract is meant to be inherited by token contracts so they can use the following:
* - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
* - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
*/
abstract contract UpdatableOperatorFilterer {
error OperatorNotAllowed(address operator);
error OnlyOwner();
IOperatorFilterRegistry public operatorFilterRegistry;
constructor(address _registry, address subscriptionOrRegistrantToCopy, bool subscribe) {
IOperatorFilterRegistry registry = IOperatorFilterRegistry(_registry);
operatorFilterRegistry = registry;
// If an inheriting token contract is deployed to a network without the registry deployed, the modifier
// will not revert, but the contract will need to be registered with the registry once it is deployed in
// order for the modifier to filter addresses.
if (address(registry).code.length > 0) {
if (subscribe) {
registry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
} else {
if (subscriptionOrRegistrantToCopy != address(0)) {
registry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
} else {
registry.register(address(this));
}
}
}
}
modifier onlyAllowedOperator(address from) virtual {
// Allow spending tokens from addresses with balance
// Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
// from an EOA.
if (from != msg.sender) {
_checkFilterOperator(msg.sender);
}
_;
}
modifier onlyAllowedOperatorApproval(address operator) virtual {
_checkFilterOperator(operator);
_;
}
/**
* @notice Update the address that the contract will make OperatorFilter checks against. When set to the zero
* address, checks will be bypassed. OnlyOwner.
*/
function updateOperatorFilterRegistryAddress(address newRegistry) public virtual {
if (msg.sender != owner()) {
revert OnlyOwner();
}
operatorFilterRegistry = IOperatorFilterRegistry(newRegistry);
}
/**
* @dev assume the contract has an owner, but leave specific Ownable implementation up to inheriting contract
*/
function owner() public view virtual returns (address);
function _checkFilterOperator(address operator) internal view virtual {
IOperatorFilterRegistry registry = operatorFilterRegistry;
// Check registry code length to facilitate testing in environments without a deployed registry.
if (address(registry) != address(0) && address(registry).code.length > 0) {
if (!registry.isOperatorAllowed(address(this), operator)) {
revert OperatorNotAllowed(operator);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
interface IOperatorFilterRegistry {
function isOperatorAllowed(address registrant, address operator) external view returns (bool);
function register(address registrant) external;
function registerAndSubscribe(address registrant, address subscription) external;
function registerAndCopyEntries(address registrant, address registrantToCopy) external;
function unregister(address addr) external;
function updateOperator(address registrant, address operator, bool filtered) external;
function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
function subscribe(address registrant, address registrantToSubscribe) external;
function unsubscribe(address registrant, bool copyExistingEntries) external;
function subscriptionOf(address addr) external returns (address registrant);
function subscribers(address registrant) external returns (address[] memory);
function subscriberAt(address registrant, uint256 index) external returns (address);
function copyEntriesOf(address registrant, address registrantToCopy) external;
function isOperatorFiltered(address registrant, address operator) external returns (bool);
function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
function filteredOperators(address addr) external returns (address[] memory);
function filteredCodeHashes(address addr) external returns (bytes32[] memory);
function filteredOperatorAt(address registrant, uint256 index) external returns (address);
function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
function isRegistered(address addr) external returns (bool);
function codeHashOf(address addr) external returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator
) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1);
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator,
Rounding rounding
) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10**64) {
value /= 10**64;
result += 64;
}
if (value >= 10**32) {
value /= 10**32;
result += 32;
}
if (value >= 10**16) {
value /= 10**16;
result += 16;
}
if (value >= 10**8) {
value /= 10**8;
result += 8;
}
if (value >= 10**4) {
value /= 10**4;
result += 4;
}
if (value >= 10**2) {
value /= 10**2;
result += 2;
}
if (value >= 10**1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import {UpdatableOperatorFilterer} from "./UpdatableOperatorFilterer.sol";
import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";
/**
* @title RevokableOperatorFilterer
* @notice This contract is meant to allow contracts to permanently skip OperatorFilterRegistry checks if desired. The
* Registry itself has an "unregister" function, but if the contract is ownable, the owner can re-register at
* any point. As implemented, this abstract contract allows the contract owner to permanently skip the
* OperatorFilterRegistry checks by calling revokeOperatorFilterRegistry. Once done, the registry
* address cannot be further updated.
* Note that OpenSea will still disable creator fee enforcement if filtered operators begin fulfilling orders
* on-chain, eg, if the registry is revoked or bypassed.
*/
abstract contract RevokableOperatorFilterer is UpdatableOperatorFilterer {
error RegistryHasBeenRevoked();
error InitialRegistryAddressCannotBeZeroAddress();
bool public isOperatorFilterRegistryRevoked;
constructor(address _registry, address subscriptionOrRegistrantToCopy, bool subscribe)
UpdatableOperatorFilterer(_registry, subscriptionOrRegistrantToCopy, subscribe)
{
// don't allow creating a contract with a permanently revoked registry
if (_registry == address(0)) {
revert InitialRegistryAddressCannotBeZeroAddress();
}
}
function _checkFilterOperator(address operator) internal view virtual override {
if (address(operatorFilterRegistry) != address(0)) {
super._checkFilterOperator(operator);
}
}
/**
* @notice Update the address that the contract will make OperatorFilter checks against. When set to the zero
* address, checks will be permanently bypassed, and the address cannot be updated again. OnlyOwner.
*/
function updateOperatorFilterRegistryAddress(address newRegistry) public override {
if (msg.sender != owner()) {
revert OnlyOwner();
}
// if registry has been revoked, do not allow further updates
if (isOperatorFilterRegistryRevoked) {
revert RegistryHasBeenRevoked();
}
operatorFilterRegistry = IOperatorFilterRegistry(newRegistry);
}
/**
* @notice Revoke the OperatorFilterRegistry address, permanently bypassing checks. OnlyOwner.
*/
function revokeOperatorFilterRegistry() public {
if (msg.sender != owner()) {
revert OnlyOwner();
}
// if registry has been revoked, do not allow further updates
if (isOperatorFilterRegistryRevoked) {
revert RegistryHasBeenRevoked();
}
// set to zero address to bypass checks
operatorFilterRegistry = IOperatorFilterRegistry(address(0));
isOperatorFilterRegistryRevoked = true;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)
pragma solidity ^0.8.0;
import "./ERC721.sol";
import "./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev See {ERC721-_beforeTokenTransfer}.
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 firstTokenId,
uint256 batchSize
) internal virtual override {
super._beforeTokenTransfer(from, to, firstTokenId, batchSize);
if (batchSize > 1) {
// Will only trigger during construction. Batch transferring (minting) is not available afterwards.
revert("ERC721Enumerable: consecutive transfers not supported");
}
uint256 tokenId = firstTokenId;
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/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 functionCallWithValue(target, data, 0, "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");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or 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 {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract Oasis","name":"_oasis","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bool","name":"standing","type":"bool"},{"indexed":false,"internalType":"bool","name":"extended","type":"bool"},{"indexed":false,"internalType":"bool","name":"rollover","type":"bool"}],"name":"AuctionBid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"startTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endTime","type":"uint256"}],"name":"AuctionCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"duration","type":"uint256"}],"name":"AuctionDurationUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endTime","type":"uint256"}],"name":"AuctionExtended","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minBidIncrementPercentage","type":"uint256"}],"name":"AuctionMinBidIncrementPercentageUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reservePrice","type":"uint256"}],"name":"AuctionReservePriceUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"winner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AuctionSettled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timeBuffer","type":"uint256"}],"name":"AuctionTimeBufferUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BuyNow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"bidder","type":"address"}],"name":"CancelStandingBid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Bids","outputs":[{"internalType":"address payable","name":"bidder","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bool","name":"minted","type":"bool"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"bool","name":"refunded","type":"bool"},{"internalType":"bool","name":"winner","type":"bool"},{"internalType":"bool","name":"standing","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auction","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"address payable","name":"bidder","type":"address"},{"internalType":"bool","name":"settled","type":"bool"},{"internalType":"uint256","name":"extendedTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"buyNowPrices","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cancelAllStandingBid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cancelStandingBid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_closeTime","type":"uint256"}],"name":"changeCloseTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_currentTokenId","type":"uint256"},{"internalType":"bool","name":"_standing","type":"bool"}],"name":"createBid","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"duration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fixedDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minBidIncrementPercentage","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumBid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oasis","outputs":[{"internalType":"contract Oasis","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_currentTokenId","type":"uint256"},{"internalType":"bool","name":"_standing","type":"bool"},{"internalType":"address","name":"_bidder","type":"address"}],"name":"ownerBidOnBehalf","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payee","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"promoMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Oasis","name":"_newOasis","type":"address"}],"name":"set721ContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_admin","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenId","type":"uint256[]"},{"internalType":"uint256[]","name":"_price","type":"uint256[]"}],"name":"setBuyNowPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_duration","type":"uint256"}],"name":"setDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_minBidIncrementPercentage","type":"uint8"}],"name":"setMinBidIncrementPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minimumBid","type":"uint256"}],"name":"setMinimumBid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_payee","type":"address"}],"name":"setPayee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_state","type":"uint256"}],"name":"setState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timeBuffer","type":"uint256"}],"name":"setTimeBuffer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"settleAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"settleCurrentAndCreateNewAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"standingBidders","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"state","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeBuffer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040526000600355607860045567016345785d8a000060055561012c6006556007805460ff1916600a1790553480156200003a57600080fd5b506040516200375a3803806200375a8339810160408190526200005d91620001d6565b6000805460ff19169055600180556200007633620000da565b600a80546001600160a01b0383166001600160a01b0319918216179091556007805474710900ca8c7c280b0e6bb005e60dfe1cf6e5fa4c00610100600160a81b03199091161790556009805490911633179055620000d36200012c565b5062000208565b600280546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200013662000189565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200016c3390565b6040516001600160a01b03909116815260200160405180910390a1565b60005460ff1615620001d45760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640160405180910390fd5b565b600060208284031215620001e957600080fd5b81516001600160a01b03811681146200020157600080fd5b9392505050565b61354280620002186000396000f3fe6080604052600436106102195760003560e01c80638da5cb5b11610123578063c19d93fb116100ab578063f25efffc1161006f578063f25efffc146106d5578063f2fde38b146106ea578063f6be71d11461070a578063fba3e6531461072a578063fe1b06af1461073f57600080fd5b8063c19d93fb14610668578063ce42a0951461067e578063d3a8638614610694578063ec91f2a4146106aa578063ec9ef06c146106c057600080fd5b8063a3afda1a116100f2578063a3afda1a146105c2578063a4d0a17e146105e2578063a9e966b7146105f7578063ae90b21314610617578063b296024d1461063c57600080fd5b80638da5cb5b146105445780638f675d7414610562578063a2a3eb4d14610582578063a31d7fdf146105a257600080fd5b80635c975abb116101a657806373d404881161017557806373d40488146104295780637d9f6db5146104565780638456cb59146104d757806386495b04146104ec5780638cee33981461050c57600080fd5b80635c975abb146103b1578063704b6c02146103d45780637120334b146103f4578063715018a61461041457600080fd5b806339684216116101ed57806339684216146103345780633ccfd60b146103475780633f4ba83a1461035c578063410459ad1461037157806358d5d6661461039157600080fd5b80629a9b7b1461021e5780630251e03e146102475780630fb5a6b4146102fc57806336ebdb3814610312575b600080fd5b34801561022a57600080fd5b50610234600b5481565b6040519081526020015b60405180910390f35b34801561025357600080fd5b506102b361026236600461305c565b601260205260009081526040902080546001820154600283015460038401546004909401546001600160a01b0390931693919260ff9182169291818116916101008104821691620100009091041687565b604080516001600160a01b03909816885260208801969096529315159486019490945260608501919091521515608084015290151560a0830152151560c082015260e00161023e565b34801561030857600080fd5b5061023460065481565b34801561031e57600080fd5b5061033261032d366004613080565b610752565b005b6103326103423660046130b8565b6107ce565b34801561035357600080fd5b506103326110ae565b34801561036857600080fd5b50610332611183565b34801561037d57600080fd5b5061033261038c36600461305c565b6111dc565b34801561039d57600080fd5b506103326103ac36600461305c565b61122e565b3480156103bd57600080fd5b5060005460ff16604051901515815260200161023e565b3480156103e057600080fd5b506103326103ef36600461305c565b61127a565b34801561040057600080fd5b5061033261040f3660046130e4565b6112c6565b34801561042057600080fd5b50610332611325565b34801561043557600080fd5b506102346104443660046130e4565b60136020526000908152604090205481565b34801561046257600080fd5b50600c54600d54600e54600f5460105460115461049795949392916001600160a01b03811691600160a01b90910460ff169087565b6040805197885260208801969096529486019390935260608501919091526001600160a01b03166080840152151560a083015260c082015260e00161023e565b3480156104e357600080fd5b50610332611359565b3480156104f857600080fd5b506103326105073660046130e4565b61138b565b34801561051857600080fd5b5061052c6105273660046130e4565b6113cf565b6040516001600160a01b03909116815260200161023e565b34801561055057600080fd5b506002546001600160a01b031661052c565b34801561056e57600080fd5b5061033261057d366004613149565b6113f9565b34801561058e57600080fd5b5061033261059d3660046131b5565b6114f4565b3480156105ae57600080fd5b506103326105bd3660046130e4565b61159a565b3480156105ce57600080fd5b50600a5461052c906001600160a01b031681565b3480156105ee57600080fd5b506103326115de565b34801561060357600080fd5b506103326106123660046130e4565b611645565b34801561062357600080fd5b5060075461052c9061010090046001600160a01b031681565b34801561064857600080fd5b506007546106569060ff1681565b60405160ff909116815260200161023e565b34801561067457600080fd5b5061023460035481565b34801561068a57600080fd5b5061023461012c81565b3480156106a057600080fd5b5061023460055481565b3480156106b657600080fd5b5061023460045481565b3480156106cc57600080fd5b506103326116db565b3480156106e157600080fd5b50610332611a09565b3480156106f657600080fd5b5061033261070536600461305c565b611aa4565b34801561071657600080fd5b506103326107253660046130e4565b611b3c565b34801561073657600080fd5b50610332611b9b565b61033261074d3660046131e1565b611e35565b6002546001600160a01b031633146107855760405162461bcd60e51b815260040161077c90613221565b60405180910390fd5b6007805460ff191660ff83169081179091556040519081527fec5ccd96cc77b6219e9d44143df916af68fc169339ea7de5008ff15eae13450d906020015b60405180910390a150565b6002600154036107f05760405162461bcd60e51b815260040161077c90613256565b600260015560005460ff161561083f5760405162461bcd60e51b8152602060048201526014602482015273105d58dd1a5bdb921bdd5cd94e881c185d5cd95960621b604482015260640161077c565b6040805160e081018252600c54808252600d546020830152600e5492820192909252600f5460608201526010546001600160a01b03811660808301819052600160a01b90910460ff16151560a083015260115460c0830152909160009085146108e25760405162461bcd60e51b81526020600482015260156024820152742134b21037b7103bb937b733903a37b5b2b724b21760591b604482015260640161077c565b826060015142106109295760405162461bcd60e51b8152602060048201526011602482015270105d58dd1a5bdb881a185cc8195b991959607a1b604482015260640161077c565b826040015142116109765760405162461bcd60e51b8152602060048201526017602482015276105d58dd1a5bdb881a185cc81b9bdd081cdd185c9d1959604a1b604482015260640161077c565b6001600160a01b038216158015906109b057506001600160a01b03821660009081526012602052604090206004015462010000900460ff16155b80156109d857506001600160a01b03821660009081526012602052604090206004015460ff16155b80156109ed57506001600160a01b0382163314155b15610a2857610a00828460200151612498565b506001600160a01b0382166000908152601260205260409020600401805460ff191660011790555b6001600160a01b038216331480610a7a57503360009081526012602052604090206004015462010000900460ff1615156001148015610a7a57503360009081526012602052604090206004015460ff16155b15610d245733600090815260126020526040902060010154610a9d9034906132a3565b6007546020850151919250606491610ab89160ff16906132b6565b610ac291906132cd565b8360200151610ad191906132a3565b81101580610b05575060008581526013602052604090205415801590610b0557506000858152601360205260409020548110155b610b215760405162461bcd60e51b815260040161077c906132ef565b33600090815260126020526040902060018082018390554260038301556004909101805460ff19169055841515148015610b7457503360009081526012602052604090206004015462010000900460ff16155b15610bc057600880546001810182556000919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b03191633179055610cfa565b83158015610beb57503360009081526012602052604090206004015462010000900460ff1615156001145b15610cfa5760005b600854811015610cf857336001600160a01b031660088281548110610c1a57610c1a613318565b6000918252602090912001546001600160a01b031603610ce65760088054610c449060019061332e565b81548110610c5457610c54613318565b600091825260209091200154600880546001600160a01b039092169183908110610c8057610c80613318565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506008805480610cbf57610cbf613341565b600082815260209020810160001990810180546001600160a01b0319169055019055610cf8565b80610cf081613357565b915050610bf3565b505b336000908152601260205260409020600401805462ff000019166201000086151502179055610f18565b6007546020840151606491610d3e9160ff909116906132b6565b610d4891906132cd565b8360200151610d5791906132a3565b34101580610d8b575060008581526013602052604090205415801590610d8b57506000858152601360205260409020543410155b610da75760405162461bcd60e51b815260040161077c906132ef565b600554341015610dc95760405162461bcd60e51b815260040161077c906132ef565b5034610e0a6040805160e081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c081019190915290565b3380825260208083018481524260608501908152600060a08601818152608087018281528b151560c089018181529784526012909652604092839020885181546001600160a01b0319166001600160a01b0390911617815594516001808701919091559288015160028601805460ff1916911515919091179055925160038501559151600490930180549251955161ffff1990931693151561ff00191693909317610100951515959095029490941762ff0000191662010000911515919091021790559003610f1657600880546001810182556000919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b031916331790555b505b601080546001600160a01b03191633179055600d819055600454606084015160009190610f4690429061332e565b1090508015610f81576004548460600151610f6191906132a3565b60608501819052600f5560045460c0850151610f7d91906132a3565b6011555b600b547f2bac37935fe2935b66c6502f7492e60a3323e2f74bbcdcb502bd320d5d685691338488856000604051610fbc959493929190613370565b60405180910390a2801561100b57600b547f6e912a3a9105bdd2af817ba5adc14e6c127c1035b5b648faa29ca0d58ab8ff4e856060015160405161100291815260200190565b60405180910390a25b6000868152601360205260409020541580159061103657506000868152601360205260409020548210155b156110a25760065442856060015161104e919061332e565b61105891906132a3565b6006554260608501819052600f55604080513381526020810184905287917fe5dbec5e9133fd9d2ed0ccfa3dd3eedf15a9e15bc5120b9ff02e2a2e1983ba33910160405180910390a25b50506001805550505050565b6002546001600160a01b031633146110d85760405162461bcd60e51b815260040161077c90613221565b60075460405160009161010090046001600160a01b03169047908381818185875af1925050503d806000811461112a576040519150601f19603f3d011682016040523d82523d6000602084013e61112f565b606091505b50509050806111805760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2073656e6420746f2070617965652e0000000000000000604482015260640161077c565b50565b6002546001600160a01b031633146111ad5760405162461bcd60e51b815260040161077c90613221565b6111b5612518565b600e5415806111cd5750601054600160a01b900460ff165b156111da576111da61256a565b565b6002546001600160a01b031633146112065760405162461bcd60e51b815260040161077c90613221565b600780546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6002546001600160a01b031633146112585760405162461bcd60e51b815260040161077c90613221565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6002546001600160a01b031633146112a45760405162461bcd60e51b815260040161077c90613221565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6002546001600160a01b031633146112f05760405162461bcd60e51b815260040161077c90613221565b60048190556040518181527f1b55d9f7002bda4490f467e326f22a4a847629c0f2d1ed421607d318d25b410d906020016107c3565b6002546001600160a01b0316331461134f5760405162461bcd60e51b815260040161077c90613221565b6111da600061280c565b6002546001600160a01b031633146113835760405162461bcd60e51b815260040161077c90613221565b6111da61285e565b6002546001600160a01b03163314806113ae57506009546001600160a01b031633145b6113ca5760405162461bcd60e51b815260040161077c906133a2565b600555565b600881815481106113df57600080fd5b6000918252602090912001546001600160a01b0316905081565b6002546001600160a01b031633148061141c57506009546001600160a01b031633145b6114385760405162461bcd60e51b815260040161077c906133a2565b8281146114875760405162461bcd60e51b815260206004820152601b60248201527f41756374696f6e486f7573653a20696e76616c696420696e7075740000000000604482015260640161077c565b60005b838110156114ed578282828181106114a4576114a4613318565b90506020020135601360008787858181106114c1576114c1613318565b9050602002013581526020019081526020016000208190555080806114e590613357565b91505061148a565b5050505050565b6002546001600160a01b0316331461151e5760405162461bcd60e51b815260040161077c90613221565b600a5460405163a2a3eb4d60e01b81526001600160a01b038481166004830152602482018490529091169063a2a3eb4d906044016020604051808303816000875af1158015611571573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159591906133e3565b505050565b6002546001600160a01b03163314806115bd57506009546001600160a01b031633145b6115d95760405162461bcd60e51b815260040161077c906133a2565b600f55565b6115e661289b565b6002546001600160a01b031633146116105760405162461bcd60e51b815260040161077c90613221565b6002600154036116325760405162461bcd60e51b815260040161077c90613256565b600260015561163f6128e4565b60018055565b6002546001600160a01b031633148061166857506009546001600160a01b031633145b6116845760405162461bcd60e51b815260040161077c906133a2565b6002600354106116d65760405162461bcd60e51b815260206004820152601b60248201527f41756374696f6e486f7573653a20696e76616c69642073746174650000000000604482015260640161077c565b600355565b6002600154036116fd5760405162461bcd60e51b815260040161077c90613256565b60026001819055546001600160a01b0316331461172c5760405162461bcd60e51b815260040161077c90613221565b6040805160e081018252600c548152600d546020820152600e5491810191909152600f5460608201526010546001600160a01b0381166080830152600160a01b900460ff16151560a082015260115460c082015260005b600854811015611a0157600881815481106117a0576117a0613318565b60009182526020909120015460808301516001600160a01b0390811691161461188d5761183b600882815481106117d9576117d9613318565b9060005260206000200160009054906101000a90046001600160a01b0316601260006008858154811061180e5761180e613318565b60009182526020808320909101546001600160a01b03168352820192909252604001902060010154612498565b506001601260006008848154811061185557611855613318565b6000918252602080832091909101546001600160a01b031683528201929092526040019020600401805460ff19169115159190911790555b600060126000600884815481106118a6576118a6613318565b60009182526020808320909101546001600160a01b0316835282019290925260400190206004018054911515620100000262ff000019909216919091179055600880546118f59060019061332e565b8154811061190557611905613318565b600091825260209091200154600880546001600160a01b03909216918390811061193157611931613318565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600880548061197057611970613341565b600082815260209020810160001990810180546001600160a01b0319169055019055600880547fbb53f42020feb735caae55bd4cb04b126ed4f70d84b5da86388726b15e905f769190839081106119c9576119c9613318565b600091825260209182902001546040516001600160a01b0390911681520160405180910390a1806119f981613357565b915050611783565b505060018055565b600260015403611a2b5760405162461bcd60e51b815260040161077c90613256565b6002600155611a386128e4565b611a4061256a565b611a48612d58565b600e5442101561163f5760405162461bcd60e51b815260206004820152602160248201527f41756374696f6e486f7573653a2061756374696f6e206e6f74207374617274656044820152601960fa1b606482015260840161077c565b6002546001600160a01b03163314611ace5760405162461bcd60e51b815260040161077c90613221565b6001600160a01b038116611b335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077c565b6111808161280c565b6002546001600160a01b03163314611b665760405162461bcd60e51b815260040161077c90613221565b60068190556040518181527faab6389d8f1c16ba1deb6e9831f5c5442cf4fcf99bf5bfa867460be408a91118906020016107c3565b600260015403611bbd5760405162461bcd60e51b815260040161077c90613256565b600260019081556040805160e081018252600c548152600d54602080830191909152600e5482840152600f5460608301526010546001600160a01b038116608084015260ff600160a01b9091048116151560a084015260115460c0840152336000908152601290925292902060040154909262010000909104909116151514611c885760405162461bcd60e51b815260206004820152601a60248201527f4e6f207374616e64696e672062696420746f2063616e63656c2e000000000000604482015260640161077c565b60808101516001600160a01b03163314611cd85733600081815260126020526040902060010154611cb99190612498565b50336000908152601260205260409020600401805460ff191660011790555b336000908152601260205260408120600401805462ff0000191690555b600854811015611dfa57336001600160a01b031660088281548110611d1c57611d1c613318565b6000918252602090912001546001600160a01b031603611de85760088054611d469060019061332e565b81548110611d5657611d56613318565b600091825260209091200154600880546001600160a01b039092169183908110611d8257611d82613318565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506008805480611dc157611dc1613341565b600082815260209020810160001990810180546001600160a01b0319169055019055611dfa565b80611df281613357565b915050611cf5565b506040513381527fbb53f42020feb735caae55bd4cb04b126ed4f70d84b5da86388726b15e905f769060200160405180910390a15060018055565b600260015403611e575760405162461bcd60e51b815260040161077c90613256565b60026001819055546001600160a01b03163314611e865760405162461bcd60e51b815260040161077c90613221565b6040805160e081018252600c54808252600d546020830152600e5492820192909252600f5460608201526010546001600160a01b0381166080830152600160a01b900460ff16151560a082015260115460c0820152908414611f225760405162461bcd60e51b81526020600482015260156024820152742134b21037b7103bb937b733903a37b5b2b724b21760591b604482015260640161077c565b80606001514210611f695760405162461bcd60e51b8152602060048201526011602482015270105d58dd1a5bdb881a185cc8195b991959607a1b604482015260640161077c565b80604001514211611fb65760405162461bcd60e51b8152602060048201526017602482015276105d58dd1a5bdb881a185cc81b9bdd081cdd185c9d1959604a1b604482015260640161077c565b600554341015611fd85760405162461bcd60e51b815260040161077c906132ef565b80602001513411611ffb5760405162461bcd60e51b815260040161077c906132ef565b60808101516001600160a01b0381161580159061203a57506001600160a01b03811660009081526012602052604090206004015462010000900460ff16155b801561206257506001600160a01b03811660009081526012602052604090206004015460ff16155b1561209d57612075818360200151612498565b506001600160a01b0381166000908152601260205260409020600401805460ff191660011790555b6001600160a01b03831660009081526012602052604081206004015460ff161515900361224b576001600160a01b03831660009081526012602052604090206004015462010000900460ff1615156001036121fc5760005b6008548110156121fa57836001600160a01b03166008828154811061211c5761211c613318565b6000918252602090912001546001600160a01b0316036121e857600880546121469060019061332e565b8154811061215657612156613318565b600091825260209091200154600880546001600160a01b03909216918390811061218257612182613318565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060088054806121c1576121c1613341565b600082815260209020810160001990810180546001600160a01b03191690550190556121fa565b806121f281613357565b9150506120f5565b505b6001600160a01b038316600090815260126020526040902060010154612223908490612498565b506001600160a01b0383166000908152601260205260409020600401805460ff191660011790555b6040805160e08101825260008183018181526080830182815260a084018381526001600160a01b038981168087523460208089019182524260608a019081528e151560c08b01818152948a52601290925299909720885181546001600160a01b031916941693909317835551600180840191909155945160028301805460ff1916911515919091179055965160038201559151600490920180549151965161ffff1990921692151561ff00191692909217610100961515969096029590951762ff0000191662010000951515959095029490941790935590910361237557600880546001810182556000919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319166001600160a01b0386161790555b601080546001600160a01b0319166001600160a01b03861617905534600d556004546060840151600091906123ab90429061332e565b10905080156123e65760045484606001516123c691906132a3565b60608501819052600f5560045460c08501516123e291906132a3565b6011555b600b546001600160a01b0386166000908152601260205260408082206001015490517f2bac37935fe2935b66c6502f7492e60a3323e2f74bbcdcb502bd320d5d6856919261243c928a9290918c91889190613370565b60405180910390a2801561248b57600b547f6e912a3a9105bdd2af817ba5adc14e6c127c1035b5b648faa29ca0d58ab8ff4e856060015160405161248291815260200190565b60405180910390a25b5050600180555050505050565b6040805160008082526020820190925281906001600160a01b038516906175309085906040516124c891906133fc565b600060405180830381858888f193505050503d8060008114612506576040519150601f19603f3d011682016040523d82523d6000602084013e61250b565b606091505b5090925050505b92915050565b61252061289b565b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600a546040516335313c2160e11b81523060048201526001600160a01b0390911690636a627842906024016020604051808303816000875af19250505080156125d0575060408051601f3d908101601f191682019092526125cd918101906133e3565b60015b61260f576125dc61342b565b806308c379a00361260357506125f0613482565b806125fb5750612605565b61118061285e565b505b3d6000803e3d6000fd5b600f5442116126605760405162461bcd60e51b815260206004820152601f60248201527f41756374696f6e486f7573653a2061756374696f6e206e6f7420656e64656400604482015260640161077c565b6040805160e081018252600c548152600d546020820152600e5491810191909152600f5460608201526010546001600160a01b0381166080830152600160a01b900460ff16151560a082015260115460c082015260035460009060011480156126d157506000839052601360205260015b156126fd576126e44263bbf81e006132a3565b6000848152601360205260409020546005559050612728565b60c082015160065461270f90426132a3565b612719919061332e565b67016345785d8a000060055590505b6040805160e08101825284815260006020820181905242928201839052606082018490526080820181905260a0820181905260c0909101819052600c859055600d819055600e91909155600f829055601080546001600160a81b0319169055601155600b83905561012c60065560035460011480156127b35750600083815260136020526040902054155b156127c0576127c061285e565b600e54600f5460405185927fd6eddd1118d71820909c1197aa966dbc15ed6f508554252169cc3d5ccac756ca926127ff92918252602082015260400190565b60405180910390a2505050565b600280546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612866613001565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861254d3390565b60005460ff166111da5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161077c565b600e5460000361292d5760405162461bcd60e51b815260206004820152601460248201527320bab1ba34b7b7103430b9b713ba103132b3bab760611b604482015260640161077c565b6040805160e081018252600c548152600d54602080830191909152600e54828401908152600f5460608401526010546001600160a01b03811660808501819052600160a01b90910460ff16151560a085015260115460c085015260009081526012909252928120925191929190036129de5760405162461bcd60e51b815260206004820152601460248201527320bab1ba34b7b7103430b9b713ba103132b3bab760611b604482015260640161077c565b8160a0015115612a305760405162461bcd60e51b815260206004820181905260248201527f41756374696f6e2068617320616c7265616479206265656e20736574746c6564604482015260640161077c565b8160600151421015612a845760405162461bcd60e51b815260206004820152601860248201527f41756374696f6e206861736e277420636f6d706c657465640000000000000000604482015260640161077c565b6010805460ff60a01b1916600160a01b17905560808201516001600160a01b0316612b1457600a548251604051630852cd8d60e31b81526001600160a01b03909216916342966c6891612add9160040190815260200190565b600060405180830381600087803b158015612af757600080fd5b505af1158015612b0b573d6000803e3d6000fd5b50505050612cdb565b600a54608083015183516040516323b872dd60e01b81523060048201526001600160a01b03928316602482015260448101919091529116906323b872dd90606401600060405180830381600087803b158015612b6f57600080fd5b505af1158015612b83573d6000803e3d6000fd5b50505060048201805461ff001916610100179081905560028301805460ff191660019081179091556201000090910460ff16151590039050612cdb5760048101805462ff00001916905560005b600854811015612cd95782608001516001600160a01b031660088281548110612bfb57612bfb613318565b6000918252602090912001546001600160a01b031603612cc75760088054612c259060019061332e565b81548110612c3557612c35613318565b600091825260209091200154600880546001600160a01b039092169183908110612c6157612c61613318565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506008805480612ca057612ca0613341565b600082815260209020810160001990810180546001600160a01b0319169055019055612cd9565b80612cd181613357565b915050612bd0565b505b602082015115612d07576007546020830151612d059161010090046001600160a01b031690612498565b505b81516080830151602080850151604080516001600160a01b039094168452918301527fc9f72b276a388619c6d185d146697036241880c36654b1a3ffdad07c24038d99910160405180910390a25050565b6040805160e081018252600c548152600d546020820152600e5491810191909152600f5460608201526010546001600160a01b0381166080830152600160a01b900460ff16151560a082015260115460c0820152600080805b600854811015612fd457826012600060088481548110612dd357612dd3613318565b60009182526020808320909101546001600160a01b03168352820192909252604001902060010154118015612e4757506012600060088381548110612e1a57612e1a613318565b60009182526020808320909101546001600160a01b0316835282019290925260400190206004015460ff16155b8015612e9d57506012600060088381548110612e6557612e65613318565b60009182526020808320909101546001600160a01b0316835282019290925260400190206004015460ff620100009091041615156001145b15612f11576012600060088381548110612eb957612eb9613318565b60009182526020808320909101546001600160a01b03168352820192909252604001902060010154600880549194509082908110612ef957612ef9613318565b6000918252602090912001546001600160a01b031691505b83600001517f2bac37935fe2935b66c6502f7492e60a3323e2f74bbcdcb502bd320d5d68569160088381548110612f4a57612f4a613318565b9060005260206000200160009054906101000a90046001600160a01b03166012600060088681548110612f7f57612f7f613318565b60009182526020808320909101546001600160a01b03168352820192909252604090810182206001908101549151612fba9493908290613370565b60405180910390a280612fcc81613357565b915050612db1565b50811561159557601080546001600160a01b0319166001600160a01b0392909216919091179055600d5550565b60005460ff16156111da5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161077c565b6001600160a01b038116811461118057600080fd5b60006020828403121561306e57600080fd5b813561307981613047565b9392505050565b60006020828403121561309257600080fd5b813560ff8116811461307957600080fd5b803580151581146130b357600080fd5b919050565b600080604083850312156130cb57600080fd5b823591506130db602084016130a3565b90509250929050565b6000602082840312156130f657600080fd5b5035919050565b60008083601f84011261310f57600080fd5b50813567ffffffffffffffff81111561312757600080fd5b6020830191508360208260051b850101111561314257600080fd5b9250929050565b6000806000806040858703121561315f57600080fd5b843567ffffffffffffffff8082111561317757600080fd5b613183888389016130fd565b9096509450602087013591508082111561319c57600080fd5b506131a9878288016130fd565b95989497509550505050565b600080604083850312156131c857600080fd5b82356131d381613047565b946020939093013593505050565b6000806000606084860312156131f657600080fd5b83359250613206602085016130a3565b9150604084013561321681613047565b809150509250925092565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156125125761251261328d565b80820281158282048414176125125761251261328d565b6000826132ea57634e487b7160e01b600052601260045260246000fd5b500490565b6020808252600f908201526e2134b21034b9903a37b7903637bb9760891b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b818103818111156125125761251261328d565b634e487b7160e01b600052603160045260246000fd5b6000600182016133695761336961328d565b5060010190565b6001600160a01b0395909516855260208501939093529015156040840152151560608301521515608082015260a00190565b60208082526021908201527f41756374696f6e486f7573653a206f6e6c79206f776e6572206f722061646d696040820152603760f91b606082015260800190565b6000602082840312156133f557600080fd5b5051919050565b6000825160005b8181101561341d5760208186018101518583015201613403565b506000920191825250919050565b600060033d11156134445760046000803e5060005160e01c5b90565b601f8201601f1916810167ffffffffffffffff8111828210171561347b57634e487b7160e01b600052604160045260246000fd5b6040525050565b600060443d10156134905790565b6040516003193d81016004833e81513d67ffffffffffffffff81602484011181841117156134c057505050505090565b82850191508151818111156134d85750505050505090565b843d87010160208285010111156134f25750505050505090565b61350160208286010187613447565b50909594505050505056fea2646970667358221220e6d397691305a8a439b252283703ff0f20685c7db78825e9584ff82dac26e57364736f6c63430008120033000000000000000000000000898157afb3e158cc835d19b9ecd37c69bf460f8c
Deployed Bytecode
0x6080604052600436106102195760003560e01c80638da5cb5b11610123578063c19d93fb116100ab578063f25efffc1161006f578063f25efffc146106d5578063f2fde38b146106ea578063f6be71d11461070a578063fba3e6531461072a578063fe1b06af1461073f57600080fd5b8063c19d93fb14610668578063ce42a0951461067e578063d3a8638614610694578063ec91f2a4146106aa578063ec9ef06c146106c057600080fd5b8063a3afda1a116100f2578063a3afda1a146105c2578063a4d0a17e146105e2578063a9e966b7146105f7578063ae90b21314610617578063b296024d1461063c57600080fd5b80638da5cb5b146105445780638f675d7414610562578063a2a3eb4d14610582578063a31d7fdf146105a257600080fd5b80635c975abb116101a657806373d404881161017557806373d40488146104295780637d9f6db5146104565780638456cb59146104d757806386495b04146104ec5780638cee33981461050c57600080fd5b80635c975abb146103b1578063704b6c02146103d45780637120334b146103f4578063715018a61461041457600080fd5b806339684216116101ed57806339684216146103345780633ccfd60b146103475780633f4ba83a1461035c578063410459ad1461037157806358d5d6661461039157600080fd5b80629a9b7b1461021e5780630251e03e146102475780630fb5a6b4146102fc57806336ebdb3814610312575b600080fd5b34801561022a57600080fd5b50610234600b5481565b6040519081526020015b60405180910390f35b34801561025357600080fd5b506102b361026236600461305c565b601260205260009081526040902080546001820154600283015460038401546004909401546001600160a01b0390931693919260ff9182169291818116916101008104821691620100009091041687565b604080516001600160a01b03909816885260208801969096529315159486019490945260608501919091521515608084015290151560a0830152151560c082015260e00161023e565b34801561030857600080fd5b5061023460065481565b34801561031e57600080fd5b5061033261032d366004613080565b610752565b005b6103326103423660046130b8565b6107ce565b34801561035357600080fd5b506103326110ae565b34801561036857600080fd5b50610332611183565b34801561037d57600080fd5b5061033261038c36600461305c565b6111dc565b34801561039d57600080fd5b506103326103ac36600461305c565b61122e565b3480156103bd57600080fd5b5060005460ff16604051901515815260200161023e565b3480156103e057600080fd5b506103326103ef36600461305c565b61127a565b34801561040057600080fd5b5061033261040f3660046130e4565b6112c6565b34801561042057600080fd5b50610332611325565b34801561043557600080fd5b506102346104443660046130e4565b60136020526000908152604090205481565b34801561046257600080fd5b50600c54600d54600e54600f5460105460115461049795949392916001600160a01b03811691600160a01b90910460ff169087565b6040805197885260208801969096529486019390935260608501919091526001600160a01b03166080840152151560a083015260c082015260e00161023e565b3480156104e357600080fd5b50610332611359565b3480156104f857600080fd5b506103326105073660046130e4565b61138b565b34801561051857600080fd5b5061052c6105273660046130e4565b6113cf565b6040516001600160a01b03909116815260200161023e565b34801561055057600080fd5b506002546001600160a01b031661052c565b34801561056e57600080fd5b5061033261057d366004613149565b6113f9565b34801561058e57600080fd5b5061033261059d3660046131b5565b6114f4565b3480156105ae57600080fd5b506103326105bd3660046130e4565b61159a565b3480156105ce57600080fd5b50600a5461052c906001600160a01b031681565b3480156105ee57600080fd5b506103326115de565b34801561060357600080fd5b506103326106123660046130e4565b611645565b34801561062357600080fd5b5060075461052c9061010090046001600160a01b031681565b34801561064857600080fd5b506007546106569060ff1681565b60405160ff909116815260200161023e565b34801561067457600080fd5b5061023460035481565b34801561068a57600080fd5b5061023461012c81565b3480156106a057600080fd5b5061023460055481565b3480156106b657600080fd5b5061023460045481565b3480156106cc57600080fd5b506103326116db565b3480156106e157600080fd5b50610332611a09565b3480156106f657600080fd5b5061033261070536600461305c565b611aa4565b34801561071657600080fd5b506103326107253660046130e4565b611b3c565b34801561073657600080fd5b50610332611b9b565b61033261074d3660046131e1565b611e35565b6002546001600160a01b031633146107855760405162461bcd60e51b815260040161077c90613221565b60405180910390fd5b6007805460ff191660ff83169081179091556040519081527fec5ccd96cc77b6219e9d44143df916af68fc169339ea7de5008ff15eae13450d906020015b60405180910390a150565b6002600154036107f05760405162461bcd60e51b815260040161077c90613256565b600260015560005460ff161561083f5760405162461bcd60e51b8152602060048201526014602482015273105d58dd1a5bdb921bdd5cd94e881c185d5cd95960621b604482015260640161077c565b6040805160e081018252600c54808252600d546020830152600e5492820192909252600f5460608201526010546001600160a01b03811660808301819052600160a01b90910460ff16151560a083015260115460c0830152909160009085146108e25760405162461bcd60e51b81526020600482015260156024820152742134b21037b7103bb937b733903a37b5b2b724b21760591b604482015260640161077c565b826060015142106109295760405162461bcd60e51b8152602060048201526011602482015270105d58dd1a5bdb881a185cc8195b991959607a1b604482015260640161077c565b826040015142116109765760405162461bcd60e51b8152602060048201526017602482015276105d58dd1a5bdb881a185cc81b9bdd081cdd185c9d1959604a1b604482015260640161077c565b6001600160a01b038216158015906109b057506001600160a01b03821660009081526012602052604090206004015462010000900460ff16155b80156109d857506001600160a01b03821660009081526012602052604090206004015460ff16155b80156109ed57506001600160a01b0382163314155b15610a2857610a00828460200151612498565b506001600160a01b0382166000908152601260205260409020600401805460ff191660011790555b6001600160a01b038216331480610a7a57503360009081526012602052604090206004015462010000900460ff1615156001148015610a7a57503360009081526012602052604090206004015460ff16155b15610d245733600090815260126020526040902060010154610a9d9034906132a3565b6007546020850151919250606491610ab89160ff16906132b6565b610ac291906132cd565b8360200151610ad191906132a3565b81101580610b05575060008581526013602052604090205415801590610b0557506000858152601360205260409020548110155b610b215760405162461bcd60e51b815260040161077c906132ef565b33600090815260126020526040902060018082018390554260038301556004909101805460ff19169055841515148015610b7457503360009081526012602052604090206004015462010000900460ff16155b15610bc057600880546001810182556000919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b03191633179055610cfa565b83158015610beb57503360009081526012602052604090206004015462010000900460ff1615156001145b15610cfa5760005b600854811015610cf857336001600160a01b031660088281548110610c1a57610c1a613318565b6000918252602090912001546001600160a01b031603610ce65760088054610c449060019061332e565b81548110610c5457610c54613318565b600091825260209091200154600880546001600160a01b039092169183908110610c8057610c80613318565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506008805480610cbf57610cbf613341565b600082815260209020810160001990810180546001600160a01b0319169055019055610cf8565b80610cf081613357565b915050610bf3565b505b336000908152601260205260409020600401805462ff000019166201000086151502179055610f18565b6007546020840151606491610d3e9160ff909116906132b6565b610d4891906132cd565b8360200151610d5791906132a3565b34101580610d8b575060008581526013602052604090205415801590610d8b57506000858152601360205260409020543410155b610da75760405162461bcd60e51b815260040161077c906132ef565b600554341015610dc95760405162461bcd60e51b815260040161077c906132ef565b5034610e0a6040805160e081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c081019190915290565b3380825260208083018481524260608501908152600060a08601818152608087018281528b151560c089018181529784526012909652604092839020885181546001600160a01b0319166001600160a01b0390911617815594516001808701919091559288015160028601805460ff1916911515919091179055925160038501559151600490930180549251955161ffff1990931693151561ff00191693909317610100951515959095029490941762ff0000191662010000911515919091021790559003610f1657600880546001810182556000919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b031916331790555b505b601080546001600160a01b03191633179055600d819055600454606084015160009190610f4690429061332e565b1090508015610f81576004548460600151610f6191906132a3565b60608501819052600f5560045460c0850151610f7d91906132a3565b6011555b600b547f2bac37935fe2935b66c6502f7492e60a3323e2f74bbcdcb502bd320d5d685691338488856000604051610fbc959493929190613370565b60405180910390a2801561100b57600b547f6e912a3a9105bdd2af817ba5adc14e6c127c1035b5b648faa29ca0d58ab8ff4e856060015160405161100291815260200190565b60405180910390a25b6000868152601360205260409020541580159061103657506000868152601360205260409020548210155b156110a25760065442856060015161104e919061332e565b61105891906132a3565b6006554260608501819052600f55604080513381526020810184905287917fe5dbec5e9133fd9d2ed0ccfa3dd3eedf15a9e15bc5120b9ff02e2a2e1983ba33910160405180910390a25b50506001805550505050565b6002546001600160a01b031633146110d85760405162461bcd60e51b815260040161077c90613221565b60075460405160009161010090046001600160a01b03169047908381818185875af1925050503d806000811461112a576040519150601f19603f3d011682016040523d82523d6000602084013e61112f565b606091505b50509050806111805760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2073656e6420746f2070617965652e0000000000000000604482015260640161077c565b50565b6002546001600160a01b031633146111ad5760405162461bcd60e51b815260040161077c90613221565b6111b5612518565b600e5415806111cd5750601054600160a01b900460ff165b156111da576111da61256a565b565b6002546001600160a01b031633146112065760405162461bcd60e51b815260040161077c90613221565b600780546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6002546001600160a01b031633146112585760405162461bcd60e51b815260040161077c90613221565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6002546001600160a01b031633146112a45760405162461bcd60e51b815260040161077c90613221565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6002546001600160a01b031633146112f05760405162461bcd60e51b815260040161077c90613221565b60048190556040518181527f1b55d9f7002bda4490f467e326f22a4a847629c0f2d1ed421607d318d25b410d906020016107c3565b6002546001600160a01b0316331461134f5760405162461bcd60e51b815260040161077c90613221565b6111da600061280c565b6002546001600160a01b031633146113835760405162461bcd60e51b815260040161077c90613221565b6111da61285e565b6002546001600160a01b03163314806113ae57506009546001600160a01b031633145b6113ca5760405162461bcd60e51b815260040161077c906133a2565b600555565b600881815481106113df57600080fd5b6000918252602090912001546001600160a01b0316905081565b6002546001600160a01b031633148061141c57506009546001600160a01b031633145b6114385760405162461bcd60e51b815260040161077c906133a2565b8281146114875760405162461bcd60e51b815260206004820152601b60248201527f41756374696f6e486f7573653a20696e76616c696420696e7075740000000000604482015260640161077c565b60005b838110156114ed578282828181106114a4576114a4613318565b90506020020135601360008787858181106114c1576114c1613318565b9050602002013581526020019081526020016000208190555080806114e590613357565b91505061148a565b5050505050565b6002546001600160a01b0316331461151e5760405162461bcd60e51b815260040161077c90613221565b600a5460405163a2a3eb4d60e01b81526001600160a01b038481166004830152602482018490529091169063a2a3eb4d906044016020604051808303816000875af1158015611571573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159591906133e3565b505050565b6002546001600160a01b03163314806115bd57506009546001600160a01b031633145b6115d95760405162461bcd60e51b815260040161077c906133a2565b600f55565b6115e661289b565b6002546001600160a01b031633146116105760405162461bcd60e51b815260040161077c90613221565b6002600154036116325760405162461bcd60e51b815260040161077c90613256565b600260015561163f6128e4565b60018055565b6002546001600160a01b031633148061166857506009546001600160a01b031633145b6116845760405162461bcd60e51b815260040161077c906133a2565b6002600354106116d65760405162461bcd60e51b815260206004820152601b60248201527f41756374696f6e486f7573653a20696e76616c69642073746174650000000000604482015260640161077c565b600355565b6002600154036116fd5760405162461bcd60e51b815260040161077c90613256565b60026001819055546001600160a01b0316331461172c5760405162461bcd60e51b815260040161077c90613221565b6040805160e081018252600c548152600d546020820152600e5491810191909152600f5460608201526010546001600160a01b0381166080830152600160a01b900460ff16151560a082015260115460c082015260005b600854811015611a0157600881815481106117a0576117a0613318565b60009182526020909120015460808301516001600160a01b0390811691161461188d5761183b600882815481106117d9576117d9613318565b9060005260206000200160009054906101000a90046001600160a01b0316601260006008858154811061180e5761180e613318565b60009182526020808320909101546001600160a01b03168352820192909252604001902060010154612498565b506001601260006008848154811061185557611855613318565b6000918252602080832091909101546001600160a01b031683528201929092526040019020600401805460ff19169115159190911790555b600060126000600884815481106118a6576118a6613318565b60009182526020808320909101546001600160a01b0316835282019290925260400190206004018054911515620100000262ff000019909216919091179055600880546118f59060019061332e565b8154811061190557611905613318565b600091825260209091200154600880546001600160a01b03909216918390811061193157611931613318565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600880548061197057611970613341565b600082815260209020810160001990810180546001600160a01b0319169055019055600880547fbb53f42020feb735caae55bd4cb04b126ed4f70d84b5da86388726b15e905f769190839081106119c9576119c9613318565b600091825260209182902001546040516001600160a01b0390911681520160405180910390a1806119f981613357565b915050611783565b505060018055565b600260015403611a2b5760405162461bcd60e51b815260040161077c90613256565b6002600155611a386128e4565b611a4061256a565b611a48612d58565b600e5442101561163f5760405162461bcd60e51b815260206004820152602160248201527f41756374696f6e486f7573653a2061756374696f6e206e6f74207374617274656044820152601960fa1b606482015260840161077c565b6002546001600160a01b03163314611ace5760405162461bcd60e51b815260040161077c90613221565b6001600160a01b038116611b335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077c565b6111808161280c565b6002546001600160a01b03163314611b665760405162461bcd60e51b815260040161077c90613221565b60068190556040518181527faab6389d8f1c16ba1deb6e9831f5c5442cf4fcf99bf5bfa867460be408a91118906020016107c3565b600260015403611bbd5760405162461bcd60e51b815260040161077c90613256565b600260019081556040805160e081018252600c548152600d54602080830191909152600e5482840152600f5460608301526010546001600160a01b038116608084015260ff600160a01b9091048116151560a084015260115460c0840152336000908152601290925292902060040154909262010000909104909116151514611c885760405162461bcd60e51b815260206004820152601a60248201527f4e6f207374616e64696e672062696420746f2063616e63656c2e000000000000604482015260640161077c565b60808101516001600160a01b03163314611cd85733600081815260126020526040902060010154611cb99190612498565b50336000908152601260205260409020600401805460ff191660011790555b336000908152601260205260408120600401805462ff0000191690555b600854811015611dfa57336001600160a01b031660088281548110611d1c57611d1c613318565b6000918252602090912001546001600160a01b031603611de85760088054611d469060019061332e565b81548110611d5657611d56613318565b600091825260209091200154600880546001600160a01b039092169183908110611d8257611d82613318565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506008805480611dc157611dc1613341565b600082815260209020810160001990810180546001600160a01b0319169055019055611dfa565b80611df281613357565b915050611cf5565b506040513381527fbb53f42020feb735caae55bd4cb04b126ed4f70d84b5da86388726b15e905f769060200160405180910390a15060018055565b600260015403611e575760405162461bcd60e51b815260040161077c90613256565b60026001819055546001600160a01b03163314611e865760405162461bcd60e51b815260040161077c90613221565b6040805160e081018252600c54808252600d546020830152600e5492820192909252600f5460608201526010546001600160a01b0381166080830152600160a01b900460ff16151560a082015260115460c0820152908414611f225760405162461bcd60e51b81526020600482015260156024820152742134b21037b7103bb937b733903a37b5b2b724b21760591b604482015260640161077c565b80606001514210611f695760405162461bcd60e51b8152602060048201526011602482015270105d58dd1a5bdb881a185cc8195b991959607a1b604482015260640161077c565b80604001514211611fb65760405162461bcd60e51b8152602060048201526017602482015276105d58dd1a5bdb881a185cc81b9bdd081cdd185c9d1959604a1b604482015260640161077c565b600554341015611fd85760405162461bcd60e51b815260040161077c906132ef565b80602001513411611ffb5760405162461bcd60e51b815260040161077c906132ef565b60808101516001600160a01b0381161580159061203a57506001600160a01b03811660009081526012602052604090206004015462010000900460ff16155b801561206257506001600160a01b03811660009081526012602052604090206004015460ff16155b1561209d57612075818360200151612498565b506001600160a01b0381166000908152601260205260409020600401805460ff191660011790555b6001600160a01b03831660009081526012602052604081206004015460ff161515900361224b576001600160a01b03831660009081526012602052604090206004015462010000900460ff1615156001036121fc5760005b6008548110156121fa57836001600160a01b03166008828154811061211c5761211c613318565b6000918252602090912001546001600160a01b0316036121e857600880546121469060019061332e565b8154811061215657612156613318565b600091825260209091200154600880546001600160a01b03909216918390811061218257612182613318565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060088054806121c1576121c1613341565b600082815260209020810160001990810180546001600160a01b03191690550190556121fa565b806121f281613357565b9150506120f5565b505b6001600160a01b038316600090815260126020526040902060010154612223908490612498565b506001600160a01b0383166000908152601260205260409020600401805460ff191660011790555b6040805160e08101825260008183018181526080830182815260a084018381526001600160a01b038981168087523460208089019182524260608a019081528e151560c08b01818152948a52601290925299909720885181546001600160a01b031916941693909317835551600180840191909155945160028301805460ff1916911515919091179055965160038201559151600490920180549151965161ffff1990921692151561ff00191692909217610100961515969096029590951762ff0000191662010000951515959095029490941790935590910361237557600880546001810182556000919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319166001600160a01b0386161790555b601080546001600160a01b0319166001600160a01b03861617905534600d556004546060840151600091906123ab90429061332e565b10905080156123e65760045484606001516123c691906132a3565b60608501819052600f5560045460c08501516123e291906132a3565b6011555b600b546001600160a01b0386166000908152601260205260408082206001015490517f2bac37935fe2935b66c6502f7492e60a3323e2f74bbcdcb502bd320d5d6856919261243c928a9290918c91889190613370565b60405180910390a2801561248b57600b547f6e912a3a9105bdd2af817ba5adc14e6c127c1035b5b648faa29ca0d58ab8ff4e856060015160405161248291815260200190565b60405180910390a25b5050600180555050505050565b6040805160008082526020820190925281906001600160a01b038516906175309085906040516124c891906133fc565b600060405180830381858888f193505050503d8060008114612506576040519150601f19603f3d011682016040523d82523d6000602084013e61250b565b606091505b5090925050505b92915050565b61252061289b565b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600a546040516335313c2160e11b81523060048201526001600160a01b0390911690636a627842906024016020604051808303816000875af19250505080156125d0575060408051601f3d908101601f191682019092526125cd918101906133e3565b60015b61260f576125dc61342b565b806308c379a00361260357506125f0613482565b806125fb5750612605565b61118061285e565b505b3d6000803e3d6000fd5b600f5442116126605760405162461bcd60e51b815260206004820152601f60248201527f41756374696f6e486f7573653a2061756374696f6e206e6f7420656e64656400604482015260640161077c565b6040805160e081018252600c548152600d546020820152600e5491810191909152600f5460608201526010546001600160a01b0381166080830152600160a01b900460ff16151560a082015260115460c082015260035460009060011480156126d157506000839052601360205260015b156126fd576126e44263bbf81e006132a3565b6000848152601360205260409020546005559050612728565b60c082015160065461270f90426132a3565b612719919061332e565b67016345785d8a000060055590505b6040805160e08101825284815260006020820181905242928201839052606082018490526080820181905260a0820181905260c0909101819052600c859055600d819055600e91909155600f829055601080546001600160a81b0319169055601155600b83905561012c60065560035460011480156127b35750600083815260136020526040902054155b156127c0576127c061285e565b600e54600f5460405185927fd6eddd1118d71820909c1197aa966dbc15ed6f508554252169cc3d5ccac756ca926127ff92918252602082015260400190565b60405180910390a2505050565b600280546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612866613001565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861254d3390565b60005460ff166111da5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161077c565b600e5460000361292d5760405162461bcd60e51b815260206004820152601460248201527320bab1ba34b7b7103430b9b713ba103132b3bab760611b604482015260640161077c565b6040805160e081018252600c548152600d54602080830191909152600e54828401908152600f5460608401526010546001600160a01b03811660808501819052600160a01b90910460ff16151560a085015260115460c085015260009081526012909252928120925191929190036129de5760405162461bcd60e51b815260206004820152601460248201527320bab1ba34b7b7103430b9b713ba103132b3bab760611b604482015260640161077c565b8160a0015115612a305760405162461bcd60e51b815260206004820181905260248201527f41756374696f6e2068617320616c7265616479206265656e20736574746c6564604482015260640161077c565b8160600151421015612a845760405162461bcd60e51b815260206004820152601860248201527f41756374696f6e206861736e277420636f6d706c657465640000000000000000604482015260640161077c565b6010805460ff60a01b1916600160a01b17905560808201516001600160a01b0316612b1457600a548251604051630852cd8d60e31b81526001600160a01b03909216916342966c6891612add9160040190815260200190565b600060405180830381600087803b158015612af757600080fd5b505af1158015612b0b573d6000803e3d6000fd5b50505050612cdb565b600a54608083015183516040516323b872dd60e01b81523060048201526001600160a01b03928316602482015260448101919091529116906323b872dd90606401600060405180830381600087803b158015612b6f57600080fd5b505af1158015612b83573d6000803e3d6000fd5b50505060048201805461ff001916610100179081905560028301805460ff191660019081179091556201000090910460ff16151590039050612cdb5760048101805462ff00001916905560005b600854811015612cd95782608001516001600160a01b031660088281548110612bfb57612bfb613318565b6000918252602090912001546001600160a01b031603612cc75760088054612c259060019061332e565b81548110612c3557612c35613318565b600091825260209091200154600880546001600160a01b039092169183908110612c6157612c61613318565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506008805480612ca057612ca0613341565b600082815260209020810160001990810180546001600160a01b0319169055019055612cd9565b80612cd181613357565b915050612bd0565b505b602082015115612d07576007546020830151612d059161010090046001600160a01b031690612498565b505b81516080830151602080850151604080516001600160a01b039094168452918301527fc9f72b276a388619c6d185d146697036241880c36654b1a3ffdad07c24038d99910160405180910390a25050565b6040805160e081018252600c548152600d546020820152600e5491810191909152600f5460608201526010546001600160a01b0381166080830152600160a01b900460ff16151560a082015260115460c0820152600080805b600854811015612fd457826012600060088481548110612dd357612dd3613318565b60009182526020808320909101546001600160a01b03168352820192909252604001902060010154118015612e4757506012600060088381548110612e1a57612e1a613318565b60009182526020808320909101546001600160a01b0316835282019290925260400190206004015460ff16155b8015612e9d57506012600060088381548110612e6557612e65613318565b60009182526020808320909101546001600160a01b0316835282019290925260400190206004015460ff620100009091041615156001145b15612f11576012600060088381548110612eb957612eb9613318565b60009182526020808320909101546001600160a01b03168352820192909252604001902060010154600880549194509082908110612ef957612ef9613318565b6000918252602090912001546001600160a01b031691505b83600001517f2bac37935fe2935b66c6502f7492e60a3323e2f74bbcdcb502bd320d5d68569160088381548110612f4a57612f4a613318565b9060005260206000200160009054906101000a90046001600160a01b03166012600060088681548110612f7f57612f7f613318565b60009182526020808320909101546001600160a01b03168352820192909252604090810182206001908101549151612fba9493908290613370565b60405180910390a280612fcc81613357565b915050612db1565b50811561159557601080546001600160a01b0319166001600160a01b0392909216919091179055600d5550565b60005460ff16156111da5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161077c565b6001600160a01b038116811461118057600080fd5b60006020828403121561306e57600080fd5b813561307981613047565b9392505050565b60006020828403121561309257600080fd5b813560ff8116811461307957600080fd5b803580151581146130b357600080fd5b919050565b600080604083850312156130cb57600080fd5b823591506130db602084016130a3565b90509250929050565b6000602082840312156130f657600080fd5b5035919050565b60008083601f84011261310f57600080fd5b50813567ffffffffffffffff81111561312757600080fd5b6020830191508360208260051b850101111561314257600080fd5b9250929050565b6000806000806040858703121561315f57600080fd5b843567ffffffffffffffff8082111561317757600080fd5b613183888389016130fd565b9096509450602087013591508082111561319c57600080fd5b506131a9878288016130fd565b95989497509550505050565b600080604083850312156131c857600080fd5b82356131d381613047565b946020939093013593505050565b6000806000606084860312156131f657600080fd5b83359250613206602085016130a3565b9150604084013561321681613047565b809150509250925092565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156125125761251261328d565b80820281158282048414176125125761251261328d565b6000826132ea57634e487b7160e01b600052601260045260246000fd5b500490565b6020808252600f908201526e2134b21034b9903a37b7903637bb9760891b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b818103818111156125125761251261328d565b634e487b7160e01b600052603160045260246000fd5b6000600182016133695761336961328d565b5060010190565b6001600160a01b0395909516855260208501939093529015156040840152151560608301521515608082015260a00190565b60208082526021908201527f41756374696f6e486f7573653a206f6e6c79206f776e6572206f722061646d696040820152603760f91b606082015260800190565b6000602082840312156133f557600080fd5b5051919050565b6000825160005b8181101561341d5760208186018101518583015201613403565b506000920191825250919050565b600060033d11156134445760046000803e5060005160e01c5b90565b601f8201601f1916810167ffffffffffffffff8111828210171561347b57634e487b7160e01b600052604160045260246000fd5b6040525050565b600060443d10156134905790565b6040516003193d81016004833e81513d67ffffffffffffffff81602484011181841117156134c057505050505090565b82850191508151818111156134d85750505050505090565b843d87010160208285010111156134f25750505050505090565b61350160208286010187613447565b50909594505050505056fea2646970667358221220e6d397691305a8a439b252283703ff0f20685c7db78825e9584ff82dac26e57364736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000898157afb3e158cc835d19b9ecd37c69bf460f8c
-----Decoded View---------------
Arg [0] : _oasis (address): 0x898157afB3E158cc835D19B9ecd37C69bF460f8C
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000898157afb3e158cc835d19b9ecd37c69bf460f8c
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.