ERC-721
Overview
Max Total Supply
141 MCC1
Holders
108
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 MCC1Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MoonrayComicChapterOne
Compiler Version
v0.8.11+commit.d7f03943
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; import './MoonrayComicChapterOneBase.sol'; import './MoonrayComicChapterOneSplits.sol'; /** * @title MoonrayComicChapterOne * , //// ////, , // ////////// /// ./// * ██* *██\ (███████████* .███████████* \███ (██* /██████████( (██ /████ ,████ * /████ █████\ ███ /███ ███= .███b ████ (██* .███ ████( ████ ████ * \███\/███████\ ███\ .██\ *██( /███ \████* (██* .#███ ███\ ███ /█████ * /████/ ███\ ███/ ███, #███ /███ ███████* █████. ███/ \███. ████ * ███\ \███/ ,\███. █████, ████ \████* \███ =███\ ████. * ███\ ██████████= /█████████( \█* \███, /███ =███ ████ */ contract MoonrayComicChapterOne is MoonrayComicChapterOneSplits, MoonrayComicChapterOneBase { constructor() MoonrayComicChapterOneBase( 'MoonrayComicChapter1', 'MCC1', 'https://nftculture.mypinata.cloud/ipfs/QmXkagNmTEzzmWTvWDi3As5hXStmKLu9Xx3mxk3fBYQodp/', addresses, splits, 0.02 ether, 0.02 ether ) { // Implementation version: 1 } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; // NFTC Open Source Contracts See: https://github.com/NFTCulture/nftc-open-contracts import '@nftculture/nftc-open-contracts/contracts/security/GuardedAgainstContracts.sol'; import '@nftculture/nftc-open-contracts/contracts/financial/LockedPaymentSplitter.sol'; // NFTC Prerelease Contracts import '@nftculture/nftc-contract-library/contracts/whitelisting/MerkleLeaves.sol'; import '@nftculture/nftc-contract-library/contracts/token/phased/PhasedMintTwo.sol'; // NFTC Prerelease Libraries import {MerkleClaimList} from '@nftculture/nftc-contract-library/contracts/whitelisting/MerkleClaimList.sol'; // ERC721A from Chiru Labs import 'erc721a/contracts/ERC721A.sol'; // OZ Libraries import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; // Error Codes error ExceedsMaxSupply(); error ExceedsReserveBatchSize(); error ProofInvalidClaim(); error ExceedsClaimBatchSize(); error InvalidClaimPayment(); error ExceedsPublicMintBatchSize(); error InvalidPublicMintPayment(); /** * @title MoonrayComicChapterOneBase * @author @NiftyMike | @NFTCulture * @dev ERC721a Implementation with @NFTCulture standardized components. */ abstract contract MoonrayComicChapterOneBase is ERC721A, Ownable, GuardedAgainstContracts, ReentrancyGuard, LockedPaymentSplitter, PhasedMintTwo, MerkleLeaves { using Strings for uint256; using MerkleClaimList for MerkleClaimList.Root; uint256 private constant MAX_NFTS_FOR_SALE = 2073; uint256 private constant MAX_RESERVE_BATCH_SIZE = 100; uint256 private constant MAX_PUBLIC_BATCH_SIZE = 20; uint256 private constant MAX_CLAIM_BATCH_SIZE = 20; string public baseURI; MerkleClaimList.Root private _claimRoot; constructor( string memory __name, string memory __symbol, string memory __baseURI, address[] memory __addresses, uint256[] memory __splits, uint256 __phaseOnePricePerNft, uint256 __publicMintPricePerNft ) ERC721A(__name, __symbol) SlimPaymentSplitter(__addresses, __splits) PhasedMintTwo(__phaseOnePricePerNft, __publicMintPricePerNft) { baseURI = __baseURI; } function maxSupply() external pure returns (uint256) { return MAX_NFTS_FOR_SALE; } function claimBatchSize() external pure returns (uint256) { return MAX_CLAIM_BATCH_SIZE; } function publicMintBatchSize() external pure returns (uint256) { return MAX_PUBLIC_BATCH_SIZE; } function isOpenEdition() external pure returns (bool) { // Front end minting websites should treat this mint as an open edition, even though there is a hard cap. return false; } function isClaimingActive() external view returns (bool) { return _isPhaseOneActive(); } function claimPricePerNft() external view returns (uint256) { return phaseOnePricePerNft; } function setBaseURI(string memory __baseUri) external onlyOwner { baseURI = __baseUri; } function setMerkleRoot(bytes32 __claimRoot) external onlyOwner { if (__claimRoot != 0) { _claimRoot._setRoot(__claimRoot); } } function checkClaim( bytes32[] calldata proof, address wallet, uint256 index ) external view returns (bool) { return _claimRoot._checkLeaf(proof, _generateIndexedLeaf(wallet, index)); } function getNextClaimIndex(address wallet) external view returns (uint256) { return _numberMinted(wallet); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'No token'); string memory base = _baseURI(); require(bytes(base).length > 0, 'Base unset'); return string(abi.encodePacked(base, _tokenFilename(tokenId))); } /** * @notice Owner: reserve tokens for team. * * @param friends addresses to send tokens to. * @param count the number of tokens to mint. */ function reserveTokens(address[] memory friends, uint256 count) external payable onlyOwner { if (0 >= count || count > MAX_RESERVE_BATCH_SIZE) revert ExceedsReserveBatchSize(); uint256 totalMinted = _totalMinted(); // track locally to save gas. uint256 idx; for (idx = 0; idx < friends.length; idx++) { _internalMintTokens(friends[idx], totalMinted, count); totalMinted += count; } } /** * @notice Claim tokens - purchase bound by terms & conditions of project. * * @param count the number of tokens to mint. */ function claimTokens(bytes32[] calldata proof, uint256 count) external payable nonReentrant onlyUsers isPhaseOne { if (0 >= count || count > MAX_CLAIM_BATCH_SIZE) revert ExceedsClaimBatchSize(); if (msg.value < phaseOnePricePerNft * count) revert InvalidClaimPayment(); uint256 newBalance = _numberMinted(msg.sender) + count; _claimTokens(msg.sender, proof, newBalance, count); } /** * @notice Mint tokens - purchase bound by terms & conditions of project. * * @param count the number of tokens to mint. */ function mintTokens(uint256 count) external payable nonReentrant onlyUsers isPublicMinting { if (0 >= count || count > MAX_PUBLIC_BATCH_SIZE) revert ExceedsPublicMintBatchSize(); if (msg.value < publicMintPricePerNft * count) revert InvalidPublicMintPayment(); _internalMintTokens(msg.sender, _totalMinted(), count); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function _tokenFilename(uint256 tokenId) internal pure virtual returns (string memory) { return tokenId.toString(); } function _internalMintTokens( address minter, uint256 totalMinted, uint256 count ) internal { if (totalMinted + count > MAX_NFTS_FOR_SALE) revert ExceedsMaxSupply(); _safeMint(minter, count); } function _claimTokens( address minter, bytes32[] calldata proof, uint256 newBalance, uint256 count ) internal { // Verify proof matches expected target total number of claim mints. if (!_claimRoot._checkLeaf(proof, _generateIndexedLeaf(minter, newBalance - 1))) //Zero-based index. revert ProofInvalidClaim(); _internalMintTokens(minter, _totalMinted(), count); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; contract MoonrayComicChapterOneSplits { address[] internal addresses = [ 0x40966a835a9a8993BeD9aE541e2a3F00c7734c0D ]; uint256[] internal splits = [100]; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; /** * @title GuardedAgainstContracts * @author @NiftyMike, NFT Culture * @dev Helper contract to help protect against contract based mint spamming attacks. */ abstract contract GuardedAgainstContracts { modifier onlyUsers() { require(tx.origin == msg.sender, 'Must be user'); _; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "./SlimPaymentSplitter.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; /** * @title LockedPaymentSplitter * @author @NiftyMike, NFT Culture * @dev A wrapper around SlimPaymentSplitter which adds on security elements. * * Based on OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol) */ abstract contract LockedPaymentSplitter is SlimPaymentSplitter, Ownable { /** * @dev Overrides release() method, so that it can only be called by owner. * @notice Owner: Release funds to a specific address. * * @param account Payable address that will receive funds. */ function release(address payable account) public override onlyOwner { super.release(account); } /** * @dev Triggers a transfer to caller's address of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. * @notice Sender: request payment. */ function releaseToSelf() public { super.release(payable(msg.sender)); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; /** * @title MerkleLeaves * @author @NiftyMike, NFT Culture * @dev Merkle Leaves for Merkle Trees - This is a companion contract to NFTC Labs' MerkleClaimList.sol library. * It provides leaf generation functions for both indexed and non-indexed merkle trees. * It also provides wrapper methods to expose the leaf generation functions to off-chain callers. * * Off-chain access is useful, because both the contract and the caller need to be able to generate the * leaves in a perfectly identical manner, so the generators are exposed to make it easier. */ abstract contract MerkleLeaves { /** * @notice External: generate a leaf for a wallet. * * @param wallet Address to hash. */ function getLeafFor(address wallet) external pure returns (bytes32) { return _generateLeaf(wallet); } /** * @notice External: generate a leaf for a wallet and an embedded index value. * * @param wallet Address to hash. * @param index integer index to assign the leaf. */ function getIndexedLeafFor(address wallet, uint256 index) external pure returns (bytes32) { return _generateIndexedLeaf(wallet, index); } /** * @dev Generate a merkle leaf based only on a wallet address. This is useful when all users * represented in the tree are eligible for the exact same thing, such as one free mint. * * A tiered system can be supported by this approach, by making seperate merkle trees and * mint functions per tier, but that approach will become ungainly if you have to support more * than a few tiers. */ function _generateLeaf(address wallet) internal pure returns (bytes32) { return keccak256(abi.encodePacked(wallet)); } /** * @dev Generate a merkle leaf based on a wallet address and an index. This is useful when all * users represented in the tree are eligible for different amounts of something. */ function _generateIndexedLeaf(address wallet, uint256 index) internal pure returns (bytes32) { return keccak256(abi.encodePacked(wallet, "_", index)); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; // OZ Libraries import '@openzeppelin/contracts/access/Ownable.sol'; import './PhasedMintBase.sol'; /** * @title PhasedMintTwo * @author @NiftyMike, NFT Culture * @dev PhasedMint: An approach to a standard system of controlling mint phases. * * This is the "Two" phase mint flavor of the PhasedMint approach. * * Note: Since the last phase is always assumed to be the public mint phase, we only * need to define the first phase here. */ contract PhasedMintTwo is Ownable, PhasedMintBase { using BooleanPacking for uint256; uint256 private constant PHASE_ONE = 1; uint256 public phaseOnePricePerNft; modifier isPhaseOne() { require(_mintControlFlags.getBoolean(PHASE_ONE), 'Phase one stopped'); _; } constructor(uint256 __phaseOnePricePerNft, uint256 __publicMintPricePerNft) PhasedMintBase(2, __publicMintPricePerNft) { phaseOnePricePerNft = __phaseOnePricePerNft; } function setMintingState( bool __phaseOneActive, bool __publicMintingActive, uint256 __phaseOnePricePerNft, uint256 __publicMintPricePerNft ) external onlyOwner { uint256 tempControlFlags = _setMintingState(__publicMintingActive, __publicMintPricePerNft); tempControlFlags = tempControlFlags.setBoolean(PHASE_ONE, __phaseOneActive); _mintControlFlags = tempControlFlags; if (__phaseOnePricePerNft > 0) { phaseOnePricePerNft = __phaseOnePricePerNft; } } function isPhaseOneActive() external view returns (bool) { return _isPhaseOneActive(); } function _isPhaseOneActive() internal view returns (bool) { return _mintControlFlags.getBoolean(PHASE_ONE); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import {MerkleRoot} from './MerkleRoot.sol'; /** * @title MerkleClaimList * @author @NiftyMike, NFT Culture * @dev Basic functionality for a MerkleTree that will be used as a "Claimlist" * * "Claimlist" - an approach for validating callers that is backed by a Merkle Tree. * Cheap to set the master claim, not that expensive to check the claim. Requires * off-chain generation of the Merkle Tree. * * This library allows you to declare a member variable like: * MerkleClaimList.Root private _claimRoot; * * The benefit of packaging this as a library, is that if you need multiple merkle trees in your * contract, you can declare multiple member variables using this library, and use them in similar fashion. * * see also: NFTC Labs' MerkleLeaves.sol, which is a companion abstract contract which contains helper * methods for generating leaves for the Merkle Tree. */ library MerkleClaimList { using MerkleRoot for bytes32; struct Root { // This variable should never be directly accessed by users of the library. See OZ comments in other libraries for more info. bytes32 _root; } /** * @dev Validate that a leaf is part of this merkle tree. */ function _checkLeaf( Root storage root, bytes32[] calldata proof, bytes32 leaf ) internal view returns (bool) { return root._root.check(proof, leaf); } /** * @dev Set the root of this merkle tree. */ function _setRoot(Root storage root, bytes32 __root) internal { root._root = __root; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _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 `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev 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 Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxiliary 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 { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // 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. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @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, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @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 == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), 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-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 { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_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 && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not 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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @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 for each mint. */ 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` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @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 transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } 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 { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } 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 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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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 _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @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 {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; /** * @title SlimPaymentSplitter * @author @NiftyMike, NFT Culture * @dev A drop-in slim replacement version of OZ's Payment Splitter. All ERC-20 token functionality removed. * * Based on OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol) */ contract SlimPaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event PaymentReceived(address from, uint256 amount); event PayeeTransferred(address oldOwner, address newOwner); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require( payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch" ); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance + totalReleased(); uint256 payment = _pendingPayment( account, totalReceived, released(account) ); require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] += payment; _totalReleased += payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev internal logic for computing the pending payment of an `account` given the token historical balances and * already released amounts. */ function _pendingPayment( address account, uint256 totalReceived, uint256 alreadyReleased ) private view returns (uint256) { return (totalReceived * _shares[account]) / _totalShares - alreadyReleased; } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require( account != address(0), "PaymentSplitter: account is the zero address" ); require(shares_ > 0, "PaymentSplitter: shares are 0"); require( _shares[account] == 0, "PaymentSplitter: account already has shares" ); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } /** * @dev Allows owner to transfer their shares to somebody else; it can only be called by of a share. * @notice Owner: Release funds to a specific address. * * @param newOwner Payable address which has no shares and will receive the shares of the current owner. */ function transferPayee(address payable newOwner) public { require(newOwner != address(0), "PaymentSplitter: New payee is the zero address."); require(_shares[msg.sender] > 0, "PaymentSplitter: You have no shares."); require( _shares[newOwner] == 0, // why not _shares[newOwner] ?? "PaymentSplitter: New payee already has shares." ); _transferPayee(newOwner); emit PayeeTransferred(msg.sender, newOwner); } function _transferPayee(address newOwner) private { if (_payees.length == 0) return; for (uint i = 0; i < _payees.length - 1; i++) { if (_payees[i] == msg.sender) { _payees[i] = newOwner; _shares[newOwner] = _shares[msg.sender]; _shares[msg.sender] = 0; } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; // NFTC Open Source Libraries See: https://github.com/NFTCulture/nftc-open-contracts import {BooleanPacking} from '@nftculture/nftc-open-contracts/contracts/utility/BooleanPacking.sol'; // OZ Libraries import '@openzeppelin/contracts/access/Ownable.sol'; /** * @title PhasedMintBase * @author @NiftyMike, NFT Culture * @dev PhasedMint: An approach to a standard system of controlling mint phases. */ abstract contract PhasedMintBase is Ownable { using BooleanPacking for uint256; // BooleanPacking used on _mintControlFlags uint256 internal _mintControlFlags; uint256 private immutable PUBLIC_MINT_PHASE; uint256 public publicMintPricePerNft; modifier isPublicMinting() { require(_mintControlFlags.getBoolean(PUBLIC_MINT_PHASE), 'Minting stopped'); _; } constructor(uint256 publicMintPhase, uint256 __publicMintPricePerNft) { PUBLIC_MINT_PHASE = publicMintPhase; publicMintPricePerNft = __publicMintPricePerNft; } function _setMintingState(bool __publicMintingActive, uint256 __publicMintPricePerNft) internal returns (uint256) { uint256 tempControlFlags; tempControlFlags = tempControlFlags.setBoolean(PUBLIC_MINT_PHASE, __publicMintingActive); if (__publicMintPricePerNft > 0) { publicMintPricePerNft = __publicMintPricePerNft; } return tempControlFlags; } function isPublicMintingActive() external view returns (bool) { return _isPublicMintingActive(); } function _isPublicMintingActive() internal view returns (bool) { return _mintControlFlags.getBoolean(PUBLIC_MINT_PHASE); } function supportedPhases() external view returns (uint256) { return PUBLIC_MINT_PHASE; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; /** * @title BooleanPacking * @author @NiftyMike, NFT Culture * @dev Credit to Zimri Leijen * See https://ethereum.stackexchange.com/a/92235 */ library BooleanPacking { function getBoolean(uint256 _packedBools, uint256 _columnNumber) internal pure returns (bool) { uint256 flag = (_packedBools >> _columnNumber) & uint256(1); return (flag == 1 ? true : false); } function setBoolean( uint256 _packedBools, uint256 _columnNumber, bool _value ) internal pure returns (uint256) { if (_value) { _packedBools = _packedBools | (uint256(1) << _columnNumber); return _packedBools; } else { _packedBools = _packedBools & ~(uint256(1) << _columnNumber); return _packedBools; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import {MerkleProof} from '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol'; /** * @title MerkleRoot * @author @NiftyMike, NFT Culture * @dev Companion library to OpenZeppelin's MerkleProof. * Allows you to abstract away merkle functionality a bit further, you now just need to * worry about dealing with your merkle root. * * Using this library allows you to treat bytes32 member variables as Merkle Roots, with a * slightly easier to use api then the OZ library. */ library MerkleRoot { using MerkleProof for bytes32[]; function check( bytes32 root, bytes32[] calldata proof, bytes32 leaf ) internal pure returns (bool) { return proof.verify(root, leaf); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); 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; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @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 be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev 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); // ============================== // IERC721Metadata // ============================== /** * @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); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
{ "optimizer": { "enabled": true, "runs": 1000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ExceedsClaimBatchSize","type":"error"},{"inputs":[],"name":"ExceedsMaxSupply","type":"error"},{"inputs":[],"name":"ExceedsPublicMintBatchSize","type":"error"},{"inputs":[],"name":"ExceedsReserveBatchSize","type":"error"},{"inputs":[],"name":"InvalidClaimPayment","type":"error"},{"inputs":[],"name":"InvalidPublicMintPayment","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"ProofInvalidClaim","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":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldOwner","type":"address"},{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"PayeeTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"checkClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"claimPricePerNft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"claimTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getIndexedLeafFor","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getLeafFor","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getNextClaimIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isClaimingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOpenEdition","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"isPhaseOneActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseOnePricePerNft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"publicMintPricePerNft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"releaseToSelf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"friends","type":"address[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"payable","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":"bytes32","name":"__claimRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"__phaseOneActive","type":"bool"},{"internalType":"bool","name":"__publicMintingActive","type":"bool"},{"internalType":"uint256","name":"__phaseOnePricePerNft","type":"uint256"},{"internalType":"uint256","name":"__publicMintPricePerNft","type":"uint256"}],"name":"setMintingState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supportedPhases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address payable","name":"newOwner","type":"address"}],"name":"transferPayee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040527340966a835a9a8993bed9ae541e2a3f00c7734c0d60a09081526200002e90600090600162000588565b506040805160208101909152606481526200004d9060019081620005f2565b503480156200005b57600080fd5b506040518060400160405280601481526020017f4d6f6f6e726179436f6d69634368617074657231000000000000000000000000815250604051806040016040528060048152602001634d43433160e01b8152506040518060800160405280605681526020016200358d6056913960008054806020026020016040519081016040528092919081815260200182805480156200012157602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000102575b505050505060018054806020026020016040519081016040528092919081815260200182805480156200017457602002820191906000526020600020905b8154815260200190600101908083116200015f575b505050505066470de4df82000080818160028187878c8c8160049080519060200190620001a392919062000635565b508051620001b990600590602084019062000635565b50600060025550508051825114620002335760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002865760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200022a565b60005b8251811015620002f257620002dd838281518110620002ac57620002ac620006c9565b6020026020010151838381518110620002c957620002c9620006c9565b60200260200101516200034460201b60201c565b80620002e981620006f5565b91505062000289565b5050506200030f620003096200053260201b60201c565b62000536565b60016010556080919091526012555060135584516200033690601490602088019062000635565b50505050505050506200076b565b6001600160a01b038216620003b15760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200022a565b60008111620004035760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200022a565b6001600160a01b0382166000908152600c6020526040902054156200047f5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200022a565b600e8054600181019091557fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319166001600160a01b0384169081179091556000908152600c60205260409020819055600a54620004e990829062000713565b600a55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b3390565b600f80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054828255906000526020600020908101928215620005e0579160200282015b82811115620005e057825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620005a9565b50620005ee929150620006b2565b5090565b828054828255906000526020600020908101928215620005e0579160200282015b82811115620005e0578251829060ff1690559160200191906001019062000613565b82805462000643906200072e565b90600052602060002090601f016020900481019282620006675760008555620005e0565b82601f106200068257805160ff1916838001178555620005e0565b82800160010185558215620005e0579182015b82811115620005e057825182559160200191906001019062000695565b5b80821115620005ee5760008155600101620006b3565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156200070c576200070c620006df565b5060010190565b60008219821115620007295762000729620006df565b500190565b600181811c908216806200074357607f821691505b602082108114156200076557634e487b7160e01b600052602260045260246000fd5b50919050565b608051612df16200079c60003960008181610833015281816113bd01528181611e5c01526120a90152612df16000f3fe60806040526004361061030c5760003560e01c8063815c5fd41161019a578063ce7c2ac2116100e1578063e33b7de31161008a578063ee1462fd11610064578063ee1462fd146108a0578063f2fde38b146108b3578063fdb8e8a21461040b57600080fd5b8063e33b7de31461080f578063e8ad246f14610824578063e985e9c51461085757600080fd5b8063db828e5d116100bb578063db828e5d146107c5578063e228c6fe146107da578063e27c429c146107ef57600080fd5b8063ce7c2ac21461075a578063cfb00c6d14610790578063d5abeb01146107b057600080fd5b806399f8cf3a11610143578063a22cb4651161011d578063a22cb465146106fa578063b88d4fde1461071a578063c87b56dd1461073a57600080fd5b806399f8cf3a146106bb5780639e04c452146106ce578063a0e24062146106e457600080fd5b806395d89b411161017457806395d89b411461065d57806397304ced146106725780639852595c1461068557600080fd5b8063815c5fd41461060a5780638b83209b1461061f5780638da5cb5b1461063f57600080fd5b80633732ad1c1161025e5780636352211e1161020757806370a08231116101e157806370a08231146105b5578063715018a6146105d55780637cb64759146105ea57600080fd5b80636352211e146105605780636c0360eb14610580578063709b00ae1461059557600080fd5b806343a2b5761161023857806343a2b576146104d657806355f804b31461052057806359a087c91461054057600080fd5b80633732ad1c146104d65780633a98ef39146104eb57806342842e0e1461050057600080fd5b80630cbb5df5116102c0578063191655871161029a578063191655871461048257806323b872dd146104a257806335841e50146104c257600080fd5b80630cbb5df514610429578063163480091461044957806318160ddd1461046957600080fd5b8063081812fc116102f1578063081812fc146103b1578063095ea7b3146103e95780630975e1131461040b57600080fd5b806301ffc9a71461035a57806306fdde031461038f57600080fd5b36610355577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561036657600080fd5b5061037a61037536600461270b565b6108d3565b60405190151581526020015b60405180910390f35b34801561039b57600080fd5b506103a4610970565b6040516103869190612780565b3480156103bd57600080fd5b506103d16103cc366004612793565b610a02565b6040516001600160a01b039091168152602001610386565b3480156103f557600080fd5b506104096104043660046127c1565b610a5f565b005b34801561041757600080fd5b5060145b604051908152602001610386565b34801561043557600080fd5b5061041b6104443660046127ed565b610b25565b34801561045557600080fd5b506104096104643660046127ed565b610b50565b34801561047557600080fd5b506003546002540361041b565b34801561048e57600080fd5b5061040961049d3660046127ed565b610d2b565b3480156104ae57600080fd5b506104096104bd36600461280a565b610d91565b3480156104ce57600080fd5b50600061037a565b3480156104e257600080fd5b5061037a610f6e565b3480156104f757600080fd5b50600a5461041b565b34801561050c57600080fd5b5061040961051b36600461280a565b610f7d565b34801561052c57600080fd5b5061040961053b3660046128ea565b610f9d565b34801561054c57600080fd5b5061040961055b366004612948565b61100e565b34801561056c57600080fd5b506103d161057b366004612793565b61109c565b34801561058c57600080fd5b506103a46110a7565b3480156105a157600080fd5b5061037a6105b03660046129d6565b611135565b3480156105c157600080fd5b5061041b6105d03660046127ed565b6111a7565b3480156105e157600080fd5b5061040961120f565b3480156105f657600080fd5b50610409610605366004612793565b611275565b34801561061657600080fd5b5060135461041b565b34801561062b57600080fd5b506103d161063a366004612793565b6112df565b34801561064b57600080fd5b50600f546001600160a01b03166103d1565b34801561066957600080fd5b506103a461130f565b610409610680366004612793565b61131e565b34801561069157600080fd5b5061041b6106a03660046127ed565b6001600160a01b03166000908152600d602052604090205490565b6104096106c9366004612a33565b6114d3565b3480156106da57600080fd5b5061041b60135481565b3480156106f057600080fd5b5061041b60125481565b34801561070657600080fd5b50610409610715366004612aeb565b6115d2565b34801561072657600080fd5b50610409610735366004612b20565b611681565b34801561074657600080fd5b506103a4610755366004612793565b6116c5565b34801561076657600080fd5b5061041b6107753660046127ed565b6001600160a01b03166000908152600c602052604090205490565b34801561079c57600080fd5b5061041b6107ab3660046127c1565b6117ab565b3480156107bc57600080fd5b5061081961041b565b3480156107d157600080fd5b5061037a611800565b3480156107e657600080fd5b5061040961180a565b3480156107fb57600080fd5b5061041b61080a3660046127ed565b611813565b34801561081b57600080fd5b50600b5461041b565b34801561083057600080fd5b507f000000000000000000000000000000000000000000000000000000000000000061041b565b34801561086357600080fd5b5061037a610872366004612ba0565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b6104096108ae366004612bd9565b611853565b3480156108bf57600080fd5b506104096108ce3660046127ed565b611a10565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316148061093657507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b8061096a57507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606004805461097f90612c25565b80601f01602080910402602001604051908101604052809291908181526020018280546109ab90612c25565b80156109f85780601f106109cd576101008083540402835291602001916109f8565b820191906000526020600020905b8154815290600101906020018083116109db57829003601f168201915b5050505050905090565b6000610a0d82611aef565b610a43576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b6000610a6a8261109c565b9050336001600160a01b03821614610abc57610a868133610872565b610abc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260086020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001600160a01b0381166000908152600760205260408082205467ffffffffffffffff911c1661096a565b6001600160a01b038116610bd15760405162461bcd60e51b815260206004820152602f60248201527f5061796d656e7453706c69747465723a204e657720706179656520697320746860448201527f65207a65726f20616464726573732e000000000000000000000000000000000060648201526084015b60405180910390fd5b336000908152600c6020526040902054610c525760405162461bcd60e51b8152602060048201526024808201527f5061796d656e7453706c69747465723a20596f752068617665206e6f2073686160448201527f7265732e000000000000000000000000000000000000000000000000000000006064820152608401610bc8565b6001600160a01b0381166000908152600c602052604090205415610cde5760405162461bcd60e51b815260206004820152602e60248201527f5061796d656e7453706c69747465723a204e657720706179656520616c72656160448201527f647920686173207368617265732e0000000000000000000000000000000000006064820152608401610bc8565b610ce781611b17565b604080513381526001600160a01b03831660208201527f6829b4029cd073199f80f49556d32953c9bc4e14d395388e678d2cc4604d4819910160405180910390a150565b600f546001600160a01b03163314610d855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bc8565b610d8e81611bee565b50565b6000610d9c82611dc8565b9050836001600160a01b0316816001600160a01b031614610de9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526008602052604090208054338082146001600160a01b03881690911417610e4f57610e198633610872565b610e4f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516610e8f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015610e9a57600082555b6001600160a01b038681166000908152600760205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260066020526040902055600160e11b8316610f255760018401600081815260066020526040902054610f23576002548114610f235760008181526006602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6000610f78611e42565b905090565b610f9883838360405180602001604052806000815250611681565b505050565b600f546001600160a01b03163314610ff75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bc8565b805161100a90601490602084019061265c565b5050565b600f546001600160a01b031633146110685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bc8565b60006110748483611e53565b905061108281600187611e95565b6011819055905082156110955760138390555b5050505050565b600061096a82611dc8565b601480546110b490612c25565b80601f01602080910402602001604051908101604052809291908181526020018280546110e090612c25565b801561112d5780601f106111025761010080835404028352916020019161112d565b820191906000526020600020905b81548152906001019060200180831161111057829003601f168201915b505050505081565b600061119c858561119286866040516bffffffffffffffffffffffff19606084901b166020820152605f60f81b60348201526035810182905260009060550160405160208183030381529060405280519060200120905092915050565b6015929190611ebe565b90505b949350505050565b60006001600160a01b0382166111e9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b600f546001600160a01b031633146112695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bc8565b6112736000611ecf565b565b600f546001600160a01b031633146112cf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bc8565b8015610d8e57610d8e6015829055565b6000600e82815481106112f4576112f4612c60565b6000918252602090912001546001600160a01b031692915050565b60606005805461097f90612c25565b600260105414156113715760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bc8565b60026010553233146113b45760405162461bcd60e51b815260206004820152600c60248201526b26bab9ba103132903ab9b2b960a11b6044820152606401610bc8565b6011546113e1907f0000000000000000000000000000000000000000000000000000000000000000611f2e565b61142d5760405162461bcd60e51b815260206004820152600f60248201527f4d696e74696e672073746f7070656400000000000000000000000000000000006044820152606401610bc8565b80158061143a5750601481115b15611471576040517fc2d95d8700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060125461147f9190612c8c565b3410156114b8576040517f9d5b258400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114cb336114c560025490565b83611f4f565b506001601055565b600f546001600160a01b0316331461152d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bc8565b80158061153a5750606481115b15611571576040517f0b12853c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061157c60025490565b905060005b83518110156115cc576115ae84828151811061159f5761159f612c60565b60200260200101518385611f4f565b6115b88383612cab565b9150806115c481612cc3565b915050611581565b50505050565b6001600160a01b038216331415611615576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61168c848484610d91565b6001600160a01b0383163b156115cc576116a884848484611f9e565b6115cc576040516368d2bf6b60e11b815260040160405180910390fd5b60606116d082611aef565b61171c5760405162461bcd60e51b815260206004820152600860248201527f4e6f20746f6b656e0000000000000000000000000000000000000000000000006044820152606401610bc8565b6000611726612083565b905060008151116117795760405162461bcd60e51b815260206004820152600a60248201527f4261736520756e736574000000000000000000000000000000000000000000006044820152606401610bc8565b8061178384612092565b604051602001611794929190612cde565b604051602081830303815290604052915050919050565b60408051606084901b6bffffffffffffffffffffffff1916602080830191909152605f60f81b6034830152603580830185905283518084039091018152605590920190925280519101206000905b9392505050565b6000610f7861209d565b61127333611bee565b60408051606083901b6bffffffffffffffffffffffff1916602080830191909152825160148184030181526034909201909252805191012060009061096a565b600260105414156118a65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bc8565b60026010553233146118e95760405162461bcd60e51b815260206004820152600c60248201526b26bab9ba103132903ab9b2b960a11b6044820152606401610bc8565b6011546118f7906001611f2e565b6119435760405162461bcd60e51b815260206004820152601160248201527f5068617365206f6e652073746f707065640000000000000000000000000000006044820152606401610bc8565b8015806119505750601481115b15611987576040517f7f9182f000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806013546119959190612c8c565b3410156119ce576040517f6c77539100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000908152600760205260408082205483911c67ffffffffffffffff166119f69190612cab565b9050611a0533858584866120cd565b505060016010555050565b600f546001600160a01b03163314611a6a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bc8565b6001600160a01b038116611ae65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610bc8565b610d8e81611ecf565b60006002548210801561096a575050600090815260066020526040902054600160e01b161590565b600e54611b215750565b60005b600e54611b3390600190612d0d565b81101561100a57336001600160a01b0316600e8281548110611b5757611b57612c60565b6000918252602090912001546001600160a01b03161415611bdc5781600e8281548110611b8657611b86612c60565b6000918252602080832091909101805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0394851617905533808352600c90915260408083208054948716845290832093909355815290555b80611be681612cc3565b915050611b24565b6001600160a01b0381166000908152600c6020526040902054611c795760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610bc8565b6000611c84600b5490565b611c8e9047612cab565b90506000611cbb8383611cb6866001600160a01b03166000908152600d602052604090205490565b612175565b905080611d305760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610bc8565b6001600160a01b0383166000908152600d602052604081208054839290611d58908490612cab565b9250508190555080600b6000828254611d719190612cab565b90915550611d81905083826121b3565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b600081600254811015611e1057600081815260066020526040902054600160e01b8116611e0e575b806117f9575060001901600081815260066020526040902054611df0565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601154600090610f78906001611f2e565b600080611e81817f000000000000000000000000000000000000000000000000000000000000000086611e95565b905082156117f95760128390559392505050565b60008115611ead57506001821b9290921791826117f9565b506001821b199290921691826117f9565b835460009061119c908585856122cc565b600f80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000600183831c8116908114611f4557600061119f565b6001949350505050565b610819611f5c8284612cab565b1115611f94576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f988382612310565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611fd3903390899088908890600401612d24565b6020604051808303816000875af192505050801561200e575060408051601f3d908101601f1916820190925261200b91810190612d60565b60015b612069573d80801561203c576040519150601f19603f3d011682016040523d82523d6000602084013e612041565b606091505b508051612061576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061119f565b60606014805461097f90612c25565b606061096a8261232a565b601154600090610f78907f0000000000000000000000000000000000000000000000000000000000000000611f2e565b6121328484611192886120e1600188612d0d565b6040516bffffffffffffffffffffffff19606084901b166020820152605f60f81b60348201526035810182905260009060550160405160208183030381529060405280519060200120905092915050565b612168576040517f66d0e63f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611095856114c560025490565b600a546001600160a01b0384166000908152600c60205260408120549091839161219f9086612c8c565b6121a99190612d93565b61119f9190612d0d565b804710156122035760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bc8565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612250576040519150601f19603f3d011682016040523d82523d6000602084013e612255565b606091505b5050905080610f985760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bc8565b600061119c858386868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092949392505061245c9050565b61100a828260405180602001604052806000815250612472565b60608161236a57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612394578061237e81612cc3565b915061238d9050600a83612d93565b915061236e565b60008167ffffffffffffffff8111156123af576123af61284b565b6040519080825280601f01601f1916602001820160405280156123d9576020820181803683370190505b5090505b841561119f576123ee600183612d0d565b91506123fb600a86612da7565b612406906030612cab565b60f81b81838151811061241b5761241b612c60565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612455600a86612d93565b94506123dd565b60008261246985846124d8565b14949350505050565b61247c838361254c565b6001600160a01b0383163b15610f98576002548281035b6124a66000868380600101945086611f9e565b6124c3576040516368d2bf6b60e11b815260040160405180910390fd5b81811061249357816002541461109557600080fd5b600081815b84518110156125445760008582815181106124fa576124fa612c60565b602002602001015190508083116125205760008381526020829052604090209250612531565b600081815260208490526040902092505b508061253c81612cc3565b9150506124dd565b509392505050565b6002546001600160a01b03831661258f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b816125c6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038316600081815260076020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260066020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106126105760025550505050565b82805461266890612c25565b90600052602060002090601f01602090048101928261268a57600085556126d0565b82601f106126a357805160ff19168380011785556126d0565b828001600101855582156126d0579182015b828111156126d05782518255916020019190600101906126b5565b506126dc9291506126e0565b5090565b5b808211156126dc57600081556001016126e1565b6001600160e01b031981168114610d8e57600080fd5b60006020828403121561271d57600080fd5b81356117f9816126f5565b60005b8381101561274357818101518382015260200161272b565b838111156115cc5750506000910152565b6000815180845261276c816020860160208601612728565b601f01601f19169290920160200192915050565b6020815260006117f96020830184612754565b6000602082840312156127a557600080fd5b5035919050565b6001600160a01b0381168114610d8e57600080fd5b600080604083850312156127d457600080fd5b82356127df816127ac565b946020939093013593505050565b6000602082840312156127ff57600080fd5b81356117f9816127ac565b60008060006060848603121561281f57600080fd5b833561282a816127ac565b9250602084013561283a816127ac565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561288a5761288a61284b565b604052919050565b600067ffffffffffffffff8311156128ac576128ac61284b565b6128bf601f8401601f1916602001612861565b90508281528383830111156128d357600080fd5b828260208301376000602084830101529392505050565b6000602082840312156128fc57600080fd5b813567ffffffffffffffff81111561291357600080fd5b8201601f8101841361292457600080fd5b61119f84823560208401612892565b8035801515811461294357600080fd5b919050565b6000806000806080858703121561295e57600080fd5b61296785612933565b935061297560208601612933565b93969395505050506040820135916060013590565b60008083601f84011261299c57600080fd5b50813567ffffffffffffffff8111156129b457600080fd5b6020830191508360208260051b85010111156129cf57600080fd5b9250929050565b600080600080606085870312156129ec57600080fd5b843567ffffffffffffffff811115612a0357600080fd5b612a0f8782880161298a565b9095509350506020850135612a23816127ac565b9396929550929360400135925050565b60008060408385031215612a4657600080fd5b823567ffffffffffffffff80821115612a5e57600080fd5b818501915085601f830112612a7257600080fd5b8135602082821115612a8657612a8661284b565b8160051b9250612a97818401612861565b8281529284018101928181019089851115612ab157600080fd5b948201945b84861015612adb5785359350612acb846127ac565b8382529482019490820190612ab6565b9997909101359750505050505050565b60008060408385031215612afe57600080fd5b8235612b09816127ac565b9150612b1760208401612933565b90509250929050565b60008060008060808587031215612b3657600080fd5b8435612b41816127ac565b93506020850135612b51816127ac565b925060408501359150606085013567ffffffffffffffff811115612b7457600080fd5b8501601f81018713612b8557600080fd5b612b9487823560208401612892565b91505092959194509250565b60008060408385031215612bb357600080fd5b8235612bbe816127ac565b91506020830135612bce816127ac565b809150509250929050565b600080600060408486031215612bee57600080fd5b833567ffffffffffffffff811115612c0557600080fd5b612c118682870161298a565b909790965060209590950135949350505050565b600181811c90821680612c3957607f821691505b60208210811415612c5a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612ca657612ca6612c76565b500290565b60008219821115612cbe57612cbe612c76565b500190565b6000600019821415612cd757612cd7612c76565b5060010190565b60008351612cf0818460208801612728565b835190830190612d04818360208801612728565b01949350505050565b600082821015612d1f57612d1f612c76565b500390565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612d566080830184612754565b9695505050505050565b600060208284031215612d7257600080fd5b81516117f9816126f5565b634e487b7160e01b600052601260045260246000fd5b600082612da257612da2612d7d565b500490565b600082612db657612db6612d7d565b50069056fea2646970667358221220b5e499ae62de5cf5ce735b12dc4163cb11c98fc66f41f0390d982cdf57f5cd1764736f6c634300080b003368747470733a2f2f6e667463756c747572652e6d7970696e6174612e636c6f75642f697066732f516d586b61674e6d54457a7a6d57547657446933417335685853746d4b4c75395878336d786b33664259516f64702f
Deployed Bytecode
0x60806040526004361061030c5760003560e01c8063815c5fd41161019a578063ce7c2ac2116100e1578063e33b7de31161008a578063ee1462fd11610064578063ee1462fd146108a0578063f2fde38b146108b3578063fdb8e8a21461040b57600080fd5b8063e33b7de31461080f578063e8ad246f14610824578063e985e9c51461085757600080fd5b8063db828e5d116100bb578063db828e5d146107c5578063e228c6fe146107da578063e27c429c146107ef57600080fd5b8063ce7c2ac21461075a578063cfb00c6d14610790578063d5abeb01146107b057600080fd5b806399f8cf3a11610143578063a22cb4651161011d578063a22cb465146106fa578063b88d4fde1461071a578063c87b56dd1461073a57600080fd5b806399f8cf3a146106bb5780639e04c452146106ce578063a0e24062146106e457600080fd5b806395d89b411161017457806395d89b411461065d57806397304ced146106725780639852595c1461068557600080fd5b8063815c5fd41461060a5780638b83209b1461061f5780638da5cb5b1461063f57600080fd5b80633732ad1c1161025e5780636352211e1161020757806370a08231116101e157806370a08231146105b5578063715018a6146105d55780637cb64759146105ea57600080fd5b80636352211e146105605780636c0360eb14610580578063709b00ae1461059557600080fd5b806343a2b5761161023857806343a2b576146104d657806355f804b31461052057806359a087c91461054057600080fd5b80633732ad1c146104d65780633a98ef39146104eb57806342842e0e1461050057600080fd5b80630cbb5df5116102c0578063191655871161029a578063191655871461048257806323b872dd146104a257806335841e50146104c257600080fd5b80630cbb5df514610429578063163480091461044957806318160ddd1461046957600080fd5b8063081812fc116102f1578063081812fc146103b1578063095ea7b3146103e95780630975e1131461040b57600080fd5b806301ffc9a71461035a57806306fdde031461038f57600080fd5b36610355577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561036657600080fd5b5061037a61037536600461270b565b6108d3565b60405190151581526020015b60405180910390f35b34801561039b57600080fd5b506103a4610970565b6040516103869190612780565b3480156103bd57600080fd5b506103d16103cc366004612793565b610a02565b6040516001600160a01b039091168152602001610386565b3480156103f557600080fd5b506104096104043660046127c1565b610a5f565b005b34801561041757600080fd5b5060145b604051908152602001610386565b34801561043557600080fd5b5061041b6104443660046127ed565b610b25565b34801561045557600080fd5b506104096104643660046127ed565b610b50565b34801561047557600080fd5b506003546002540361041b565b34801561048e57600080fd5b5061040961049d3660046127ed565b610d2b565b3480156104ae57600080fd5b506104096104bd36600461280a565b610d91565b3480156104ce57600080fd5b50600061037a565b3480156104e257600080fd5b5061037a610f6e565b3480156104f757600080fd5b50600a5461041b565b34801561050c57600080fd5b5061040961051b36600461280a565b610f7d565b34801561052c57600080fd5b5061040961053b3660046128ea565b610f9d565b34801561054c57600080fd5b5061040961055b366004612948565b61100e565b34801561056c57600080fd5b506103d161057b366004612793565b61109c565b34801561058c57600080fd5b506103a46110a7565b3480156105a157600080fd5b5061037a6105b03660046129d6565b611135565b3480156105c157600080fd5b5061041b6105d03660046127ed565b6111a7565b3480156105e157600080fd5b5061040961120f565b3480156105f657600080fd5b50610409610605366004612793565b611275565b34801561061657600080fd5b5060135461041b565b34801561062b57600080fd5b506103d161063a366004612793565b6112df565b34801561064b57600080fd5b50600f546001600160a01b03166103d1565b34801561066957600080fd5b506103a461130f565b610409610680366004612793565b61131e565b34801561069157600080fd5b5061041b6106a03660046127ed565b6001600160a01b03166000908152600d602052604090205490565b6104096106c9366004612a33565b6114d3565b3480156106da57600080fd5b5061041b60135481565b3480156106f057600080fd5b5061041b60125481565b34801561070657600080fd5b50610409610715366004612aeb565b6115d2565b34801561072657600080fd5b50610409610735366004612b20565b611681565b34801561074657600080fd5b506103a4610755366004612793565b6116c5565b34801561076657600080fd5b5061041b6107753660046127ed565b6001600160a01b03166000908152600c602052604090205490565b34801561079c57600080fd5b5061041b6107ab3660046127c1565b6117ab565b3480156107bc57600080fd5b5061081961041b565b3480156107d157600080fd5b5061037a611800565b3480156107e657600080fd5b5061040961180a565b3480156107fb57600080fd5b5061041b61080a3660046127ed565b611813565b34801561081b57600080fd5b50600b5461041b565b34801561083057600080fd5b507f000000000000000000000000000000000000000000000000000000000000000261041b565b34801561086357600080fd5b5061037a610872366004612ba0565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b6104096108ae366004612bd9565b611853565b3480156108bf57600080fd5b506104096108ce3660046127ed565b611a10565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316148061093657507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b8061096a57507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606004805461097f90612c25565b80601f01602080910402602001604051908101604052809291908181526020018280546109ab90612c25565b80156109f85780601f106109cd576101008083540402835291602001916109f8565b820191906000526020600020905b8154815290600101906020018083116109db57829003601f168201915b5050505050905090565b6000610a0d82611aef565b610a43576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b6000610a6a8261109c565b9050336001600160a01b03821614610abc57610a868133610872565b610abc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260086020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001600160a01b0381166000908152600760205260408082205467ffffffffffffffff911c1661096a565b6001600160a01b038116610bd15760405162461bcd60e51b815260206004820152602f60248201527f5061796d656e7453706c69747465723a204e657720706179656520697320746860448201527f65207a65726f20616464726573732e000000000000000000000000000000000060648201526084015b60405180910390fd5b336000908152600c6020526040902054610c525760405162461bcd60e51b8152602060048201526024808201527f5061796d656e7453706c69747465723a20596f752068617665206e6f2073686160448201527f7265732e000000000000000000000000000000000000000000000000000000006064820152608401610bc8565b6001600160a01b0381166000908152600c602052604090205415610cde5760405162461bcd60e51b815260206004820152602e60248201527f5061796d656e7453706c69747465723a204e657720706179656520616c72656160448201527f647920686173207368617265732e0000000000000000000000000000000000006064820152608401610bc8565b610ce781611b17565b604080513381526001600160a01b03831660208201527f6829b4029cd073199f80f49556d32953c9bc4e14d395388e678d2cc4604d4819910160405180910390a150565b600f546001600160a01b03163314610d855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bc8565b610d8e81611bee565b50565b6000610d9c82611dc8565b9050836001600160a01b0316816001600160a01b031614610de9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526008602052604090208054338082146001600160a01b03881690911417610e4f57610e198633610872565b610e4f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516610e8f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015610e9a57600082555b6001600160a01b038681166000908152600760205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260066020526040902055600160e11b8316610f255760018401600081815260066020526040902054610f23576002548114610f235760008181526006602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6000610f78611e42565b905090565b610f9883838360405180602001604052806000815250611681565b505050565b600f546001600160a01b03163314610ff75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bc8565b805161100a90601490602084019061265c565b5050565b600f546001600160a01b031633146110685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bc8565b60006110748483611e53565b905061108281600187611e95565b6011819055905082156110955760138390555b5050505050565b600061096a82611dc8565b601480546110b490612c25565b80601f01602080910402602001604051908101604052809291908181526020018280546110e090612c25565b801561112d5780601f106111025761010080835404028352916020019161112d565b820191906000526020600020905b81548152906001019060200180831161111057829003601f168201915b505050505081565b600061119c858561119286866040516bffffffffffffffffffffffff19606084901b166020820152605f60f81b60348201526035810182905260009060550160405160208183030381529060405280519060200120905092915050565b6015929190611ebe565b90505b949350505050565b60006001600160a01b0382166111e9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b600f546001600160a01b031633146112695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bc8565b6112736000611ecf565b565b600f546001600160a01b031633146112cf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bc8565b8015610d8e57610d8e6015829055565b6000600e82815481106112f4576112f4612c60565b6000918252602090912001546001600160a01b031692915050565b60606005805461097f90612c25565b600260105414156113715760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bc8565b60026010553233146113b45760405162461bcd60e51b815260206004820152600c60248201526b26bab9ba103132903ab9b2b960a11b6044820152606401610bc8565b6011546113e1907f0000000000000000000000000000000000000000000000000000000000000002611f2e565b61142d5760405162461bcd60e51b815260206004820152600f60248201527f4d696e74696e672073746f7070656400000000000000000000000000000000006044820152606401610bc8565b80158061143a5750601481115b15611471576040517fc2d95d8700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060125461147f9190612c8c565b3410156114b8576040517f9d5b258400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114cb336114c560025490565b83611f4f565b506001601055565b600f546001600160a01b0316331461152d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bc8565b80158061153a5750606481115b15611571576040517f0b12853c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061157c60025490565b905060005b83518110156115cc576115ae84828151811061159f5761159f612c60565b60200260200101518385611f4f565b6115b88383612cab565b9150806115c481612cc3565b915050611581565b50505050565b6001600160a01b038216331415611615576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61168c848484610d91565b6001600160a01b0383163b156115cc576116a884848484611f9e565b6115cc576040516368d2bf6b60e11b815260040160405180910390fd5b60606116d082611aef565b61171c5760405162461bcd60e51b815260206004820152600860248201527f4e6f20746f6b656e0000000000000000000000000000000000000000000000006044820152606401610bc8565b6000611726612083565b905060008151116117795760405162461bcd60e51b815260206004820152600a60248201527f4261736520756e736574000000000000000000000000000000000000000000006044820152606401610bc8565b8061178384612092565b604051602001611794929190612cde565b604051602081830303815290604052915050919050565b60408051606084901b6bffffffffffffffffffffffff1916602080830191909152605f60f81b6034830152603580830185905283518084039091018152605590920190925280519101206000905b9392505050565b6000610f7861209d565b61127333611bee565b60408051606083901b6bffffffffffffffffffffffff1916602080830191909152825160148184030181526034909201909252805191012060009061096a565b600260105414156118a65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bc8565b60026010553233146118e95760405162461bcd60e51b815260206004820152600c60248201526b26bab9ba103132903ab9b2b960a11b6044820152606401610bc8565b6011546118f7906001611f2e565b6119435760405162461bcd60e51b815260206004820152601160248201527f5068617365206f6e652073746f707065640000000000000000000000000000006044820152606401610bc8565b8015806119505750601481115b15611987576040517f7f9182f000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806013546119959190612c8c565b3410156119ce576040517f6c77539100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000908152600760205260408082205483911c67ffffffffffffffff166119f69190612cab565b9050611a0533858584866120cd565b505060016010555050565b600f546001600160a01b03163314611a6a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bc8565b6001600160a01b038116611ae65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610bc8565b610d8e81611ecf565b60006002548210801561096a575050600090815260066020526040902054600160e01b161590565b600e54611b215750565b60005b600e54611b3390600190612d0d565b81101561100a57336001600160a01b0316600e8281548110611b5757611b57612c60565b6000918252602090912001546001600160a01b03161415611bdc5781600e8281548110611b8657611b86612c60565b6000918252602080832091909101805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0394851617905533808352600c90915260408083208054948716845290832093909355815290555b80611be681612cc3565b915050611b24565b6001600160a01b0381166000908152600c6020526040902054611c795760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610bc8565b6000611c84600b5490565b611c8e9047612cab565b90506000611cbb8383611cb6866001600160a01b03166000908152600d602052604090205490565b612175565b905080611d305760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610bc8565b6001600160a01b0383166000908152600d602052604081208054839290611d58908490612cab565b9250508190555080600b6000828254611d719190612cab565b90915550611d81905083826121b3565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b600081600254811015611e1057600081815260066020526040902054600160e01b8116611e0e575b806117f9575060001901600081815260066020526040902054611df0565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601154600090610f78906001611f2e565b600080611e81817f000000000000000000000000000000000000000000000000000000000000000286611e95565b905082156117f95760128390559392505050565b60008115611ead57506001821b9290921791826117f9565b506001821b199290921691826117f9565b835460009061119c908585856122cc565b600f80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000600183831c8116908114611f4557600061119f565b6001949350505050565b610819611f5c8284612cab565b1115611f94576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f988382612310565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611fd3903390899088908890600401612d24565b6020604051808303816000875af192505050801561200e575060408051601f3d908101601f1916820190925261200b91810190612d60565b60015b612069573d80801561203c576040519150601f19603f3d011682016040523d82523d6000602084013e612041565b606091505b508051612061576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061119f565b60606014805461097f90612c25565b606061096a8261232a565b601154600090610f78907f0000000000000000000000000000000000000000000000000000000000000002611f2e565b6121328484611192886120e1600188612d0d565b6040516bffffffffffffffffffffffff19606084901b166020820152605f60f81b60348201526035810182905260009060550160405160208183030381529060405280519060200120905092915050565b612168576040517f66d0e63f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611095856114c560025490565b600a546001600160a01b0384166000908152600c60205260408120549091839161219f9086612c8c565b6121a99190612d93565b61119f9190612d0d565b804710156122035760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bc8565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612250576040519150601f19603f3d011682016040523d82523d6000602084013e612255565b606091505b5050905080610f985760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bc8565b600061119c858386868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092949392505061245c9050565b61100a828260405180602001604052806000815250612472565b60608161236a57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612394578061237e81612cc3565b915061238d9050600a83612d93565b915061236e565b60008167ffffffffffffffff8111156123af576123af61284b565b6040519080825280601f01601f1916602001820160405280156123d9576020820181803683370190505b5090505b841561119f576123ee600183612d0d565b91506123fb600a86612da7565b612406906030612cab565b60f81b81838151811061241b5761241b612c60565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612455600a86612d93565b94506123dd565b60008261246985846124d8565b14949350505050565b61247c838361254c565b6001600160a01b0383163b15610f98576002548281035b6124a66000868380600101945086611f9e565b6124c3576040516368d2bf6b60e11b815260040160405180910390fd5b81811061249357816002541461109557600080fd5b600081815b84518110156125445760008582815181106124fa576124fa612c60565b602002602001015190508083116125205760008381526020829052604090209250612531565b600081815260208490526040902092505b508061253c81612cc3565b9150506124dd565b509392505050565b6002546001600160a01b03831661258f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b816125c6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038316600081815260076020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260066020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106126105760025550505050565b82805461266890612c25565b90600052602060002090601f01602090048101928261268a57600085556126d0565b82601f106126a357805160ff19168380011785556126d0565b828001600101855582156126d0579182015b828111156126d05782518255916020019190600101906126b5565b506126dc9291506126e0565b5090565b5b808211156126dc57600081556001016126e1565b6001600160e01b031981168114610d8e57600080fd5b60006020828403121561271d57600080fd5b81356117f9816126f5565b60005b8381101561274357818101518382015260200161272b565b838111156115cc5750506000910152565b6000815180845261276c816020860160208601612728565b601f01601f19169290920160200192915050565b6020815260006117f96020830184612754565b6000602082840312156127a557600080fd5b5035919050565b6001600160a01b0381168114610d8e57600080fd5b600080604083850312156127d457600080fd5b82356127df816127ac565b946020939093013593505050565b6000602082840312156127ff57600080fd5b81356117f9816127ac565b60008060006060848603121561281f57600080fd5b833561282a816127ac565b9250602084013561283a816127ac565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561288a5761288a61284b565b604052919050565b600067ffffffffffffffff8311156128ac576128ac61284b565b6128bf601f8401601f1916602001612861565b90508281528383830111156128d357600080fd5b828260208301376000602084830101529392505050565b6000602082840312156128fc57600080fd5b813567ffffffffffffffff81111561291357600080fd5b8201601f8101841361292457600080fd5b61119f84823560208401612892565b8035801515811461294357600080fd5b919050565b6000806000806080858703121561295e57600080fd5b61296785612933565b935061297560208601612933565b93969395505050506040820135916060013590565b60008083601f84011261299c57600080fd5b50813567ffffffffffffffff8111156129b457600080fd5b6020830191508360208260051b85010111156129cf57600080fd5b9250929050565b600080600080606085870312156129ec57600080fd5b843567ffffffffffffffff811115612a0357600080fd5b612a0f8782880161298a565b9095509350506020850135612a23816127ac565b9396929550929360400135925050565b60008060408385031215612a4657600080fd5b823567ffffffffffffffff80821115612a5e57600080fd5b818501915085601f830112612a7257600080fd5b8135602082821115612a8657612a8661284b565b8160051b9250612a97818401612861565b8281529284018101928181019089851115612ab157600080fd5b948201945b84861015612adb5785359350612acb846127ac565b8382529482019490820190612ab6565b9997909101359750505050505050565b60008060408385031215612afe57600080fd5b8235612b09816127ac565b9150612b1760208401612933565b90509250929050565b60008060008060808587031215612b3657600080fd5b8435612b41816127ac565b93506020850135612b51816127ac565b925060408501359150606085013567ffffffffffffffff811115612b7457600080fd5b8501601f81018713612b8557600080fd5b612b9487823560208401612892565b91505092959194509250565b60008060408385031215612bb357600080fd5b8235612bbe816127ac565b91506020830135612bce816127ac565b809150509250929050565b600080600060408486031215612bee57600080fd5b833567ffffffffffffffff811115612c0557600080fd5b612c118682870161298a565b909790965060209590950135949350505050565b600181811c90821680612c3957607f821691505b60208210811415612c5a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612ca657612ca6612c76565b500290565b60008219821115612cbe57612cbe612c76565b500190565b6000600019821415612cd757612cd7612c76565b5060010190565b60008351612cf0818460208801612728565b835190830190612d04818360208801612728565b01949350505050565b600082821015612d1f57612d1f612c76565b500390565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612d566080830184612754565b9695505050505050565b600060208284031215612d7257600080fd5b81516117f9816126f5565b634e487b7160e01b600052601260045260246000fd5b600082612da257612da2612d7d565b500490565b600082612db657612db6612d7d565b50069056fea2646970667358221220b5e499ae62de5cf5ce735b12dc4163cb11c98fc66f41f0390d982cdf57f5cd1764736f6c634300080b0033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.