Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
ParalLandsWayfarers
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: None pragma solidity ^0.8.7; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol"; import "./utils/ERC721AUpgradeable.sol"; import "./utils/parallabsWhitelist.sol"; contract ParalLandsWayfarers is ERC721AUpgradeable, OwnableUpgradeable, PausableUpgradeable, Whitelist, ReentrancyGuardUpgradeable { struct list { uint startTime; uint endTime; uint remainingTokens; uint purchaseLimit; uint price; } string public baseURI; address public designatedSigner; address payable public treasury; uint public maxSupply; uint public ownerRemainingTokens; list public ogList1; list public ogList2; list public wlList; list public pbList; mapping(address => uint) public ogList1MintTracker; mapping(address => uint) public ogList2MintTracker; mapping(address => uint) public wlListMintTracker; mapping(address => uint) public pbListMintTracker; modifier checkSupply(uint256 _amount) { require( _amount > 0, "Invalid amount" ); require( totalSupply() + _amount <= maxSupply - ownerRemainingTokens, "Exceeding max supply" ); _; } /** @notice This is initializer function is used to initialize values of contracts @param _name Collection name @param _symbol Collection Symbol @param _designatedSigner Whitelist signer address of presale buyers */ function initialize (string memory _name, string memory _symbol, address _designatedSigner) public initializer { __Ownable_init(); __Pausable_init(); __ReentrancyGuard_init(); __ERC721A_init(_name, _symbol); __ParallabsSigner_init(); designatedSigner = _designatedSigner; treasury = payable(0xA9D7Be4508aDf12Ce211Bfc2D2Bc52724B2958Ff); maxSupply = 10000; ownerRemainingTokens = 200; ogList1.startTime = 1661691600; ogList1.endTime = ogList1.startTime + 2 days; ogList1.purchaseLimit = 2; ogList1.remainingTokens = 600; ogList1.price = 0.1 ether; ogList2.startTime = ogList1.endTime; ogList2.endTime = ogList2.startTime + 2 days; ogList2.purchaseLimit = 600; ogList2.remainingTokens = 600; ogList2.price = 0.1 ether; wlList.startTime = 1663246800; wlList.endTime = wlList.startTime + 3 days; wlList.purchaseLimit = 1; wlList.remainingTokens = 4400; wlList.price = 0.05 ether; pbList.startTime = wlList.endTime; pbList.endTime = pbList.startTime + 3 days; pbList.purchaseLimit = 2; pbList.remainingTokens = 9800; pbList.price = 0.1 ether; } function ownerMint(uint _amount) external onlyOwner { require(_amount + totalSupply() <= maxSupply, "Exceeding Max Supply"); require(_amount <= ownerRemainingTokens, "Exceeding Owner Limit"); ownerRemainingTokens -= _amount; _mint(msg.sender, _amount); } /** @notice This is function is used to mint tokens for OG Presale @param _whitelist whitelisted object which contains user address and backend signature for verification @param _amount amount of tokens to mint in one transaction */ function ogList1Mint(whitelist memory _whitelist, uint _amount) external payable nonReentrant whenNotPaused checkSupply(_amount) { require(getSigner(_whitelist) == designatedSigner, "!Signer"); require(_whitelist.userAddress == msg.sender, "!Sender"); require(_whitelist.listType == 1, "!List"); require( block.timestamp > ogList1.startTime && block.timestamp <= ogList1.endTime, "OG1 Sale Closed" ); require( _amount + ogList1MintTracker[_whitelist.userAddress] <= ogList1.purchaseLimit, "OG1 Indv. Quota Depleted" ); require(_amount <= ogList1.remainingTokens, "OG1 Sold Out"); require(msg.value == _amount * ogList1.price, "OG1 !(Exact Fee)"); ogList1MintTracker[_whitelist.userAddress] += _amount; ogList1.remainingTokens -= _amount; ogList2.remainingTokens -= _amount; pbList.remainingTokens -= _amount; _mint(_whitelist.userAddress, _amount); } /** @notice This function is used to mint tokens for OG Open Sale @param _whitelist whitelisted object which contains user address and backend signature for verification @param _amount amount of tokens to mint in one transaction */ function ogList2Mint(whitelist memory _whitelist, uint _amount) external payable nonReentrant whenNotPaused checkSupply(_amount) { require(getSigner(_whitelist) == designatedSigner, "!Signer"); require(_whitelist.userAddress == msg.sender, "!Sender"); require(_whitelist.listType == 1, "!List"); require( block.timestamp > ogList2.startTime && block.timestamp <= ogList2.endTime, "OG2 Sale Closed" ); require( _amount + ogList2MintTracker[_whitelist.userAddress] <= ogList2.purchaseLimit, "OG2 Indv. Quota Depleted" ); require(_amount <= ogList2.remainingTokens, "OG2 Sold Out"); require(msg.value == _amount * ogList2.price, "OG2 !(Exact Fee)"); ogList2MintTracker[_whitelist.userAddress] += _amount; ogList2.remainingTokens -= _amount; pbList.remainingTokens -= _amount; _mint(_whitelist.userAddress, _amount); } /** @notice This is function is used to mint tokens for WL Presale @param _whitelist whitelisting object which contains user address and backend signature for verification @param _amount amount of tokens to mint in one transaction */ function wlListMint(whitelist memory _whitelist, uint256 _amount) external payable nonReentrant whenNotPaused checkSupply(_amount) { require(getSigner(_whitelist) == designatedSigner, "!Signer"); require(_whitelist.userAddress == msg.sender, "!Sender"); require(_whitelist.listType == 2, "!List"); require( block.timestamp > wlList.startTime && block.timestamp <= wlList.endTime, "WL Sale Closed" ); require( _amount + wlListMintTracker[_whitelist.userAddress] <= wlList.purchaseLimit, "WL Indv. Quota Depleted" ); require(_amount <= wlList.remainingTokens, "WL Sold Out"); require(msg.value == _amount * wlList.price, "WL !(Exact Fee)"); wlListMintTracker[_whitelist.userAddress] += _amount; wlList.remainingTokens -= _amount; pbList.remainingTokens -= _amount; _mint(_whitelist.userAddress, _amount); } /** @notice This is function is used to mint tokens in public sale @param _amount amount of tokens to mint in one transaction */ function publicMint(uint256 _amount) external payable nonReentrant whenNotPaused checkSupply(_amount) { require(msg.sender == tx.origin, "PB !Wallet"); require( block.timestamp > pbList.startTime && block.timestamp <= pbList.endTime, "PB Sale Closed" ); require( _amount + pbListMintTracker[msg.sender] <= pbList.purchaseLimit, "PB Indv. Quota Depleted" ); require(_amount <= pbList.remainingTokens, "PB Sold Out"); require(msg.value == _amount * pbList.price, "PB !(Exact Fee)"); pbListMintTracker[msg.sender] += _amount; pbList.remainingTokens -= _amount; _mint(msg.sender, _amount); } /** @notice The function allows owner to withdraw accumulated funds */ function withdraw() external onlyOwner { require(treasury != address(0), "Treasury address not set"); treasury.transfer(address(this).balance); } /** @notice The function is used to pause/ unpause all mint functions */ function togglePause() external onlyOwner { if (paused()) { _unpause(); } else { _pause(); } } //////////////// ////Setters//// ////////////// /** @notice This function is used to set base URI @param baseURI_ New Base URI */ function setBaseURI(string memory baseURI_) public onlyOwner { require(bytes(baseURI_).length > 0, "Invalid Base URI Provided"); baseURI = baseURI_; } function setDesignatedSigner(address _signer) external onlyOwner { require(_signer != address(0), "Invalid Address Provided"); designatedSigner = _signer; } function setMaxSupply(uint _supply) external onlyOwner { require(totalSupply() < _supply, "Total Supply Exceeding"); maxSupply = _supply; } function setOwnerCap(uint _cap) external onlyOwner { require(_cap <= maxSupply - totalSupply(), "Exceeding Max Supply"); ownerRemainingTokens = _cap; } function setTreasury(address _treasury) external onlyOwner { require(_treasury != address(0), "Invalid address"); treasury = payable(_treasury); } function setOG1StartTime(uint _time) external onlyOwner { ogList1.startTime = _time; } function setOG1EndTime(uint _time) external onlyOwner { ogList1.endTime = _time; } function setOG1PurchaseLimit(uint _cap) external onlyOwner { ogList1.purchaseLimit = _cap; } function setOG1RemainingTokens(uint _cap) external onlyOwner { ogList1.remainingTokens = _cap; } function setOG1Price(uint _price) external onlyOwner { ogList1.price = _price; } function setOG2StartTime(uint _time) external onlyOwner { ogList2.startTime = _time; } function setOG2EndTime(uint _time) external onlyOwner { ogList2.endTime = _time; } function setOG2PurchaseLimit(uint _cap) external onlyOwner { ogList2.purchaseLimit = _cap; } function setOG2RemainingTokens(uint _cap) external onlyOwner { ogList2.remainingTokens = _cap; } function setOG2Price(uint _price) external onlyOwner { ogList2.price = _price; } function setWLStartTime(uint _time) external onlyOwner { wlList.startTime = _time; } function setWLEndTime(uint _time) external onlyOwner { wlList.endTime = _time; } function setWLPurchaseLimit(uint _cap) external onlyOwner { wlList.purchaseLimit = _cap; } function setWLRemainingTokens(uint _cap) external onlyOwner { wlList.remainingTokens = _cap; } function setWLPrice(uint _price) external onlyOwner { wlList.price = _price; } function setPBStartTime(uint _time) external onlyOwner { pbList.startTime = _time; } function setPBEndTime(uint _time) external onlyOwner { pbList.endTime = _time; } function setPBPurchaseLimit(uint _cap) external onlyOwner { pbList.purchaseLimit = _cap; } function setPBRemainingTokens(uint _cap) external onlyOwner { pbList.remainingTokens = _cap; } function setPBPrice(uint _price) external onlyOwner { pbList.price = _price; } ///////////////// ////Overrides/// /////////////// function _startTokenId() internal view virtual override returns (uint256) { return 1; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuardUpgradeable is Initializable { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; function __ReentrancyGuard_init() internal onlyInitializing { __ReentrancyGuard_init_unchained(); } function __ReentrancyGuard_init_unchained() internal onlyInitializing { _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; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.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 PausableUpgradeable is Initializable, ContextUpgradeable { /** * @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. */ function __Pausable_init() internal onlyInitializing { __Pausable_init_unchained(); } function __Pausable_init_unchained() internal onlyInitializing { _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()); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.7; import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721ReceiverUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/IERC721MetadataUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721AUpgradeable is ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; function __ERC721A_init(string memory name_, string memory symbol_) internal initializer { __Context_init(); __ERC165_init(); _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721AUpgradeable.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if ( to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data) ) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if ( !_checkContractOnERC721Received( address(0), to, updatedIndex++, _data ) ) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721ReceiverUpgradeable(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721ReceiverUpgradeable(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
//SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.7; import "@openzeppelin/contracts-upgradeable/utils/cryptography/draft-EIP712Upgradeable.sol"; contract Whitelist is EIP712Upgradeable { string private constant SIGNING_DOMAIN = "ParaLabs"; string private constant SIGNATURE_VERSION = "1"; struct whitelist { address userAddress; uint256 listType; bytes signature; } function __ParallabsSigner_init() internal initializer { __EIP712_init(SIGNING_DOMAIN, SIGNATURE_VERSION); } function getSigner(whitelist memory parallabs) public view returns (address) { return _verify(parallabs); } /// @notice Returns a hash of the given rarity, prepared using EIP712 typed data hashing rules. function _hash(whitelist memory parallabs) internal view returns (bytes32) { return _hashTypedDataV4( keccak256( abi.encode( keccak256( "whitelist(address userAddress,uint256 listType)" ), parallabs.userAddress, parallabs.listType ) ) ); } function _verify(whitelist memory parallabs) internal view returns (address) { bytes32 digest = _hash(parallabs); return ECDSAUpgradeable.recover(digest, parallabs.signature); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ``` * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original * initialization step. This is essential to configure modules that are added through upgrades and that require * initialization. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.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 IERC721ReceiverUpgradeable { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721MetadataUpgradeable is IERC721Upgradeable { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal onlyInitializing { } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// 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 IERC165Upgradeable { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol) pragma solidity ^0.8.0; import "./ECDSAUpgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ * * @custom:storage-size 52 */ abstract contract EIP712Upgradeable is Initializable { /* solhint-disable var-name-mixedcase */ bytes32 private _HASHED_NAME; bytes32 private _HASHED_VERSION; bytes32 private constant _TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"); /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ function __EIP712_init(string memory name, string memory version) internal onlyInitializing { __EIP712_init_unchained(name, version); } function __EIP712_init_unchained(string memory name, string memory version) internal onlyInitializing { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { return _buildDomainSeparator(_TYPE_HASH, _EIP712NameHash(), _EIP712VersionHash()); } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSAUpgradeable.toTypedDataHash(_domainSeparatorV4(), structHash); } /** * @dev The hash of the name parameter for the EIP712 domain. * * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs * are a concern. */ function _EIP712NameHash() internal virtual view returns (bytes32) { return _HASHED_NAME; } /** * @dev The hash of the version parameter for the EIP712 domain. * * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs * are a concern. */ function _EIP712VersionHash() internal virtual view returns (bytes32) { return _HASHED_VERSION; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../StringsUpgradeable.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSAUpgradeable { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", StringsUpgradeable.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"designatedSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"uint256","name":"listType","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct Whitelist.whitelist","name":"parallabs","type":"tuple"}],"name":"getSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_designatedSigner","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogList1","outputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"remainingTokens","type":"uint256"},{"internalType":"uint256","name":"purchaseLimit","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"uint256","name":"listType","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct Whitelist.whitelist","name":"_whitelist","type":"tuple"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ogList1Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ogList1MintTracker","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogList2","outputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"remainingTokens","type":"uint256"},{"internalType":"uint256","name":"purchaseLimit","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"uint256","name":"listType","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct Whitelist.whitelist","name":"_whitelist","type":"tuple"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ogList2Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ogList2MintTracker","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerRemainingTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pbList","outputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"remainingTokens","type":"uint256"},{"internalType":"uint256","name":"purchaseLimit","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pbListMintTracker","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setDesignatedSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setOG1EndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setOG1Price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cap","type":"uint256"}],"name":"setOG1PurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cap","type":"uint256"}],"name":"setOG1RemainingTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setOG1StartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setOG2EndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setOG2Price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cap","type":"uint256"}],"name":"setOG2PurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cap","type":"uint256"}],"name":"setOG2RemainingTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setOG2StartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cap","type":"uint256"}],"name":"setOwnerCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setPBEndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPBPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cap","type":"uint256"}],"name":"setPBPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cap","type":"uint256"}],"name":"setPBRemainingTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setPBStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setWLEndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setWLPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cap","type":"uint256"}],"name":"setWLPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cap","type":"uint256"}],"name":"setWLRemainingTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setWLStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlList","outputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"remainingTokens","type":"uint256"},{"internalType":"uint256","name":"purchaseLimit","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"uint256","name":"listType","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct Whitelist.whitelist","name":"_whitelist","type":"tuple"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"wlListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wlListMintTracker","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50613c53806100206000396000f3fe6080604052600436106103ce5760003560e01c806370a08231116101fd578063b88d4fde11610118578063d5abeb01116100ab578063f17809741161007a578063f178097414610baf578063f19e75d414610bdb578063f2fde38b14610bfb578063f6a5b8e614610c1b578063f8ddb25614610c3b57600080fd5b8063d5abeb0114610b1c578063e985e9c514610b33578063ebcb3cfc14610b7c578063f0f4426014610b8f57600080fd5b8063c87b56dd116100e7578063c87b56dd14610aa9578063c8d4050a14610ac9578063c979750f14610adc578063ca40012614610afc57600080fd5b8063b88d4fde14610a18578063bde567b014610a38578063bec79eaf14610a66578063c4ae316814610a9457600080fd5b806395d89b4111610190578063a83e52b41161015f578063a83e52b41461098b578063aae25051146109ab578063b172a1ed146109cc578063b5e9d585146109f857600080fd5b806395d89b4114610916578063a22cb4651461092b578063a461185d1461094b578063a64532791461096b57600080fd5b8063895fda13116101cc578063895fda131461088c5780638a710eb0146108ac5780638da5cb5b146108cc5780638db0b441146108ea57600080fd5b806370a0823114610817578063715018a61461083757806375c552271461084c5780637fee98881461086c57600080fd5b806340f1b576116102ed57806355f804b3116102805780636352211e1161024f5780636352211e146107a25780636bd93389146107c25780636c0360eb146107e25780636f8b44b0146107f757600080fd5b806355f804b31461072957806357931ccc146107495780635c975abb1461076957806361d027b31461078157600080fd5b80634c30482a116102bc5780634c30482a146106b25780634f442173146106c95780635230d330146106e95780635243cfe91461070957600080fd5b806340f1b5761461063257806342842e0e146106525780634ad56eca146106725780634bfbc4de1461069257600080fd5b806323b872dd1161036557806330257ab11161033457806330257ab1146105ae57806330e26443146105dc5780633ccfd60b146105ef5780634003b3901461060457600080fd5b806323b872dd146105075780632703d1a2146105275780632bda70c8146105475780632db115441461059b57600080fd5b8063095ea7b3116103a1578063095ea7b314610484578063179999a9146104a457806318160ddd146104c45780631dae4c75146104e757600080fd5b806301ffc9a7146103d357806306fdde0314610408578063077f224a1461042a578063081812fc1461044c575b600080fd5b3480156103df57600080fd5b506103f36103ee3660046136fd565b610c5b565b60405190151581526020015b60405180910390f35b34801561041457600080fd5b5061041d610cad565b6040516103ff9190613907565b34801561043657600080fd5b5061044a61044536600461376b565b610d3f565b005b34801561045857600080fd5b5061046c610467366004613856565b610f54565b6040516001600160a01b0390911681526020016103ff565b34801561049057600080fd5b5061044a61049f3660046136d3565b610f98565b3480156104b057600080fd5b5061044a6104bf366004613856565b611026565b3480156104d057600080fd5b506104d9611034565b6040519081526020016103ff565b3480156104f357600080fd5b5061044a610502366004613856565b611042565b34801561051357600080fd5b5061044a6105223660046135f4565b611050565b34801561053357600080fd5b5061044a610542366004613856565b61105b565b34801561055357600080fd5b506101415461014254610143546101445461014554610573949392919085565b604080519586526020860194909452928401919091526060830152608082015260a0016103ff565b61044a6105a9366004613856565b611069565b3480156105ba57600080fd5b506104d96105c93660046135a6565b6101526020526000908152604090205481565b61044a6105ea366004613812565b6112de565b3480156105fb57600080fd5b5061044a6115d1565b34801561061057600080fd5b506104d961061f3660046135a6565b6101506020526000908152604090205481565b34801561063e57600080fd5b5061044a61064d366004613856565b61166f565b34801561065e57600080fd5b5061044a61066d3660046135f4565b61167d565b34801561067e57600080fd5b5061044a61068d366004613856565b611698565b34801561069e57600080fd5b5061044a6106ad366004613856565b6116a6565b3480156106be57600080fd5b506104d961013b5481565b3480156106d557600080fd5b5061044a6106e4366004613856565b6116b4565b3480156106f557600080fd5b5061044a610704366004613856565b6116c2565b34801561071557600080fd5b5061044a610724366004613856565b6116d0565b34801561073557600080fd5b5061044a610744366004613737565b6116de565b34801561075557600080fd5b5061044a610764366004613856565b61174f565b34801561077557600080fd5b50609f5460ff166103f3565b34801561078d57600080fd5b506101395461046c906001600160a01b031681565b3480156107ae57600080fd5b5061046c6107bd366004613856565b61175d565b3480156107ce57600080fd5b5061044a6107dd366004613856565b61176f565b3480156107ee57600080fd5b5061041d61177d565b34801561080357600080fd5b5061044a610812366004613856565b61180c565b34801561082357600080fd5b506104d96108323660046135a6565b611869565b34801561084357600080fd5b5061044a6118b7565b34801561085857600080fd5b5061044a610867366004613856565b6118cb565b34801561087857600080fd5b5061044a610887366004613856565b6118d9565b34801561089857600080fd5b5061044a6108a7366004613856565b6118e7565b3480156108b857600080fd5b5061044a6108c7366004613856565b6118f5565b3480156108d857600080fd5b50606d546001600160a01b031661046c565b3480156108f657600080fd5b506101465461014754610148546101495461014a54610573949392919085565b34801561092257600080fd5b5061041d611903565b34801561093757600080fd5b5061044a610946366004613697565b611912565b34801561095757600080fd5b5061046c6109663660046137de565b6119a8565b34801561097757600080fd5b5061044a610986366004613856565b6119b3565b34801561099757600080fd5b5061044a6109a63660046135a6565b6119c1565b3480156109b757600080fd5b506101385461046c906001600160a01b031681565b3480156109d857600080fd5b5061014b5461014c5461014d5461014e5461014f54610573949392919085565b348015610a0457600080fd5b5061044a610a13366004613856565b611a42565b348015610a2457600080fd5b5061044a610a33366004613630565b611a50565b348015610a4457600080fd5b506104d9610a533660046135a6565b6101536020526000908152604090205481565b348015610a7257600080fd5b506104d9610a813660046135a6565b6101516020526000908152604090205481565b348015610aa057600080fd5b5061044a611a9b565b348015610ab557600080fd5b5061041d610ac4366004613856565b611abe565b61044a610ad7366004613812565b611b43565b348015610ae857600080fd5b5061044a610af7366004613856565b611e1d565b348015610b0857600080fd5b5061044a610b17366004613856565b611e2b565b348015610b2857600080fd5b506104d961013a5481565b348015610b3f57600080fd5b506103f3610b4e3660046135c1565b6001600160a01b039182166000908152606c6020908152604080832093909416825291909152205460ff1690565b61044a610b8a366004613812565b611e95565b348015610b9b57600080fd5b5061044a610baa3660046135a6565b612139565b348015610bbb57600080fd5b5061013c5461013d5461013e5461013f5461014054610573949392919085565b348015610be757600080fd5b5061044a610bf6366004613856565b6121ac565b348015610c0757600080fd5b5061044a610c163660046135a6565b61227d565b348015610c2757600080fd5b5061044a610c36366004613856565b6122f3565b348015610c4757600080fd5b5061044a610c56366004613856565b612301565b60006001600160e01b031982166380ac58cd60e01b1480610c8c57506001600160e01b03198216635b5e139f60e01b145b80610ca757506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060678054610cbc90613b2f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce890613b2f565b8015610d355780601f10610d0a57610100808354040283529160200191610d35565b820191906000526020600020905b815481529060010190602001808311610d1857829003601f168201915b5050505050905090565b600054610100900460ff1615808015610d5f5750600054600160ff909116105b80610d795750303b158015610d79575060005460ff166001145b610d9e5760405162461bcd60e51b8152600401610d9590613984565b60405180910390fd5b6000805460ff191660011790558015610dc1576000805461ff0019166101001790555b610dc961230f565b610dd161233e565b610dd961236d565b610de3848461239c565b610deb61249c565b61013880546001600160a01b0384166001600160a01b031991821617909155610139805490911673a9d7be4508adf12ce211bfc2d2bc52724b2958ff17905561271061013a5560c861013b5563630b66d061013c819055610e4f906202a300613aa1565b61013d819055600261013f5561025861013e5567016345785d8a000061014055610141819055610e82906202a300613aa1565b610142556102586101448190556101435567016345785d8a00006101455563632321d0610146819055610eb8906203f480613aa1565b6101478190556001610149556111306101485566b1a2bc2ec5000061014a5561014b819055610eea906203f480613aa1565b61014c55600261014e5561264861014d5567016345785d8a000061014f558015610f4e576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b50505050565b6000610f5f826125a0565b610f7c576040516333d1c03960e21b815260040160405180910390fd5b506000908152606b60205260409020546001600160a01b031690565b6000610fa38261175d565b9050806001600160a01b0316836001600160a01b03161415610fd85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ff85750610ff68133610b4e565b155b15611016576040516367d9dca160e11b815260040160405180910390fd5b6110218383836125d9565b505050565b61102e612635565b61014355565b606654606554036000190190565b61104a612635565b61014755565b61102183838361268f565b611063612635565b61013d55565b600261010554141561108d5760405162461bcd60e51b8152600401610d9590613a6a565b60026101055561109b61287c565b80600081116110bc5760405162461bcd60e51b8152600401610d959061391a565b61013b5461013a546110ce9190613aec565b816110d7611034565b6110e19190613aa1565b11156110ff5760405162461bcd60e51b8152600401610d95906139f1565b33321461113b5760405162461bcd60e51b815260206004820152600a6024820152691410880855d85b1b195d60b21b6044820152606401610d95565b61014b5442118015611150575061014c544211155b61118d5760405162461bcd60e51b815260206004820152600e60248201526d14108814d85b194810db1bdcd95960921b6044820152606401610d95565b61014e5433600090815261015360205260409020546111ac9084613aa1565b11156111fa5760405162461bcd60e51b815260206004820152601760248201527f504220496e64762e2051756f7461204465706c657465640000000000000000006044820152606401610d95565b61014d5482111561123b5760405162461bcd60e51b815260206004820152600b60248201526a14108814dbdb190813dd5d60aa1b6044820152606401610d95565b61014f546112499083613acd565b34146112895760405162461bcd60e51b815260206004820152600f60248201526e50422021284578616374204665652960881b6044820152606401610d95565b3360009081526101536020526040812080548492906112a9908490613aa1565b909155505061014d80548391906000906112c4908490613aec565b909155506112d4905033836128c2565b5050600161010555565b60026101055414156113025760405162461bcd60e51b8152600401610d9590613a6a565b60026101055561131061287c565b80600081116113315760405162461bcd60e51b8152600401610d959061391a565b61013b5461013a546113439190613aec565b8161134c611034565b6113569190613aa1565b11156113745760405162461bcd60e51b8152600401610d95906139f1565b610138546001600160a01b031661138a846119a8565b6001600160a01b0316146113b05760405162461bcd60e51b8152600401610d9590613963565b82516001600160a01b031633146113d95760405162461bcd60e51b8152600401610d9590613942565b82602001516002146113fd5760405162461bcd60e51b8152600401610d95906139d2565b61014654421180156114125750610147544211155b61144f5760405162461bcd60e51b815260206004820152600e60248201526d15d30814d85b194810db1bdcd95960921b6044820152606401610d95565b6101495483516001600160a01b0316600090815261015260205260409020546114789084613aa1565b11156114c65760405162461bcd60e51b815260206004820152601760248201527f574c20496e64762e2051756f7461204465706c657465640000000000000000006044820152606401610d95565b610148548211156115075760405162461bcd60e51b815260206004820152600b60248201526a15d30814dbdb190813dd5d60aa1b6044820152606401610d95565b61014a546115159083613acd565b34146115555760405162461bcd60e51b815260206004820152600f60248201526e574c2021284578616374204665652960881b6044820152606401610d95565b82516001600160a01b0316600090815261015260205260408120805484929061157f908490613aa1565b9091555050610148805483919060009061159a908490613aec565b909155505061014d80548391906000906115b5908490613aec565b909155505082516115c690836128c2565b505060016101055550565b6115d9612635565b610139546001600160a01b03166116325760405162461bcd60e51b815260206004820152601860248201527f54726561737572792061646472657373206e6f742073657400000000000000006044820152606401610d95565b610139546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561166c573d6000803e3d6000fd5b50565b611677612635565b61014955565b61102183838360405180602001604052806000815250611a50565b6116a0612635565b61014e55565b6116ae612635565b61014055565b6116bc612635565b61013c55565b6116ca612635565b61014d55565b6116d8612635565b61013e55565b6116e6612635565b60008151116117375760405162461bcd60e51b815260206004820152601960248201527f496e76616c69642042617365205552492050726f7669646564000000000000006044820152606401610d95565b805161174b906101379060208401906133e6565b5050565b611757612635565b61014455565b6000611768826129f2565b5192915050565b611777612635565b61014f55565b610137805461178b90613b2f565b80601f01602080910402602001604051908101604052809291908181526020018280546117b790613b2f565b80156118045780601f106117d957610100808354040283529160200191611804565b820191906000526020600020905b8154815290600101906020018083116117e757829003601f168201915b505050505081565b611814612635565b8061181d611034565b106118635760405162461bcd60e51b8152602060048201526016602482015275546f74616c20537570706c7920457863656564696e6760501b6044820152606401610d95565b61013a55565b60006001600160a01b038216611892576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152606a60205260409020546001600160401b031690565b6118bf612635565b6118c96000612b19565b565b6118d3612635565b61014855565b6118e1612635565b61014c55565b6118ef612635565b61014555565b6118fd612635565b61014655565b606060688054610cbc90613b2f565b6001600160a01b03821633141561193c5760405163b06307db60e01b815260040160405180910390fd5b336000818152606c602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610ca782612b6b565b6119bb612635565b61014155565b6119c9612635565b6001600160a01b038116611a1f5760405162461bcd60e51b815260206004820152601860248201527f496e76616c696420416464726573732050726f766964656400000000000000006044820152606401610d95565b61013880546001600160a01b0319166001600160a01b0392909216919091179055565b611a4a612635565b61014b55565b611a5b84848461268f565b6001600160a01b0383163b15158015611a7d5750611a7b84848484612b87565b155b15610f4e576040516368d2bf6b60e11b815260040160405180910390fd5b611aa3612635565b609f5460ff1615611ab6576118c9612c7f565b6118c9612cd1565b6060611ac9826125a0565b611ae657604051630a14c4b560e41b815260040160405180910390fd5b6000611af0612d0e565b9050805160001415611b115760405180602001604052806000815250611b3c565b80611b1b84612d1e565b604051602001611b2c92919061389b565b6040516020818303038152906040525b9392505050565b6002610105541415611b675760405162461bcd60e51b8152600401610d9590613a6a565b600261010555611b7561287c565b8060008111611b965760405162461bcd60e51b8152600401610d959061391a565b61013b5461013a54611ba89190613aec565b81611bb1611034565b611bbb9190613aa1565b1115611bd95760405162461bcd60e51b8152600401610d95906139f1565b610138546001600160a01b0316611bef846119a8565b6001600160a01b031614611c155760405162461bcd60e51b8152600401610d9590613963565b82516001600160a01b03163314611c3e5760405162461bcd60e51b8152600401610d9590613942565b8260200151600114611c625760405162461bcd60e51b8152600401610d95906139d2565b61013c5442118015611c77575061013d544211155b611cb55760405162461bcd60e51b815260206004820152600f60248201526e13d1cc4814d85b194810db1bdcd959608a1b6044820152606401610d95565b61013f5483516001600160a01b031660009081526101506020526040902054611cde9084613aa1565b1115611d2c5760405162461bcd60e51b815260206004820152601860248201527f4f473120496e64762e2051756f7461204465706c6574656400000000000000006044820152606401610d95565b61013e54821115611d6e5760405162461bcd60e51b815260206004820152600c60248201526b13d1cc4814dbdb190813dd5d60a21b6044820152606401610d95565b61014054611d7c9083613acd565b3414611dbd5760405162461bcd60e51b815260206004820152601060248201526f4f47312021284578616374204665652960801b6044820152606401610d95565b82516001600160a01b03166000908152610150602052604081208054849290611de7908490613aa1565b909155505061013e8054839190600090611e02908490613aec565b9091555050610143805483919060009061159a908490613aec565b611e25612635565b61014255565b611e33612635565b611e3b611034565b61013a54611e499190613aec565b811115611e8f5760405162461bcd60e51b8152602060048201526014602482015273457863656564696e67204d617820537570706c7960601b6044820152606401610d95565b61013b55565b6002610105541415611eb95760405162461bcd60e51b8152600401610d9590613a6a565b600261010555611ec761287c565b8060008111611ee85760405162461bcd60e51b8152600401610d959061391a565b61013b5461013a54611efa9190613aec565b81611f03611034565b611f0d9190613aa1565b1115611f2b5760405162461bcd60e51b8152600401610d95906139f1565b610138546001600160a01b0316611f41846119a8565b6001600160a01b031614611f675760405162461bcd60e51b8152600401610d9590613963565b82516001600160a01b03163314611f905760405162461bcd60e51b8152600401610d9590613942565b8260200151600114611fb45760405162461bcd60e51b8152600401610d95906139d2565b6101415442118015611fc95750610142544211155b6120075760405162461bcd60e51b815260206004820152600f60248201526e13d1cc8814d85b194810db1bdcd959608a1b6044820152606401610d95565b6101445483516001600160a01b0316600090815261015160205260409020546120309084613aa1565b111561207e5760405162461bcd60e51b815260206004820152601860248201527f4f473220496e64762e2051756f7461204465706c6574656400000000000000006044820152606401610d95565b610143548211156120c05760405162461bcd60e51b815260206004820152600c60248201526b13d1cc8814dbdb190813dd5d60a21b6044820152606401610d95565b610145546120ce9083613acd565b341461210f5760405162461bcd60e51b815260206004820152601060248201526f4f47322021284578616374204665652960801b6044820152606401610d95565b82516001600160a01b03166000908152610151602052604081208054849290611e02908490613aa1565b612141612635565b6001600160a01b0381166121895760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610d95565b61013980546001600160a01b0319166001600160a01b0392909216919091179055565b6121b4612635565b61013a546121c0611034565b6121ca9083613aa1565b111561220f5760405162461bcd60e51b8152602060048201526014602482015273457863656564696e67204d617820537570706c7960601b6044820152606401610d95565b61013b5481111561225a5760405162461bcd60e51b8152602060048201526015602482015274115e18d959591a5b99c813dddb995c88131a5b5a5d605a1b6044820152606401610d95565b8061013b600082825461226d9190613aec565b9091555061166c905033826128c2565b612285612635565b6001600160a01b0381166122ea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d95565b61166c81612b19565b6122fb612635565b61014a55565b612309612635565b61013f55565b600054610100900460ff166123365760405162461bcd60e51b8152600401610d9590613a1f565b6118c9612e1b565b600054610100900460ff166123655760405162461bcd60e51b8152600401610d9590613a1f565b6118c9612e4b565b600054610100900460ff166123945760405162461bcd60e51b8152600401610d9590613a1f565b6118c9612e7e565b600054610100900460ff16158080156123bc5750600054600160ff909116105b806123d65750303b1580156123d6575060005460ff166001145b6123f25760405162461bcd60e51b8152600401610d9590613984565b6000805460ff191660011790558015612415576000805461ff0019166101001790555b61241d612ead565b612425612ead565b82516124389060679060208601906133e6565b50815161244c9060689060208501906133e6565b5060016065558015611021576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a1505050565b600054610100900460ff16158080156124bc5750600054600160ff909116105b806124d65750303b1580156124d6575060005460ff166001145b6124f25760405162461bcd60e51b8152600401610d9590613984565b6000805460ff191660011790558015612515576000805461ff0019166101001790555b61255860405180604001604052806008815260200167506172614c61627360c01b815250604051806040016040528060018152602001603160f81b815250612ed4565b801561166c576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150565b6000816001111580156125b4575060655482105b8015610ca7575050600090815260696020526040902054600160e01b900460ff161590565b6000828152606b602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606d546001600160a01b031633146118c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d95565b600061269a826129f2565b9050836001600160a01b031681600001516001600160a01b0316146126d15760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806126ef57506126ef8533610b4e565b8061270a5750336126ff84610f54565b6001600160a01b0316145b90508061272a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661275157604051633a954ecd60e21b815260040160405180910390fd5b61275d600084876125d9565b6001600160a01b038581166000908152606a60209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652606990945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661283157606554821461283157805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b609f5460ff16156118c95760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610d95565b6065546001600160a01b0383166128eb57604051622e076360e81b815260040160405180910390fd5b816129095760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383166000818152606a6020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168a0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168a01811690920217909155858452606990925290912080546001600160e01b031916909217600160a01b4290921691909102179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156129a55750606555505050565b60408051606081018252600080825260208201819052918101919091528180600111158015612a22575060655481105b15612b0057600081815260696020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290612afe5780516001600160a01b031615612a95579392505050565b5060001901600081815260696020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612af9579392505050565b612a95565b505b604051636f96cda160e11b815260040160405180910390fd5b606d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080612b7783612f05565b9050611b3c818460400151612f7c565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612bbc9033908990889088906004016138ca565b602060405180830381600087803b158015612bd657600080fd5b505af1925050508015612c06575060408051601f3d908101601f19168201909252612c039181019061371a565b60015b612c61573d808015612c34576040519150601f19603f3d011682016040523d82523d6000602084013e612c39565b606091505b508051612c59576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b612c87612fa0565b609f805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b612cd961287c565b609f805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612cb43390565b60606101378054610cbc90613b2f565b606081612d425750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612d6c5780612d5681613b6a565b9150612d659050600a83613ab9565b9150612d46565b6000816001600160401b03811115612d8657612d86613bf1565b6040519080825280601f01601f191660200182016040528015612db0576020820181803683370190505b5090505b8415612c7757612dc5600183613aec565b9150612dd2600a86613b85565b612ddd906030613aa1565b60f81b818381518110612df257612df2613bdb565b60200101906001600160f81b031916908160001a905350612e14600a86613ab9565b9450612db4565b600054610100900460ff16612e425760405162461bcd60e51b8152600401610d9590613a1f565b6118c933612b19565b600054610100900460ff16612e725760405162461bcd60e51b8152600401610d9590613a1f565b609f805460ff19169055565b600054610100900460ff16612ea55760405162461bcd60e51b8152600401610d9590613a1f565b600161010555565b600054610100900460ff166118c95760405162461bcd60e51b8152600401610d9590613a1f565b600054610100900460ff16612efb5760405162461bcd60e51b8152600401610d9590613a1f565b61174b8282612fe9565b6000610ca77ffdd4cb02711acab264774ef11d46e22f150fabba06eddda945f4a080ba769aea83600001518460200151604051602001612f61939291909283526001600160a01b03919091166020830152604082015260600190565b6040516020818303038152906040528051906020012061302a565b6000806000612f8b8585613078565b91509150612f98816130be565b509392505050565b609f5460ff166118c95760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610d95565b600054610100900460ff166130105760405162461bcd60e51b8152600401610d9590613a1f565b81516020928301208151919092012060d19190915560d255565b6000610ca7613037613279565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000808251604114156130af5760208301516040840151606085015160001a6130a3878285856132f9565b945094505050506130b7565b506000905060025b9250929050565b60008160048111156130d2576130d2613bc5565b14156130db5750565b60018160048111156130ef576130ef613bc5565b141561313d5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610d95565b600281600481111561315157613151613bc5565b141561319f5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610d95565b60038160048111156131b3576131b3613bc5565b141561320c5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610d95565b600481600481111561322057613220613bc5565b141561166c5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610d95565b60006132f47f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6132a860d15490565b60d2546040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090509392505050565b905090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561333057506000905060036133dd565b8460ff16601b1415801561334857508460ff16601c14155b1561335957506000905060046133dd565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156133ad573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166133d6576000600192509250506133dd565b9150600090505b94509492505050565b8280546133f290613b2f565b90600052602060002090601f016020900481019282613414576000855561345a565b82601f1061342d57805160ff191683800117855561345a565b8280016001018555821561345a579182015b8281111561345a57825182559160200191906001019061343f565b5061346692915061346a565b5090565b5b80821115613466576000815560010161346b565b80356001600160a01b038116811461349657600080fd5b919050565b600082601f8301126134ac57600080fd5b81356001600160401b03808211156134c6576134c6613bf1565b604051601f8301601f19908116603f011681019082821181831017156134ee576134ee613bf1565b8160405283815286602085880101111561350757600080fd5b836020870160208301376000602085830101528094505050505092915050565b60006060828403121561353957600080fd5b604051606081016001600160401b03828210818311171561355c5761355c613bf1565b8160405282935061356c8561347f565b835260208501356020840152604085013591508082111561358c57600080fd5b506135998582860161349b565b6040830152505092915050565b6000602082840312156135b857600080fd5b611b3c8261347f565b600080604083850312156135d457600080fd5b6135dd8361347f565b91506135eb6020840161347f565b90509250929050565b60008060006060848603121561360957600080fd5b6136128461347f565b92506136206020850161347f565b9150604084013590509250925092565b6000806000806080858703121561364657600080fd5b61364f8561347f565b935061365d6020860161347f565b92506040850135915060608501356001600160401b0381111561367f57600080fd5b61368b8782880161349b565b91505092959194509250565b600080604083850312156136aa57600080fd5b6136b38361347f565b9150602083013580151581146136c857600080fd5b809150509250929050565b600080604083850312156136e657600080fd5b6136ef8361347f565b946020939093013593505050565b60006020828403121561370f57600080fd5b8135611b3c81613c07565b60006020828403121561372c57600080fd5b8151611b3c81613c07565b60006020828403121561374957600080fd5b81356001600160401b0381111561375f57600080fd5b612c778482850161349b565b60008060006060848603121561378057600080fd5b83356001600160401b038082111561379757600080fd5b6137a38783880161349b565b945060208601359150808211156137b957600080fd5b506137c68682870161349b565b9250506137d56040850161347f565b90509250925092565b6000602082840312156137f057600080fd5b81356001600160401b0381111561380657600080fd5b612c7784828501613527565b6000806040838503121561382557600080fd5b82356001600160401b0381111561383b57600080fd5b61384785828601613527565b95602094909401359450505050565b60006020828403121561386857600080fd5b5035919050565b60008151808452613887816020860160208601613b03565b601f01601f19169290920160200192915050565b600083516138ad818460208801613b03565b8351908301906138c1818360208801613b03565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906138fd9083018461386f565b9695505050505050565b602081526000611b3c602083018461386f565b6020808252600e908201526d125b9d985b1a5908185b5bdd5b9d60921b604082015260600190565b60208082526007908201526610a9b2b73232b960c91b604082015260600190565b60208082526007908201526610a9b4b3b732b960c91b604082015260600190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b60208082526005908201526408531a5cdd60da1b604082015260600190565b602080825260149082015273457863656564696e67206d617820737570706c7960601b604082015260600190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60008219821115613ab457613ab4613b99565b500190565b600082613ac857613ac8613baf565b500490565b6000816000190483118215151615613ae757613ae7613b99565b500290565b600082821015613afe57613afe613b99565b500390565b60005b83811015613b1e578181015183820152602001613b06565b83811115610f4e5750506000910152565b600181811c90821680613b4357607f821691505b60208210811415613b6457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613b7e57613b7e613b99565b5060010190565b600082613b9457613b94613baf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461166c57600080fdfea264697066735822122067fc8150b32067870a043dd1fc9c9231f62cf04ab900c6cfacb5209bd270651264736f6c63430008070033
Deployed Bytecode
0x6080604052600436106103ce5760003560e01c806370a08231116101fd578063b88d4fde11610118578063d5abeb01116100ab578063f17809741161007a578063f178097414610baf578063f19e75d414610bdb578063f2fde38b14610bfb578063f6a5b8e614610c1b578063f8ddb25614610c3b57600080fd5b8063d5abeb0114610b1c578063e985e9c514610b33578063ebcb3cfc14610b7c578063f0f4426014610b8f57600080fd5b8063c87b56dd116100e7578063c87b56dd14610aa9578063c8d4050a14610ac9578063c979750f14610adc578063ca40012614610afc57600080fd5b8063b88d4fde14610a18578063bde567b014610a38578063bec79eaf14610a66578063c4ae316814610a9457600080fd5b806395d89b4111610190578063a83e52b41161015f578063a83e52b41461098b578063aae25051146109ab578063b172a1ed146109cc578063b5e9d585146109f857600080fd5b806395d89b4114610916578063a22cb4651461092b578063a461185d1461094b578063a64532791461096b57600080fd5b8063895fda13116101cc578063895fda131461088c5780638a710eb0146108ac5780638da5cb5b146108cc5780638db0b441146108ea57600080fd5b806370a0823114610817578063715018a61461083757806375c552271461084c5780637fee98881461086c57600080fd5b806340f1b576116102ed57806355f804b3116102805780636352211e1161024f5780636352211e146107a25780636bd93389146107c25780636c0360eb146107e25780636f8b44b0146107f757600080fd5b806355f804b31461072957806357931ccc146107495780635c975abb1461076957806361d027b31461078157600080fd5b80634c30482a116102bc5780634c30482a146106b25780634f442173146106c95780635230d330146106e95780635243cfe91461070957600080fd5b806340f1b5761461063257806342842e0e146106525780634ad56eca146106725780634bfbc4de1461069257600080fd5b806323b872dd1161036557806330257ab11161033457806330257ab1146105ae57806330e26443146105dc5780633ccfd60b146105ef5780634003b3901461060457600080fd5b806323b872dd146105075780632703d1a2146105275780632bda70c8146105475780632db115441461059b57600080fd5b8063095ea7b3116103a1578063095ea7b314610484578063179999a9146104a457806318160ddd146104c45780631dae4c75146104e757600080fd5b806301ffc9a7146103d357806306fdde0314610408578063077f224a1461042a578063081812fc1461044c575b600080fd5b3480156103df57600080fd5b506103f36103ee3660046136fd565b610c5b565b60405190151581526020015b60405180910390f35b34801561041457600080fd5b5061041d610cad565b6040516103ff9190613907565b34801561043657600080fd5b5061044a61044536600461376b565b610d3f565b005b34801561045857600080fd5b5061046c610467366004613856565b610f54565b6040516001600160a01b0390911681526020016103ff565b34801561049057600080fd5b5061044a61049f3660046136d3565b610f98565b3480156104b057600080fd5b5061044a6104bf366004613856565b611026565b3480156104d057600080fd5b506104d9611034565b6040519081526020016103ff565b3480156104f357600080fd5b5061044a610502366004613856565b611042565b34801561051357600080fd5b5061044a6105223660046135f4565b611050565b34801561053357600080fd5b5061044a610542366004613856565b61105b565b34801561055357600080fd5b506101415461014254610143546101445461014554610573949392919085565b604080519586526020860194909452928401919091526060830152608082015260a0016103ff565b61044a6105a9366004613856565b611069565b3480156105ba57600080fd5b506104d96105c93660046135a6565b6101526020526000908152604090205481565b61044a6105ea366004613812565b6112de565b3480156105fb57600080fd5b5061044a6115d1565b34801561061057600080fd5b506104d961061f3660046135a6565b6101506020526000908152604090205481565b34801561063e57600080fd5b5061044a61064d366004613856565b61166f565b34801561065e57600080fd5b5061044a61066d3660046135f4565b61167d565b34801561067e57600080fd5b5061044a61068d366004613856565b611698565b34801561069e57600080fd5b5061044a6106ad366004613856565b6116a6565b3480156106be57600080fd5b506104d961013b5481565b3480156106d557600080fd5b5061044a6106e4366004613856565b6116b4565b3480156106f557600080fd5b5061044a610704366004613856565b6116c2565b34801561071557600080fd5b5061044a610724366004613856565b6116d0565b34801561073557600080fd5b5061044a610744366004613737565b6116de565b34801561075557600080fd5b5061044a610764366004613856565b61174f565b34801561077557600080fd5b50609f5460ff166103f3565b34801561078d57600080fd5b506101395461046c906001600160a01b031681565b3480156107ae57600080fd5b5061046c6107bd366004613856565b61175d565b3480156107ce57600080fd5b5061044a6107dd366004613856565b61176f565b3480156107ee57600080fd5b5061041d61177d565b34801561080357600080fd5b5061044a610812366004613856565b61180c565b34801561082357600080fd5b506104d96108323660046135a6565b611869565b34801561084357600080fd5b5061044a6118b7565b34801561085857600080fd5b5061044a610867366004613856565b6118cb565b34801561087857600080fd5b5061044a610887366004613856565b6118d9565b34801561089857600080fd5b5061044a6108a7366004613856565b6118e7565b3480156108b857600080fd5b5061044a6108c7366004613856565b6118f5565b3480156108d857600080fd5b50606d546001600160a01b031661046c565b3480156108f657600080fd5b506101465461014754610148546101495461014a54610573949392919085565b34801561092257600080fd5b5061041d611903565b34801561093757600080fd5b5061044a610946366004613697565b611912565b34801561095757600080fd5b5061046c6109663660046137de565b6119a8565b34801561097757600080fd5b5061044a610986366004613856565b6119b3565b34801561099757600080fd5b5061044a6109a63660046135a6565b6119c1565b3480156109b757600080fd5b506101385461046c906001600160a01b031681565b3480156109d857600080fd5b5061014b5461014c5461014d5461014e5461014f54610573949392919085565b348015610a0457600080fd5b5061044a610a13366004613856565b611a42565b348015610a2457600080fd5b5061044a610a33366004613630565b611a50565b348015610a4457600080fd5b506104d9610a533660046135a6565b6101536020526000908152604090205481565b348015610a7257600080fd5b506104d9610a813660046135a6565b6101516020526000908152604090205481565b348015610aa057600080fd5b5061044a611a9b565b348015610ab557600080fd5b5061041d610ac4366004613856565b611abe565b61044a610ad7366004613812565b611b43565b348015610ae857600080fd5b5061044a610af7366004613856565b611e1d565b348015610b0857600080fd5b5061044a610b17366004613856565b611e2b565b348015610b2857600080fd5b506104d961013a5481565b348015610b3f57600080fd5b506103f3610b4e3660046135c1565b6001600160a01b039182166000908152606c6020908152604080832093909416825291909152205460ff1690565b61044a610b8a366004613812565b611e95565b348015610b9b57600080fd5b5061044a610baa3660046135a6565b612139565b348015610bbb57600080fd5b5061013c5461013d5461013e5461013f5461014054610573949392919085565b348015610be757600080fd5b5061044a610bf6366004613856565b6121ac565b348015610c0757600080fd5b5061044a610c163660046135a6565b61227d565b348015610c2757600080fd5b5061044a610c36366004613856565b6122f3565b348015610c4757600080fd5b5061044a610c56366004613856565b612301565b60006001600160e01b031982166380ac58cd60e01b1480610c8c57506001600160e01b03198216635b5e139f60e01b145b80610ca757506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060678054610cbc90613b2f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce890613b2f565b8015610d355780601f10610d0a57610100808354040283529160200191610d35565b820191906000526020600020905b815481529060010190602001808311610d1857829003601f168201915b5050505050905090565b600054610100900460ff1615808015610d5f5750600054600160ff909116105b80610d795750303b158015610d79575060005460ff166001145b610d9e5760405162461bcd60e51b8152600401610d9590613984565b60405180910390fd5b6000805460ff191660011790558015610dc1576000805461ff0019166101001790555b610dc961230f565b610dd161233e565b610dd961236d565b610de3848461239c565b610deb61249c565b61013880546001600160a01b0384166001600160a01b031991821617909155610139805490911673a9d7be4508adf12ce211bfc2d2bc52724b2958ff17905561271061013a5560c861013b5563630b66d061013c819055610e4f906202a300613aa1565b61013d819055600261013f5561025861013e5567016345785d8a000061014055610141819055610e82906202a300613aa1565b610142556102586101448190556101435567016345785d8a00006101455563632321d0610146819055610eb8906203f480613aa1565b6101478190556001610149556111306101485566b1a2bc2ec5000061014a5561014b819055610eea906203f480613aa1565b61014c55600261014e5561264861014d5567016345785d8a000061014f558015610f4e576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b50505050565b6000610f5f826125a0565b610f7c576040516333d1c03960e21b815260040160405180910390fd5b506000908152606b60205260409020546001600160a01b031690565b6000610fa38261175d565b9050806001600160a01b0316836001600160a01b03161415610fd85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ff85750610ff68133610b4e565b155b15611016576040516367d9dca160e11b815260040160405180910390fd5b6110218383836125d9565b505050565b61102e612635565b61014355565b606654606554036000190190565b61104a612635565b61014755565b61102183838361268f565b611063612635565b61013d55565b600261010554141561108d5760405162461bcd60e51b8152600401610d9590613a6a565b60026101055561109b61287c565b80600081116110bc5760405162461bcd60e51b8152600401610d959061391a565b61013b5461013a546110ce9190613aec565b816110d7611034565b6110e19190613aa1565b11156110ff5760405162461bcd60e51b8152600401610d95906139f1565b33321461113b5760405162461bcd60e51b815260206004820152600a6024820152691410880855d85b1b195d60b21b6044820152606401610d95565b61014b5442118015611150575061014c544211155b61118d5760405162461bcd60e51b815260206004820152600e60248201526d14108814d85b194810db1bdcd95960921b6044820152606401610d95565b61014e5433600090815261015360205260409020546111ac9084613aa1565b11156111fa5760405162461bcd60e51b815260206004820152601760248201527f504220496e64762e2051756f7461204465706c657465640000000000000000006044820152606401610d95565b61014d5482111561123b5760405162461bcd60e51b815260206004820152600b60248201526a14108814dbdb190813dd5d60aa1b6044820152606401610d95565b61014f546112499083613acd565b34146112895760405162461bcd60e51b815260206004820152600f60248201526e50422021284578616374204665652960881b6044820152606401610d95565b3360009081526101536020526040812080548492906112a9908490613aa1565b909155505061014d80548391906000906112c4908490613aec565b909155506112d4905033836128c2565b5050600161010555565b60026101055414156113025760405162461bcd60e51b8152600401610d9590613a6a565b60026101055561131061287c565b80600081116113315760405162461bcd60e51b8152600401610d959061391a565b61013b5461013a546113439190613aec565b8161134c611034565b6113569190613aa1565b11156113745760405162461bcd60e51b8152600401610d95906139f1565b610138546001600160a01b031661138a846119a8565b6001600160a01b0316146113b05760405162461bcd60e51b8152600401610d9590613963565b82516001600160a01b031633146113d95760405162461bcd60e51b8152600401610d9590613942565b82602001516002146113fd5760405162461bcd60e51b8152600401610d95906139d2565b61014654421180156114125750610147544211155b61144f5760405162461bcd60e51b815260206004820152600e60248201526d15d30814d85b194810db1bdcd95960921b6044820152606401610d95565b6101495483516001600160a01b0316600090815261015260205260409020546114789084613aa1565b11156114c65760405162461bcd60e51b815260206004820152601760248201527f574c20496e64762e2051756f7461204465706c657465640000000000000000006044820152606401610d95565b610148548211156115075760405162461bcd60e51b815260206004820152600b60248201526a15d30814dbdb190813dd5d60aa1b6044820152606401610d95565b61014a546115159083613acd565b34146115555760405162461bcd60e51b815260206004820152600f60248201526e574c2021284578616374204665652960881b6044820152606401610d95565b82516001600160a01b0316600090815261015260205260408120805484929061157f908490613aa1565b9091555050610148805483919060009061159a908490613aec565b909155505061014d80548391906000906115b5908490613aec565b909155505082516115c690836128c2565b505060016101055550565b6115d9612635565b610139546001600160a01b03166116325760405162461bcd60e51b815260206004820152601860248201527f54726561737572792061646472657373206e6f742073657400000000000000006044820152606401610d95565b610139546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561166c573d6000803e3d6000fd5b50565b611677612635565b61014955565b61102183838360405180602001604052806000815250611a50565b6116a0612635565b61014e55565b6116ae612635565b61014055565b6116bc612635565b61013c55565b6116ca612635565b61014d55565b6116d8612635565b61013e55565b6116e6612635565b60008151116117375760405162461bcd60e51b815260206004820152601960248201527f496e76616c69642042617365205552492050726f7669646564000000000000006044820152606401610d95565b805161174b906101379060208401906133e6565b5050565b611757612635565b61014455565b6000611768826129f2565b5192915050565b611777612635565b61014f55565b610137805461178b90613b2f565b80601f01602080910402602001604051908101604052809291908181526020018280546117b790613b2f565b80156118045780601f106117d957610100808354040283529160200191611804565b820191906000526020600020905b8154815290600101906020018083116117e757829003601f168201915b505050505081565b611814612635565b8061181d611034565b106118635760405162461bcd60e51b8152602060048201526016602482015275546f74616c20537570706c7920457863656564696e6760501b6044820152606401610d95565b61013a55565b60006001600160a01b038216611892576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152606a60205260409020546001600160401b031690565b6118bf612635565b6118c96000612b19565b565b6118d3612635565b61014855565b6118e1612635565b61014c55565b6118ef612635565b61014555565b6118fd612635565b61014655565b606060688054610cbc90613b2f565b6001600160a01b03821633141561193c5760405163b06307db60e01b815260040160405180910390fd5b336000818152606c602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610ca782612b6b565b6119bb612635565b61014155565b6119c9612635565b6001600160a01b038116611a1f5760405162461bcd60e51b815260206004820152601860248201527f496e76616c696420416464726573732050726f766964656400000000000000006044820152606401610d95565b61013880546001600160a01b0319166001600160a01b0392909216919091179055565b611a4a612635565b61014b55565b611a5b84848461268f565b6001600160a01b0383163b15158015611a7d5750611a7b84848484612b87565b155b15610f4e576040516368d2bf6b60e11b815260040160405180910390fd5b611aa3612635565b609f5460ff1615611ab6576118c9612c7f565b6118c9612cd1565b6060611ac9826125a0565b611ae657604051630a14c4b560e41b815260040160405180910390fd5b6000611af0612d0e565b9050805160001415611b115760405180602001604052806000815250611b3c565b80611b1b84612d1e565b604051602001611b2c92919061389b565b6040516020818303038152906040525b9392505050565b6002610105541415611b675760405162461bcd60e51b8152600401610d9590613a6a565b600261010555611b7561287c565b8060008111611b965760405162461bcd60e51b8152600401610d959061391a565b61013b5461013a54611ba89190613aec565b81611bb1611034565b611bbb9190613aa1565b1115611bd95760405162461bcd60e51b8152600401610d95906139f1565b610138546001600160a01b0316611bef846119a8565b6001600160a01b031614611c155760405162461bcd60e51b8152600401610d9590613963565b82516001600160a01b03163314611c3e5760405162461bcd60e51b8152600401610d9590613942565b8260200151600114611c625760405162461bcd60e51b8152600401610d95906139d2565b61013c5442118015611c77575061013d544211155b611cb55760405162461bcd60e51b815260206004820152600f60248201526e13d1cc4814d85b194810db1bdcd959608a1b6044820152606401610d95565b61013f5483516001600160a01b031660009081526101506020526040902054611cde9084613aa1565b1115611d2c5760405162461bcd60e51b815260206004820152601860248201527f4f473120496e64762e2051756f7461204465706c6574656400000000000000006044820152606401610d95565b61013e54821115611d6e5760405162461bcd60e51b815260206004820152600c60248201526b13d1cc4814dbdb190813dd5d60a21b6044820152606401610d95565b61014054611d7c9083613acd565b3414611dbd5760405162461bcd60e51b815260206004820152601060248201526f4f47312021284578616374204665652960801b6044820152606401610d95565b82516001600160a01b03166000908152610150602052604081208054849290611de7908490613aa1565b909155505061013e8054839190600090611e02908490613aec565b9091555050610143805483919060009061159a908490613aec565b611e25612635565b61014255565b611e33612635565b611e3b611034565b61013a54611e499190613aec565b811115611e8f5760405162461bcd60e51b8152602060048201526014602482015273457863656564696e67204d617820537570706c7960601b6044820152606401610d95565b61013b55565b6002610105541415611eb95760405162461bcd60e51b8152600401610d9590613a6a565b600261010555611ec761287c565b8060008111611ee85760405162461bcd60e51b8152600401610d959061391a565b61013b5461013a54611efa9190613aec565b81611f03611034565b611f0d9190613aa1565b1115611f2b5760405162461bcd60e51b8152600401610d95906139f1565b610138546001600160a01b0316611f41846119a8565b6001600160a01b031614611f675760405162461bcd60e51b8152600401610d9590613963565b82516001600160a01b03163314611f905760405162461bcd60e51b8152600401610d9590613942565b8260200151600114611fb45760405162461bcd60e51b8152600401610d95906139d2565b6101415442118015611fc95750610142544211155b6120075760405162461bcd60e51b815260206004820152600f60248201526e13d1cc8814d85b194810db1bdcd959608a1b6044820152606401610d95565b6101445483516001600160a01b0316600090815261015160205260409020546120309084613aa1565b111561207e5760405162461bcd60e51b815260206004820152601860248201527f4f473220496e64762e2051756f7461204465706c6574656400000000000000006044820152606401610d95565b610143548211156120c05760405162461bcd60e51b815260206004820152600c60248201526b13d1cc8814dbdb190813dd5d60a21b6044820152606401610d95565b610145546120ce9083613acd565b341461210f5760405162461bcd60e51b815260206004820152601060248201526f4f47322021284578616374204665652960801b6044820152606401610d95565b82516001600160a01b03166000908152610151602052604081208054849290611e02908490613aa1565b612141612635565b6001600160a01b0381166121895760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610d95565b61013980546001600160a01b0319166001600160a01b0392909216919091179055565b6121b4612635565b61013a546121c0611034565b6121ca9083613aa1565b111561220f5760405162461bcd60e51b8152602060048201526014602482015273457863656564696e67204d617820537570706c7960601b6044820152606401610d95565b61013b5481111561225a5760405162461bcd60e51b8152602060048201526015602482015274115e18d959591a5b99c813dddb995c88131a5b5a5d605a1b6044820152606401610d95565b8061013b600082825461226d9190613aec565b9091555061166c905033826128c2565b612285612635565b6001600160a01b0381166122ea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d95565b61166c81612b19565b6122fb612635565b61014a55565b612309612635565b61013f55565b600054610100900460ff166123365760405162461bcd60e51b8152600401610d9590613a1f565b6118c9612e1b565b600054610100900460ff166123655760405162461bcd60e51b8152600401610d9590613a1f565b6118c9612e4b565b600054610100900460ff166123945760405162461bcd60e51b8152600401610d9590613a1f565b6118c9612e7e565b600054610100900460ff16158080156123bc5750600054600160ff909116105b806123d65750303b1580156123d6575060005460ff166001145b6123f25760405162461bcd60e51b8152600401610d9590613984565b6000805460ff191660011790558015612415576000805461ff0019166101001790555b61241d612ead565b612425612ead565b82516124389060679060208601906133e6565b50815161244c9060689060208501906133e6565b5060016065558015611021576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a1505050565b600054610100900460ff16158080156124bc5750600054600160ff909116105b806124d65750303b1580156124d6575060005460ff166001145b6124f25760405162461bcd60e51b8152600401610d9590613984565b6000805460ff191660011790558015612515576000805461ff0019166101001790555b61255860405180604001604052806008815260200167506172614c61627360c01b815250604051806040016040528060018152602001603160f81b815250612ed4565b801561166c576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150565b6000816001111580156125b4575060655482105b8015610ca7575050600090815260696020526040902054600160e01b900460ff161590565b6000828152606b602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606d546001600160a01b031633146118c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d95565b600061269a826129f2565b9050836001600160a01b031681600001516001600160a01b0316146126d15760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806126ef57506126ef8533610b4e565b8061270a5750336126ff84610f54565b6001600160a01b0316145b90508061272a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661275157604051633a954ecd60e21b815260040160405180910390fd5b61275d600084876125d9565b6001600160a01b038581166000908152606a60209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652606990945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661283157606554821461283157805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b609f5460ff16156118c95760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610d95565b6065546001600160a01b0383166128eb57604051622e076360e81b815260040160405180910390fd5b816129095760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383166000818152606a6020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168a0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168a01811690920217909155858452606990925290912080546001600160e01b031916909217600160a01b4290921691909102179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156129a55750606555505050565b60408051606081018252600080825260208201819052918101919091528180600111158015612a22575060655481105b15612b0057600081815260696020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290612afe5780516001600160a01b031615612a95579392505050565b5060001901600081815260696020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612af9579392505050565b612a95565b505b604051636f96cda160e11b815260040160405180910390fd5b606d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080612b7783612f05565b9050611b3c818460400151612f7c565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612bbc9033908990889088906004016138ca565b602060405180830381600087803b158015612bd657600080fd5b505af1925050508015612c06575060408051601f3d908101601f19168201909252612c039181019061371a565b60015b612c61573d808015612c34576040519150601f19603f3d011682016040523d82523d6000602084013e612c39565b606091505b508051612c59576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b612c87612fa0565b609f805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b612cd961287c565b609f805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612cb43390565b60606101378054610cbc90613b2f565b606081612d425750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612d6c5780612d5681613b6a565b9150612d659050600a83613ab9565b9150612d46565b6000816001600160401b03811115612d8657612d86613bf1565b6040519080825280601f01601f191660200182016040528015612db0576020820181803683370190505b5090505b8415612c7757612dc5600183613aec565b9150612dd2600a86613b85565b612ddd906030613aa1565b60f81b818381518110612df257612df2613bdb565b60200101906001600160f81b031916908160001a905350612e14600a86613ab9565b9450612db4565b600054610100900460ff16612e425760405162461bcd60e51b8152600401610d9590613a1f565b6118c933612b19565b600054610100900460ff16612e725760405162461bcd60e51b8152600401610d9590613a1f565b609f805460ff19169055565b600054610100900460ff16612ea55760405162461bcd60e51b8152600401610d9590613a1f565b600161010555565b600054610100900460ff166118c95760405162461bcd60e51b8152600401610d9590613a1f565b600054610100900460ff16612efb5760405162461bcd60e51b8152600401610d9590613a1f565b61174b8282612fe9565b6000610ca77ffdd4cb02711acab264774ef11d46e22f150fabba06eddda945f4a080ba769aea83600001518460200151604051602001612f61939291909283526001600160a01b03919091166020830152604082015260600190565b6040516020818303038152906040528051906020012061302a565b6000806000612f8b8585613078565b91509150612f98816130be565b509392505050565b609f5460ff166118c95760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610d95565b600054610100900460ff166130105760405162461bcd60e51b8152600401610d9590613a1f565b81516020928301208151919092012060d19190915560d255565b6000610ca7613037613279565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000808251604114156130af5760208301516040840151606085015160001a6130a3878285856132f9565b945094505050506130b7565b506000905060025b9250929050565b60008160048111156130d2576130d2613bc5565b14156130db5750565b60018160048111156130ef576130ef613bc5565b141561313d5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610d95565b600281600481111561315157613151613bc5565b141561319f5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610d95565b60038160048111156131b3576131b3613bc5565b141561320c5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610d95565b600481600481111561322057613220613bc5565b141561166c5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610d95565b60006132f47f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6132a860d15490565b60d2546040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090509392505050565b905090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561333057506000905060036133dd565b8460ff16601b1415801561334857508460ff16601c14155b1561335957506000905060046133dd565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156133ad573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166133d6576000600192509250506133dd565b9150600090505b94509492505050565b8280546133f290613b2f565b90600052602060002090601f016020900481019282613414576000855561345a565b82601f1061342d57805160ff191683800117855561345a565b8280016001018555821561345a579182015b8281111561345a57825182559160200191906001019061343f565b5061346692915061346a565b5090565b5b80821115613466576000815560010161346b565b80356001600160a01b038116811461349657600080fd5b919050565b600082601f8301126134ac57600080fd5b81356001600160401b03808211156134c6576134c6613bf1565b604051601f8301601f19908116603f011681019082821181831017156134ee576134ee613bf1565b8160405283815286602085880101111561350757600080fd5b836020870160208301376000602085830101528094505050505092915050565b60006060828403121561353957600080fd5b604051606081016001600160401b03828210818311171561355c5761355c613bf1565b8160405282935061356c8561347f565b835260208501356020840152604085013591508082111561358c57600080fd5b506135998582860161349b565b6040830152505092915050565b6000602082840312156135b857600080fd5b611b3c8261347f565b600080604083850312156135d457600080fd5b6135dd8361347f565b91506135eb6020840161347f565b90509250929050565b60008060006060848603121561360957600080fd5b6136128461347f565b92506136206020850161347f565b9150604084013590509250925092565b6000806000806080858703121561364657600080fd5b61364f8561347f565b935061365d6020860161347f565b92506040850135915060608501356001600160401b0381111561367f57600080fd5b61368b8782880161349b565b91505092959194509250565b600080604083850312156136aa57600080fd5b6136b38361347f565b9150602083013580151581146136c857600080fd5b809150509250929050565b600080604083850312156136e657600080fd5b6136ef8361347f565b946020939093013593505050565b60006020828403121561370f57600080fd5b8135611b3c81613c07565b60006020828403121561372c57600080fd5b8151611b3c81613c07565b60006020828403121561374957600080fd5b81356001600160401b0381111561375f57600080fd5b612c778482850161349b565b60008060006060848603121561378057600080fd5b83356001600160401b038082111561379757600080fd5b6137a38783880161349b565b945060208601359150808211156137b957600080fd5b506137c68682870161349b565b9250506137d56040850161347f565b90509250925092565b6000602082840312156137f057600080fd5b81356001600160401b0381111561380657600080fd5b612c7784828501613527565b6000806040838503121561382557600080fd5b82356001600160401b0381111561383b57600080fd5b61384785828601613527565b95602094909401359450505050565b60006020828403121561386857600080fd5b5035919050565b60008151808452613887816020860160208601613b03565b601f01601f19169290920160200192915050565b600083516138ad818460208801613b03565b8351908301906138c1818360208801613b03565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906138fd9083018461386f565b9695505050505050565b602081526000611b3c602083018461386f565b6020808252600e908201526d125b9d985b1a5908185b5bdd5b9d60921b604082015260600190565b60208082526007908201526610a9b2b73232b960c91b604082015260600190565b60208082526007908201526610a9b4b3b732b960c91b604082015260600190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b60208082526005908201526408531a5cdd60da1b604082015260600190565b602080825260149082015273457863656564696e67206d617820737570706c7960601b604082015260600190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60008219821115613ab457613ab4613b99565b500190565b600082613ac857613ac8613baf565b500490565b6000816000190483118215151615613ae757613ae7613b99565b500290565b600082821015613afe57613afe613b99565b500390565b60005b83811015613b1e578181015183820152602001613b06565b83811115610f4e5750506000910152565b600181811c90821680613b4357607f821691505b60208210811415613b6457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613b7e57613b7e613b99565b5060010190565b600082613b9457613b94613baf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461166c57600080fdfea264697066735822122067fc8150b32067870a043dd1fc9c9231f62cf04ab900c6cfacb5209bd270651264736f6c63430008070033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.