Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
0x60e06040 | 17065662 | 586 days ago | IN | 0 ETH | 0.19362154 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
NFTByMetadrop
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 100 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BUSL 1.0 // Metadrop Contracts (v0.0.1) /** * * @title NFTByMetadrop.sol. This contract is the clonable template contract for * all metadrop NFT deployments. * * @author metadrop https://metadrop.com/ * * @notice This contract does not include logic associated with the primary * sale of the NFT, that functionality being provided by other contracts within * the metadrop platform (e.g. an auction, or a public and list based sale) that * form a suite of primary sale modules. * */ pragma solidity 0.8.19; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "operator-filter-registry/src/DefaultOperatorFilterer.sol"; import "./ERC721M.sol"; import "./INFTByMetadrop.sol"; import "../DropFactory/IDropFactory.sol"; import "../Global/AuthorityModel.sol"; /** * * @dev Inheritance details: * ERC721M ERC721Metadrop token standard, based on openzeppelin ERC721 * INFTMetadrop Interface definition for the metadrop NFT * DefaultOperatorFilterer Implemented for royalty compliant filtering * Pausable Allow contract to be paused by an authorised user * */ contract NFTByMetadrop is ERC721M, INFTByMetadrop, DefaultOperatorFilterer, Pausable, AuthorityModel { using Strings for uint256; // Which metadata source are we using: bool public useArweave; // Is metadata locked?: bool public metadataLocked; // Minting complete confirmation bool public mintingComplete; // Are we revealed: bool public collectionRevealed; // Bool that controls initialisation and only allows it to occur ONCE. This is // needed as this contract is clonable, threfore the constructor is not called // on cloned instances. We setup state of this contract through the initialise // function. bool public initialised; // Token Allocation method enum TokenAllocationMethod private allocationMethod; uint8 public pauseCutOffInDays; uint32 public deployTimeStamp; // URI details: string public preRevealURI; string public arweaveURI; string public ipfsURI; // Proof and VRF results for metadata reveal: bytes32 public positionProof; uint256 public recordedRandomWord; uint256 public vrfStartPosition; // Valid primary market addresses mapping(address => bool) public validPrimaryMarketAddress; /** ==================================================================================================================== * CONSTRUCTOR AND INTIIALISE * ===================================================================================================================== */ /** ____________________________________________________________________________________________________________________ * -->CONSTRUCTOR * @dev constructor The constructor is not called when the contract is cloned. In this * constructor we just setup default values and set the template contract to initialised. * * --------------------------------------------------------------------------------------------------------------------- * @param epsRegister_ The EPS register address (0x888888888888660F286A7C06cfa3407d09af44B2 on most chains) * --------------------------------------------------------------------------------------------------------------------- * @param lzEndpoint_ The LZ endpoint for this chain * (see https://layerzero.gitbook.io/docs/technical-reference/mainnet/supported-chain-ids) * --------------------------------------------------------------------------------------------------------------------- * @param layerZeroBase_ If this contract is the base layerZero contract. For this ONFT implementation the base * contract is where intial minting can occue. NFTs can then be sent to any supporting chain * but cannot be 'freshly' minted on other chains and sent to the base contract. * _____________________________________________________________________________________________________________________ */ constructor( address epsRegister_, address lzEndpoint_, bool layerZeroBase_ ) ERC721M(epsRegister_, lzEndpoint_, layerZeroBase_) { // Initialise this template instance: _initialiseERC721M("NFT", "NFT", 0, msg.sender); initialised = true; } /** ____________________________________________________________________________________________________________________ * -->INITIALISE * @dev (function) initialiseNFT Load configuration into storage for a new instance. * * --------------------------------------------------------------------------------------------------------------------- * @param owner_ The owner for this contract. Will be used to set the owner in ERC721M and also the * platform admin AccessControl role * --------------------------------------------------------------------------------------------------------------------- * @param projectOwner_ The project owner for this drop. Sets the project admin AccessControl role * --------------------------------------------------------------------------------------------------------------------- * @param primarySaleModules_ The primary sale modules for this drop. These are the contract addresses that are * authorised to call mint on this contract. * --------------------------------------------------------------------------------------------------------------------- * @param nftModule_ The drop specific configuration for this NFT. This is decoded and used to set * configuration for this metadrop drop * --------------------------------------------------------------------------------------------------------------------- * @param royaltyPaymentSplitter_ The address of the deployed royalty payment splitted for this drop * --------------------------------------------------------------------------------------------------------------------- * @param royaltyFromSalesInBasisPoints_ The royalty basis points for this drop * --------------------------------------------------------------------------------------------------------------------- * @param collectionURIs_ The URIs for this collection * --------------------------------------------------------------------------------------------------------------------- * @param pauseCutOffInDays_ The number of days from deployment that this contract can be paused * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function initialiseNFT( address owner_, address projectOwner_, PrimarySaleModuleInstance[] calldata primarySaleModules_, NFTModuleConfig calldata nftModule_, address royaltyPaymentSplitter_, uint96 royaltyFromSalesInBasisPoints_, string[3] calldata collectionURIs_, uint8 pauseCutOffInDays_ ) public { // This clone instance can only be initialised ONCE if (initialised) revert AlreadyInitialised(); // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe( address(this), CANONICAL_CORI_SUBSCRIPTION ); } _decodeAndSetParams(projectOwner_, nftModule_); // Setup the platform admin and the project owner roles _grantRole(PLATFORM_ADMIN, owner_); // We set the role admin to the role itself. This means that the holder of this role can transfer // it to another address _setRoleAdmin(PLATFORM_ADMIN, PLATFORM_ADMIN); _grantRole(PROJECT_OWNER, projectOwner_); // We set the role admin to the role itself. This means that the holder of this role can transfer // it to another address _setRoleAdmin(PROJECT_OWNER, PROJECT_OWNER); // Set the token allocation method (note - only sequential supported in v1) if (allocationMethod != TokenAllocationMethod.sequential) { revert InvalidTokenAllocationMethod(); } // Load the primary sale modules to the mappings for (uint256 i = 0; i < primarySaleModules_.length; ) { validPrimaryMarketAddress[primarySaleModules_[i].instanceAddress] = true; unchecked { i++; } } // Royalty setup // If the royalty contract is address(0) then the royalty module // has been flagged as not required for this drop. // To avoid any possible loss of funds from incorrect configuation we don't // set the royalty receiver address to address(0), but rather to the owner if (royaltyPaymentSplitter_ == address(0)) { _setDefaultRoyalty(owner_, royaltyFromSalesInBasisPoints_); } else { _setDefaultRoyalty( royaltyPaymentSplitter_, royaltyFromSalesInBasisPoints_ ); } useArweave = false; metadataLocked = false; mintingComplete = false; collectionRevealed = false; preRevealURI = collectionURIs_[0]; ipfsURI = collectionURIs_[1]; arweaveURI = collectionURIs_[2]; factory = msg.sender; pauseCutOffInDays = pauseCutOffInDays_; deployTimeStamp = uint32(block.timestamp); // Set this clone to initialised initialised = true; } /** ____________________________________________________________________________________________________________________ * -->INITIALISE * @dev (function) _decodeAndSetParams Decode NFT Parameters * * --------------------------------------------------------------------------------------------------------------------- * @param projectOwner_ The project owner * --------------------------------------------------------------------------------------------------------------------- * @param nftModule_ NFT module data * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function _decodeAndSetParams( address projectOwner_, NFTModuleConfig calldata nftModule_ ) internal { // Decode the config ( uint256 decodedSupply, uint256 decodedMintingMethod, string memory decodedName, string memory decodedSymbol, bytes32 decodedPositionProof ) = abi.decode( nftModule_.configData, (uint256, uint256, string, string, bytes32) ); // Initialise values on ERC721M _initialiseERC721M( decodedName, decodedSymbol, decodedSupply, projectOwner_ ); positionProof = decodedPositionProof; allocationMethod = TokenAllocationMethod(decodedMintingMethod); } /** ==================================================================================================================== * OPERATOR FILTER REGISTRY * ===================================================================================================================== */ /** ____________________________________________________________________________________________________________________ * -->OPERATOR FILTER * @dev (function) setApprovalForAll Operator filter registry override * * --------------------------------------------------------------------------------------------------------------------- * @param operator The operator for the approval * --------------------------------------------------------------------------------------------------------------------- * @param approved If the operator is approved * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setApprovalForAll( address operator, bool approved ) public override onlyAllowedOperatorApproval(operator) whenNotPaused { super.setApprovalForAll(operator, approved); } /** ____________________________________________________________________________________________________________________ * -->OPERATOR FILTER * @dev (function) approve Operator filter registry override * * --------------------------------------------------------------------------------------------------------------------- * @param operator The operator for the approval * --------------------------------------------------------------------------------------------------------------------- * @param tokenId The tokenId for this approval * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function approve( address operator, uint256 tokenId ) public override onlyAllowedOperatorApproval(operator) whenNotPaused { super.approve(operator, tokenId); } /** ____________________________________________________________________________________________________________________ * -->OPERATOR FILTER * @dev (function) transferFrom Operator filter registry override * * --------------------------------------------------------------------------------------------------------------------- * @param from The sender of the token * --------------------------------------------------------------------------------------------------------------------- * @param to The recipient of the token * --------------------------------------------------------------------------------------------------------------------- * @param tokenId The tokenId for this approval * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function transferFrom( address from, address to, uint256 tokenId ) public override onlyAllowedOperator(from) whenNotPaused { super.transferFrom(from, to, tokenId); } /** ____________________________________________________________________________________________________________________ * -->OPERATOR FILTER * @dev (function) safeTransferFrom Operator filter registry override * * --------------------------------------------------------------------------------------------------------------------- * @param from The sender of the token * --------------------------------------------------------------------------------------------------------------------- * @param to The recipient of the token * --------------------------------------------------------------------------------------------------------------------- * @param tokenId The tokenId for this approval * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override onlyAllowedOperator(from) whenNotPaused { super.safeTransferFrom(from, to, tokenId); } /** ____________________________________________________________________________________________________________________ * -->OPERATOR FILTER * @dev (function) safeTransferFrom Operator filter registry override * * --------------------------------------------------------------------------------------------------------------------- * @param from The sender of the token * --------------------------------------------------------------------------------------------------------------------- * @param to The recipient of the token * --------------------------------------------------------------------------------------------------------------------- * @param tokenId The tokenId for this approval * --------------------------------------------------------------------------------------------------------------------- * @param data bytes data accompanying this transfer operation * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public override onlyAllowedOperator(from) whenNotPaused { super.safeTransferFrom(from, to, tokenId, data); } /** ==================================================================================================================== * PRIVILEGED ACCESS * ===================================================================================================================== */ /** ____________________________________________________________________________________________________________________ * -->PAUSE * @dev (function) grantRole Override the external grant role method such that additional addresses cannot be granted * roles. The existing project owner and platform admins can transfer their roles, but they cannot create additional * authorised addresses at those roles. This maintains consistency with the single owner address that most projects are * familiar with (from Ownable.sol), and reduces the admin burden of tracking potentialy n authorised addresses. * _____________________________________________________________________________________________________________________ */ function grantRole(bytes32, address) public pure override { revert AdditionalAddressesCannotBeAddedToRolesUseTransferToTransferRoleToAnotherAddress(); } /** ____________________________________________________________________________________________________________________ * -->PAUSE * @dev (function) pause Allow platform admin to pause * _____________________________________________________________________________________________________________________ */ function pause() external onlyPlatformAdminOrProjectOwner { unchecked { if (block.timestamp > (deployTimeStamp + pauseCutOffInDays * 1 days)) { revert PauseCutOffHasPassed(); } } _pause(); } /** ____________________________________________________________________________________________________________________ * -->PAUSE * @dev (function) unpause Allow platform admin to unpause * * _____________________________________________________________________________________________________________________ */ function unpause() external onlyPlatformAdminOrProjectOwner { _unpause(); } /** ____________________________________________________________________________________________________________________ * -->LOCK MINTING * @dev (function) setMintingCompleteForeverCannotBeUndone Allow project owner OR platform admin to set minting * complete * * @notice Enter confirmation value of "MintingComplete" to confirm that you are closing minting. * * --------------------------------------------------------------------------------------------------------------------- * @param confirmation_ Confirmation string * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setMintingCompleteForeverCannotBeUndone( string calldata confirmation_ ) external onlyPlatformAdminOrProjectOwner { if ( keccak256(abi.encodePacked(confirmation_)) == keccak256(abi.encodePacked("MintingComplete")) ) { mintingComplete = true; } else { revert IncorrectConfirmationValue(); } } /** ____________________________________________________________________________________________________________________ * -->REVEAL * @dev (function) revealCollection Set the collection to revealed * * _____________________________________________________________________________________________________________________ */ function revealCollection() external onlyPlatformAdminOrProjectOwner { collectionRevealed = true; emit Revealed(); } /** ____________________________________________________________________________________________________________________ * -->REVEAL * @dev (function) setPositionProof Set the metadata position proof * * --------------------------------------------------------------------------------------------------------------------- * @param positionProof_ The metadata proof * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setPositionProof(bytes32 positionProof_) external onlyPlatformAdmin { positionProof = positionProof_; emit PositionProofSet(positionProof_); } /** ____________________________________________________________________________________________________________________ * -->REVEAL * @dev (function) setStartPosition Get the metadata start position for use on reveal of this collection * _____________________________________________________________________________________________________________________ */ function setStartPosition() external onlyPlatformAdminOrProjectOwner { if (recordedRandomWord != 0) { revert VRFAlreadySet(); } IDropFactory(factory).requestVRFRandomness(); } /** ____________________________________________________________________________________________________________________ * -->REVEAL * @dev (function) fulfillRandomWords Callback from the chainlinkv2 oracle (on factory) with randomness * * --------------------------------------------------------------------------------------------------------------------- * @param requestId_ The Id of this request (this contract will submit a single request) * --------------------------------------------------------------------------------------------------------------------- * @param randomWords_ The random words returned from chainlink * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function fulfillRandomWords( uint256 requestId_, uint256[] memory randomWords_ ) external { if (msg.sender == factory) { recordedRandomWord = randomWords_[0]; unchecked { vrfStartPosition = (randomWords_[0] % maxSupply) + 1; } emit RandomNumberReceived(requestId_, randomWords_[0]); emit VRFPositionSet(vrfStartPosition); } else { revert MetadropFactoryOnly(); } } /** ____________________________________________________________________________________________________________________ * -->ACCESS CONTROL * @dev (function) transferProjectOwner Allows the current project owner to transfer this role to another address * * --------------------------------------------------------------------------------------------------------------------- * @param newProjectOwner_ New project owner * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function transferProjectOwner( address newProjectOwner_ ) external onlyProjectOwner { _grantRole(PROJECT_OWNER, newProjectOwner_); _revokeRole(PROJECT_OWNER, msg.sender); } /** ____________________________________________________________________________________________________________________ * -->ACCESS CONTROL * @dev (function) transferPlatformAdmin Allows the current platform admin to transfer this role to another address * * --------------------------------------------------------------------------------------------------------------------- * @param newPlatformAdmin_ New platform admin * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function transferPlatformAdmin( address newPlatformAdmin_ ) external onlyPlatformAdmin { _grantRole(PLATFORM_ADMIN, newPlatformAdmin_); _revokeRole(PLATFORM_ADMIN, msg.sender); } /** ____________________________________________________________________________________________________________________ * -->METADATA * @dev (function) setURIs Set the URI data for this contracts * * --------------------------------------------------------------------------------------------------------------------- * @param preRevealURI_ The URI to use pre-reveal * --------------------------------------------------------------------------------------------------------------------- * @param arweaveURI_ The URI for arweave * --------------------------------------------------------------------------------------------------------------------- * @param ipfsURI_ The URI for IPFS * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setURIs( string calldata preRevealURI_, string calldata arweaveURI_, string calldata ipfsURI_ ) external onlyPlatformAdmin { if (metadataLocked) { revert MetadataIsLocked(); } preRevealURI = preRevealURI_; arweaveURI = arweaveURI_; ipfsURI = ipfsURI_; } /** ____________________________________________________________________________________________________________________ * -->METADATA * @dev (function) lockURIsCannotBeUndone Lock the URI data for this contract * * --------------------------------------------------------------------------------------------------------------------- * @param confirmation_ The confirmation string * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function lockURIsCannotBeUndone( string calldata confirmation_ ) external onlyPlatformAdmin { if ( keccak256(abi.encodePacked(confirmation_)) == keccak256(abi.encodePacked("LockURIs")) ) { metadataLocked = true; } else { revert IncorrectConfirmationValue(); } } /** ____________________________________________________________________________________________________________________ * -->METADATA * @dev (function) setUseArweave Guards against either arweave or IPFS being no more * * --------------------------------------------------------------------------------------------------------------------- * @param useArweave_ Boolean to indicate whether arweave should be used or not (true = use arweave, false = use IPFS) * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setUseArweave( bool useArweave_ ) external onlyPlatformAdminOrProjectOwner { useArweave = useArweave_; } /** ____________________________________________________________________________________________________________________ * -->ROYALTY * @dev (function) setDefaultRoyalty Set the royalty percentage * * @notice - we have specifically NOT implemented the ability to have different royalties on a token by token basis. * This reduces the complexity of processing on multi-buys, and also avoids challenges to decentralisation (e.g. the * project targetting one users tokens with larger royalties) * --------------------------------------------------------------------------------------------------------------------- * @param recipient_ Royalty receiver * --------------------------------------------------------------------------------------------------------------------- * @param fraction_ Royalty fraction * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setDefaultRoyalty( address recipient_, uint96 fraction_ ) public onlyPlatformAdminOrProjectOwner { _setDefaultRoyalty(recipient_, fraction_); } /** ____________________________________________________________________________________________________________________ * -->ROYALTY * @dev (function) deleteDefaultRoyalty Delete the royalty percentage claimed * * _____________________________________________________________________________________________________________________ */ function deleteDefaultRoyalty() public onlyPlatformAdminOrProjectOwner { _deleteDefaultRoyalty(); } /** ____________________________________________________________________________________________________________________ * -->FINANCE * @dev (function) receive This contract does not handle ETH. Explicitly revert on receive() * * _____________________________________________________________________________________________________________________ */ receive() external payable { revert(); } /** ____________________________________________________________________________________________________________________ * -->FINANCE * @dev (function) fallback Explicitly revert on fallback() * * _____________________________________________________________________________________________________________________ */ fallback() external payable { revert(); } /** ==================================================================================================================== * COLLECTION INFORMATION GETTERS * ===================================================================================================================== */ /** ____________________________________________________________________________________________________________________ * -->GETTER * @dev (function) metadropCustom Returns if this contract is a custom NFT (true) or is a standard metadrop * ERC721M (false) * * --------------------------------------------------------------------------------------------------------------------- * @return isMetadropCustom_ The total minted supply of this collection * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function metadropCustom() external pure returns (bool isMetadropCustom_) { return (false); } /** ____________________________________________________________________________________________________________________ * -->GETTER * @dev (function) totalSupply Returns total supply (minted - burned) * * --------------------------------------------------------------------------------------------------------------------- * @return totalSupply_ The total supply of this collection (minted - burned) * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function totalSupply() external view override(ERC721M, INFTByMetadrop) returns (uint256 totalSupply_) { return totalMinted() - totalBurned(); } /** ____________________________________________________________________________________________________________________ * -->GETTER * @dev (function) totalUnminted Returns the remaining unminted supply * * --------------------------------------------------------------------------------------------------------------------- * @return totalUnminted_ The total unminted supply of this collection * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function totalUnminted() public view override(ERC721M, INFTByMetadrop) returns (uint256 totalUnminted_) { return remainingSupply; } /** ____________________________________________________________________________________________________________________ * -->GETTER * @dev (function) totalMinted Returns the total number of tokens ever minted * * --------------------------------------------------------------------------------------------------------------------- * @return totalMinted_ The total minted supply of this collection * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function totalMinted() public view override(ERC721M, INFTByMetadrop) returns (uint256 totalMinted_) { return (maxSupply - remainingSupply); } /** ____________________________________________________________________________________________________________________ * -->GETTER * @dev (function) totalBurned Returns the count of tokens sent to the burn address * * --------------------------------------------------------------------------------------------------------------------- * @return totalBurned_ The total burned supply of this collection * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function totalBurned() public view override(ERC721M, INFTByMetadrop) returns (uint256 totalBurned_) { return ERC721M.balanceOf(BURN_ADDRESS); } /** ____________________________________________________________________________________________________________________ * -->GETTER * @dev (function) tokenURI Returns the URI for the passed token * * --------------------------------------------------------------------------------------------------------------------- * @return tokenURI_ The token URI * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function tokenURI( uint256 tokenId ) public view virtual override returns (string memory tokenURI_) { _requireMinted(tokenId); unchecked { if (!collectionRevealed) { return bytes(preRevealURI).length > 0 ? string(abi.encodePacked(preRevealURI)) : ""; } else { if (useArweave) { return bytes(arweaveURI).length > 0 ? string( abi.encodePacked( arweaveURI, ((tokenId + vrfStartPosition) % maxSupply).toString(), ".json" ) ) : ""; } else { return bytes(ipfsURI).length > 0 ? string( abi.encodePacked( ipfsURI, ((tokenId + vrfStartPosition) % maxSupply).toString(), ".json" ) ) : ""; } } } } /** ____________________________________________________________________________________________________________________ * -->GETTER * @dev (function) supportsInterface Override is required by Solidity. * * --------------------------------------------------------------------------------------------------------------------- * @return bool If the interface is supported * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function supportsInterface( bytes4 interfaceId ) public view override(AccessControl, ERC721M) returns (bool) { return super.supportsInterface(interfaceId); } /** ==================================================================================================================== * MINTING * ===================================================================================================================== */ /** ____________________________________________________________________________________________________________________ * -->MINT * @dev (function) metadropMint Mint tokens. Can only be called from a valid primary market contract * * --------------------------------------------------------------------------------------------------------------------- * @param caller_ The address that has called mint through the primary sale module. * --------------------------------------------------------------------------------------------------------------------- * @param recipient_ The address that will receive new assets. * --------------------------------------------------------------------------------------------------------------------- * @param allowanceAddress_ The address that has an allowance being used in this mint. This will be the same as the * calling address in almost all cases. An example of when they may differ is in a list * mint where the caller is a delegate of another address with an allowance in the list. * The caller is performing the mint, but it is the allowance for the allowance address * that is being checked and decremented in this mint. * --------------------------------------------------------------------------------------------------------------------- * @param quantityToMint_ The quantity of tokens to be minted * --------------------------------------------------------------------------------------------------------------------- * @param unitPrice_ The unit price for each token * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function metadropMint( address caller_, address recipient_, address allowanceAddress_, uint256 quantityToMint_, uint256 unitPrice_ ) external { if (recipient_ == address(0) || recipient_ == BURN_ADDRESS) { revert InvalidRecipient(); } if (mintingComplete) { revert MintingIsClosedForever(); } if (!validPrimaryMarketAddress[msg.sender]) revert InvalidAddress(); if (allocationMethod != TokenAllocationMethod.sequential) { revert InvalidTokenAllocationMethod(); } uint256[] memory tokenIds = _mintSequential(recipient_, quantityToMint_); emit MetadropMint( allowanceAddress_, recipient_, caller_, msg.sender, unitPrice_, tokenIds ); } /** ==================================================================================================================== */ }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(account), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * May emit a {RoleGranted} event. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "../../interfaces/IERC2981.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://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 functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // Metadrop Contracts (v0.0.1) pragma solidity 0.8.19; import "../Global/IConfigStructures.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IDropFactory is IConfigStructures { /** ==================================================================================================================== * EVENTS * ===================================================================================================================== */ event DefaultMetadropPrimaryShareBasisPointsSet( uint256 defaultPrimaryFeeBasisPoints ); event DefaultMetadropRoyaltyBasisPointsSet( uint256 defaultMetadropRoyaltyBasisPoints ); event PrimaryFeeOverrideByDropSet(string dropId, uint256 percentage); event RoyaltyBasisPointsOverrideByDropSet( string dropId, uint256 royaltyBasisPoints ); event PlatformTreasurySet(address platformTreasury); event TemplateAdded( TemplateStatus status, uint256 templateNumber, uint256 loadedDate, address templateAddress, string templateDescription ); event TemplateTerminated(uint16 templateNumber); event DropApproved( string indexed dropId, address indexed dropOwner, bytes32 dropHash ); event DropDetailsDeleted(string indexed dropId); event DropExpiryInDaysSet(uint32 expiryInDays); event pauseCutOffInDaysSet(uint8 cutOffInDays); event SubmissionFeeETHUpdated(uint256 oldFee, uint256 newFee); event InitialInstanceOwnerSet(address initialInstanceOwner); event DropDeployed( string dropId, address nftInstance, address vestingInstance, PrimarySaleModuleInstance[], address royaltySplitterInstance ); event vrfSubscriptionIdSet(uint64 vrfSubscriptionId_); event vrfKeyHashSet(bytes32 vrfKeyHash); event vrfCallbackGasLimitSet(uint32 vrfCallbackGasLimit); event vrfRequestConfirmationsSet(uint16 vrfRequestConfirmations); event vrfNumWordsSet(uint32 vrfNumWords); event metadropOracleAddressSet(address metadropOracleAddress); event messageValidityInSecondsSet(uint80 messageValidityInSeconds); /** ==================================================================================================================== * ERRORS * ===================================================================================================================== */ error MetadropOnly(); error ValueExceedsMaximum(); error TemplateCannotBeAddressZero(); error ProjectOwnerCannotBeAddressZero(); error PlatformAdminCannotBeAddressZero(); error ReviewAdminCannotBeAddressZero(); error PlatformTreasuryCannotBeAddressZero(); error InitialInstanceOwnerCannotBeAddressZero(); error MetadropOracleCannotBeAddressZero(); error VRFCoordinatorCannotBeAddressZero(); /** ==================================================================================================================== * FUNCTIONS * ===================================================================================================================== */ /** ____________________________________________________________________________________________________________________ * -->GETTER * @dev (function) getPlatformTreasury return the treasury address (provided as explicit method rather than public var) * * --------------------------------------------------------------------------------------------------------------------- * @return platformTreasury_ Treasury address * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function getPlatformTreasury() external view returns (address platformTreasury_); /** ____________________________________________________________________________________________________________________ * -->GETTER * @dev (function) getDropDetails Getter for the drop details held on chain * * --------------------------------------------------------------------------------------------------------------------- * @param dropId_ The drop ID being queries * --------------------------------------------------------------------------------------------------------------------- * @return dropDetails_ The drop details struct for the provided drop Id. * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function getDropDetails( string memory dropId_ ) external view returns (DropApproval memory dropDetails_); /** ==================================================================================================================== * PRIVILEGED ACCESS * ===================================================================================================================== */ /** ____________________________________________________________________________________________________________________ * -->VRF * @dev (function) setVRFSubscriptionId Set the chainlink subscription id.. * * --------------------------------------------------------------------------------------------------------------------- * @param vrfSubscriptionId_ The VRF subscription that this contract will consume chainlink from. * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setVRFSubscriptionId(uint64 vrfSubscriptionId_) external; /** ____________________________________________________________________________________________________________________ * -->VRF * @dev (function) setVRFKeyHash Set the chainlink keyhash (gas lane). * * --------------------------------------------------------------------------------------------------------------------- * @param vrfKeyHash_ The desired VRF keyhash * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setVRFKeyHash(bytes32 vrfKeyHash_) external; /** ____________________________________________________________________________________________________________________ * -->VRF * @dev (function) setVRFCallbackGasLimit Set the chainlink callback gas limit * * --------------------------------------------------------------------------------------------------------------------- * @param vrfCallbackGasLimit_ Callback gas limit * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setVRFCallbackGasLimit(uint32 vrfCallbackGasLimit_) external; /** ____________________________________________________________________________________________________________________ * -->VRF * @dev (function) setVRFRequestConfirmations Set the chainlink number of confirmations required * * --------------------------------------------------------------------------------------------------------------------- * @param vrfRequestConfirmations_ Required number of confirmations * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setVRFRequestConfirmations(uint16 vrfRequestConfirmations_) external; /** ____________________________________________________________________________________________________________________ * -->VRF * @dev (function) setVRFNumWords Set the chainlink number of words required * * --------------------------------------------------------------------------------------------------------------------- * @param vrfNumWords_ Required number of confirmations * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setVRFNumWords(uint32 vrfNumWords_) external; /** ____________________________________________________________________________________________________________________ * -->ORACLE * @dev (function) setMetadropOracleAddress Set the metadrop trusted oracle address * * --------------------------------------------------------------------------------------------------------------------- * @param metadropOracleAddress_ Trusted metadrop oracle address * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setMetadropOracleAddress(address metadropOracleAddress_) external; /** ____________________________________________________________________________________________________________________ * -->ORACLE * @dev (function) setMessageValidityInSeconds Set the validity period of signed messages * * --------------------------------------------------------------------------------------------------------------------- * @param messageValidityInSeconds_ Validity period in seconds for messages signed by the trusted oracle * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setMessageValidityInSeconds( uint80 messageValidityInSeconds_ ) external; /** ____________________________________________________________________________________________________________________ * -->FINANCE * @dev (function) withdrawETH A withdraw function to allow ETH to be withdrawn to the treasury * * --------------------------------------------------------------------------------------------------------------------- * @param amount_ The amount to withdraw * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function withdrawETH(uint256 amount_) external; /** ____________________________________________________________________________________________________________________ * -->FINANCE * @dev (function) withdrawERC20 A withdraw function to allow ERC20s to be withdrawn to the treasury * * --------------------------------------------------------------------------------------------------------------------- * @param token_ The contract address of the token being withdrawn * --------------------------------------------------------------------------------------------------------------------- * @param amount_ The amount to withdraw * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function withdrawERC20(IERC20 token_, uint256 amount_) external; /** ____________________________________________________________________________________________________________________ * -->FINANCE * @dev (function) getDefaultMetadropPrimaryShareBasisPoints Getter for the default platform primary fee basis points * * --------------------------------------------------------------------------------------------------------------------- * @return defaultMetadropPrimaryShareBasisPoints_ The metadrop primary share in basis points * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function getDefaultMetadropPrimaryShareBasisPoints() external view returns (uint256 defaultMetadropPrimaryShareBasisPoints_); /** ____________________________________________________________________________________________________________________ * -->FINANCE * @dev (function) getMetadropRoyaltyBasisPoints Getter for the metadrop royalty share in basis points * * --------------------------------------------------------------------------------------------------------------------- * @return metadropRoyaltyBasisPoints_ The metadrop royalty share in basis points * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function getMetadropRoyaltyBasisPoints() external view returns (uint256 metadropRoyaltyBasisPoints_); /** ____________________________________________________________________________________________________________________ * -->FINANCE * @dev (function) getPrimaryFeeOverrideByDrop Getter for any drop specific primary fee override * * --------------------------------------------------------------------------------------------------------------------- * @param dropId_ The drop Id being queried * --------------------------------------------------------------------------------------------------------------------- * @return isSet_ If this override is set * --------------------------------------------------------------------------------------------------------------------- * @return primaryFeeOverrideByDrop_ The primary fee override for the drop (if any) * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function getPrimaryFeeOverrideByDrop( string memory dropId_ ) external view returns (bool isSet_, uint256 primaryFeeOverrideByDrop_); /** ____________________________________________________________________________________________________________________ * -->FINANCE * @dev (function) getMetadropRoyaltyOverrideByDrop Getter for any drop specific royalty basis points override * * --------------------------------------------------------------------------------------------------------------------- * @param dropId_ The drop Id being queried * --------------------------------------------------------------------------------------------------------------------- * @return isSet_ If this override is set * --------------------------------------------------------------------------------------------------------------------- * @return metadropRoyaltyOverrideByDrop_ Royalty basis points override for the drop (if any) * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function getMetadropRoyaltyOverrideByDrop( string memory dropId_ ) external view returns (bool isSet_, uint256 metadropRoyaltyOverrideByDrop_); /** ____________________________________________________________________________________________________________________ * -->PAUSABLE * @dev (function) getPauseCutOffInDays Getter for the default pause cutoff period * * --------------------------------------------------------------------------------------------------------------------- * @return pauseCutOffInDays_ Default pause cutoff in days * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function getPauseCutOffInDays() external view returns (uint8 pauseCutOffInDays_); /** ____________________________________________________________________________________________________________________ * -->PAUSABLE * @dev (function) setpauseCutOffInDays Set the number of days from the start date that a contract can be paused for * * --------------------------------------------------------------------------------------------------------------------- * @param pauseCutOffInDays_ Default pause cutoff in days * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setpauseCutOffInDays(uint8 pauseCutOffInDays_) external; /** ____________________________________________________________________________________________________________________ * -->FINANCE * @dev (function) setDropFeeETH Set drop fee (if any) * * --------------------------------------------------------------------------------------------------------------------- * @param fee_ New drop fee * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setDropFeeETH(uint256 fee_) external; /** ____________________________________________________________________________________________________________________ * -->FINANCE * @dev (function) setPlatformTreasury Set the platform treasury address * * Set the address that platform fees will be paid to / can be withdrawn to. * Note that this is restricted to the highest authority level, the default * admin. Platform admins can trigger a withdrawal to the treasury, but only * the default admin can set or alter the treasury address. It is recommended * that the default admin is highly secured and restrited e.g. a multi-sig. * * --------------------------------------------------------------------------------------------------------------------- * @param platformTreasury_ New treasury address * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setPlatformTreasury(address platformTreasury_) external; /** ____________________________________________________________________________________________________________________ * -->FINANCE * @dev (function) setinitialInstanceOwner Set the owner on all created instances * * The 'initial instance owner' is the address that will be set as the Owner * on all cloned instances of contracts created in this factory. Note that we the * contract instances are clones we do not call a constructor when an instance * is created, rather we set the owner on the call to initialise. * * --------------------------------------------------------------------------------------------------------------------- * @param initialInstanceOwner_ New owner address * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setinitialInstanceOwner(address initialInstanceOwner_) external; /** ____________________________________________________________________________________________________________________ * -->FINANCE * @dev (function) setDefaultMetadropPrimaryShareBasisPoints Setter for the metadrop primary basis points fee * * --------------------------------------------------------------------------------------------------------------------- * @param defaultMetadropPrimaryShareBasisPoints_ New default meradrop primary share * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setDefaultMetadropPrimaryShareBasisPoints( uint32 defaultMetadropPrimaryShareBasisPoints_ ) external; /** ____________________________________________________________________________________________________________________ * -->FINANCE * @dev (function) setMetadropRoyaltyBasisPoints Setter for the metadrop royalty percentate in * basis points i.e. 100 = 1% * * --------------------------------------------------------------------------------------------------------------------- * @param defaultMetadropRoyaltyBasisPoints_ New default royalty basis points * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setMetadropRoyaltyBasisPoints( uint32 defaultMetadropRoyaltyBasisPoints_ ) external; /** ____________________________________________________________________________________________________________________ * -->FINANCE * @dev (function) setPrimaryFeeOverrideByDrop Setter for the metadrop primary percentage fee, in basis points * * --------------------------------------------------------------------------------------------------------------------- * @param dropId_ The drop for the override * --------------------------------------------------------------------------------------------------------------------- * @param basisPoints_ The basis points override * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setPrimaryFeeOverrideByDrop( string memory dropId_, uint256 basisPoints_ ) external; /** ____________________________________________________________________________________________________________________ * -->FINANCE * @dev (function) setMetadropRoyaltyOverrideByDrop Setter to override royalty basis points * * --------------------------------------------------------------------------------------------------------------------- * @param dropId_ The drop for the override * --------------------------------------------------------------------------------------------------------------------- * @param royaltyBasisPoints_ Royalty basis points verride * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setMetadropRoyaltyOverrideByDrop( string memory dropId_, uint256 royaltyBasisPoints_ ) external; /** ____________________________________________________________________________________________________________________ * -->DROPS * @dev (function) setDropExpiryInDays Setter for the number of days that must pass since a drop was last changed * before it can be removed from storage * * --------------------------------------------------------------------------------------------------------------------- * @param dropExpiryInDays_ The number of days that must pass for a submitted drop to be considered expired * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setDropExpiryInDays(uint32 dropExpiryInDays_) external; /** ____________________________________________________________________________________________________________________ * -->ACCESS CONTROL * @dev (function) grantPlatformAdmin Allows the super user Default Admin to add an address to the platform admin group * * --------------------------------------------------------------------------------------------------------------------- * @param newPlatformAdmin_ The address of the new platform admin * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function grantPlatformAdmin(address newPlatformAdmin_) external; /** ____________________________________________________________________________________________________________________ * -->ACCESS CONTROL * @dev (function) grantReviewAdmin Allows the super user Default Admin to add an address to the review admin group. * * --------------------------------------------------------------------------------------------------------------------- * @param newReviewAdmin_ The address of the new review admin * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function grantReviewAdmin(address newReviewAdmin_) external; /** ____________________________________________________________________________________________________________________ * -->ACCESS CONTROL * @dev (function) revokePlatformAdmin Allows the super user Default Admin to revoke from the platform admin group * * --------------------------------------------------------------------------------------------------------------------- * @param oldPlatformAdmin_ The address of the old platform admin * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function revokePlatformAdmin(address oldPlatformAdmin_) external; /** ____________________________________________________________________________________________________________________ * -->ACCESS CONTROL * @dev (function) revokeReviewAdmin Allows the super user Default Admin to revoke an address to the review admin group * * --------------------------------------------------------------------------------------------------------------------- * @param oldReviewAdmin_ The address of the old review admin * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function revokeReviewAdmin(address oldReviewAdmin_) external; /** ____________________________________________________________________________________________________________________ * -->ACCESS CONTROL * @dev (function) transferDefaultAdmin Allows the super user Default Admin to transfer this right to another address * * --------------------------------------------------------------------------------------------------------------------- * @param newDefaultAdmin_ The address of the new default admin * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function transferDefaultAdmin(address newDefaultAdmin_) external; /** ==================================================================================================================== * VRF SERVER * ===================================================================================================================== */ /** ____________________________________________________________________________________________________________________ * -->VRF * @dev (function) requestVRFRandomness Get the metadata start position for use on reveal of the calling collection * _____________________________________________________________________________________________________________________ */ function requestVRFRandomness() external; /** ==================================================================================================================== * TEMPLATES * ===================================================================================================================== */ /** ____________________________________________________________________________________________________________________ * -->TEMPLATES * @dev (function) addTemplate Add a contract to the template library * * --------------------------------------------------------------------------------------------------------------------- * @param contractAddress_ The address of the deployed contract that will be a template * --------------------------------------------------------------------------------------------------------------------- * @param templateDescription_ The description of the template * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function addTemplate( address payable contractAddress_, string memory templateDescription_ ) external; /** ____________________________________________________________________________________________________________________ * -->TEMPLATES * @dev (function) terminateTemplate Mark a template as terminated * * --------------------------------------------------------------------------------------------------------------------- * @param templateNumber_ The number of the template to be marked as terminated * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function terminateTemplate(uint16 templateNumber_) external; /** ==================================================================================================================== * DROP CREATION * ===================================================================================================================== */ /** ____________________________________________________________________________________________________________________ * -->DROPS * @dev (function) removeExpiredDropDetails A review admin user can remove details for a drop that has expired. * * --------------------------------------------------------------------------------------------------------------------- * @param dropId_ The drop Id for which details are to be removed * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function removeExpiredDropDetails(string memory dropId_) external; /** ____________________________________________________________________________________________________________________ * -->DROPS * @dev (function) approveDrop A review admin user can approve the drop. * * --------------------------------------------------------------------------------------------------------------------- * @param dropId_ The drop Id being approved * --------------------------------------------------------------------------------------------------------------------- * @param projectOwner_ Address of the project owner * --------------------------------------------------------------------------------------------------------------------- * @param dropConfigHash_ The config hash for this drop * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function approveDrop( string memory dropId_, address projectOwner_, bytes32 dropConfigHash_ ) external; /** ____________________________________________________________________________________________________________________ * -->DROPS * @dev (function) createDrop Create a drop using the stored and approved configuration if called by the address * that the user has designated as project admin * * --------------------------------------------------------------------------------------------------------------------- * @param dropId_ The drop Id being approved * --------------------------------------------------------------------------------------------------------------------- * @param vestingModule_ Struct containing the relevant config for the vesting module * --------------------------------------------------------------------------------------------------------------------- * @param nftModule_ Struct containing the relevant config for the NFT module * --------------------------------------------------------------------------------------------------------------------- * @param primarySaleModulesConfig_ Array of structs containing the config details for all primary sale modules * associated with this drop (can be 1 to n) * --------------------------------------------------------------------------------------------------------------------- * @param royaltyPaymentSplitterModule_ Struct containing the relevant config for the royalty splitter module * --------------------------------------------------------------------------------------------------------------------- * @param salesPageHash_ A hash of sale page data * --------------------------------------------------------------------------------------------------------------------- * @param customNftAddress_ If this drop uses a custom NFT this will hold that contract's address * --------------------------------------------------------------------------------------------------------------------- * @param collectionURIs_ An array of collection URIs (pre-reveal, ipfs and arweave) * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function createDrop( string memory dropId_, VestingModuleConfig memory vestingModule_, NFTModuleConfig memory nftModule_, PrimarySaleModuleConfig[] memory primarySaleModulesConfig_, RoyaltySplitterModuleConfig memory royaltyPaymentSplitterModule_, bytes32 salesPageHash_, address customNftAddress_, string[3] memory collectionURIs_ ) external payable; /** ____________________________________________________________________________________________________________________ * -->DROPS * @dev (function) configHashMatches Check the passed config against the stored config hash * * --------------------------------------------------------------------------------------------------------------------- * @param dropId_ The drop Id being approved * --------------------------------------------------------------------------------------------------------------------- * @param vestingModule_ Struct containing the relevant config for the vesting module * --------------------------------------------------------------------------------------------------------------------- * @param nftModule_ Struct containing the relevant config for the NFT module * --------------------------------------------------------------------------------------------------------------------- * @param primarySaleModulesConfig_ Array of structs containing the config details for all primary sale modules * associated with this drop (can be 1 to n) * --------------------------------------------------------------------------------------------------------------------- * @param royaltyPaymentSplitterModule_ Struct containing the relevant config for the royalty splitter module * --------------------------------------------------------------------------------------------------------------------- * @param salesPageHash_ A hash of sale page data * --------------------------------------------------------------------------------------------------------------------- * @param customNftAddress_ If this drop uses a custom NFT this will hold that contract's address * --------------------------------------------------------------------------------------------------------------------- * @return matches_ Whether the hash matches (true) or not (false) * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function configHashMatches( string memory dropId_, VestingModuleConfig memory vestingModule_, NFTModuleConfig memory nftModule_, PrimarySaleModuleConfig[] memory primarySaleModulesConfig_, RoyaltySplitterModuleConfig memory royaltyPaymentSplitterModule_, bytes32 salesPageHash_, address customNftAddress_ ) external view returns (bool matches_); /** ____________________________________________________________________________________________________________________ * -->DROPS * @dev (function) createConfigHash Create the config hash * * --------------------------------------------------------------------------------------------------------------------- * @param dropId_ The drop Id being approved * --------------------------------------------------------------------------------------------------------------------- * @param vestingModule_ Struct containing the relevant config for the vesting module * --------------------------------------------------------------------------------------------------------------------- * @param nftModule_ Struct containing the relevant config for the NFT module * --------------------------------------------------------------------------------------------------------------------- * @param primarySaleModulesConfig_ Array of structs containing the config details for all primary sale modules * associated with this drop (can be 1 to n) * --------------------------------------------------------------------------------------------------------------------- * @param royaltyPaymentSplitterModule_ Struct containing the relevant config for the royalty splitter module * --------------------------------------------------------------------------------------------------------------------- * @param salesPageHash_ A hash of sale page data * --------------------------------------------------------------------------------------------------------------------- * @param customNftAddress_ If this drop uses a custom NFT this will hold that contract's address * --------------------------------------------------------------------------------------------------------------------- * @return configHash_ The bytes32 config hash * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function createConfigHash( string memory dropId_, VestingModuleConfig memory vestingModule_, NFTModuleConfig memory nftModule_, PrimarySaleModuleConfig[] memory primarySaleModulesConfig_, RoyaltySplitterModuleConfig memory royaltyPaymentSplitterModule_, bytes32 salesPageHash_, address customNftAddress_ ) external pure returns (bytes32 configHash_); }
// SPDX-License-Identifier: MIT // Metadrop Contracts (v0.0.1) /** * * @title AuthorityModel.sol. Library for global authority components * * @author metadrop https://metadrop.com/ * */ pragma solidity 0.8.19; /** * * @dev Inheritance details: * AccessControl OZ access control implementation - used for authority control * */ import "@openzeppelin/contracts/access/AccessControl.sol"; contract AuthorityModel is AccessControl { // Platform admin: The role for platform admins. Platform admins can be added. These addresses have privileged // access to maintain configuration like the platform fee. bytes32 public constant PLATFORM_ADMIN = keccak256("PLATFORM_ADMIN"); // Review admin: access to perform reviews of drops, in this case the authority to maintain the drop status parameter, and // set it from review to editable (when sending back to the project owner), or from review to approved (when) // the drop is ready to go). bytes32 public constant REVIEW_ADMIN = keccak256("REVIEW_ADMIN"); // Project owner: This is the role for the project itself, i.e. the team that own this drop. bytes32 internal constant PROJECT_OWNER = keccak256("PROJECT_OWNER"); // Address for the factory: address public factory; /** ==================================================================================================================== * ERRORS * ===================================================================================================================== */ error CallerIsNotDefaultAdmin(address caller); error CallerIsNotPlatformAdmin(address caller); error CallerIsNotReviewAdmin(address caller); error CallerIsNotPlatformAdminOrProjectOwner(address caller); error CallerIsNotPlatformAdminOrFactory(address caller); error CallerIsNotProjectOwner(address caller); /** ==================================================================================================================== * MODIFIERS * ===================================================================================================================== */ /** ____________________________________________________________________________________________________________________ * -->ACCESS CONTROL * @dev (modifier) onlyDefaultAdmin. The associated action can only be taken by an address with the * default admin role. * * _____________________________________________________________________________________________________________________ */ modifier onlyDefaultAdmin() { if (!hasRole(DEFAULT_ADMIN_ROLE, msg.sender)) revert CallerIsNotDefaultAdmin(msg.sender); _; } /** ____________________________________________________________________________________________________________________ * -->ACCESS CONTROL * @dev (modifier) onlyPlatformAdmin. The associated action can only be taken by an address with the * platform admin role. * * _____________________________________________________________________________________________________________________ */ modifier onlyPlatformAdmin() { if (!hasRole(PLATFORM_ADMIN, msg.sender)) revert CallerIsNotPlatformAdmin(msg.sender); _; } /** ____________________________________________________________________________________________________________________ * -->ACCESS CONTROL * @dev (modifier) onlyReviewAdmin. The associated action can only be taken by an address with the * review admin role. * * _____________________________________________________________________________________________________________________ */ modifier onlyReviewAdmin() { if (!hasRole(REVIEW_ADMIN, msg.sender)) revert CallerIsNotReviewAdmin(msg.sender); _; } /** ____________________________________________________________________________________________________________________ * -->ACCESS CONTROL * @dev (modifier) onlyPlatformAdminOrProjectOwner. The associated action can only be taken by an address with the * platform admin role or project owner role * * _____________________________________________________________________________________________________________________ */ modifier onlyPlatformAdminOrProjectOwner() { if ( !hasRole(PLATFORM_ADMIN, msg.sender) && !hasRole(PROJECT_OWNER, msg.sender) ) revert CallerIsNotPlatformAdminOrProjectOwner(msg.sender); _; } /** ____________________________________________________________________________________________________________________ * -->ACCESS CONTROL * @dev (modifier) onlyProjectOwner. The associated action can only be taken by an address with the * project owner role. * * _____________________________________________________________________________________________________________________ */ modifier onlyProjectOwner() { if (!hasRole(PROJECT_OWNER, msg.sender)) revert CallerIsNotProjectOwner(msg.sender); _; } /** ____________________________________________________________________________________________________________________ * -->ACCESS CONTROL * @dev (modifier) onlyFactoryOrPlatformAdmin. The associated action can only be taken by an address with the * platform admin role or the factory. * * _____________________________________________________________________________________________________________________ */ modifier onlyFactoryOrPlatformAdmin() { if (msg.sender != factory && !hasRole(PLATFORM_ADMIN, msg.sender)) revert CallerIsNotPlatformAdminOrFactory(msg.sender); _; } }
// SPDX-License-Identifier: MIT // Metadrop Contracts (v0.0.1) /** * * @title IConfigStructures.sol. Interface for common config structures used accross the platform * * @author metadrop https://metadrop.com/ * */ pragma solidity 0.8.19; interface IConfigStructures { enum DropStatus { approved, deployed, cancelled } enum TemplateStatus { live, terminated } enum TokenAllocationMethod { sequential, random } // The current status of the mint: // - notEnabled: This type of mint is not part of this drop // - notYetOpen: This type of mint is part of the drop, but it hasn't started yet // - open: it's ready for ya, get in there. // - finished: been and gone. // - unknown: theoretically impossible. enum MintStatus { notEnabled, notYetOpen, open, finished, unknown } struct SubListConfig { uint256 start; uint256 end; uint256 phaseMaxSupply; } struct PrimarySaleModuleInstance { address instanceAddress; string instanceDescription; } struct NFTModuleConfig { uint256 templateId; bytes configData; } struct PrimarySaleModuleConfig { uint256 templateId; bytes configData; } struct VestingModuleConfig { uint256 templateId; bytes configData; } struct RoyaltySplitterModuleConfig { uint256 templateId; bytes configData; } struct InLifeModuleConfig { uint256 templateId; bytes configData; } struct InLifeModules { InLifeModuleConfig[] modules; } struct NFTConfig { uint256 supply; uint256 mintingMethod; string name; string symbol; bytes32 positionProof; } struct DropApproval { DropStatus status; uint32 lastChangedDate; address dropOwnerAddress; bytes32 configHash; } struct Template { TemplateStatus status; uint16 templateNumber; uint32 loadedDate; address payable templateAddress; string templateDescription; } struct NumericOverride { bool isSet; uint248 overrideValue; } }
// SPDX-License-Identifier: MIT // Metadrop Contracts (v0.0.1) /** * * @title ERC721M.sol. Metadrop implementation of ERC721 * * @author metadrop https://metadrop.com/ * * @notice Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. * * Included features: * - LayerZero ONFT * - gas efficient batch minting * - clonable */ pragma solidity 0.8.19; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "../ThirdParty/EPS/EPSDelegationRegister/IEPSDelegationRegister.sol"; import "../ThirdParty/LayerZero/onft/IONFT721.sol"; import "../ThirdParty/LayerZero/onft/ONFT721Core.sol"; contract ERC721M is Context, ERC165, IERC721, IERC721Metadata, ONFT721Core, IONFT721, ERC2981, AccessControl { using Address for address; using Strings for uint256; address internal constant BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD; // Boolean to indicate if this contract is a layerZero base contract bool private immutable layerZeroBase; // EPS Register IEPSDelegationRegister internal immutable epsRegister; // Token name string private _name; // Token symbol string private _symbol; uint256 internal remainingSupply; uint256 public maxSupply; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; error CallerIsNotOwnerOrApproved(); error SendFromIncorrectOwner(); error InvalidToken(); error QuantityExceedsRemainingSupply(); /** ==================================================================================================================== * CONSTRUCTOR AND INTIIALISE * ===================================================================================================================== */ /** ____________________________________________________________________________________________________________________ * -->CONSTRUCTOR * @dev constructor The constructor is not called when the contract is cloned. In this * constructor we just setup default values and set the template contract to initialised. * * --------------------------------------------------------------------------------------------------------------------- * @param epsRegister_ The EPS register address (0x888888888888660F286A7C06cfa3407d09af44B2 on most chains) * --------------------------------------------------------------------------------------------------------------------- * @param lzEndpoint_ The LZ endpoint for this chain * (see https://layerzero.gitbook.io/docs/technical-reference/mainnet/supported-chain-ids) * --------------------------------------------------------------------------------------------------------------------- * @param layerZeroBase_ If this contract is the base layerZero contract. For this ONFT implementation the base * contract is where intial minting can occue. NFTs can then be sent to any supporting chain * but cannot be 'freshly' minted on other chains and sent to the base contract. * _____________________________________________________________________________________________________________________ */ constructor( address epsRegister_, address lzEndpoint_, bool layerZeroBase_ ) ONFT721Core(lzEndpoint_) { epsRegister = IEPSDelegationRegister(epsRegister_); layerZeroBase = layerZeroBase_; } /** ____________________________________________________________________________________________________________________ * -->INITIALISE * @dev (function) initialiseNFT Load configuration into storage for a new instance. * * --------------------------------------------------------------------------------------------------------------------- * @param name_ The name of the NFT * --------------------------------------------------------------------------------------------------------------------- * @param symbol_ The symbol of the NFT * --------------------------------------------------------------------------------------------------------------------- * @param maxSupply_ The maximum supply of this collection * --------------------------------------------------------------------------------------------------------------------- * @param owner_ The owner for this contract. Will be used to set the owner in ERC721M and also the * platform admin AccessControl role * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function _initialiseERC721M( string memory name_, string memory symbol_, uint256 maxSupply_, address owner_ ) internal { _name = name_; _symbol = symbol_; maxSupply = maxSupply_; remainingSupply = maxSupply_; _transferOwnership(owner_); } /** ____________________________________________________________________________________________________________________ * -->LAYERZERO * @dev (function) _debitFrom debit an item from a holder on layerzero call. While off-chain the NFT is custodied in * this contract * * --------------------------------------------------------------------------------------------------------------------- * @param from_ The current owner of the asset * --------------------------------------------------------------------------------------------------------------------- * @param tokenId_ The tokenId being sent via LayerZero * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function _debitFrom( address from_, uint16, bytes memory, uint256 tokenId_ ) internal virtual override { if (!(_isApprovedOrOwner(_msgSender(), tokenId_))) { revert CallerIsNotOwnerOrApproved(); } if (!(ownerOf(tokenId_) == from_)) { revert SendFromIncorrectOwner(); } _transfer(from_, address(this), tokenId_); } /** ____________________________________________________________________________________________________________________ * -->LAYERZERO * @dev (function) _creditTo credit an item to a holder on layerzero call. While off-chain the NFT is custodied in * this contract, this transfers it back to the holder * * --------------------------------------------------------------------------------------------------------------------- * @param toAddress_ The recipient of the asset * --------------------------------------------------------------------------------------------------------------------- * @param tokenId_ The tokenId that has been sent via LayerZero * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function _creditTo( uint16, address toAddress_, uint256 tokenId_ ) internal virtual override { if (!(_exists(tokenId_) && ownerOf(tokenId_) == address(this))) { revert InvalidToken(); } // Different behaviour depending on whether this has been deployed on // the base chain or a satellite chain: if (layerZeroBase) { // Base chain. For us to be crediting the owner this token MUST be // owned by the contract, as they can only be minted on the base chain if (!(_exists(tokenId_) && ownerOf(tokenId_) == address(this))) { revert InvalidToken(); } _transfer(address(this), toAddress_, tokenId_); } else { // Satellite chain. We can be crediting the user as a result of this reaching // this chain for the first time (mint) OR from a token that has been minted // here previously and is currently custodied by the contract. if (_exists(tokenId_) && ownerOf(tokenId_) != address(this)) { revert InvalidToken(); } if (!_exists(tokenId_)) { _safeMint(toAddress_, tokenId_); } else { _transfer(address(this), toAddress_, tokenId_); } } } /** ____________________________________________________________________________________________________________________ * -->MINT * @dev (function) _mintIdWithoutBalanceUpdate Mint an item without updating a holder's balance, so that this can * be performed just once per batch. * * --------------------------------------------------------------------------------------------------------------------- * @param to_ The recipient of the asset * --------------------------------------------------------------------------------------------------------------------- * @param tokenId_ The tokenId that has been sent via LayerZero * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function _mintIdWithoutBalanceUpdate(address to_, uint256 tokenId_) private { _beforeTokenTransfer(address(0), to_, tokenId_, 1); _owners[tokenId_] = to_; emit Transfer(address(0), to_, tokenId_); _afterTokenTransfer(address(0), to_, tokenId_, 1); } /** ____________________________________________________________________________________________________________________ * -->MINT * @dev (function) _mintSequential Mint NFTs in order (0,1,2,3 etc) * * --------------------------------------------------------------------------------------------------------------------- * @param to_ The recipient of the asset * --------------------------------------------------------------------------------------------------------------------- * @param quantity_ The number of tokens to mint * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function _mintSequential( address to_, uint256 quantity_ ) internal virtual returns (uint256[] memory mintedTokenIds_) { if (quantity_ > remainingSupply) { revert QuantityExceedsRemainingSupply(); } mintedTokenIds_ = new uint256[](quantity_); uint256 tokenId = maxSupply - remainingSupply; for (uint256 i = 0; i < quantity_; ) { _mintIdWithoutBalanceUpdate(to_, tokenId + i); mintedTokenIds_[i] = tokenId + i; unchecked { i++; } } remainingSupply = remainingSupply - quantity_; _balances[to_] += quantity_; return (mintedTokenIds_); } /** ____________________________________________________________________________________________________________________ * * @dev (function) totalSupply Returns total supply (minted - burned) * * --------------------------------------------------------------------------------------------------------------------- * @return totalSupply_ The total supply of this collection (minted - burned) * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function totalSupply() external view virtual returns (uint256 totalSupply_) { // } /** ____________________________________________________________________________________________________________________ * -->GETTER * @dev (function) totalUnminted Returns the remaining unminted supply * * --------------------------------------------------------------------------------------------------------------------- * @return totalUnminted_ The total unminted supply of this collection * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function totalUnminted() external view virtual returns (uint256 totalUnminted_) { // } /** ____________________________________________________________________________________________________________________ * -->GETTER * @dev (function) totalMinted Returns the total number of tokens ever minted * * --------------------------------------------------------------------------------------------------------------------- * @return totalMinted_ The total minted supply of this collection * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function totalMinted() external view virtual returns (uint256 totalMinted_) { // } /** ____________________________________________________________________________________________________________________ * -->GETTER * @dev (function) totalBurned Returns the count of tokens sent to the burn address * * --------------------------------------------------------------------------------------------------------------------- * @return totalBurned_ The total burned supply of this collection * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function totalBurned() external view virtual returns (uint256 totalBurned_) { // } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface( bytes4 interfaceId ) public view virtual override(ERC165, IERC165, ERC2981, ONFT721Core, AccessControl) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf( address owner ) public view virtual override returns (uint256) { require(owner != address(0), "Non-owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf( uint256 tokenId ) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "Invalid token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI( uint256 tokenId ) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721M.ownerOf(tokenId); require(to != owner, "Approve to owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "Unauthorised" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved( uint256 tokenId ) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll( address operator, bool approved ) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll( address owner, address operator ) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "Unauthorised"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "Unauthorised"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "Non-receiver"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner( address spender, uint256 tokenId ) internal view virtual returns (bool) { address owner = ERC721M.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "Non-receiver" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "0 address"); require(!_exists(tokenId), "Already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "Already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { require(_isApprovedOrOwner(_msgSender(), tokenId), "Unauthorised"); _burn(tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721M.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721M.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; _owners[tokenId] = BURN_ADDRESS; _balances[BURN_ADDRESS] += 1; } delete _owners[tokenId]; emit Transfer(owner, BURN_ADDRESS, tokenId); _afterTokenTransfer(owner, BURN_ADDRESS, tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721M.ownerOf(tokenId) == from, "Non-owner"); require(to != address(0), "0 address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721M.ownerOf(tokenId) == from, "Non-owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721M.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "Approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "Invalid token"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 /* firstTokenId */, uint256 batchSize ) internal virtual { if (batchSize > 1) { if (from != address(0)) { _balances[from] -= batchSize; } if (to != address(0)) { _balances[to] += batchSize; } } } /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} }
// SPDX-License-Identifier: MIT // Metadrop Contracts (v0.0.1) /** * * @title INFTByMetadrop.sol. Interface for metadrop NFT standard * * @author metadrop https://metadrop.com/ * */ pragma solidity 0.8.19; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "../Global/IConfigStructures.sol"; interface INFTByMetadrop is IConfigStructures { /** ==================================================================================================================== * EVENTS * ===================================================================================================================== */ event Revealed(); event RandomNumberReceived(uint256 indexed requestId, uint256 randomNumber); event VRFPositionSet(uint256 VRFPosition); event PositionProofSet(bytes32 positionProof); event MetadropMint( address indexed allowanceAddress, address indexed recipientAddress, address callerAddress, address primarySaleModuleAddress, uint256 unitPrice, uint256[] tokenIds ); /** ==================================================================================================================== * ERRORS * ===================================================================================================================== */ error TransferFailed(); error AlreadyInitialised(); error MetadataIsLocked(); error InvalidTokenAllocationMethod(); error InvalidAddress(); error IncorrectConfirmationValue(); error MintingIsClosedForever(); error VRFAlreadySet(); error PositionProofAlreadySet(); error MetadropFactoryOnly(); error InvalidRecipient(); error PauseCutOffHasPassed(); error AdditionalAddressesCannotBeAddedToRolesUseTransferToTransferRoleToAnotherAddress(); /** ==================================================================================================================== * FUNCTIONS * ===================================================================================================================== */ /** ____________________________________________________________________________________________________________________ * -->INITIALISE * @dev (function) initialiseNFT Load configuration into storage for a new instance. * * --------------------------------------------------------------------------------------------------------------------- * @param owner_ The owner for this contract. Will be used to set the owner in ERC721M and also the * platform admin AccessControl role * --------------------------------------------------------------------------------------------------------------------- * @param projectOwner_ The project owner for this drop. Sets the project admin AccessControl role * --------------------------------------------------------------------------------------------------------------------- * @param primarySaleModules_ The primary sale modules for this drop. These are the contract addresses that are * authorised to call mint on this contract. * --------------------------------------------------------------------------------------------------------------------- * @param nftModule_ The drop specific configuration for this NFT. This is decoded and used to set * configuration for this metadrop drop * --------------------------------------------------------------------------------------------------------------------- * @param royaltyPaymentSplitter_ The address of the deployed royalty payment splitted for this drop * --------------------------------------------------------------------------------------------------------------------- * @param totalRoyaltyPercentage_ The total royalty percentage (project + metadrop) for this drop * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function initialiseNFT( address owner_, address projectOwner_, PrimarySaleModuleInstance[] calldata primarySaleModules_, NFTModuleConfig calldata nftModule_, address royaltyPaymentSplitter_, uint96 totalRoyaltyPercentage_, string[3] calldata collectionURIs_, uint8 pauseCutOffInDays_ ) external; /** ____________________________________________________________________________________________________________________ * -->GETTER * @dev (function) metadropCustom Returns if this contract is a custom NFT (true) or is a standard metadrop * ERC721M (false) * * --------------------------------------------------------------------------------------------------------------------- * @return isMetadropCustom_ The total minted supply of this collection * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function metadropCustom() external pure returns (bool isMetadropCustom_); /** ____________________________________________________________________________________________________________________ * * @dev (function) totalSupply Returns total supply (minted - burned) * * --------------------------------------------------------------------------------------------------------------------- * @return totalSupply_ The total supply of this collection (minted - burned) * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function totalSupply() external view returns (uint256 totalSupply_); /** ____________________________________________________________________________________________________________________ * -->GETTER * @dev (function) totalUnminted Returns the remaining unminted supply * * --------------------------------------------------------------------------------------------------------------------- * @return totalUnminted_ The total unminted supply of this collection * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function totalUnminted() external view returns (uint256 totalUnminted_); /** ____________________________________________________________________________________________________________________ * -->GETTER * @dev (function) totalMinted Returns the total number of tokens ever minted * * --------------------------------------------------------------------------------------------------------------------- * @return totalMinted_ The total minted supply of this collection * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function totalMinted() external view returns (uint256 totalMinted_); /** ____________________________________________________________________________________________________________________ * -->GETTER * @dev (function) totalBurned Returns the count of tokens sent to the burn address * * --------------------------------------------------------------------------------------------------------------------- * @return totalBurned_ The total burned supply of this collection * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function totalBurned() external view returns (uint256 totalBurned_); /** ____________________________________________________________________________________________________________________ * -->ACCESS CONTROL * @dev (function) transferProjectOwner Allows the current project owner to transfer this role to another address * * --------------------------------------------------------------------------------------------------------------------- * @param newProjectOwner_ New project owner * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function transferProjectOwner(address newProjectOwner_) external; /** ____________________________________________________________________________________________________________________ * -->ACCESS CONTROL * @dev (function) transferPlatformAdmin Allows the current platform admin to transfer this role to another address * * --------------------------------------------------------------------------------------------------------------------- * @param newPlatformAdmin_ New platform admin * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function transferPlatformAdmin(address newPlatformAdmin_) external; /** ____________________________________________________________________________________________________________________ * -->METADATA * @dev (function) setURIs Set the URI data for this contracts * * --------------------------------------------------------------------------------------------------------------------- * @param preRevealURI_ The URI to use pre-reveal * --------------------------------------------------------------------------------------------------------------------- * @param arweaveURI_ The URI for arweave * --------------------------------------------------------------------------------------------------------------------- * @param ipfsURI_ The URI for IPFS * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setURIs( string calldata preRevealURI_, string calldata arweaveURI_, string calldata ipfsURI_ ) external; /** ____________________________________________________________________________________________________________________ * -->METADATA * @dev (function) lockURIsCannotBeUndone Lock the URI data for this contract * * --------------------------------------------------------------------------------------------------------------------- * @param confirmation_ The confirmation string * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function lockURIsCannotBeUndone(string calldata confirmation_) external; /** ____________________________________________________________________________________________________________________ * -->LOCK MINTING * @dev (function) setMintingCompleteForeverCannotBeUndone Allow project owner OR platform admin to set minting * complete * * @notice Enter confirmation value of "MintingComplete" to confirm that you are closing minting. * * --------------------------------------------------------------------------------------------------------------------- * @param confirmation_ Confirmation string * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setMintingCompleteForeverCannotBeUndone( string calldata confirmation_ ) external; /** ____________________________________________________________________________________________________________________ * -->REVEAL * @dev (function) revealCollection Set the collection to revealed * * _____________________________________________________________________________________________________________________ */ function revealCollection() external; /** ____________________________________________________________________________________________________________________ * -->REVEAL * @dev (function) setPositionProof Set the metadata position proof * * --------------------------------------------------------------------------------------------------------------------- * @param positionProof_ The metadata proof * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setPositionProof(bytes32 positionProof_) external; /** ____________________________________________________________________________________________________________________ * -->METADATA * @dev (function) setUseArweave Guards against either arweave or IPFS being no more * * --------------------------------------------------------------------------------------------------------------------- * @param useArweave_ Boolean to indicate whether arweave should be used or not (true = use arweave, false = use IPFS) * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setUseArweave(bool useArweave_) external; /** ____________________________________________________________________________________________________________________ * -->ROYALTY * @dev (function) setDefaultRoyalty Set the royalty percentage * * @notice - we have specifically NOT implemented the ability to have different royalties on a token by token basis. * This reduces the complexity of processing on multi-buys, and also avoids challenges to decentralisation (e.g. the * project targetting one users tokens with larger royalties) * --------------------------------------------------------------------------------------------------------------------- * @param recipient_ Royalty receiver * --------------------------------------------------------------------------------------------------------------------- * @param fraction_ Royalty fraction * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function setDefaultRoyalty(address recipient_, uint96 fraction_) external; /** ____________________________________________________________________________________________________________________ * -->ROYALTY * @dev (function) deleteDefaultRoyalty Delete the royalty percentage claimed * * _____________________________________________________________________________________________________________________ */ function deleteDefaultRoyalty() external; /** ____________________________________________________________________________________________________________________ * -->MINT * @dev (function) metadropMint Mint tokens. Can only be called from a valid primary market contract * * --------------------------------------------------------------------------------------------------------------------- * @param caller_ The address that has called mint through the primary sale module. * --------------------------------------------------------------------------------------------------------------------- * @param recipient_ The address that will receive new assets. * --------------------------------------------------------------------------------------------------------------------- * @param allowanceAddress_ The address that has an allowance being used in this mint. This will be the same as the * calling address in almost all cases. An example of when they may differ is in a list * mint where the caller is a delegate of another address with an allowance in the list. * The caller is performing the mint, but it is the allowance for the allowance address * that is being checked and decremented in this mint. * --------------------------------------------------------------------------------------------------------------------- * @param quantityToMint_ The quantity of tokens to be minted * --------------------------------------------------------------------------------------------------------------------- * @param unitPrice_ The unit price for each token * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function metadropMint( address caller_, address recipient_, address allowanceAddress_, uint256 quantityToMint_, uint256 unitPrice_ ) external; /** ____________________________________________________________________________________________________________________ * -->REVEAL * @dev (function) setStartPosition Get the metadata start position for use on reveal of this collection * _____________________________________________________________________________________________________________________ */ function setStartPosition() external; /** ____________________________________________________________________________________________________________________ * -->REVEAL * @dev (function) fulfillRandomWords Callback from the chainlinkv2 oracle (on factory) with randomness * * --------------------------------------------------------------------------------------------------------------------- * @param requestId_ The Id of this request (this contract will submit a single request) * --------------------------------------------------------------------------------------------------------------------- * @param randomWords_ The random words returned from chainlink * --------------------------------------------------------------------------------------------------------------------- * _____________________________________________________________________________________________________________________ */ function fulfillRandomWords( uint256 requestId_, uint256[] memory randomWords_ ) external; }
// SPDX-License-Identifier: CC0-1.0 // EPS Contracts v2.0.0 // www.eternalproxy.com /** @dev EPS Delegation Register - Interface */ pragma solidity 0.8.19; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import "../EPSRewardToken/IOAT.sol"; import "../EPSRewardToken/IERCOmnReceiver.sol"; /** * * @dev Implementation of the EPS proxy register interface. * */ interface IEPSDelegationRegister { // ====================================================== // ENUMS and STRUCTS // ====================================================== // Scope of a delegation: global, collection or token enum DelegationScope { global, collection, token } // Time limit of a delegation: eternal or time limited enum DelegationTimeLimit { eternal, limited } // The Class of a delegation: primary, secondary or rental enum DelegationClass { primary, secondary, rental } // The status of a delegation: enum DelegationStatus { live, pending } // Data output format for a report (used to output both hot and cold // delegation details) struct DelegationReport { address hot; address cold; DelegationScope scope; DelegationClass class; DelegationTimeLimit timeLimit; address collection; uint256 tokenId; uint40 startDate; uint40 endDate; bool validByDate; bool validBilaterally; bool validTokenOwnership; bool[25] usageTypes; address key; uint96 controlInteger; bytes data; DelegationStatus status; } // Delegation record struct DelegationRecord { address hot; uint96 controlInteger; address cold; uint40 startDate; uint40 endDate; DelegationStatus status; } // If a delegation is for a collection, or has additional data, it will need to read the delegation metadata struct DelegationMetadata { address collection; uint256 tokenId; bytes data; } // Details of a hot wallet lock struct LockDetails { uint40 lockStart; uint40 lockEnd; } // Validity dates when checking a delegation struct ValidityDates { uint40 start; uint40 end; } // Delegation struct to hold details of a new delegation struct Delegation { address hot; address cold; address[] targetAddresses; uint256 tokenId; bool tokenDelegation; uint8[] usageTypes; uint40 startDate; uint40 endDate; uint16 providerCode; DelegationClass delegationClass; uint96 subDelegateKey; bytes data; DelegationStatus status; } // Addresses associated with a delegation check struct DelegationCheckAddresses { address hot; address cold; address targetCollection; } // Classes associated with a delegation check struct DelegationCheckClasses { bool secondary; bool rental; bool token; } // Migrated record data struct MigratedRecord { address hot; address cold; } // ====================================================== // CUSTOM ERRORS // ====================================================== error UsageTypeAlreadyDelegated(uint256 usageType); error CannotDeleteValidDelegation(); error CannotDelegatedATokenYouDontOwn(); error IncorrectAdminLevel(uint256 requiredLevel); error OnlyParticipantOrAuthorisedSubDelegate(); error HotAddressIsLockedAndCannotBeDelegatedTo(); error InvalidDelegation(); error ToMuchETHForPendingPayments(uint256 sent, uint256 required); error UnknownAmount(); error InvalidERC20Payment(); error IncorrectProxyRegisterFee(); error UnrecognisedEPSAPIAmount(); error CannotRevokeAllForRegisterAdminHierarchy(); // ====================================================== // EVENTS // ====================================================== event DelegationMade( address indexed hot, address indexed cold, address targetAddress, uint256 tokenId, bool tokenDelegation, uint8[] usageTypes, uint40 startDate, uint40 endDate, uint16 providerCode, DelegationClass delegationClass, uint96 subDelegateKey, bytes data, DelegationStatus status ); event DelegationRevoked(address hot, address cold, address delegationKey); event DelegationPaid(address delegationKey); event AllDelegationsRevokedForHot(address hot); event AllDelegationsRevokedForCold(address cold); event Transfer(address indexed from, address indexed to, uint256 value); /** * * * @dev getDelegationRecord * * */ function getDelegationRecord(address delegationKey_) external view returns (DelegationRecord memory); /** * * * @dev isValidDelegation * * */ function isValidDelegation( address hot_, address cold_, address collection_, uint256 usageType_, bool includeSecondary_, bool includeRental_ ) external view returns (bool isValid_); /** * * * @dev getAddresses - Get all currently valid addresses for a hot address. * - Pass in address(0) to return records that are for ALL collections * - Pass in a collection address to get records for just that collection * - Usage type must be supplied. Only records that match usage type will be returned * * */ function getAddresses( address hot_, address collection_, uint256 usageType_, bool includeSecondary_, bool includeRental_ ) external view returns (address[] memory addresses_); /** * * * @dev beneficiaryBalanceOf: Returns the beneficiary balance * * */ function beneficiaryBalanceOf( address queryAddress_, address contractAddress_, uint256 usageType_, bool erc1155_, uint256 id_, bool includeSecondary_, bool includeRental_ ) external view returns (uint256 balance_); /** * * * @dev beneficiaryOf * * */ function beneficiaryOf( address collection_, uint256 tokenId_, uint256 usageType_, bool includeSecondary_, bool includeRental_ ) external view returns ( address primaryBeneficiary_, address[] memory secondaryBeneficiaries_ ); /** * * * @dev delegationFromColdExists - check a cold delegation exists * * */ function delegationFromColdExists(address cold_, address delegationKey_) external view returns (bool); /** * * * @dev delegationFromHotExists - check a hot delegation exists * * */ function delegationFromHotExists(address hot_, address delegationKey_) external view returns (bool); /** * * * @dev getAllForHot - Get all delegations at a hot address, formatted nicely * * */ function getAllForHot(address hot_) external view returns (DelegationReport[] memory); /** * * * @dev getAllForCold - Get all delegations at a cold address, formatted nicely * * */ function getAllForCold(address cold_) external view returns (DelegationReport[] memory); /** * * * @dev makeDelegation - A direct call to setup a new proxy record * * */ function makeDelegation( address hot_, address cold_, address[] memory targetAddresses_, uint256 tokenId_, bool tokenDelegation_, uint8[] memory usageTypes_, uint40 startDate_, uint40 endDate_, uint16 providerCode_, DelegationClass delegationClass_, //0 = primary, 1 = secondary, 2 = rental uint96 subDelegateKey_, bytes memory data_ ) external payable; /** * * * @dev getDelegationKey - get the link hash to the delegation metadata * * */ function getDelegationKey( address hot_, address cold_, address targetAddress_, uint256 tokenId_, bool tokenDelegation_, uint96 controlInteger_, uint40 startDate_, uint40 endDate_ ) external pure returns (address); /** * * * @dev getHotAddressLockDetails * * */ function getHotAddressLockDetails(address hot_) external view returns (LockDetails memory, address[] memory); /** * * * @dev lockAddressUntilDate * * */ function lockAddressUntilDate(uint40 unlockDate_) external; /** * * * @dev lockAddress * * */ function lockAddress() external; /** * * * @dev unlockAddress * * */ function unlockAddress() external; /** * * * @dev addLockBypassAddress * * */ function addLockBypassAddress(address bypassAddress_) external; /** * * * @dev removeLockBypassAddress * * */ function removeLockBypassAddress(address bypassAddress_) external; /** * * * @dev revokeRecord: Revoking a single record with Key * * */ function revokeRecord(address delegationKey_, uint96 subDelegateKey_) external; /** * * * @dev revokeGlobalAll * * */ function revokeRecordOfGlobalScopeForAllUsages(address participant2_) external; /** * * * @dev revokeAllForCold: Cold calls and revokes ALL * * */ function revokeAllForCold(address cold_, uint96 subDelegateKey_) external; /** * * * @dev revokeAllForHot: Hot calls and revokes ALL * * */ function revokeAllForHot() external; /** * * * @dev deleteExpired: ANYONE can delete expired records * * */ function deleteExpired(address delegationKey_) external; /** * * * @dev setRegisterFee: set the fee for accepting a registration: * * */ function setRegisterFees( uint256 registerFee_, address erc20_, uint256 erc20Fee_ ) external; /** * * * @dev setRewardTokenAndRate * * */ function setRewardTokenAndRate(address rewardToken_, uint88 rewardRate_) external; /** * * * @dev lockRewardRate * * */ function lockRewardRate() external; /** * * * @dev setLegacyOff * * */ function setLegacyOff() external; /** * * * @dev setENSName (used to set reverse record so interactions with this contract are easy to * identify) * * */ function setENSName(string memory ensName_) external; /** * * * @dev setENSReverseRegistrar * * */ function setENSReverseRegistrar(address ensReverseRegistrar_) external; /** * * * @dev setTreasuryAddress: set the treasury address: * * */ function setTreasuryAddress(address treasuryAddress_) external; /** * * * @dev setDecimalsAndBalance * * */ function setDecimalsAndBalance(uint8 decimals_, uint256 balance_) external; /** * * * @dev withdrawETH: withdraw eth to the treasury: * * */ function withdrawETH(uint256 amount_) external returns (bool success_); /** * * * @dev withdrawERC20: Allow any ERC20s to be withdrawn Note, this is provided to enable the * withdrawal of payments using valid ERC20s. Assets sent here in error are retrieved with * rescueERC20 * * */ function withdrawERC20(IERC20 token_, uint256 amount_) external; /** * * * @dev isLevelAdmin * * */ function isLevelAdmin( address receivedAddress_, uint256 level_, uint96 key_ ) external view returns (bool); }
// SPDX-License-Identifier: MIT // EPS Contracts v2.0.0 // www.eternalproxy.com /** @dev IERCOmnReceiver - Interface */ pragma solidity 0.8.19; interface IERCOmnReceiver { function onTokenTransfer( address sender, uint256 value, bytes memory data ) external payable; }
// SPDX-License-Identifier: MIT // EPS Contracts v2.0.0 // www.eternalproxy.com /** @dev IOAT - Interface */ pragma solidity 0.8.19; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /** * @dev OAT interface */ interface IOAT is IERC20 { /** * * @dev emitToken * */ function emitToken(address receiver_, uint256 amount_) external; /** * * @dev addEmitter * */ function addEmitter(address emitter_) external; /** * * @dev removeEmitter * */ function removeEmitter(address emitter_) external; /** * * @dev setTreasury * */ function setTreasury(address treasury_) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; import "./ILayerZeroUserApplicationConfig.sol"; interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig { // @notice send a LayerZero message to the specified address at a LayerZero endpoint. // @param _dstChainId - the destination chain identifier // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains // @param _payload - a custom bytes payload to send to the destination contract // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination function send(uint16 _dstChainId, bytes calldata _destination, bytes calldata _payload, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable; // @notice used by the messaging library to publish verified payload // @param _srcChainId - the source chain identifier // @param _srcAddress - the source contract (as bytes) at the source chain // @param _dstAddress - the address on destination chain // @param _nonce - the unbound message ordering nonce // @param _gasLimit - the gas limit for external contract execution // @param _payload - verified payload to send to the destination contract function receivePayload(uint16 _srcChainId, bytes calldata _srcAddress, address _dstAddress, uint64 _nonce, uint _gasLimit, bytes calldata _payload) external; // @notice get the inboundNonce of a lzApp from a source chain which could be EVM or non-EVM chain // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64); // @notice get the outboundNonce from this source chain which, consequently, is always an EVM // @param _srcAddress - the source chain contract address function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64); // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery // @param _dstChainId - the destination chain identifier // @param _userApplication - the user app address on this EVM chain // @param _payload - the custom message to send over LayerZero // @param _payInZRO - if false, user app pays the protocol fee in native token // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain function estimateFees(uint16 _dstChainId, address _userApplication, bytes calldata _payload, bool _payInZRO, bytes calldata _adapterParam) external view returns (uint nativeFee, uint zroFee); // @notice get this Endpoint's immutable source identifier function getChainId() external view returns (uint16); // @notice the interface to retry failed message on this Endpoint destination // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address // @param _payload - the payload to be retried function retryPayload(uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload) external; // @notice query if any STORED payload (message blocking) at the endpoint. // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool); // @notice query if the _libraryAddress is valid for sending msgs. // @param _userApplication - the user app address on this EVM chain function getSendLibraryAddress(address _userApplication) external view returns (address); // @notice query if the _libraryAddress is valid for receiving msgs. // @param _userApplication - the user app address on this EVM chain function getReceiveLibraryAddress(address _userApplication) external view returns (address); // @notice query if the non-reentrancy guard for send() is on // @return true if the guard is on. false otherwise function isSendingPayload() external view returns (bool); // @notice query if the non-reentrancy guard for receive() is on // @return true if the guard is on. false otherwise function isReceivingPayload() external view returns (bool); // @notice get the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _userApplication - the contract address of the user application // @param _configType - type of configuration. every messaging library has its own convention. function getConfig(uint16 _version, uint16 _chainId, address _userApplication, uint _configType) external view returns (bytes memory); // @notice get the send() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getSendVersion(address _userApplication) external view returns (uint16); // @notice get the lzReceive() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getReceiveVersion(address _userApplication) external view returns (uint16); }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; interface ILayerZeroReceiver { // @notice LayerZero endpoint will invoke this function to deliver the message on the destination // @param _srcChainId - the source endpoint identifier // @param _srcAddress - the source sending contract address from the source chain // @param _nonce - the ordered message nonce // @param _payload - the signed payload is the UA bytes has encoded to be sent function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; interface ILayerZeroUserApplicationConfig { // @notice set the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _configType - type of configuration. every messaging library has its own convention. // @param _config - configuration in the bytes. can encode arbitrary content. function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external; // @notice set the send() LayerZero messaging library version to _version // @param _version - new messaging library version function setSendVersion(uint16 _version) external; // @notice set the lzReceive() LayerZero messaging library version to _version // @param _version - new messaging library version function setReceiveVersion(uint16 _version) external; // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload // @param _srcChainId - the chainId of the source chain // @param _srcAddress - the contract address of the source contract at the source chain function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "../interfaces/ILayerZeroReceiver.sol"; import "../interfaces/ILayerZeroUserApplicationConfig.sol"; import "../interfaces/ILayerZeroEndpoint.sol"; import "../util/BytesLib.sol"; /* * a generic LzReceiver implementation */ abstract contract LzApp is Ownable, ILayerZeroReceiver, ILayerZeroUserApplicationConfig { using BytesLib for bytes; ILayerZeroEndpoint public immutable lzEndpoint; mapping(uint16 => bytes) public trustedRemoteLookup; mapping(uint16 => mapping(uint16 => uint256)) public minDstGasLookup; address public precrime; event SetPrecrime(address precrime); event SetTrustedRemote(uint16 _remoteChainId, bytes _path); event SetTrustedRemoteAddress(uint16 _remoteChainId, bytes _remoteAddress); event SetMinDstGas(uint16 _dstChainId, uint16 _type, uint256 _minDstGas); error InvalidEndpointCaller(); error InvalidSourceSendingContract(); error DestinationIsNotTrustedSource(); error MinGasLimitNotSet(); error GasLimitIsTooLow(); error InvalidAdapterParams(); error NoTrustedPathRecord(); error InvalidMinGas(); constructor(address _endpoint) { lzEndpoint = ILayerZeroEndpoint(_endpoint); } function lzReceive( uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload ) public virtual override { // lzReceive must be called by the endpoint for security if (_msgSender() != address(lzEndpoint)) { revert InvalidEndpointCaller(); } // require( // _msgSender() == address(lzEndpoint), // "LzApp: invalid endpoint caller" // ); bytes memory trustedRemote = trustedRemoteLookup[_srcChainId]; // if will still block the message pathway from (srcChainId, srcAddress). should not receive message from untrusted remote. if ( !(_srcAddress.length == trustedRemote.length && trustedRemote.length > 0 && keccak256(_srcAddress) == keccak256(trustedRemote)) ) { revert InvalidSourceSendingContract(); } // require( // _srcAddress.length == trustedRemote.length && // trustedRemote.length > 0 && // keccak256(_srcAddress) == keccak256(trustedRemote), // "LzApp: invalid source sending contract" // ); _blockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload); } // abstract function - the default behaviour of LayerZero is blocking. See: NonblockingLzApp if you dont need to enforce ordered messaging function _blockingLzReceive( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload ) internal virtual; function _lzSend( uint16 _dstChainId, bytes memory _payload, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams, uint256 _nativeFee ) internal virtual { bytes memory trustedRemote = trustedRemoteLookup[_dstChainId]; if (trustedRemote.length == 0) { revert DestinationIsNotTrustedSource(); } // require( // trustedRemote.length != 0, // "LzApp: destination chain is not a trusted source" // ); lzEndpoint.send{value: _nativeFee}( _dstChainId, trustedRemote, _payload, _refundAddress, _zroPaymentAddress, _adapterParams ); } function _checkGasLimit( uint16 _dstChainId, uint16 _type, bytes memory _adapterParams, uint256 _extraGas ) internal view virtual { uint256 providedGasLimit = _getGasLimit(_adapterParams); uint256 minGasLimit = minDstGasLookup[_dstChainId][_type] + _extraGas; if (minGasLimit == 0) { revert MinGasLimitNotSet(); } //require(minGasLimit > 0, "LzApp: minGasLimit not set"); if (providedGasLimit < minGasLimit) { revert GasLimitIsTooLow(); } //require(providedGasLimit >= minGasLimit, "LzApp: gas limit is too low"); } function _getGasLimit(bytes memory _adapterParams) internal pure virtual returns (uint256 gasLimit) { if (_adapterParams.length < 34) { revert InvalidAdapterParams(); } //require(_adapterParams.length >= 34, "LzApp: invalid adapterParams"); assembly { gasLimit := mload(add(_adapterParams, 34)) } } //---------------------------UserApplication config---------------------------------------- function getConfig( uint16 _version, uint16 _chainId, address, uint256 _configType ) external view returns (bytes memory) { return lzEndpoint.getConfig(_version, _chainId, address(this), _configType); } // generic config for LayerZero user Application function setConfig( uint16 _version, uint16 _chainId, uint256 _configType, bytes calldata _config ) external override onlyOwner { lzEndpoint.setConfig(_version, _chainId, _configType, _config); } function setSendVersion(uint16 _version) external override onlyOwner { lzEndpoint.setSendVersion(_version); } function setReceiveVersion(uint16 _version) external override onlyOwner { lzEndpoint.setReceiveVersion(_version); } function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external override onlyOwner { lzEndpoint.forceResumeReceive(_srcChainId, _srcAddress); } // _path = abi.encodePacked(remoteAddress, localAddress) // this function set the trusted path for the cross-chain communication function setTrustedRemote(uint16 _srcChainId, bytes calldata _path) external onlyOwner { trustedRemoteLookup[_srcChainId] = _path; emit SetTrustedRemote(_srcChainId, _path); } function setTrustedRemoteAddress( uint16 _remoteChainId, bytes calldata _remoteAddress ) external onlyOwner { trustedRemoteLookup[_remoteChainId] = abi.encodePacked( _remoteAddress, address(this) ); emit SetTrustedRemoteAddress(_remoteChainId, _remoteAddress); } function getTrustedRemoteAddress(uint16 _remoteChainId) external view returns (bytes memory) { bytes memory path = trustedRemoteLookup[_remoteChainId]; if (path.length == 0) { revert NoTrustedPathRecord(); } //require(path.length != 0, "LzApp: no trusted path record"); return path.slice(0, path.length - 20); // the last 20 bytes should be address(this) } function setPrecrime(address _precrime) external onlyOwner { precrime = _precrime; emit SetPrecrime(_precrime); } function setMinDstGas( uint16 _dstChainId, uint16 _packetType, uint256 _minGas ) external onlyOwner { if (_minGas == 0) { revert InvalidMinGas(); } //require(_minGas > 0, "LzApp: invalid minGas"); minDstGasLookup[_dstChainId][_packetType] = _minGas; emit SetMinDstGas(_dstChainId, _packetType, _minGas); } //--------------------------- VIEW FUNCTION ---------------------------------------- function isTrustedRemote(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool) { bytes memory trustedSource = trustedRemoteLookup[_srcChainId]; return keccak256(trustedSource) == keccak256(_srcAddress); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./LzApp.sol"; import "../util/ExcessivelySafeCall.sol"; /* * the default LayerZero messaging behaviour is blocking, i.e. any failed message will block the channel * this abstract class try-catch all fail messages and store locally for future retry. hence, non-blocking * NOTE: if the srcAddress is not configured properly, it will still block the message pathway from (srcChainId, srcAddress) */ abstract contract NonblockingLzApp is LzApp { using ExcessivelySafeCall for address; constructor(address _endpoint) LzApp(_endpoint) {} mapping(uint16 => mapping(bytes => mapping(uint64 => bytes32))) public failedMessages; event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload, bytes _reason); event RetryMessageSuccess(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _payloadHash); // overriding the virtual function in LzReceiver function _blockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual override { (bool success, bytes memory reason) = address(this).excessivelySafeCall(gasleft(), 150, abi.encodeWithSelector(this.nonblockingLzReceive.selector, _srcChainId, _srcAddress, _nonce, _payload)); // try-catch all errors/exceptions if (!success) { failedMessages[_srcChainId][_srcAddress][_nonce] = keccak256(_payload); emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload, reason); } } function nonblockingLzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public virtual { // only internal transaction require(_msgSender() == address(this), "NonblockingLzApp: caller must be LzApp"); _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload); } //@notice override this function function _nonblockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual; function retryMessage(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public payable virtual { // assert there is message to retry bytes32 payloadHash = failedMessages[_srcChainId][_srcAddress][_nonce]; require(payloadHash != bytes32(0), "NonblockingLzApp: no stored message"); require(keccak256(_payload) == payloadHash, "NonblockingLzApp: invalid payload"); // clear the stored message failedMessages[_srcChainId][_srcAddress][_nonce] = bytes32(0); // execute the message. revert if it fails again _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload); emit RetryMessageSuccess(_srcChainId, _srcAddress, _nonce, payloadHash); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; import "./IONFT721Core.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; /** * @dev Interface of the ONFT standard */ interface IONFT721 is IONFT721Core, IERC721 { }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; /** * @dev Interface of the ONFT Core standard */ interface IONFT721Core is IERC165 { /** * @dev estimate send token `_tokenId` to (`_dstChainId`, `_toAddress`) * _dstChainId - L0 defined chain id to send tokens too * _toAddress - dynamic bytes array which contains the address to whom you are sending tokens to on the dstChain * _tokenId - token Id to transfer * _useZro - indicates to use zro to pay L0 fees * _adapterParams - flexible bytes array to indicate messaging adapter services in L0 */ function estimateSendFee( uint16 _dstChainId, bytes calldata _toAddress, uint256 _tokenId, bool _useZro, bytes calldata _adapterParams ) external view returns (uint256 nativeFee, uint256 zroFee); /** * @dev send token `_tokenId` to (`_dstChainId`, `_toAddress`) from `_from` * `_toAddress` can be any size depending on the `dstChainId`. * `_zroPaymentAddress` set to address(0x0) if not paying in ZRO (LayerZero Token) * `_adapterParams` is a flexible bytes array to indicate messaging adapter services */ function sendFrom( address _from, uint16 _dstChainId, bytes calldata _toAddress, uint256 _tokenId, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams ) external payable; /** * @dev Emitted when `_tokenId` are moved from the `_sender` to (`_dstChainId`, `_toAddress`) * `_nonce` is the outbound nonce from */ event SendToChain( uint16 indexed _dstChainId, address indexed _from, bytes indexed _toAddress, uint256 _tokenId ); /** * @dev Emitted when `_tokenId` are sent from `_srcChainId` to the `_toAddress` at this chain. `_nonce` is the inbound nonce. */ event ReceiveFromChain( uint16 indexed _srcChainId, bytes indexed _srcAddress, address indexed _toAddress, uint256 _tokenId ); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IONFT721Core.sol"; import "../../LayerZero/lzApp/NonblockingLzApp.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; abstract contract ONFT721Core is NonblockingLzApp, ERC165, IONFT721Core { uint256 public constant NO_EXTRA_GAS = 0; uint16 public constant FUNCTION_TYPE_SEND = 1; bool public useCustomAdapterParams; event SetUseCustomAdapterParams(bool _useCustomAdapterParams); error AdapterParamsMustBeEmpty(); constructor(address _lzEndpoint) NonblockingLzApp(_lzEndpoint) {} function supportsInterface( bytes4 interfaceId ) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IONFT721Core).interfaceId || super.supportsInterface(interfaceId); } function estimateSendFee( uint16 _dstChainId, bytes memory _toAddress, uint256 _tokenId, bool _useZro, bytes memory _adapterParams ) public view virtual override returns (uint256 nativeFee, uint256 zroFee) { // mock the payload for send() bytes memory payload = abi.encode(_toAddress, _tokenId); return lzEndpoint.estimateFees( _dstChainId, address(this), payload, _useZro, _adapterParams ); } function sendFrom( address _from, uint16 _dstChainId, bytes memory _toAddress, uint256 _tokenId, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams ) public payable virtual override { _send( _from, _dstChainId, _toAddress, _tokenId, _refundAddress, _zroPaymentAddress, _adapterParams ); } function _send( address _from, uint16 _dstChainId, bytes memory _toAddress, uint256 _tokenId, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams ) internal virtual { _debitFrom(_from, _dstChainId, _toAddress, _tokenId); bytes memory payload = abi.encode(_toAddress, _tokenId); if (useCustomAdapterParams) { _checkGasLimit( _dstChainId, FUNCTION_TYPE_SEND, _adapterParams, NO_EXTRA_GAS ); } else { if (_adapterParams.length != 0) { revert AdapterParamsMustBeEmpty(); } // require( // _adapterParams.length == 0, // "LzApp: _adapterParams must be empty." // ); } _lzSend( _dstChainId, payload, _refundAddress, _zroPaymentAddress, _adapterParams, msg.value ); emit SendToChain(_dstChainId, _from, _toAddress, _tokenId); } function _nonblockingLzReceive( uint16 _srcChainId, bytes memory _srcAddress, uint64 /*_nonce*/, bytes memory _payload ) internal virtual override { (bytes memory toAddressBytes, uint256 tokenId) = abi.decode( _payload, (bytes, uint256) ); address toAddress; assembly { toAddress := mload(add(toAddressBytes, 20)) } _creditTo(_srcChainId, toAddress, tokenId); emit ReceiveFromChain(_srcChainId, _srcAddress, toAddress, tokenId); } function setUseCustomAdapterParams( bool _useCustomAdapterParams ) external onlyOwner { useCustomAdapterParams = _useCustomAdapterParams; emit SetUseCustomAdapterParams(_useCustomAdapterParams); } function _debitFrom( address _from, uint16 _dstChainId, bytes memory _toAddress, uint256 _tokenId ) internal virtual; function _creditTo( uint16 _srcChainId, address _toAddress, uint256 _tokenId ) internal virtual; }
// SPDX-License-Identifier: Unlicense /* * @title Solidity Bytes Arrays Utils * @author Gonçalo Sá <[email protected]> * * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity. * The library lets you concatenate, slice and type cast bytes arrays both in memory and storage. */ pragma solidity >=0.8.0 <0.9.0; library BytesLib { function concat( bytes memory _preBytes, bytes memory _postBytes ) internal pure returns (bytes memory) { bytes memory tempBytes; assembly { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // Store the length of the first bytes array at the beginning of // the memory for tempBytes. let length := mload(_preBytes) mstore(tempBytes, length) // Maintain a memory counter for the current write location in the // temp bytes array by adding the 32 bytes for the array length to // the starting location. let mc := add(tempBytes, 0x20) // Stop copying when the memory counter reaches the length of the // first bytes array. let end := add(mc, length) for { // Initialize a copy counter to the start of the _preBytes data, // 32 bytes into its memory. let cc := add(_preBytes, 0x20) } lt(mc, end) { // Increase both counters by 32 bytes each iteration. mc := add(mc, 0x20) cc := add(cc, 0x20) } { // Write the _preBytes data into the tempBytes memory 32 bytes // at a time. mstore(mc, mload(cc)) } // Add the length of _postBytes to the current length of tempBytes // and store it as the new length in the first 32 bytes of the // tempBytes memory. length := mload(_postBytes) mstore(tempBytes, add(length, mload(tempBytes))) // Move the memory counter back from a multiple of 0x20 to the // actual end of the _preBytes data. mc := end // Stop copying when the memory counter reaches the new combined // length of the arrays. end := add(mc, length) for { let cc := add(_postBytes, 0x20) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } // Update the free-memory pointer by padding our last write location // to 32 bytes: add 31 bytes to the end of tempBytes to move to the // next 32 byte block, then round down to the nearest multiple of // 32. If the sum of the length of the two arrays is zero then add // one before rounding down to leave a blank 32 bytes (the length block with 0). mstore(0x40, and( add(add(end, iszero(add(length, mload(_preBytes)))), 31), not(31) // Round down to the nearest 32 bytes. )) } return tempBytes; } function concatStorage(bytes storage _preBytes, bytes memory _postBytes) internal { assembly { // Read the first 32 bytes of _preBytes storage, which is the length // of the array. (We don't need to use the offset into the slot // because arrays use the entire slot.) let fslot := sload(_preBytes.slot) // Arrays of 31 bytes or less have an even value in their slot, // while longer arrays have an odd value. The actual length is // the slot divided by two for odd values, and the lowest order // byte divided by two for even values. // If the slot is even, bitwise and the slot with 255 and divide by // two to get the length. If the slot is odd, bitwise and the slot // with -1 and divide by two. let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) let newlength := add(slength, mlength) // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage switch add(lt(slength, 32), lt(newlength, 32)) case 2 { // Since the new array still fits in the slot, we just need to // update the contents of the slot. // uint256(bytes_storage) = uint256(bytes_storage) + uint256(bytes_memory) + new_length sstore( _preBytes.slot, // all the modifications to the slot are inside this // next block add( // we can just add to the slot contents because the // bytes we want to change are the LSBs fslot, add( mul( div( // load the bytes from memory mload(add(_postBytes, 0x20)), // zero all bytes to the right exp(0x100, sub(32, mlength)) ), // and now shift left the number of bytes to // leave space for the length in the slot exp(0x100, sub(32, newlength)) ), // increase length by the double of the memory // bytes length mul(mlength, 2) ) ) ) } case 1 { // The stored value fits in the slot, but the combined value // will exceed it. // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // The contents of the _postBytes array start 32 bytes into // the structure. Our first read should obtain the `submod` // bytes that can fit into the unused space in the last word // of the stored array. To get this, we read 32 bytes starting // from `submod`, so the data we read overlaps with the array // contents by `submod` bytes. Masking the lowest-order // `submod` bytes allows us to add that value directly to the // stored value. let submod := sub(32, slength) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore( sc, add( and( fslot, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00 ), and(mload(mc), mask) ) ) for { mc := add(mc, 0x20) sc := add(sc, 1) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } default { // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) // Start copying to the last used word of the stored array. let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // Copy over the first `submod` bytes of the new data as in // case 1 above. let slengthmod := mod(slength, 32) let mlengthmod := mod(mlength, 32) let submod := sub(32, slengthmod) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore(sc, add(sload(sc), and(mload(mc), mask))) for { sc := add(sc, 1) mc := add(mc, 0x20) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } } } function slice( bytes memory _bytes, uint256 _start, uint256 _length ) internal pure returns (bytes memory) { require(_length + 31 >= _length, "slice_overflow"); require(_bytes.length >= _start + _length, "slice_outOfBounds"); bytes memory tempBytes; assembly { switch iszero(_length) case 0 { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // The first word of the slice result is potentially a partial // word read from the original array. To read it, we calculate // the length of that partial word and start copying that many // bytes into the array. The first word we copy will start with // data we don't care about, but the last `lengthmod` bytes will // land at the beginning of the contents of the new array. When // we're done copying, we overwrite the full first word with // the actual length of the slice. let lengthmod := and(_length, 31) // The multiplication in the next line is necessary // because when slicing multiples of 32 bytes (lengthmod == 0) // the following copy loop was copying the origin's length // and then ending prematurely not copying everything it should. let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod))) let end := add(mc, _length) for { // The multiplication in the next line has the same exact purpose // as the one above. let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } mstore(tempBytes, _length) //update free-memory pointer //allocating the array padded to 32 bytes like the compiler does now mstore(0x40, and(add(mc, 31), not(31))) } //if we want a zero-length slice let's just return a zero-length array default { tempBytes := mload(0x40) //zero out the 32 bytes slice we are about to return //we need to do it because Solidity does not garbage collect mstore(tempBytes, 0) mstore(0x40, add(tempBytes, 0x20)) } } return tempBytes; } function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) { require(_bytes.length >= _start + 20, "toAddress_outOfBounds"); address tempAddress; assembly { tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000) } return tempAddress; } function toUint8(bytes memory _bytes, uint256 _start) internal pure returns (uint8) { require(_bytes.length >= _start + 1 , "toUint8_outOfBounds"); uint8 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x1), _start)) } return tempUint; } function toUint16(bytes memory _bytes, uint256 _start) internal pure returns (uint16) { require(_bytes.length >= _start + 2, "toUint16_outOfBounds"); uint16 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x2), _start)) } return tempUint; } function toUint32(bytes memory _bytes, uint256 _start) internal pure returns (uint32) { require(_bytes.length >= _start + 4, "toUint32_outOfBounds"); uint32 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x4), _start)) } return tempUint; } function toUint64(bytes memory _bytes, uint256 _start) internal pure returns (uint64) { require(_bytes.length >= _start + 8, "toUint64_outOfBounds"); uint64 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x8), _start)) } return tempUint; } function toUint96(bytes memory _bytes, uint256 _start) internal pure returns (uint96) { require(_bytes.length >= _start + 12, "toUint96_outOfBounds"); uint96 tempUint; assembly { tempUint := mload(add(add(_bytes, 0xc), _start)) } return tempUint; } function toUint128(bytes memory _bytes, uint256 _start) internal pure returns (uint128) { require(_bytes.length >= _start + 16, "toUint128_outOfBounds"); uint128 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x10), _start)) } return tempUint; } function toUint256(bytes memory _bytes, uint256 _start) internal pure returns (uint256) { require(_bytes.length >= _start + 32, "toUint256_outOfBounds"); uint256 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x20), _start)) } return tempUint; } function toBytes32(bytes memory _bytes, uint256 _start) internal pure returns (bytes32) { require(_bytes.length >= _start + 32, "toBytes32_outOfBounds"); bytes32 tempBytes32; assembly { tempBytes32 := mload(add(add(_bytes, 0x20), _start)) } return tempBytes32; } function equal(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bool) { bool success = true; assembly { let length := mload(_preBytes) // if lengths don't match the arrays are not equal switch eq(length, mload(_postBytes)) case 1 { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 let mc := add(_preBytes, 0x20) let end := add(mc, length) for { let cc := add(_postBytes, 0x20) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) } eq(add(lt(mc, end), cb), 2) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { // if any of these checks fails then arrays are not equal if iszero(eq(mload(mc), mload(cc))) { // unsuccess: success := 0 cb := 0 } } } default { // unsuccess: success := 0 } } return success; } function equalStorage( bytes storage _preBytes, bytes memory _postBytes ) internal view returns (bool) { bool success = true; assembly { // we know _preBytes_offset is 0 let fslot := sload(_preBytes.slot) // Decode the length of the stored array like in concatStorage(). let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) // if lengths don't match the arrays are not equal switch eq(slength, mlength) case 1 { // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage if iszero(iszero(slength)) { switch lt(slength, 32) case 1 { // blank the last byte which is the length fslot := mul(div(fslot, 0x100), 0x100) if iszero(eq(fslot, mload(add(_postBytes, 0x20)))) { // unsuccess: success := 0 } } default { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := keccak256(0x0, 0x20) let mc := add(_postBytes, 0x20) let end := add(mc, mlength) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) for {} eq(add(lt(mc, end), cb), 2) { sc := add(sc, 1) mc := add(mc, 0x20) } { if iszero(eq(sload(sc), mload(mc))) { // unsuccess: success := 0 cb := 0 } } } } } default { // unsuccess: success := 0 } } return success; } }
// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity >=0.7.6; library ExcessivelySafeCall { uint256 constant LOW_28_MASK = 0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff; /// @notice Use when you _really_ really _really_ don't trust the called /// contract. This prevents the called contract from causing reversion of /// the caller in as many ways as we can. /// @dev The main difference between this and a solidity low-level call is /// that we limit the number of bytes that the callee can cause to be /// copied to caller memory. This prevents stupid things like malicious /// contracts returning 10,000,000 bytes causing a local OOG when copying /// to memory. /// @param _target The address to call /// @param _gas The amount of gas to forward to the remote contract /// @param _maxCopy The maximum number of bytes of returndata to copy /// to memory. /// @param _calldata The data to send to the remote contract /// @return success and returndata, as `.call()`. Returndata is capped to /// `_maxCopy` bytes. function excessivelySafeCall( address _target, uint256 _gas, uint16 _maxCopy, bytes memory _calldata ) internal returns (bool, bytes memory) { // set up for assembly call uint256 _toCopy; bool _success; bytes memory _returnData = new bytes(_maxCopy); // dispatch message to recipient // by assembly calling "handle" function // we call via assembly to avoid memcopying a very large returndata // returned by a malicious contract assembly { _success := call( _gas, // gas _target, // recipient 0, // ether value add(_calldata, 0x20), // inloc mload(_calldata), // inlen 0, // outloc 0 // outlen ) // limit our copy to 256 bytes _toCopy := returndatasize() if gt(_toCopy, _maxCopy) { _toCopy := _maxCopy } // Store the length of the copied bytes mstore(_returnData, _toCopy) // copy the bytes from returndata[0:_toCopy] returndatacopy(add(_returnData, 0x20), 0, _toCopy) } return (_success, _returnData); } /// @notice Use when you _really_ really _really_ don't trust the called /// contract. This prevents the called contract from causing reversion of /// the caller in as many ways as we can. /// @dev The main difference between this and a solidity low-level call is /// that we limit the number of bytes that the callee can cause to be /// copied to caller memory. This prevents stupid things like malicious /// contracts returning 10,000,000 bytes causing a local OOG when copying /// to memory. /// @param _target The address to call /// @param _gas The amount of gas to forward to the remote contract /// @param _maxCopy The maximum number of bytes of returndata to copy /// to memory. /// @param _calldata The data to send to the remote contract /// @return success and returndata, as `.call()`. Returndata is capped to /// `_maxCopy` bytes. function excessivelySafeStaticCall( address _target, uint256 _gas, uint16 _maxCopy, bytes memory _calldata ) internal view returns (bool, bytes memory) { // set up for assembly call uint256 _toCopy; bool _success; bytes memory _returnData = new bytes(_maxCopy); // dispatch message to recipient // by assembly calling "handle" function // we call via assembly to avoid memcopying a very large returndata // returned by a malicious contract assembly { _success := staticcall( _gas, // gas _target, // recipient add(_calldata, 0x20), // inloc mload(_calldata), // inlen 0, // outloc 0 // outlen ) // limit our copy to 256 bytes _toCopy := returndatasize() if gt(_toCopy, _maxCopy) { _toCopy := _maxCopy } // Store the length of the copied bytes mstore(_returnData, _toCopy) // copy the bytes from returndata[0:_toCopy] returndatacopy(add(_returnData, 0x20), 0, _toCopy) } return (_success, _returnData); } /** * @notice Swaps function selectors in encoded contract calls * @dev Allows reuse of encoded calldata for functions with identical * argument types but different names. It simply swaps out the first 4 bytes * for the new selector. This function modifies memory in place, and should * only be used with caution. * @param _newSelector The new 4-byte selector * @param _buf The encoded contract args */ function swapSelector(bytes4 _newSelector, bytes memory _buf) internal pure { require(_buf.length >= 4); uint256 _mask = LOW_28_MASK; assembly { // load the first word of let _word := mload(add(_buf, 0x20)) // mask out the top 4 bytes // /x _word := and(_word, _mask) _word := or(_newSelector, _word) mstore(add(_buf, 0x20), _word) } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {OperatorFilterer} from "./OperatorFilterer.sol"; import {CANONICAL_CORI_SUBSCRIPTION} from "./lib/Constants.sol"; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. * @dev Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { /// @dev The constructor that is called when the contract is being deployed. constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IOperatorFilterRegistry { /** * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns * true if supplied registrant address is not registered. */ function isOperatorAllowed(address registrant, address operator) external view returns (bool); /** * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner. */ function register(address registrant) external; /** * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes. */ function registerAndSubscribe(address registrant, address subscription) external; /** * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another * address without subscribing. */ function registerAndCopyEntries(address registrant, address registrantToCopy) external; /** * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner. * Note that this does not remove any filtered addresses or codeHashes. * Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes. */ function unregister(address addr) external; /** * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered. */ function updateOperator(address registrant, address operator, bool filtered) external; /** * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates. */ function updateOperators(address registrant, address[] calldata operators, bool filtered) external; /** * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered. */ function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; /** * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates. */ function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; /** * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous * subscription if present. * Note that accounts with subscriptions may go on to subscribe to other accounts - in this case, * subscriptions will not be forwarded. Instead the former subscription's existing entries will still be * used. */ function subscribe(address registrant, address registrantToSubscribe) external; /** * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes. */ function unsubscribe(address registrant, bool copyExistingEntries) external; /** * @notice Get the subscription address of a given registrant, if any. */ function subscriptionOf(address addr) external returns (address registrant); /** * @notice Get the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscribers(address registrant) external returns (address[] memory); /** * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscriberAt(address registrant, uint256 index) external returns (address); /** * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr. */ function copyEntriesOf(address registrant, address registrantToCopy) external; /** * @notice Returns true if operator is filtered by a given address or its subscription. */ function isOperatorFiltered(address registrant, address operator) external returns (bool); /** * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription. */ function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); /** * @notice Returns true if a codeHash is filtered by a given address or its subscription. */ function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); /** * @notice Returns a list of filtered operators for a given address or its subscription. */ function filteredOperators(address addr) external returns (address[] memory); /** * @notice Returns the set of filtered codeHashes for a given address or its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashes(address addr) external returns (bytes32[] memory); /** * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredOperatorAt(address registrant, uint256 index) external returns (address); /** * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); /** * @notice Returns true if an address has registered */ function isRegistered(address addr) external returns (bool); /** * @dev Convenience method to compute the code hash of an arbitrary contract */ function codeHashOf(address addr) external returns (bytes32); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E; address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol"; import {CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS} from "./lib/Constants.sol"; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. * Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract OperatorFilterer { /// @dev Emitted when an operator is not allowed. error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS); /// @dev The constructor that is called when the contract is being deployed. constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } /** * @dev A helper function to check if an operator is allowed. */ modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } /** * @dev A helper function to check if an operator approval is allowed. */ modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } /** * @dev A helper function to check if an operator is allowed. */ function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // under normal circumstances, this function will revert rather than return false, but inheriting contracts // may specify their own OperatorFilterRegistry implementations, which may behave differently if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } }
{ "optimizer": { "enabled": true, "runs": 100 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"epsRegister_","type":"address"},{"internalType":"address","name":"lzEndpoint_","type":"address"},{"internalType":"bool","name":"layerZeroBase_","type":"bool"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AdapterParamsMustBeEmpty","type":"error"},{"inputs":[],"name":"AdditionalAddressesCannotBeAddedToRolesUseTransferToTransferRoleToAnotherAddress","type":"error"},{"inputs":[],"name":"AlreadyInitialised","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"CallerIsNotDefaultAdmin","type":"error"},{"inputs":[],"name":"CallerIsNotOwnerOrApproved","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"CallerIsNotPlatformAdmin","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"CallerIsNotPlatformAdminOrFactory","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"CallerIsNotPlatformAdminOrProjectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"CallerIsNotProjectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"CallerIsNotReviewAdmin","type":"error"},{"inputs":[],"name":"DestinationIsNotTrustedSource","type":"error"},{"inputs":[],"name":"GasLimitIsTooLow","type":"error"},{"inputs":[],"name":"IncorrectConfirmationValue","type":"error"},{"inputs":[],"name":"InvalidAdapterParams","type":"error"},{"inputs":[],"name":"InvalidAddress","type":"error"},{"inputs":[],"name":"InvalidEndpointCaller","type":"error"},{"inputs":[],"name":"InvalidMinGas","type":"error"},{"inputs":[],"name":"InvalidRecipient","type":"error"},{"inputs":[],"name":"InvalidSourceSendingContract","type":"error"},{"inputs":[],"name":"InvalidToken","type":"error"},{"inputs":[],"name":"InvalidTokenAllocationMethod","type":"error"},{"inputs":[],"name":"MetadataIsLocked","type":"error"},{"inputs":[],"name":"MetadropFactoryOnly","type":"error"},{"inputs":[],"name":"MinGasLimitNotSet","type":"error"},{"inputs":[],"name":"MintingIsClosedForever","type":"error"},{"inputs":[],"name":"NoTrustedPathRecord","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"PauseCutOffHasPassed","type":"error"},{"inputs":[],"name":"PositionProofAlreadySet","type":"error"},{"inputs":[],"name":"QuantityExceedsRemainingSupply","type":"error"},{"inputs":[],"name":"SendFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferFailed","type":"error"},{"inputs":[],"name":"VRFAlreadySet","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"_reason","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"allowanceAddress","type":"address"},{"indexed":true,"internalType":"address","name":"recipientAddress","type":"address"},{"indexed":false,"internalType":"address","name":"callerAddress","type":"address"},{"indexed":false,"internalType":"address","name":"primarySaleModuleAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"unitPrice","type":"uint256"},{"indexed":false,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"MetadropMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"positionProof","type":"bytes32"}],"name":"PositionProofSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"requestId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"randomNumber","type":"uint256"}],"name":"RandomNumberReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":true,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":true,"internalType":"address","name":"_toAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"ReceiveFromChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes32","name":"_payloadHash","type":"bytes32"}],"name":"RetryMessageSuccess","type":"event"},{"anonymous":false,"inputs":[],"name":"Revealed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"bytes","name":"_toAddress","type":"bytes"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"SendToChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"_type","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"_minDstGas","type":"uint256"}],"name":"SetMinDstGas","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"precrime","type":"address"}],"name":"SetPrecrime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_path","type":"bytes"}],"name":"SetTrustedRemote","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"SetTrustedRemoteAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"SetUseCustomAdapterParams","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"VRFPosition","type":"uint256"}],"name":"VRFPositionSet","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FUNCTION_TYPE_SEND","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NO_EXTRA_GAS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PLATFORM_ADMIN","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVIEW_ADMIN","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"arweaveURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectionRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deleteDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deployTimeStamp","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"failedMessages","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"forceResumeReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"requestId_","type":"uint256"},{"internalType":"uint256[]","name":"randomWords_","type":"uint256[]"}],"name":"fulfillRandomWords","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"_configType","type":"uint256"}],"name":"getConfig","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"}],"name":"getTrustedRemoteAddress","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"address","name":"","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"projectOwner_","type":"address"},{"components":[{"internalType":"address","name":"instanceAddress","type":"address"},{"internalType":"string","name":"instanceDescription","type":"string"}],"internalType":"struct IConfigStructures.PrimarySaleModuleInstance[]","name":"primarySaleModules_","type":"tuple[]"},{"components":[{"internalType":"uint256","name":"templateId","type":"uint256"},{"internalType":"bytes","name":"configData","type":"bytes"}],"internalType":"struct IConfigStructures.NFTModuleConfig","name":"nftModule_","type":"tuple"},{"internalType":"address","name":"royaltyPaymentSplitter_","type":"address"},{"internalType":"uint96","name":"royaltyFromSalesInBasisPoints_","type":"uint96"},{"internalType":"string[3]","name":"collectionURIs_","type":"string[3]"},{"internalType":"uint8","name":"pauseCutOffInDays_","type":"uint8"}],"name":"initialiseNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialised","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ipfsURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"isTrustedRemote","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"confirmation_","type":"string"}],"name":"lockURIsCannotBeUndone","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lzEndpoint","outputs":[{"internalType":"contract ILayerZeroEndpoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadropCustom","outputs":[{"internalType":"bool","name":"isMetadropCustom_","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"caller_","type":"address"},{"internalType":"address","name":"recipient_","type":"address"},{"internalType":"address","name":"allowanceAddress_","type":"address"},{"internalType":"uint256","name":"quantityToMint_","type":"uint256"},{"internalType":"uint256","name":"unitPrice_","type":"uint256"}],"name":"metadropMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"name":"minDstGasLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingComplete","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"nonblockingLzReceive","outputs":[],"stateMutability":"nonpayable","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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pauseCutOffInDays","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"positionProof","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preRevealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"precrime","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recordedRandomWord","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address payable","name":"_refundAddress","type":"address"},{"internalType":"address","name":"_zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"sendFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_configType","type":"uint256"},{"internalType":"bytes","name":"_config","type":"bytes"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient_","type":"address"},{"internalType":"uint96","name":"fraction_","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint16","name":"_packetType","type":"uint16"},{"internalType":"uint256","name":"_minGas","type":"uint256"}],"name":"setMinDstGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"confirmation_","type":"string"}],"name":"setMintingCompleteForeverCannotBeUndone","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"positionProof_","type":"bytes32"}],"name":"setPositionProof","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_precrime","type":"address"}],"name":"setPrecrime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setReceiveVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setSendVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartPosition","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_path","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"setTrustedRemoteAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"preRevealURI_","type":"string"},{"internalType":"string","name":"arweaveURI_","type":"string"},{"internalType":"string","name":"ipfsURI_","type":"string"}],"name":"setURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"useArweave_","type":"bool"}],"name":"setUseArweave","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"setUseCustomAdapterParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"tokenURI_","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"totalBurned_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"totalMinted_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalUnminted","outputs":[{"internalType":"uint256","name":"totalUnminted_","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","name":"newPlatformAdmin_","type":"address"}],"name":"transferPlatformAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newProjectOwner_","type":"address"}],"name":"transferProjectOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"useArweave","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"useCustomAdapterParams","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"validPrimaryMarketAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vrfStartPosition","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60e06040523480156200001157600080fd5b5060405162006477380380620064778339810160408190526200003491620002c6565b733cc6cdda760b79bafa08df41ecfa224f810dceb660018484848180806200005c3362000220565b6001600160a01b039081166080529490941660c05250151560a05250506daaeb6d7670e522a718067333cd4e3b15620001be5780156200010c57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620000ed57600080fd5b505af115801562000102573d6000803e3d6000fd5b50505050620001be565b6001600160a01b038216156200015d5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620000d2565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001a457600080fd5b505af1158015620001b9573d6000803e3d6000fd5b505050505b50506011805460ff1916905560408051808201825260038082526213919560ea1b6020808401829052845180860190955291845290830152620002049160003362000270565b50506011805460ff60c81b1916600160c81b1790555062000489565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60096200027e8582620003bd565b50600a6200028d8482620003bd565b50600c829055600b829055620002a38162000220565b50505050565b80516001600160a01b0381168114620002c157600080fd5b919050565b600080600060608486031215620002dc57600080fd5b620002e784620002a9565b9250620002f760208501620002a9565b9150604084015180151581146200030d57600080fd5b809150509250925092565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200034357607f821691505b6020821081036200036457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003b857600081815260208120601f850160051c81016020861015620003935750805b601f850160051c820191505b81811015620003b4578281556001016200039f565b5050505b505050565b81516001600160401b03811115620003d957620003d962000318565b620003f181620003ea84546200032e565b846200036a565b602080601f831160018114620004295760008415620004105750858301515b600019600386901b1c1916600185901b178555620003b4565b600085815260208120601f198616915b828110156200045a5788860151825594840194600190910190840162000439565b5085821015620004795787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a05160c051615f89620004ee6000396000505060006141d9015260008181610d570152818161104c0152818161133d0152818161140e015281816116a001528181611d920152818161286b01528181612da001526141190152615f896000f3fe6080604052600436106104e45760003560e01c806374689fdf11610281578063b88d4fde1161015a578063df2a5b3b116100cc578063ed629c5c11610085578063ed629c5c14610fa5578063ee279efe14610fbf578063f2fde38b14610fd4578063f5ecbdbc14610ff4578063f804677d14611014578063fa168dda1461102957600080fd5b8063df2a5b3b14610ed1578063e538d1f714610ef1578063e8699ecc14610f11578063e985e9c514610f45578063eab45d9c14610f65578063eb8d72b714610f8557600080fd5b8063c87b56dd1161011e578063c87b56dd14610e33578063cbed8b9c14610e53578063d1deba1f14610e73578063d547741f14610e86578063d5abeb0114610ea6578063d89135cd14610ebc57600080fd5b8063b88d4fde14610d79578063baf3292d14610d99578063bdaea0e114610db9578063c1d0a7d814610dec578063c45a015514610e0e57600080fd5b8063950c8a74116101f3578063a2309ff8116101b7578063a2309ff814610cb3578063a6c3d16514610cc8578063aa1b103f14610ce8578063abd9df1414610cfd578063af3fb21c14610d1d578063b353aaa714610d4557600080fd5b8063950c8a7414610c3e57806395d89b4114610c5e5780639f38369a14610c73578063a217fddf14610965578063a22cb46514610c9357600080fd5b806380f732651161024557806380f7326514610b5a5780638456cb5914610b9357806385c5e3a214610ba85780638cfd8f5c14610bc85780638da5cb5b14610c0057806391d1485414610c1e57600080fd5b806374689fdf14610acf5780637533d78814610af057806377bc50a614610b1057806379b6ed3614610b245780637c234fb514610b3957600080fd5b806336568abe116103be57806343a0cd081161033057806362bc528f116102e957806362bc528f14610a095780636352211e14610a3957806366ad5c8a14610a5957806369d2ceb114610a7957806370a0823114610a9a578063715018a614610aba57600080fd5b806343a0cd081461094f5780634477051514610965578063519056361461097a5780635b8c41e61461098d5780635bc05ed5146109dc5780635c975abb146109f157600080fd5b806340a4dddd1161038257806340a4dddd1461089857806340d0b4a9146108b857806341f43434146108cd57806342842e0e146108ef57806342966c681461090f57806342d65a8d1461092f57600080fd5b806336568abe1461080d57806336b7abd41461082d57806338ba4614146108435780633d8b38f6146108635780633f4ba83a1461088357600080fd5b80631510756d1161045757806326e5a3621161041b57806326e5a362146107235780632a205e3d146107395780632a55205a1461076e5780632f2ff15d146107ad578063317b4829146107cd5780633397d9a2146107ed57600080fd5b80631510756d1461067057806318160ddd146106905780631d05acf6146106b357806323b872dd146106d3578063248a9ca3146106f357600080fd5b806307e0db17116104a957806307e0db17146105ad578063081812fc146105cd57806308a116a5146105fa578063095ea7b31461061b57806310ddb1371461063b578063125ffd801461065b57600080fd5b80621d3567146104f357806301ffc9a71461051557806304634d8d1461054a57806306fdde031461056a57806307003bb41461058c57600080fd5b366104ee57600080fd5b600080fd5b3480156104ff57600080fd5b5061051361050e366004614a5a565b611049565b005b34801561052157600080fd5b50610535610530366004614b03565b611208565b60405190151581526020015b60405180910390f35b34801561055657600080fd5b50610513610565366004614b57565b611219565b34801561057657600080fd5b5061057f61128a565b6040516105419190614bdc565b34801561059857600080fd5b5060115461053590600160c81b900460ff1681565b3480156105b957600080fd5b506105136105c8366004614bef565b61131c565b3480156105d957600080fd5b506105ed6105e8366004614c0a565b6113a5565b6040516105419190614c23565b34801561060657600080fd5b5060115461053590600160a81b900460ff1681565b34801561062757600080fd5b50610513610636366004614c37565b6113cc565b34801561064757600080fd5b50610513610656366004614bef565b6113ed565b34801561066757600080fd5b5061057f611445565b34801561067c57600080fd5b5061051361068b366004614c71565b6114d3565b34801561069c57600080fd5b506106a561154b565b604051908152602001610541565b3480156106bf57600080fd5b506105136106ce366004614c8e565b61156c565b3480156106df57600080fd5b506105136106ee366004614ccf565b61162e565b3480156106ff57600080fd5b506106a561070e366004614c0a565b60009081526008602052604090206001015490565b34801561072f57600080fd5b506106a560175481565b34801561074557600080fd5b50610759610754366004614dd3565b611661565b60408051928352602083019190915201610541565b34801561077a57600080fd5b5061078e610789366004614e65565b61172c565b604080516001600160a01b039093168352602083019190915201610541565b3480156107b957600080fd5b506105136107c8366004614e87565b6117da565b3480156107d957600080fd5b506105136107e8366004614c8e565b6117f3565b3480156107f957600080fd5b50610513610808366004614eb7565b6118c6565b34801561081957600080fd5b50610513610828366004614e87565b611930565b34801561083957600080fd5b506106a560155481565b34801561084f57600080fd5b5061051361085e366004614ed4565b6119aa565b34801561086f57600080fd5b5061053561087e366004614f85565b611ac3565b34801561088f57600080fd5b50610513611b8f565b3480156108a457600080fd5b506105136108b3366004614fd7565b611bf3565b3480156108c457600080fd5b50610513611c7e565b3480156108d957600080fd5b506105ed6daaeb6d7670e522a718067333cd4e81565b3480156108fb57600080fd5b5061051361090a366004614ccf565b611d16565b34801561091b57600080fd5b5061051361092a366004614c0a565b611d43565b34801561093b57600080fd5b5061051361094a366004614f85565b611d73565b34801561095b57600080fd5b506106a560165481565b34801561097157600080fd5b506106a5600081565b610513610988366004615051565b611df9565b34801561099957600080fd5b506106a56109a836600461510a565b6004602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205481565b3480156109e857600080fd5b50610513611e08565b3480156109fd57600080fd5b5060115460ff16610535565b348015610a1557600080fd5b50610535610a24366004614eb7565b60186020526000908152604090205460ff1681565b348015610a4557600080fd5b506105ed610a54366004614c0a565b611ee7565b348015610a6557600080fd5b50610513610a74366004614a5a565b611f1c565b348015610a8557600080fd5b5060115461053590600160b01b900460ff1681565b348015610aa657600080fd5b506106a5610ab5366004614eb7565b611ff8565b348015610ac657600080fd5b5061051361203c565b348015610adb57600080fd5b5060115461053590600160b81b900460ff1681565b348015610afc57600080fd5b5061057f610b0b366004614bef565b61204e565b348015610b1c57600080fd5b506000610535565b348015610b3057600080fd5b5061057f612067565b348015610b4557600080fd5b5060115461053590600160c01b900460ff1681565b348015610b6657600080fd5b50601154610b7e90600160e01b900463ffffffff1681565b60405163ffffffff9091168152602001610541565b348015610b9f57600080fd5b50610513612074565b348015610bb457600080fd5b50610513610bc33660046151e5565b61212d565b348015610bd457600080fd5b506106a5610be33660046152c5565b600260209081526000928352604080842090915290825290205481565b348015610c0c57600080fd5b506000546001600160a01b03166105ed565b348015610c2a57600080fd5b50610535610c39366004614e87565b6123f6565b348015610c4a57600080fd5b506003546105ed906001600160a01b031681565b348015610c6a57600080fd5b5061057f612421565b348015610c7f57600080fd5b5061057f610c8e366004614bef565b612430565b348015610c9f57600080fd5b50610513610cae3660046152ef565b612517565b348015610cbf57600080fd5b506106a5612533565b348015610cd457600080fd5b50610513610ce3366004614f85565b612545565b348015610cf457600080fd5b506105136125ce565b348015610d0957600080fd5b50610513610d18366004614c0a565b612632565b348015610d2957600080fd5b50610d32600181565b60405161ffff9091168152602001610541565b348015610d5157600080fd5b506105ed7f000000000000000000000000000000000000000000000000000000000000000081565b348015610d8557600080fd5b50610513610d9436600461531d565b6126a5565b348015610da557600080fd5b50610513610db4366004614eb7565b6126d3565b348015610dc557600080fd5b50601154610dda90600160d81b900460ff1681565b60405160ff9091168152602001610541565b348015610df857600080fd5b506106a5600080516020615f3483398151915281565b348015610e1a57600080fd5b506011546105ed9061010090046001600160a01b031681565b348015610e3f57600080fd5b5061057f610e4e366004614c0a565b612726565b348015610e5f57600080fd5b50610513610e6e366004615388565b61284c565b610513610e81366004614a5a565b6128e1565b348015610e9257600080fd5b50610513610ea1366004614e87565b612af7565b348015610eb257600080fd5b506106a5600c5481565b348015610ec857600080fd5b506106a5612b1c565b348015610edd57600080fd5b50610513610eec3660046153f6565b612b29565b348015610efd57600080fd5b50610513610f0c366004614eb7565b612bb4565b348015610f1d57600080fd5b506106a57f276bb9fc5b276fb81676f47c8e6f3abbd79776961bb5ed6ed9c7f23a66ca079a81565b348015610f5157600080fd5b50610535610f60366004615432565b612c1b565b348015610f7157600080fd5b50610513610f80366004614c71565b612c49565b348015610f9157600080fd5b50610513610fa0366004614f85565b612c92565b348015610fb157600080fd5b506005546105359060ff1681565b348015610fcb57600080fd5b5061057f612cec565b348015610fe057600080fd5b50610513610fef366004614eb7565b612cf9565b34801561100057600080fd5b5061057f61100f366004615460565b612d6f565b34801561102057600080fd5b50600b546106a5565b34801561103557600080fd5b506105136110443660046154ad565b612e22565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161461109257604051630d1ad4cd60e01b815260040160405180910390fd5b61ffff8616600090815260016020526040812080546110b090615508565b80601f01602080910402602001604051908101604052809291908181526020018280546110dc90615508565b80156111295780601f106110fe57610100808354040283529160200191611129565b820191906000526020600020905b81548152906001019060200180831161110c57829003601f168201915b50505050509050805186869050148015611144575060008151115b801561116c575080516020820120604051611162908890889061553c565b6040518091039020145b61118957604051631935e28160e11b815260040160405180910390fd5b6111ff8787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8a018190048102820181019092528881528a935091508890889081908401838280828437600092019190915250612f6092505050565b50505050505050565b60006112138261306a565b92915050565b611231600080516020615f34833981519152336123f6565b1580156112535750611251600080516020615ef4833981519152336123f6565b155b1561127c5733604051631d23858960e21b81526004016112739190614c23565b60405180910390fd5b61128682826130aa565b5050565b60606009805461129990615508565b80601f01602080910402602001604051908101604052809291908181526020018280546112c590615508565b80156113125780601f106112e757610100808354040283529160200191611312565b820191906000526020600020905b8154815290600101906020018083116112f557829003601f168201915b5050505050905090565b6113246131a3565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906307e0db17906024015b600060405180830381600087803b15801561138a57600080fd5b505af115801561139e573d6000803e3d6000fd5b5050505050565b60006113b0826131fd565b506000908152600f60205260409020546001600160a01b031690565b816113d681613222565b6113de6132d2565b6113e88383613318565b505050565b6113f56131a3565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906310ddb13790602401611370565b6013805461145290615508565b80601f016020809104026020016040519081016040528092919081815260200182805461147e90615508565b80156114cb5780601f106114a0576101008083540402835291602001916114cb565b820191906000526020600020905b8154815290600101906020018083116114ae57829003601f168201915b505050505081565b6114eb600080516020615f34833981519152336123f6565b15801561150d575061150b600080516020615ef4833981519152336123f6565b155b1561152d5733604051631d23858960e21b81526004016112739190614c23565b60118054911515600160a81b0260ff60a81b19909216919091179055565b6000611555612b1c565b61155d612533565b6115679190615562565b905090565b611584600080516020615f34833981519152336123f6565b6115a3573360405163cd40902d60e01b81526004016112739190614c23565b604051674c6f636b5552497360c01b60208201526028016040516020818303038152906040528051906020012082826040516020016115e392919061553c565b6040516020818303038152906040528051906020012003611615576011805460ff60b01b1916600160b01b1790555050565b60405163353f4c1760e21b815260040160405180910390fd5b826001600160a01b03811633146116485761164833613222565b6116506132d2565b61165b8484846133bb565b50505050565b60008060008686604051602001611679929190615575565b60408051601f198184030181529082905263040a7bb160e41b825291506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb10906116dd908b90309086908b908b90600401615597565b6040805180830381865afa1580156116f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061171d91906155eb565b92509250509550959350505050565b60008281526007602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916117a15750604080518082019091526006546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906117c0906001600160601b03168761560f565b6117ca919061563c565b91519350909150505b9250929050565b60405163c616801b60e01b815260040160405180910390fd5b61180b600080516020615f34833981519152336123f6565b15801561182d575061182b600080516020615ef4833981519152336123f6565b155b1561184d5733604051631d23858960e21b81526004016112739190614c23565b6040516e4d696e74696e67436f6d706c65746560881b6020820152602f0160405160208183030381529060405280519060200120828260405160200161189492919061553c565b6040516020818303038152906040528051906020012003611615576011805460ff60b81b1916600160b81b1790555050565b6118de600080516020615f34833981519152336123f6565b6118fd573360405163cd40902d60e01b81526004016112739190614c23565b611915600080516020615f34833981519152826133eb565b61192d600080516020615f3483398151915233613471565b50565b6001600160a01b03811633146119a05760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401611273565b6112868282613471565b60115461010090046001600160a01b03163303611aaa57806000815181106119d4576119d461565e565b6020026020010151601681905550600c54816000815181106119f8576119f861565e565b602002602001015181611a0d57611a0d615626565b06600101601781905550817f9f3dfe0efa24b207b42aad32b527da86eb44e0c0e09e3c22e3a342f444d257e182600081518110611a4c57611a4c61565e565b6020026020010151604051611a6391815260200190565b60405180910390a27f0ddd09f4c3f776cb47fcfde04c8b3edaeaac6d3887a88978091f2d7dcd8649f9601754604051611a9e91815260200190565b60405180910390a15050565b604051633746fbf960e21b815260040160405180910390fd5b61ffff831660009081526001602052604081208054829190611ae490615508565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1090615508565b8015611b5d5780601f10611b3257610100808354040283529160200191611b5d565b820191906000526020600020905b815481529060010190602001808311611b4057829003601f168201915b505050505090508383604051611b7492919061553c565b60405180910390208180519060200120149150509392505050565b611ba7600080516020615f34833981519152336123f6565b158015611bc95750611bc7600080516020615ef4833981519152336123f6565b155b15611be95733604051631d23858960e21b81526004016112739190614c23565b611bf16134d8565b565b611c0b600080516020615f34833981519152336123f6565b611c2a573360405163cd40902d60e01b81526004016112739190614c23565b601154600160b01b900460ff1615611c5557604051630c9e6a8760e41b815260040160405180910390fd5b6012611c628688836156cf565b506013611c708486836156cf565b5060146111ff8284836156cf565b611c96600080516020615f34833981519152336123f6565b158015611cb85750611cb6600080516020615ef4833981519152336123f6565b155b15611cd85733604051631d23858960e21b81526004016112739190614c23565b6011805460ff60c01b1916600160c01b1790556040517fe2a7169cedebe39671840370ae19ca4fc41be6191d4c77f174f189a4d8cd08c890600090a1565b826001600160a01b0381163314611d3057611d3033613222565b611d386132d2565b61165b848484613524565b611d4e335b8261353f565b611d6a5760405162461bcd60e51b815260040161127390615788565b61192d8161359d565b611d7b6131a3565b6040516342d65a8d60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906342d65a8d90611dcb908690869086906004016157d7565b600060405180830381600087803b158015611de557600080fd5b505af11580156111ff573d6000803e3d6000fd5b6111ff87878787878787613663565b611e20600080516020615f34833981519152336123f6565b158015611e425750611e40600080516020615ef4833981519152336123f6565b155b15611e625733604051631d23858960e21b81526004016112739190614c23565b60165415611e83576040516338df8b6b60e21b815260040160405180910390fd5b601160019054906101000a90046001600160a01b03166001600160a01b03166386040e8d6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611ed357600080fd5b505af115801561165b573d6000803e3d6000fd5b6000818152600d60205260408120546001600160a01b0316806112135760405162461bcd60e51b8152600401611273906157f5565b333014611f7a5760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608401611273565b611ff08686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f89018190048102820181019092528781528993509150879087908190840183828082843760009201919091525061374b92505050565b505050505050565b60006001600160a01b0382166120205760405162461bcd60e51b81526004016112739061581c565b506001600160a01b03166000908152600e602052604090205490565b6120446131a3565b611bf160006137de565b6001602052600090815260409020805461145290615508565b6012805461145290615508565b61208c600080516020615f34833981519152336123f6565b1580156120ae57506120ac600080516020615ef4833981519152336123f6565b155b156120ce5733604051631d23858960e21b81526004016112739190614c23565b6011601b9054906101000a900460ff1660ff16620151800262ffffff166011601c9054906101000a900463ffffffff160163ffffffff1642111561212557604051631564628f60e31b815260040160405180910390fd5b611bf161382e565b601154600160c81b900460ff161561215857604051633c3282e760e01b815260040160405180910390fd5b6daaeb6d7670e522a718067333cd4e3b156121e657604051633e9f1edf60e11b8152306004820152733cc6cdda760b79bafa08df41ecfa224f810dceb660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe90604401600060405180830381600087803b1580156121cd57600080fd5b505af11580156121e1573d6000803e3d6000fd5b505050505b6121f0888661386b565b612208600080516020615f348339815191528a6133eb565b612220600080516020615f34833981519152806138e8565b612238600080516020615ef4833981519152896133eb565b612250600080516020615ef4833981519152806138e8565b6000601154600160d01b900460ff1660018111156122705761227061583f565b1461228e5760405163a437db2f60e01b815260040160405180910390fd5b60005b86811015612301576001601860008a8a858181106122b1576122b161565e565b90506020028101906122c39190615855565b6122d1906020810190614eb7565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055600101612291565b506001600160a01b03841661231f5761231a89846130aa565b612329565b61232984846130aa565b6011805463ffffffff60a81b191690556123438280615875565b6012916123519190836156cf565b5061235f6020830183615875565b60149161236d9190836156cf565b5061237b6040830183615875565b6013916123899190836156cf565b5060118054600160c81b61010066ff00000000000160a81b0319909116336101000260ff60d81b191617600160d81b60ff949094169390930292909217600162ffff0160c81b0316600160e01b4263ffffffff160260ff60c81b1916179190911790555050505050505050565b60009182526008602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600a805461129990615508565b61ffff811660009081526001602052604081208054606092919061245390615508565b80601f016020809104026020016040519081016040528092919081815260200182805461247f90615508565b80156124cc5780601f106124a1576101008083540402835291602001916124cc565b820191906000526020600020905b8154815290600101906020018083116124af57829003601f168201915b5050505050905080516000036124f55760405163039aee5360e01b815260040160405180910390fd5b6125106000601483516125089190615562565b839190613933565b9392505050565b8161252181613222565b6125296132d2565b6113e88383613a40565b6000600b54600c546115679190615562565b61254d6131a3565b818130604051602001612562939291906158bb565b60408051601f1981840301815291815261ffff851660009081526001602052209061258d90826158e1565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce8383836040516125c1939291906157d7565b60405180910390a1505050565b6125e6600080516020615f34833981519152336123f6565b1580156126085750612606600080516020615ef4833981519152336123f6565b155b156126285733604051631d23858960e21b81526004016112739190614c23565b611bf16000600655565b61264a600080516020615f34833981519152336123f6565b612669573360405163cd40902d60e01b81526004016112739190614c23565b60158190556040518181527fa85403e90dc30bde576fc4c13d55fb52ccc4565eb4366c588e74824df81a5ae1906020015b60405180910390a150565b836001600160a01b03811633146126bf576126bf33613222565b6126c76132d2565b61139e85858585613a4b565b6126db6131a3565b600380546001600160a01b0319166001600160a01b0383161790556040517f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b9061269a908390614c23565b6060612731826131fd565b601154600160c01b900460ff166127945760006012805461275190615508565b90501161276d5760405180602001604052806000815250611213565b601260405160200161277f9190615a0d565b60405160208183030381529060405292915050565b601154600160a81b900460ff1615612802576000601380546127b590615508565b9050116127d15760405180602001604052806000815250611213565b60136127f1600c546017548501816127eb576127eb615626565b06613a7d565b60405160200161277f929190615a19565b60006014805461281190615508565b90501161282d5760405180602001604052806000815250611213565b60146127f1600c546017548501816127eb576127eb615626565b919050565b6128546131a3565b6040516332fb62e760e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063cbed8b9c906128a89088908890889088908890600401615a4e565b600060405180830381600087803b1580156128c257600080fd5b505af11580156128d6573d6000803e3d6000fd5b505050505050505050565b61ffff86166000908152600460205260408082209051612904908890889061553c565b90815260408051602092819003830190206001600160401b038716600090815292529020549050806129845760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608401611273565b80838360405161299592919061553c565b6040518091039020146129f45760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608401611273565b61ffff87166000908152600460205260408082209051612a17908990899061553c565b90815260408051602092819003830181206001600160401b038916600090815290845282902093909355601f88018290048202830182019052868252612aaf918991899089908190840183828082843760009201919091525050604080516020601f8a018190048102820181019092528881528a93509150889088908190840183828082843760009201919091525061374b92505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051612ae6959493929190615a87565b60405180910390a150505050505050565b600082815260086020526040902060010154612b1281613b0f565b6113e88383613471565b600061156761dead611ff8565b612b316131a3565b80600003612b525760405163e4ac3b3f60e01b815260040160405180910390fd5b61ffff83811660008181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac0906060016125c1565b612bcc600080516020615ef4833981519152336123f6565b612beb5733604051633f4a6e3d60e21b81526004016112739190614c23565b612c03600080516020615ef4833981519152826133eb565b61192d600080516020615ef483398151915233613471565b6001600160a01b03918216600090815260106020908152604080832093909416825291909152205460ff1690565b612c516131a3565b6005805460ff19168215159081179091556040519081527f1584ad594a70cbe1e6515592e1272a987d922b097ead875069cebe8b40c004a49060200161269a565b612c9a6131a3565b61ffff83166000908152600160205260409020612cb88284836156cf565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab8383836040516125c1939291906157d7565b6014805461145290615508565b612d016131a3565b6001600160a01b038116612d665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611273565b61192d816137de565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f5ecbdbc90608401600060405180830381865afa158015612def573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612e179190810190615b07565b90505b949350505050565b6001600160a01b0384161580612e4257506001600160a01b03841661dead145b15612e6057604051634e46966960e11b815260040160405180910390fd5b601154600160b81b900460ff1615612e8b5760405163f2f76b4560e01b815260040160405180910390fd5b3360009081526018602052604090205460ff16612ebb5760405163e6c4247b60e01b815260040160405180910390fd5b6000601154600160d01b900460ff166001811115612edb57612edb61583f565b14612ef95760405163a437db2f60e01b815260040160405180910390fd5b6000612f058584613b19565b9050846001600160a01b0316846001600160a01b03167fb5bfc190364a05627bb8cf9d1a03c8e456dbb89d9be707c0e6549e181314650e88338686604051612f509493929190615b3b565b60405180910390a3505050505050565b600080612fc35a60966366ad5c8a60e01b89898989604051602401612f889493929190615ba5565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915230929190613c29565b9150915081611ff0578280519060200120600460008861ffff1661ffff16815260200190815260200160002086604051612ffd9190615be3565b9081526040805191829003602090810183206001600160401b0389166000908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c9061305a9088908890889088908790615bf5565b60405180910390a1505050505050565b60006001600160e01b031982166380ac58cd60e01b148061309b57506001600160e01b03198216635b5e139f60e01b145b80611213575061121382613cb3565b6127106001600160601b03821611156131185760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401611273565b6001600160a01b03821661316a5760405162461bcd60e51b815260206004820152601960248201527822a921991c9c189d1034b73b30b634b2103932b1b2b4bb32b960391b6044820152606401611273565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600655565b6000546001600160a01b03163314611bf15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611273565b61320681613cd8565b61192d5760405162461bcd60e51b8152600401611273906157f5565b6daaeb6d7670e522a718067333cd4e3b1561192d57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561328f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132b39190615c47565b61192d5780604051633b79c77360e21b81526004016112739190614c23565b60115460ff1615611bf15760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401611273565b600061332382611ee7565b9050806001600160a01b0316836001600160a01b0316036133795760405162461bcd60e51b815260206004820152601060248201526f20b8383937bb32903a379037bbb732b960811b6044820152606401611273565b336001600160a01b038216148061339557506133958133612c1b565b6133b15760405162461bcd60e51b815260040161127390615788565b6113e88383613cf5565b6133c433611d48565b6133e05760405162461bcd60e51b815260040161127390615788565b6113e8838383613d63565b6133f582826123f6565b6112865760008281526008602090815260408083206001600160a01b03851684529091529020805460ff1916600117905561342d3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b61347b82826123f6565b156112865760008281526008602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6134e0613e86565b6011805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405161351a9190614c23565b60405180910390a1565b6113e8838383604051806020016040528060008152506126a5565b60008061354b83611ee7565b9050806001600160a01b0316846001600160a01b0316148061357257506135728185612c1b565b80612e1a5750836001600160a01b031661358b846113a5565b6001600160a01b031614949350505050565b60006135a882611ee7565b90506135b8816000846001613ecf565b6135c182611ee7565b6000838152600f6020908152604080832080546001600160a01b03199081169091556001600160a01b038516808552600e84528285208054600019019055878552600d909352818420805461dead908316811782557ff77e91909e61d18f67b875b2bfcae1f683a8d555e55382e3a6b082e2c59ea57a8054600101905581549092169055905193945085939092600080516020615f1483398151915291a45050565b61366f87878787613f57565b60008585604051602001613684929190615575565b60408051601f1981840301815291905260055490915060ff16156136b5576136b0876001846000613fc2565b6136d5565b8151156136d557604051638fadcadb60e01b815260040160405180910390fd5b6136e3878286868634614043565b856040516136f19190615be3565b6040518091039020886001600160a01b03168861ffff167f39a4c66499bcf4b56d79f0dde8ed7a9d4925a0df55825206b2b8531e202be0d08860405161373991815260200190565b60405180910390a45050505050505050565b600080828060200190518101906137629190615c64565b60148201519193509150613777878284614195565b806001600160a01b03168660405161378f9190615be3565b60405180910390208861ffff167f776434b505c7beb3db155c58df6c88985bf7c31730767e43ec773005059fed7a856040516137cd91815260200190565b60405180910390a450505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6138366132d2565b6011805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861350d3390565b60008080808061387e6020870187615875565b81019061388b9190615caa565b945094509450945094506138a18383878a6142a5565b60158190558360018111156138b8576138b861583f565b6011805460ff60d01b1916600160d01b8360018111156138da576138da61583f565b021790555050505050505050565b600082815260086020526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b60608161394181601f615d28565b10156139805760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401611273565b61398a8284615d28565b845110156139ce5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401611273565b6060821580156139ed5760405191506000825260208201604052613a37565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015613a26578051835260209283019201613a0e565b5050858452601f01601f1916604052505b50949350505050565b6112863383836142d2565b613a55338361353f565b613a715760405162461bcd60e51b815260040161127390615788565b61165b84848484614394565b60606000613a8a836143c7565b60010190506000816001600160401b03811115613aa957613aa9614d10565b6040519080825280601f01601f191660200182016040528015613ad3576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084613add57509392505050565b61192d813361449f565b6060600b54821115613b3e57604051637cd4b50160e01b815260040160405180910390fd5b816001600160401b03811115613b5657613b56614d10565b604051908082528060200260200182016040528015613b7f578160200160208202803683370190505b5090506000600b54600c54613b949190615562565b905060005b83811015613be357613bb485613baf8385615d28565b6144f8565b613bbe8183615d28565b838281518110613bd057613bd061565e565b6020908102919091010152600101613b99565b5082600b54613bf29190615562565b600b556001600160a01b0384166000908152600e602052604081208054859290613c1d908490615d28565b90915550505092915050565b6000606060008060008661ffff166001600160401b03811115613c4e57613c4e614d10565b6040519080825280601f01601f191660200182016040528015613c78576020820181803683370190505b50905060008087516020890160008d8df191503d925086831115613c9a578692505b828152826000602083013e909890975095505050505050565b60006001600160e01b03198216637965db0b60e01b148061121357506112138261454d565b6000908152600d60205260409020546001600160a01b0316151590565b6000818152600f6020526040902080546001600160a01b0319166001600160a01b0384169081179091558190613d2a82611ee7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b826001600160a01b0316613d7682611ee7565b6001600160a01b031614613d9c5760405162461bcd60e51b81526004016112739061581c565b6001600160a01b038216613dc25760405162461bcd60e51b815260040161127390615d3b565b613dcf8383836001613ecf565b826001600160a01b0316613de282611ee7565b6001600160a01b031614613e085760405162461bcd60e51b81526004016112739061581c565b6000818152600f6020908152604080832080546001600160a01b03199081169091556001600160a01b03878116808652600e8552838620805460001901905590871680865283862080546001019055868652600d9094528285208054909216841790915590518493600080516020615f1483398151915291a4505050565b60115460ff16611bf15760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401611273565b600181111561165b576001600160a01b03841615613f15576001600160a01b0384166000908152600e602052604081208054839290613f0f908490615562565b90915550505b6001600160a01b0383161561165b576001600160a01b0383166000908152600e602052604081208054839290613f4c908490615d28565b909155505050505050565b613f6033611d48565b613f7d5760405163214a0ec160e01b815260040160405180910390fd5b836001600160a01b0316613f9082611ee7565b6001600160a01b031614613fb75760405163368d630b60e11b815260040160405180910390fd5b61165b843083613d63565b6000613fcd83614572565b61ffff808716600090815260026020908152604080832093891683529290529081205491925090613fff908490615d28565b90508060000361402257604051631f3ec9d560e11b815260040160405180910390fd5b80821015611ff05760405163785fb05760e11b815260040160405180910390fd5b61ffff86166000908152600160205260408120805461406190615508565b80601f016020809104026020016040519081016040528092919081815260200182805461408d90615508565b80156140da5780601f106140af576101008083540402835291602001916140da565b820191906000526020600020905b8154815290600101906020018083116140bd57829003601f168201915b50505050509050805160000361410357604051630b86d4eb60e31b815260040160405180910390fd5b60405162c5803160e81b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063c580310090849061415a908b9086908c908c908c908c90600401615d5e565b6000604051808303818588803b15801561417357600080fd5b505af1158015614187573d6000803e3d6000fd5b505050505050505050505050565b61419e81613cd8565b80156141ba5750306141af82611ee7565b6001600160a01b0316145b6141d75760405163c1ab6dc160e01b815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000001561424a5761420681613cd8565b801561422257503061421782611ee7565b6001600160a01b0316145b61423f5760405163c1ab6dc160e01b815260040160405180910390fd5b6113e8308383613d63565b61425381613cd8565b801561427057503061426482611ee7565b6001600160a01b031614155b1561428e5760405163c1ab6dc160e01b815260040160405180910390fd5b61429781613cd8565b61423f576113e8828261459f565b60096142b185826158e1565b50600a6142be84826158e1565b50600c829055600b82905561165b816137de565b816001600160a01b0316836001600160a01b0316036143275760405162461bcd60e51b815260206004820152601160248201527020b8383937bb32903a379031b0b63632b960791b6044820152606401611273565b6001600160a01b03838116600081815260106020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61439f848484613d63565b6143ab848484846145b9565b61165b5760405162461bcd60e51b815260040161127390615dc5565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106144065772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310614432576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061445057662386f26fc10000830492506010015b6305f5e1008310614468576305f5e100830492506008015b612710831061447c57612710830492506004015b6064831061448e576064830492506002015b600a83106112135760010192915050565b6144a982826123f6565b611286576144b681614702565b6144c1836020614714565b6040516020016144d2929190615deb565b60408051601f198184030181529082905262461bcd60e51b825261127391600401614bdc565b614506600083836001613ecf565b6000818152600d602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020615f14833981519152908290a45050565b60006001600160e01b0319821663152a902d60e11b14806112135750611213826148af565b60006022825110156145975760405163cef80ea360e01b815260040160405180910390fd5b506022015190565b6112868282604051806020016040528060008152506148e4565b60006001600160a01b0384163b156146fa57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906145fd903390899088908890600401615e5a565b6020604051808303816000875af1925050508015614638575060408051601f3d908101601f1916820190925261463591810190615e97565b60015b6146e0573d808015614666576040519150601f19603f3d011682016040523d82523d6000602084013e61466b565b606091505b5080516000036146d85760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401611273565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612e1a565b506001612e1a565b60606112136001600160a01b03831660145b6060600061472383600261560f565b61472e906002615d28565b6001600160401b0381111561474557614745614d10565b6040519080825280601f01601f19166020018201604052801561476f576020820181803683370190505b509050600360fc1b8160008151811061478a5761478a61565e565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106147b9576147b961565e565b60200101906001600160f81b031916908160001a90535060006147dd84600261560f565b6147e8906001615d28565b90505b6001811115614860576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061481c5761481c61565e565b1a60f81b8282815181106148325761483261565e565b60200101906001600160f81b031916908160001a90535060049490941c9361485981615eb4565b90506147eb565b5083156125105760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401611273565b60006001600160e01b03198216637bb0080b60e01b148061121357506301ffc9a760e01b6001600160e01b0319831614611213565b6148ee8383614917565b6148fb60008484846145b9565b6113e85760405162461bcd60e51b815260040161127390615dc5565b6001600160a01b03821661493d5760405162461bcd60e51b815260040161127390615d3b565b61494681613cd8565b156149635760405162461bcd60e51b815260040161127390615ecb565b614971600083836001613ecf565b61497a81613cd8565b156149975760405162461bcd60e51b815260040161127390615ecb565b6001600160a01b0382166000818152600e6020908152604080832080546001019055848352600d90915280822080546001600160a01b031916841790555183929190600080516020615f14833981519152908290a45050565b803561ffff8116811461284757600080fd5b60008083601f840112614a1457600080fd5b5081356001600160401b03811115614a2b57600080fd5b6020830191508360208285010111156117d357600080fd5b80356001600160401b038116811461284757600080fd5b60008060008060008060808789031215614a7357600080fd5b614a7c876149f0565b955060208701356001600160401b0380821115614a9857600080fd5b614aa48a838b01614a02565b9097509550859150614ab860408a01614a43565b94506060890135915080821115614ace57600080fd5b50614adb89828a01614a02565b979a9699509497509295939492505050565b6001600160e01b03198116811461192d57600080fd5b600060208284031215614b1557600080fd5b813561251081614aed565b6001600160a01b038116811461192d57600080fd5b803561284781614b20565b80356001600160601b038116811461284757600080fd5b60008060408385031215614b6a57600080fd5b8235614b7581614b20565b9150614b8360208401614b40565b90509250929050565b60005b83811015614ba7578181015183820152602001614b8f565b50506000910152565b60008151808452614bc8816020860160208601614b8c565b601f01601f19169290920160200192915050565b6020815260006125106020830184614bb0565b600060208284031215614c0157600080fd5b612510826149f0565b600060208284031215614c1c57600080fd5b5035919050565b6001600160a01b0391909116815260200190565b60008060408385031215614c4a57600080fd5b8235614c5581614b20565b946020939093013593505050565b801515811461192d57600080fd5b600060208284031215614c8357600080fd5b813561251081614c63565b60008060208385031215614ca157600080fd5b82356001600160401b03811115614cb757600080fd5b614cc385828601614a02565b90969095509350505050565b600080600060608486031215614ce457600080fd5b8335614cef81614b20565b92506020840135614cff81614b20565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715614d4e57614d4e614d10565b604052919050565b60006001600160401b03821115614d6f57614d6f614d10565b50601f01601f191660200190565b600082601f830112614d8e57600080fd5b8135614da1614d9c82614d56565b614d26565b818152846020838601011115614db657600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215614deb57600080fd5b614df4866149f0565b945060208601356001600160401b0380821115614e1057600080fd5b614e1c89838a01614d7d565b95506040880135945060608801359150614e3582614c63565b90925060808701359080821115614e4b57600080fd5b50614e5888828901614d7d565b9150509295509295909350565b60008060408385031215614e7857600080fd5b50508035926020909101359150565b60008060408385031215614e9a57600080fd5b823591506020830135614eac81614b20565b809150509250929050565b600060208284031215614ec957600080fd5b813561251081614b20565b60008060408385031215614ee757600080fd5b823591506020808401356001600160401b0380821115614f0657600080fd5b818601915086601f830112614f1a57600080fd5b813581811115614f2c57614f2c614d10565b8060051b9150614f3d848301614d26565b8181529183018401918481019089841115614f5757600080fd5b938501935b83851015614f7557843582529385019390850190614f5c565b8096505050505050509250929050565b600080600060408486031215614f9a57600080fd5b614fa3846149f0565b925060208401356001600160401b03811115614fbe57600080fd5b614fca86828701614a02565b9497909650939450505050565b60008060008060008060608789031215614ff057600080fd5b86356001600160401b038082111561500757600080fd5b6150138a838b01614a02565b9098509650602089013591508082111561502c57600080fd5b6150388a838b01614a02565b90965094506040890135915080821115614ace57600080fd5b600080600080600080600060e0888a03121561506c57600080fd5b873561507781614b20565b9650615085602089016149f0565b955060408801356001600160401b03808211156150a157600080fd5b6150ad8b838c01614d7d565b965060608a0135955060808a013591506150c682614b20565b90935060a0890135906150d882614b20565b90925060c089013590808211156150ee57600080fd5b506150fb8a828b01614d7d565b91505092959891949750929550565b60008060006060848603121561511f57600080fd5b615128846149f0565b925060208401356001600160401b0381111561514357600080fd5b61514f86828701614d7d565b92505061515e60408501614a43565b90509250925092565b60008083601f84011261517957600080fd5b5081356001600160401b0381111561519057600080fd5b6020830191508360208260051b85010111156117d357600080fd5b6000604082840312156151bd57600080fd5b50919050565b806060810183101561121357600080fd5b803560ff8116811461284757600080fd5b60008060008060008060008060006101008a8c03121561520457600080fd5b61520d8a614b35565b985061521b60208b01614b35565b975060408a01356001600160401b038082111561523757600080fd5b6152438d838e01615167565b909950975060608c013591508082111561525c57600080fd5b6152688d838e016151ab565b965061527660808d01614b35565b955061528460a08d01614b40565b945060c08c013591508082111561529a57600080fd5b506152a78c828d016151c3565b9250506152b660e08b016151d4565b90509295985092959850929598565b600080604083850312156152d857600080fd5b6152e1836149f0565b9150614b83602084016149f0565b6000806040838503121561530257600080fd5b823561530d81614b20565b91506020830135614eac81614c63565b6000806000806080858703121561533357600080fd5b843561533e81614b20565b9350602085013561534e81614b20565b92506040850135915060608501356001600160401b0381111561537057600080fd5b61537c87828801614d7d565b91505092959194509250565b6000806000806000608086880312156153a057600080fd5b6153a9866149f0565b94506153b7602087016149f0565b93506040860135925060608601356001600160401b038111156153d957600080fd5b6153e588828901614a02565b969995985093965092949392505050565b60008060006060848603121561540b57600080fd5b615414846149f0565b9250615422602085016149f0565b9150604084013590509250925092565b6000806040838503121561544557600080fd5b823561545081614b20565b91506020830135614eac81614b20565b6000806000806080858703121561547657600080fd5b61547f856149f0565b935061548d602086016149f0565b9250604085013561549d81614b20565b9396929550929360600135925050565b600080600080600060a086880312156154c557600080fd5b85356154d081614b20565b945060208601356154e081614b20565b935060408601356154f081614b20565b94979396509394606081013594506080013592915050565b600181811c9082168061551c57607f821691505b6020821081036151bd57634e487b7160e01b600052602260045260246000fd5b8183823760009101908152919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156112135761121361554c565b6040815260006155886040830185614bb0565b90508260208301529392505050565b61ffff861681526001600160a01b038516602082015260a0604082018190526000906155c590830186614bb0565b841515606084015282810360808401526155df8185614bb0565b98975050505050505050565b600080604083850312156155fe57600080fd5b505080516020909101519092909150565b80820281158282048414176112135761121361554c565b634e487b7160e01b600052601260045260246000fd5b60008261565957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b601f8211156113e857600081815260208120601f850160051c8101602086101561569b5750805b601f850160051c820191505b81811015611ff0578281556001016156a7565b600019600383901b1c191660019190911b1790565b6001600160401b038311156156e6576156e6614d10565b6156fa836156f48354615508565b83615674565b6000601f84116001811461572857600085156157165750838201355b61572086826156ba565b84555061139e565b600083815260209020601f19861690835b828110156157595786850135825560209485019460019092019101615739565b50868210156157765760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6020808252600c908201526b155b985d5d1a1bdc9a5cd95960a21b604082015260600190565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b61ffff84168152604060208201526000612e176040830184866157ae565b6020808252600d908201526c24b73b30b634b2103a37b5b2b760991b604082015260600190565b6020808252600990820152682737b716b7bbb732b960b91b604082015260600190565b634e487b7160e01b600052602160045260246000fd5b60008235603e1983360301811261586b57600080fd5b9190910192915050565b6000808335601e1984360301811261588c57600080fd5b8301803591506001600160401b038211156158a657600080fd5b6020019150368190038213156117d357600080fd5b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b81516001600160401b038111156158fa576158fa614d10565b61590e816159088454615508565b84615674565b602080601f83116001811461593d576000841561592b5750858301515b61593585826156ba565b865550611ff0565b600085815260208120601f198616915b8281101561596c5788860151825594840194600190910190840161594d565b508582101561598a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600081546159a781615508565b600182811680156159bf57600181146159d457615a03565b60ff1984168752821515830287019450615a03565b8560005260208060002060005b858110156159fa5781548a8201529084019082016159e1565b50505082870194505b5050505092915050565b6000612510828461599a565b6000615a25828561599a565b8351615a35818360208801614b8c565b64173539b7b760d91b9101908152600501949350505050565b600061ffff808816835280871660208401525084604083015260806060830152615a7c6080830184866157ae565b979650505050505050565b61ffff86168152608060208201526000615aa56080830186886157ae565b6001600160401b0394909416604083015250606001529392505050565b600082601f830112615ad357600080fd5b8151615ae1614d9c82614d56565b818152846020838601011115615af657600080fd5b612e1a826020830160208701614b8c565b600060208284031215615b1957600080fd5b81516001600160401b03811115615b2f57600080fd5b612e1a84828501615ac2565b6001600160a01b03858116825284166020808301919091526040820184905260806060830181905283519083018190526000918481019160a085019190845b81811015615b9657845184529382019392820192600101615b7a565b50919998505050505050505050565b61ffff85168152608060208201526000615bc26080830186614bb0565b6001600160401b03851660408401528281036060840152615a7c8185614bb0565b6000825161586b818460208701614b8c565b61ffff8616815260a060208201526000615c1260a0830187614bb0565b6001600160401b03861660408401528281036060840152615c338186614bb0565b905082810360808401526155df8185614bb0565b600060208284031215615c5957600080fd5b815161251081614c63565b60008060408385031215615c7757600080fd5b82516001600160401b03811115615c8d57600080fd5b615c9985828601615ac2565b925050602083015190509250929050565b600080600080600060a08688031215615cc257600080fd5b853594506020860135935060408601356001600160401b0380821115615ce757600080fd5b615cf389838a01614d7d565b94506060880135915080821115615d0957600080fd5b50615d1688828901614d7d565b95989497509295608001359392505050565b808201808211156112135761121361554c565b60208082526009908201526830206164647265737360b81b604082015260600190565b61ffff8716815260c060208201526000615d7b60c0830188614bb0565b8281036040840152615d8d8188614bb0565b6001600160a01b0387811660608601528616608085015283810360a08501529050615db88185614bb0565b9998505050505050505050565b6020808252600c908201526b2737b716b932b1b2b4bb32b960a11b604082015260600190565b76020b1b1b2b9b9a1b7b73a3937b61d1030b1b1b7bab73a1604d1b815260008351615e1d816017850160208801614b8c565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351615e4e816028840160208801614b8c565b01602801949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615e8d90830184614bb0565b9695505050505050565b600060208284031215615ea957600080fd5b815161251081614aed565b600081615ec357615ec361554c565b506000190190565b6020808252600e908201526d105b1c9958591e481b5a5b9d195960921b60408201526060019056fe7a543e745b6e00adac27dbc211206942183c75536c579dac6cca74ecac7454b1ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef4ff52032f36e32ac782042a01802e20394d4255c84a3c046490be98ab632691ba26469706673582212200898893c156b813491439538cc90d0e8329030bbc7e7be42c6ea123c286996de64736f6c63430008130033000000000000000000000000888888888888660f286a7c06cfa3407d09af44b200000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000001
Deployed Bytecode
0x6080604052600436106104e45760003560e01c806374689fdf11610281578063b88d4fde1161015a578063df2a5b3b116100cc578063ed629c5c11610085578063ed629c5c14610fa5578063ee279efe14610fbf578063f2fde38b14610fd4578063f5ecbdbc14610ff4578063f804677d14611014578063fa168dda1461102957600080fd5b8063df2a5b3b14610ed1578063e538d1f714610ef1578063e8699ecc14610f11578063e985e9c514610f45578063eab45d9c14610f65578063eb8d72b714610f8557600080fd5b8063c87b56dd1161011e578063c87b56dd14610e33578063cbed8b9c14610e53578063d1deba1f14610e73578063d547741f14610e86578063d5abeb0114610ea6578063d89135cd14610ebc57600080fd5b8063b88d4fde14610d79578063baf3292d14610d99578063bdaea0e114610db9578063c1d0a7d814610dec578063c45a015514610e0e57600080fd5b8063950c8a74116101f3578063a2309ff8116101b7578063a2309ff814610cb3578063a6c3d16514610cc8578063aa1b103f14610ce8578063abd9df1414610cfd578063af3fb21c14610d1d578063b353aaa714610d4557600080fd5b8063950c8a7414610c3e57806395d89b4114610c5e5780639f38369a14610c73578063a217fddf14610965578063a22cb46514610c9357600080fd5b806380f732651161024557806380f7326514610b5a5780638456cb5914610b9357806385c5e3a214610ba85780638cfd8f5c14610bc85780638da5cb5b14610c0057806391d1485414610c1e57600080fd5b806374689fdf14610acf5780637533d78814610af057806377bc50a614610b1057806379b6ed3614610b245780637c234fb514610b3957600080fd5b806336568abe116103be57806343a0cd081161033057806362bc528f116102e957806362bc528f14610a095780636352211e14610a3957806366ad5c8a14610a5957806369d2ceb114610a7957806370a0823114610a9a578063715018a614610aba57600080fd5b806343a0cd081461094f5780634477051514610965578063519056361461097a5780635b8c41e61461098d5780635bc05ed5146109dc5780635c975abb146109f157600080fd5b806340a4dddd1161038257806340a4dddd1461089857806340d0b4a9146108b857806341f43434146108cd57806342842e0e146108ef57806342966c681461090f57806342d65a8d1461092f57600080fd5b806336568abe1461080d57806336b7abd41461082d57806338ba4614146108435780633d8b38f6146108635780633f4ba83a1461088357600080fd5b80631510756d1161045757806326e5a3621161041b57806326e5a362146107235780632a205e3d146107395780632a55205a1461076e5780632f2ff15d146107ad578063317b4829146107cd5780633397d9a2146107ed57600080fd5b80631510756d1461067057806318160ddd146106905780631d05acf6146106b357806323b872dd146106d3578063248a9ca3146106f357600080fd5b806307e0db17116104a957806307e0db17146105ad578063081812fc146105cd57806308a116a5146105fa578063095ea7b31461061b57806310ddb1371461063b578063125ffd801461065b57600080fd5b80621d3567146104f357806301ffc9a71461051557806304634d8d1461054a57806306fdde031461056a57806307003bb41461058c57600080fd5b366104ee57600080fd5b600080fd5b3480156104ff57600080fd5b5061051361050e366004614a5a565b611049565b005b34801561052157600080fd5b50610535610530366004614b03565b611208565b60405190151581526020015b60405180910390f35b34801561055657600080fd5b50610513610565366004614b57565b611219565b34801561057657600080fd5b5061057f61128a565b6040516105419190614bdc565b34801561059857600080fd5b5060115461053590600160c81b900460ff1681565b3480156105b957600080fd5b506105136105c8366004614bef565b61131c565b3480156105d957600080fd5b506105ed6105e8366004614c0a565b6113a5565b6040516105419190614c23565b34801561060657600080fd5b5060115461053590600160a81b900460ff1681565b34801561062757600080fd5b50610513610636366004614c37565b6113cc565b34801561064757600080fd5b50610513610656366004614bef565b6113ed565b34801561066757600080fd5b5061057f611445565b34801561067c57600080fd5b5061051361068b366004614c71565b6114d3565b34801561069c57600080fd5b506106a561154b565b604051908152602001610541565b3480156106bf57600080fd5b506105136106ce366004614c8e565b61156c565b3480156106df57600080fd5b506105136106ee366004614ccf565b61162e565b3480156106ff57600080fd5b506106a561070e366004614c0a565b60009081526008602052604090206001015490565b34801561072f57600080fd5b506106a560175481565b34801561074557600080fd5b50610759610754366004614dd3565b611661565b60408051928352602083019190915201610541565b34801561077a57600080fd5b5061078e610789366004614e65565b61172c565b604080516001600160a01b039093168352602083019190915201610541565b3480156107b957600080fd5b506105136107c8366004614e87565b6117da565b3480156107d957600080fd5b506105136107e8366004614c8e565b6117f3565b3480156107f957600080fd5b50610513610808366004614eb7565b6118c6565b34801561081957600080fd5b50610513610828366004614e87565b611930565b34801561083957600080fd5b506106a560155481565b34801561084f57600080fd5b5061051361085e366004614ed4565b6119aa565b34801561086f57600080fd5b5061053561087e366004614f85565b611ac3565b34801561088f57600080fd5b50610513611b8f565b3480156108a457600080fd5b506105136108b3366004614fd7565b611bf3565b3480156108c457600080fd5b50610513611c7e565b3480156108d957600080fd5b506105ed6daaeb6d7670e522a718067333cd4e81565b3480156108fb57600080fd5b5061051361090a366004614ccf565b611d16565b34801561091b57600080fd5b5061051361092a366004614c0a565b611d43565b34801561093b57600080fd5b5061051361094a366004614f85565b611d73565b34801561095b57600080fd5b506106a560165481565b34801561097157600080fd5b506106a5600081565b610513610988366004615051565b611df9565b34801561099957600080fd5b506106a56109a836600461510a565b6004602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205481565b3480156109e857600080fd5b50610513611e08565b3480156109fd57600080fd5b5060115460ff16610535565b348015610a1557600080fd5b50610535610a24366004614eb7565b60186020526000908152604090205460ff1681565b348015610a4557600080fd5b506105ed610a54366004614c0a565b611ee7565b348015610a6557600080fd5b50610513610a74366004614a5a565b611f1c565b348015610a8557600080fd5b5060115461053590600160b01b900460ff1681565b348015610aa657600080fd5b506106a5610ab5366004614eb7565b611ff8565b348015610ac657600080fd5b5061051361203c565b348015610adb57600080fd5b5060115461053590600160b81b900460ff1681565b348015610afc57600080fd5b5061057f610b0b366004614bef565b61204e565b348015610b1c57600080fd5b506000610535565b348015610b3057600080fd5b5061057f612067565b348015610b4557600080fd5b5060115461053590600160c01b900460ff1681565b348015610b6657600080fd5b50601154610b7e90600160e01b900463ffffffff1681565b60405163ffffffff9091168152602001610541565b348015610b9f57600080fd5b50610513612074565b348015610bb457600080fd5b50610513610bc33660046151e5565b61212d565b348015610bd457600080fd5b506106a5610be33660046152c5565b600260209081526000928352604080842090915290825290205481565b348015610c0c57600080fd5b506000546001600160a01b03166105ed565b348015610c2a57600080fd5b50610535610c39366004614e87565b6123f6565b348015610c4a57600080fd5b506003546105ed906001600160a01b031681565b348015610c6a57600080fd5b5061057f612421565b348015610c7f57600080fd5b5061057f610c8e366004614bef565b612430565b348015610c9f57600080fd5b50610513610cae3660046152ef565b612517565b348015610cbf57600080fd5b506106a5612533565b348015610cd457600080fd5b50610513610ce3366004614f85565b612545565b348015610cf457600080fd5b506105136125ce565b348015610d0957600080fd5b50610513610d18366004614c0a565b612632565b348015610d2957600080fd5b50610d32600181565b60405161ffff9091168152602001610541565b348015610d5157600080fd5b506105ed7f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67581565b348015610d8557600080fd5b50610513610d9436600461531d565b6126a5565b348015610da557600080fd5b50610513610db4366004614eb7565b6126d3565b348015610dc557600080fd5b50601154610dda90600160d81b900460ff1681565b60405160ff9091168152602001610541565b348015610df857600080fd5b506106a5600080516020615f3483398151915281565b348015610e1a57600080fd5b506011546105ed9061010090046001600160a01b031681565b348015610e3f57600080fd5b5061057f610e4e366004614c0a565b612726565b348015610e5f57600080fd5b50610513610e6e366004615388565b61284c565b610513610e81366004614a5a565b6128e1565b348015610e9257600080fd5b50610513610ea1366004614e87565b612af7565b348015610eb257600080fd5b506106a5600c5481565b348015610ec857600080fd5b506106a5612b1c565b348015610edd57600080fd5b50610513610eec3660046153f6565b612b29565b348015610efd57600080fd5b50610513610f0c366004614eb7565b612bb4565b348015610f1d57600080fd5b506106a57f276bb9fc5b276fb81676f47c8e6f3abbd79776961bb5ed6ed9c7f23a66ca079a81565b348015610f5157600080fd5b50610535610f60366004615432565b612c1b565b348015610f7157600080fd5b50610513610f80366004614c71565b612c49565b348015610f9157600080fd5b50610513610fa0366004614f85565b612c92565b348015610fb157600080fd5b506005546105359060ff1681565b348015610fcb57600080fd5b5061057f612cec565b348015610fe057600080fd5b50610513610fef366004614eb7565b612cf9565b34801561100057600080fd5b5061057f61100f366004615460565b612d6f565b34801561102057600080fd5b50600b546106a5565b34801561103557600080fd5b506105136110443660046154ad565b612e22565b337f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b03161461109257604051630d1ad4cd60e01b815260040160405180910390fd5b61ffff8616600090815260016020526040812080546110b090615508565b80601f01602080910402602001604051908101604052809291908181526020018280546110dc90615508565b80156111295780601f106110fe57610100808354040283529160200191611129565b820191906000526020600020905b81548152906001019060200180831161110c57829003601f168201915b50505050509050805186869050148015611144575060008151115b801561116c575080516020820120604051611162908890889061553c565b6040518091039020145b61118957604051631935e28160e11b815260040160405180910390fd5b6111ff8787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8a018190048102820181019092528881528a935091508890889081908401838280828437600092019190915250612f6092505050565b50505050505050565b60006112138261306a565b92915050565b611231600080516020615f34833981519152336123f6565b1580156112535750611251600080516020615ef4833981519152336123f6565b155b1561127c5733604051631d23858960e21b81526004016112739190614c23565b60405180910390fd5b61128682826130aa565b5050565b60606009805461129990615508565b80601f01602080910402602001604051908101604052809291908181526020018280546112c590615508565b80156113125780601f106112e757610100808354040283529160200191611312565b820191906000526020600020905b8154815290600101906020018083116112f557829003601f168201915b5050505050905090565b6113246131a3565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b0316906307e0db17906024015b600060405180830381600087803b15801561138a57600080fd5b505af115801561139e573d6000803e3d6000fd5b5050505050565b60006113b0826131fd565b506000908152600f60205260409020546001600160a01b031690565b816113d681613222565b6113de6132d2565b6113e88383613318565b505050565b6113f56131a3565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b0316906310ddb13790602401611370565b6013805461145290615508565b80601f016020809104026020016040519081016040528092919081815260200182805461147e90615508565b80156114cb5780601f106114a0576101008083540402835291602001916114cb565b820191906000526020600020905b8154815290600101906020018083116114ae57829003601f168201915b505050505081565b6114eb600080516020615f34833981519152336123f6565b15801561150d575061150b600080516020615ef4833981519152336123f6565b155b1561152d5733604051631d23858960e21b81526004016112739190614c23565b60118054911515600160a81b0260ff60a81b19909216919091179055565b6000611555612b1c565b61155d612533565b6115679190615562565b905090565b611584600080516020615f34833981519152336123f6565b6115a3573360405163cd40902d60e01b81526004016112739190614c23565b604051674c6f636b5552497360c01b60208201526028016040516020818303038152906040528051906020012082826040516020016115e392919061553c565b6040516020818303038152906040528051906020012003611615576011805460ff60b01b1916600160b01b1790555050565b60405163353f4c1760e21b815260040160405180910390fd5b826001600160a01b03811633146116485761164833613222565b6116506132d2565b61165b8484846133bb565b50505050565b60008060008686604051602001611679929190615575565b60408051601f198184030181529082905263040a7bb160e41b825291506001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67516906340a7bb10906116dd908b90309086908b908b90600401615597565b6040805180830381865afa1580156116f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061171d91906155eb565b92509250509550959350505050565b60008281526007602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916117a15750604080518082019091526006546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906117c0906001600160601b03168761560f565b6117ca919061563c565b91519350909150505b9250929050565b60405163c616801b60e01b815260040160405180910390fd5b61180b600080516020615f34833981519152336123f6565b15801561182d575061182b600080516020615ef4833981519152336123f6565b155b1561184d5733604051631d23858960e21b81526004016112739190614c23565b6040516e4d696e74696e67436f6d706c65746560881b6020820152602f0160405160208183030381529060405280519060200120828260405160200161189492919061553c565b6040516020818303038152906040528051906020012003611615576011805460ff60b81b1916600160b81b1790555050565b6118de600080516020615f34833981519152336123f6565b6118fd573360405163cd40902d60e01b81526004016112739190614c23565b611915600080516020615f34833981519152826133eb565b61192d600080516020615f3483398151915233613471565b50565b6001600160a01b03811633146119a05760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401611273565b6112868282613471565b60115461010090046001600160a01b03163303611aaa57806000815181106119d4576119d461565e565b6020026020010151601681905550600c54816000815181106119f8576119f861565e565b602002602001015181611a0d57611a0d615626565b06600101601781905550817f9f3dfe0efa24b207b42aad32b527da86eb44e0c0e09e3c22e3a342f444d257e182600081518110611a4c57611a4c61565e565b6020026020010151604051611a6391815260200190565b60405180910390a27f0ddd09f4c3f776cb47fcfde04c8b3edaeaac6d3887a88978091f2d7dcd8649f9601754604051611a9e91815260200190565b60405180910390a15050565b604051633746fbf960e21b815260040160405180910390fd5b61ffff831660009081526001602052604081208054829190611ae490615508565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1090615508565b8015611b5d5780601f10611b3257610100808354040283529160200191611b5d565b820191906000526020600020905b815481529060010190602001808311611b4057829003601f168201915b505050505090508383604051611b7492919061553c565b60405180910390208180519060200120149150509392505050565b611ba7600080516020615f34833981519152336123f6565b158015611bc95750611bc7600080516020615ef4833981519152336123f6565b155b15611be95733604051631d23858960e21b81526004016112739190614c23565b611bf16134d8565b565b611c0b600080516020615f34833981519152336123f6565b611c2a573360405163cd40902d60e01b81526004016112739190614c23565b601154600160b01b900460ff1615611c5557604051630c9e6a8760e41b815260040160405180910390fd5b6012611c628688836156cf565b506013611c708486836156cf565b5060146111ff8284836156cf565b611c96600080516020615f34833981519152336123f6565b158015611cb85750611cb6600080516020615ef4833981519152336123f6565b155b15611cd85733604051631d23858960e21b81526004016112739190614c23565b6011805460ff60c01b1916600160c01b1790556040517fe2a7169cedebe39671840370ae19ca4fc41be6191d4c77f174f189a4d8cd08c890600090a1565b826001600160a01b0381163314611d3057611d3033613222565b611d386132d2565b61165b848484613524565b611d4e335b8261353f565b611d6a5760405162461bcd60e51b815260040161127390615788565b61192d8161359d565b611d7b6131a3565b6040516342d65a8d60e01b81526001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67516906342d65a8d90611dcb908690869086906004016157d7565b600060405180830381600087803b158015611de557600080fd5b505af11580156111ff573d6000803e3d6000fd5b6111ff87878787878787613663565b611e20600080516020615f34833981519152336123f6565b158015611e425750611e40600080516020615ef4833981519152336123f6565b155b15611e625733604051631d23858960e21b81526004016112739190614c23565b60165415611e83576040516338df8b6b60e21b815260040160405180910390fd5b601160019054906101000a90046001600160a01b03166001600160a01b03166386040e8d6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611ed357600080fd5b505af115801561165b573d6000803e3d6000fd5b6000818152600d60205260408120546001600160a01b0316806112135760405162461bcd60e51b8152600401611273906157f5565b333014611f7a5760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608401611273565b611ff08686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f89018190048102820181019092528781528993509150879087908190840183828082843760009201919091525061374b92505050565b505050505050565b60006001600160a01b0382166120205760405162461bcd60e51b81526004016112739061581c565b506001600160a01b03166000908152600e602052604090205490565b6120446131a3565b611bf160006137de565b6001602052600090815260409020805461145290615508565b6012805461145290615508565b61208c600080516020615f34833981519152336123f6565b1580156120ae57506120ac600080516020615ef4833981519152336123f6565b155b156120ce5733604051631d23858960e21b81526004016112739190614c23565b6011601b9054906101000a900460ff1660ff16620151800262ffffff166011601c9054906101000a900463ffffffff160163ffffffff1642111561212557604051631564628f60e31b815260040160405180910390fd5b611bf161382e565b601154600160c81b900460ff161561215857604051633c3282e760e01b815260040160405180910390fd5b6daaeb6d7670e522a718067333cd4e3b156121e657604051633e9f1edf60e11b8152306004820152733cc6cdda760b79bafa08df41ecfa224f810dceb660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe90604401600060405180830381600087803b1580156121cd57600080fd5b505af11580156121e1573d6000803e3d6000fd5b505050505b6121f0888661386b565b612208600080516020615f348339815191528a6133eb565b612220600080516020615f34833981519152806138e8565b612238600080516020615ef4833981519152896133eb565b612250600080516020615ef4833981519152806138e8565b6000601154600160d01b900460ff1660018111156122705761227061583f565b1461228e5760405163a437db2f60e01b815260040160405180910390fd5b60005b86811015612301576001601860008a8a858181106122b1576122b161565e565b90506020028101906122c39190615855565b6122d1906020810190614eb7565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055600101612291565b506001600160a01b03841661231f5761231a89846130aa565b612329565b61232984846130aa565b6011805463ffffffff60a81b191690556123438280615875565b6012916123519190836156cf565b5061235f6020830183615875565b60149161236d9190836156cf565b5061237b6040830183615875565b6013916123899190836156cf565b5060118054600160c81b61010066ff00000000000160a81b0319909116336101000260ff60d81b191617600160d81b60ff949094169390930292909217600162ffff0160c81b0316600160e01b4263ffffffff160260ff60c81b1916179190911790555050505050505050565b60009182526008602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600a805461129990615508565b61ffff811660009081526001602052604081208054606092919061245390615508565b80601f016020809104026020016040519081016040528092919081815260200182805461247f90615508565b80156124cc5780601f106124a1576101008083540402835291602001916124cc565b820191906000526020600020905b8154815290600101906020018083116124af57829003601f168201915b5050505050905080516000036124f55760405163039aee5360e01b815260040160405180910390fd5b6125106000601483516125089190615562565b839190613933565b9392505050565b8161252181613222565b6125296132d2565b6113e88383613a40565b6000600b54600c546115679190615562565b61254d6131a3565b818130604051602001612562939291906158bb565b60408051601f1981840301815291815261ffff851660009081526001602052209061258d90826158e1565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce8383836040516125c1939291906157d7565b60405180910390a1505050565b6125e6600080516020615f34833981519152336123f6565b1580156126085750612606600080516020615ef4833981519152336123f6565b155b156126285733604051631d23858960e21b81526004016112739190614c23565b611bf16000600655565b61264a600080516020615f34833981519152336123f6565b612669573360405163cd40902d60e01b81526004016112739190614c23565b60158190556040518181527fa85403e90dc30bde576fc4c13d55fb52ccc4565eb4366c588e74824df81a5ae1906020015b60405180910390a150565b836001600160a01b03811633146126bf576126bf33613222565b6126c76132d2565b61139e85858585613a4b565b6126db6131a3565b600380546001600160a01b0319166001600160a01b0383161790556040517f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b9061269a908390614c23565b6060612731826131fd565b601154600160c01b900460ff166127945760006012805461275190615508565b90501161276d5760405180602001604052806000815250611213565b601260405160200161277f9190615a0d565b60405160208183030381529060405292915050565b601154600160a81b900460ff1615612802576000601380546127b590615508565b9050116127d15760405180602001604052806000815250611213565b60136127f1600c546017548501816127eb576127eb615626565b06613a7d565b60405160200161277f929190615a19565b60006014805461281190615508565b90501161282d5760405180602001604052806000815250611213565b60146127f1600c546017548501816127eb576127eb615626565b919050565b6128546131a3565b6040516332fb62e760e21b81526001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675169063cbed8b9c906128a89088908890889088908890600401615a4e565b600060405180830381600087803b1580156128c257600080fd5b505af11580156128d6573d6000803e3d6000fd5b505050505050505050565b61ffff86166000908152600460205260408082209051612904908890889061553c565b90815260408051602092819003830190206001600160401b038716600090815292529020549050806129845760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608401611273565b80838360405161299592919061553c565b6040518091039020146129f45760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608401611273565b61ffff87166000908152600460205260408082209051612a17908990899061553c565b90815260408051602092819003830181206001600160401b038916600090815290845282902093909355601f88018290048202830182019052868252612aaf918991899089908190840183828082843760009201919091525050604080516020601f8a018190048102820181019092528881528a93509150889088908190840183828082843760009201919091525061374b92505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051612ae6959493929190615a87565b60405180910390a150505050505050565b600082815260086020526040902060010154612b1281613b0f565b6113e88383613471565b600061156761dead611ff8565b612b316131a3565b80600003612b525760405163e4ac3b3f60e01b815260040160405180910390fd5b61ffff83811660008181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac0906060016125c1565b612bcc600080516020615ef4833981519152336123f6565b612beb5733604051633f4a6e3d60e21b81526004016112739190614c23565b612c03600080516020615ef4833981519152826133eb565b61192d600080516020615ef483398151915233613471565b6001600160a01b03918216600090815260106020908152604080832093909416825291909152205460ff1690565b612c516131a3565b6005805460ff19168215159081179091556040519081527f1584ad594a70cbe1e6515592e1272a987d922b097ead875069cebe8b40c004a49060200161269a565b612c9a6131a3565b61ffff83166000908152600160205260409020612cb88284836156cf565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab8383836040516125c1939291906157d7565b6014805461145290615508565b612d016131a3565b6001600160a01b038116612d665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611273565b61192d816137de565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b03169063f5ecbdbc90608401600060405180830381865afa158015612def573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612e179190810190615b07565b90505b949350505050565b6001600160a01b0384161580612e4257506001600160a01b03841661dead145b15612e6057604051634e46966960e11b815260040160405180910390fd5b601154600160b81b900460ff1615612e8b5760405163f2f76b4560e01b815260040160405180910390fd5b3360009081526018602052604090205460ff16612ebb5760405163e6c4247b60e01b815260040160405180910390fd5b6000601154600160d01b900460ff166001811115612edb57612edb61583f565b14612ef95760405163a437db2f60e01b815260040160405180910390fd5b6000612f058584613b19565b9050846001600160a01b0316846001600160a01b03167fb5bfc190364a05627bb8cf9d1a03c8e456dbb89d9be707c0e6549e181314650e88338686604051612f509493929190615b3b565b60405180910390a3505050505050565b600080612fc35a60966366ad5c8a60e01b89898989604051602401612f889493929190615ba5565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915230929190613c29565b9150915081611ff0578280519060200120600460008861ffff1661ffff16815260200190815260200160002086604051612ffd9190615be3565b9081526040805191829003602090810183206001600160401b0389166000908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c9061305a9088908890889088908790615bf5565b60405180910390a1505050505050565b60006001600160e01b031982166380ac58cd60e01b148061309b57506001600160e01b03198216635b5e139f60e01b145b80611213575061121382613cb3565b6127106001600160601b03821611156131185760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401611273565b6001600160a01b03821661316a5760405162461bcd60e51b815260206004820152601960248201527822a921991c9c189d1034b73b30b634b2103932b1b2b4bb32b960391b6044820152606401611273565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600655565b6000546001600160a01b03163314611bf15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611273565b61320681613cd8565b61192d5760405162461bcd60e51b8152600401611273906157f5565b6daaeb6d7670e522a718067333cd4e3b1561192d57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561328f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132b39190615c47565b61192d5780604051633b79c77360e21b81526004016112739190614c23565b60115460ff1615611bf15760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401611273565b600061332382611ee7565b9050806001600160a01b0316836001600160a01b0316036133795760405162461bcd60e51b815260206004820152601060248201526f20b8383937bb32903a379037bbb732b960811b6044820152606401611273565b336001600160a01b038216148061339557506133958133612c1b565b6133b15760405162461bcd60e51b815260040161127390615788565b6113e88383613cf5565b6133c433611d48565b6133e05760405162461bcd60e51b815260040161127390615788565b6113e8838383613d63565b6133f582826123f6565b6112865760008281526008602090815260408083206001600160a01b03851684529091529020805460ff1916600117905561342d3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b61347b82826123f6565b156112865760008281526008602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6134e0613e86565b6011805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405161351a9190614c23565b60405180910390a1565b6113e8838383604051806020016040528060008152506126a5565b60008061354b83611ee7565b9050806001600160a01b0316846001600160a01b0316148061357257506135728185612c1b565b80612e1a5750836001600160a01b031661358b846113a5565b6001600160a01b031614949350505050565b60006135a882611ee7565b90506135b8816000846001613ecf565b6135c182611ee7565b6000838152600f6020908152604080832080546001600160a01b03199081169091556001600160a01b038516808552600e84528285208054600019019055878552600d909352818420805461dead908316811782557ff77e91909e61d18f67b875b2bfcae1f683a8d555e55382e3a6b082e2c59ea57a8054600101905581549092169055905193945085939092600080516020615f1483398151915291a45050565b61366f87878787613f57565b60008585604051602001613684929190615575565b60408051601f1981840301815291905260055490915060ff16156136b5576136b0876001846000613fc2565b6136d5565b8151156136d557604051638fadcadb60e01b815260040160405180910390fd5b6136e3878286868634614043565b856040516136f19190615be3565b6040518091039020886001600160a01b03168861ffff167f39a4c66499bcf4b56d79f0dde8ed7a9d4925a0df55825206b2b8531e202be0d08860405161373991815260200190565b60405180910390a45050505050505050565b600080828060200190518101906137629190615c64565b60148201519193509150613777878284614195565b806001600160a01b03168660405161378f9190615be3565b60405180910390208861ffff167f776434b505c7beb3db155c58df6c88985bf7c31730767e43ec773005059fed7a856040516137cd91815260200190565b60405180910390a450505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6138366132d2565b6011805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861350d3390565b60008080808061387e6020870187615875565b81019061388b9190615caa565b945094509450945094506138a18383878a6142a5565b60158190558360018111156138b8576138b861583f565b6011805460ff60d01b1916600160d01b8360018111156138da576138da61583f565b021790555050505050505050565b600082815260086020526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b60608161394181601f615d28565b10156139805760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401611273565b61398a8284615d28565b845110156139ce5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401611273565b6060821580156139ed5760405191506000825260208201604052613a37565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015613a26578051835260209283019201613a0e565b5050858452601f01601f1916604052505b50949350505050565b6112863383836142d2565b613a55338361353f565b613a715760405162461bcd60e51b815260040161127390615788565b61165b84848484614394565b60606000613a8a836143c7565b60010190506000816001600160401b03811115613aa957613aa9614d10565b6040519080825280601f01601f191660200182016040528015613ad3576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084613add57509392505050565b61192d813361449f565b6060600b54821115613b3e57604051637cd4b50160e01b815260040160405180910390fd5b816001600160401b03811115613b5657613b56614d10565b604051908082528060200260200182016040528015613b7f578160200160208202803683370190505b5090506000600b54600c54613b949190615562565b905060005b83811015613be357613bb485613baf8385615d28565b6144f8565b613bbe8183615d28565b838281518110613bd057613bd061565e565b6020908102919091010152600101613b99565b5082600b54613bf29190615562565b600b556001600160a01b0384166000908152600e602052604081208054859290613c1d908490615d28565b90915550505092915050565b6000606060008060008661ffff166001600160401b03811115613c4e57613c4e614d10565b6040519080825280601f01601f191660200182016040528015613c78576020820181803683370190505b50905060008087516020890160008d8df191503d925086831115613c9a578692505b828152826000602083013e909890975095505050505050565b60006001600160e01b03198216637965db0b60e01b148061121357506112138261454d565b6000908152600d60205260409020546001600160a01b0316151590565b6000818152600f6020526040902080546001600160a01b0319166001600160a01b0384169081179091558190613d2a82611ee7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b826001600160a01b0316613d7682611ee7565b6001600160a01b031614613d9c5760405162461bcd60e51b81526004016112739061581c565b6001600160a01b038216613dc25760405162461bcd60e51b815260040161127390615d3b565b613dcf8383836001613ecf565b826001600160a01b0316613de282611ee7565b6001600160a01b031614613e085760405162461bcd60e51b81526004016112739061581c565b6000818152600f6020908152604080832080546001600160a01b03199081169091556001600160a01b03878116808652600e8552838620805460001901905590871680865283862080546001019055868652600d9094528285208054909216841790915590518493600080516020615f1483398151915291a4505050565b60115460ff16611bf15760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401611273565b600181111561165b576001600160a01b03841615613f15576001600160a01b0384166000908152600e602052604081208054839290613f0f908490615562565b90915550505b6001600160a01b0383161561165b576001600160a01b0383166000908152600e602052604081208054839290613f4c908490615d28565b909155505050505050565b613f6033611d48565b613f7d5760405163214a0ec160e01b815260040160405180910390fd5b836001600160a01b0316613f9082611ee7565b6001600160a01b031614613fb75760405163368d630b60e11b815260040160405180910390fd5b61165b843083613d63565b6000613fcd83614572565b61ffff808716600090815260026020908152604080832093891683529290529081205491925090613fff908490615d28565b90508060000361402257604051631f3ec9d560e11b815260040160405180910390fd5b80821015611ff05760405163785fb05760e11b815260040160405180910390fd5b61ffff86166000908152600160205260408120805461406190615508565b80601f016020809104026020016040519081016040528092919081815260200182805461408d90615508565b80156140da5780601f106140af576101008083540402835291602001916140da565b820191906000526020600020905b8154815290600101906020018083116140bd57829003601f168201915b50505050509050805160000361410357604051630b86d4eb60e31b815260040160405180910390fd5b60405162c5803160e81b81526001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675169063c580310090849061415a908b9086908c908c908c908c90600401615d5e565b6000604051808303818588803b15801561417357600080fd5b505af1158015614187573d6000803e3d6000fd5b505050505050505050505050565b61419e81613cd8565b80156141ba5750306141af82611ee7565b6001600160a01b0316145b6141d75760405163c1ab6dc160e01b815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000011561424a5761420681613cd8565b801561422257503061421782611ee7565b6001600160a01b0316145b61423f5760405163c1ab6dc160e01b815260040160405180910390fd5b6113e8308383613d63565b61425381613cd8565b801561427057503061426482611ee7565b6001600160a01b031614155b1561428e5760405163c1ab6dc160e01b815260040160405180910390fd5b61429781613cd8565b61423f576113e8828261459f565b60096142b185826158e1565b50600a6142be84826158e1565b50600c829055600b82905561165b816137de565b816001600160a01b0316836001600160a01b0316036143275760405162461bcd60e51b815260206004820152601160248201527020b8383937bb32903a379031b0b63632b960791b6044820152606401611273565b6001600160a01b03838116600081815260106020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61439f848484613d63565b6143ab848484846145b9565b61165b5760405162461bcd60e51b815260040161127390615dc5565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106144065772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310614432576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061445057662386f26fc10000830492506010015b6305f5e1008310614468576305f5e100830492506008015b612710831061447c57612710830492506004015b6064831061448e576064830492506002015b600a83106112135760010192915050565b6144a982826123f6565b611286576144b681614702565b6144c1836020614714565b6040516020016144d2929190615deb565b60408051601f198184030181529082905262461bcd60e51b825261127391600401614bdc565b614506600083836001613ecf565b6000818152600d602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020615f14833981519152908290a45050565b60006001600160e01b0319821663152a902d60e11b14806112135750611213826148af565b60006022825110156145975760405163cef80ea360e01b815260040160405180910390fd5b506022015190565b6112868282604051806020016040528060008152506148e4565b60006001600160a01b0384163b156146fa57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906145fd903390899088908890600401615e5a565b6020604051808303816000875af1925050508015614638575060408051601f3d908101601f1916820190925261463591810190615e97565b60015b6146e0573d808015614666576040519150601f19603f3d011682016040523d82523d6000602084013e61466b565b606091505b5080516000036146d85760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401611273565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612e1a565b506001612e1a565b60606112136001600160a01b03831660145b6060600061472383600261560f565b61472e906002615d28565b6001600160401b0381111561474557614745614d10565b6040519080825280601f01601f19166020018201604052801561476f576020820181803683370190505b509050600360fc1b8160008151811061478a5761478a61565e565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106147b9576147b961565e565b60200101906001600160f81b031916908160001a90535060006147dd84600261560f565b6147e8906001615d28565b90505b6001811115614860576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061481c5761481c61565e565b1a60f81b8282815181106148325761483261565e565b60200101906001600160f81b031916908160001a90535060049490941c9361485981615eb4565b90506147eb565b5083156125105760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401611273565b60006001600160e01b03198216637bb0080b60e01b148061121357506301ffc9a760e01b6001600160e01b0319831614611213565b6148ee8383614917565b6148fb60008484846145b9565b6113e85760405162461bcd60e51b815260040161127390615dc5565b6001600160a01b03821661493d5760405162461bcd60e51b815260040161127390615d3b565b61494681613cd8565b156149635760405162461bcd60e51b815260040161127390615ecb565b614971600083836001613ecf565b61497a81613cd8565b156149975760405162461bcd60e51b815260040161127390615ecb565b6001600160a01b0382166000818152600e6020908152604080832080546001019055848352600d90915280822080546001600160a01b031916841790555183929190600080516020615f14833981519152908290a45050565b803561ffff8116811461284757600080fd5b60008083601f840112614a1457600080fd5b5081356001600160401b03811115614a2b57600080fd5b6020830191508360208285010111156117d357600080fd5b80356001600160401b038116811461284757600080fd5b60008060008060008060808789031215614a7357600080fd5b614a7c876149f0565b955060208701356001600160401b0380821115614a9857600080fd5b614aa48a838b01614a02565b9097509550859150614ab860408a01614a43565b94506060890135915080821115614ace57600080fd5b50614adb89828a01614a02565b979a9699509497509295939492505050565b6001600160e01b03198116811461192d57600080fd5b600060208284031215614b1557600080fd5b813561251081614aed565b6001600160a01b038116811461192d57600080fd5b803561284781614b20565b80356001600160601b038116811461284757600080fd5b60008060408385031215614b6a57600080fd5b8235614b7581614b20565b9150614b8360208401614b40565b90509250929050565b60005b83811015614ba7578181015183820152602001614b8f565b50506000910152565b60008151808452614bc8816020860160208601614b8c565b601f01601f19169290920160200192915050565b6020815260006125106020830184614bb0565b600060208284031215614c0157600080fd5b612510826149f0565b600060208284031215614c1c57600080fd5b5035919050565b6001600160a01b0391909116815260200190565b60008060408385031215614c4a57600080fd5b8235614c5581614b20565b946020939093013593505050565b801515811461192d57600080fd5b600060208284031215614c8357600080fd5b813561251081614c63565b60008060208385031215614ca157600080fd5b82356001600160401b03811115614cb757600080fd5b614cc385828601614a02565b90969095509350505050565b600080600060608486031215614ce457600080fd5b8335614cef81614b20565b92506020840135614cff81614b20565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715614d4e57614d4e614d10565b604052919050565b60006001600160401b03821115614d6f57614d6f614d10565b50601f01601f191660200190565b600082601f830112614d8e57600080fd5b8135614da1614d9c82614d56565b614d26565b818152846020838601011115614db657600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215614deb57600080fd5b614df4866149f0565b945060208601356001600160401b0380821115614e1057600080fd5b614e1c89838a01614d7d565b95506040880135945060608801359150614e3582614c63565b90925060808701359080821115614e4b57600080fd5b50614e5888828901614d7d565b9150509295509295909350565b60008060408385031215614e7857600080fd5b50508035926020909101359150565b60008060408385031215614e9a57600080fd5b823591506020830135614eac81614b20565b809150509250929050565b600060208284031215614ec957600080fd5b813561251081614b20565b60008060408385031215614ee757600080fd5b823591506020808401356001600160401b0380821115614f0657600080fd5b818601915086601f830112614f1a57600080fd5b813581811115614f2c57614f2c614d10565b8060051b9150614f3d848301614d26565b8181529183018401918481019089841115614f5757600080fd5b938501935b83851015614f7557843582529385019390850190614f5c565b8096505050505050509250929050565b600080600060408486031215614f9a57600080fd5b614fa3846149f0565b925060208401356001600160401b03811115614fbe57600080fd5b614fca86828701614a02565b9497909650939450505050565b60008060008060008060608789031215614ff057600080fd5b86356001600160401b038082111561500757600080fd5b6150138a838b01614a02565b9098509650602089013591508082111561502c57600080fd5b6150388a838b01614a02565b90965094506040890135915080821115614ace57600080fd5b600080600080600080600060e0888a03121561506c57600080fd5b873561507781614b20565b9650615085602089016149f0565b955060408801356001600160401b03808211156150a157600080fd5b6150ad8b838c01614d7d565b965060608a0135955060808a013591506150c682614b20565b90935060a0890135906150d882614b20565b90925060c089013590808211156150ee57600080fd5b506150fb8a828b01614d7d565b91505092959891949750929550565b60008060006060848603121561511f57600080fd5b615128846149f0565b925060208401356001600160401b0381111561514357600080fd5b61514f86828701614d7d565b92505061515e60408501614a43565b90509250925092565b60008083601f84011261517957600080fd5b5081356001600160401b0381111561519057600080fd5b6020830191508360208260051b85010111156117d357600080fd5b6000604082840312156151bd57600080fd5b50919050565b806060810183101561121357600080fd5b803560ff8116811461284757600080fd5b60008060008060008060008060006101008a8c03121561520457600080fd5b61520d8a614b35565b985061521b60208b01614b35565b975060408a01356001600160401b038082111561523757600080fd5b6152438d838e01615167565b909950975060608c013591508082111561525c57600080fd5b6152688d838e016151ab565b965061527660808d01614b35565b955061528460a08d01614b40565b945060c08c013591508082111561529a57600080fd5b506152a78c828d016151c3565b9250506152b660e08b016151d4565b90509295985092959850929598565b600080604083850312156152d857600080fd5b6152e1836149f0565b9150614b83602084016149f0565b6000806040838503121561530257600080fd5b823561530d81614b20565b91506020830135614eac81614c63565b6000806000806080858703121561533357600080fd5b843561533e81614b20565b9350602085013561534e81614b20565b92506040850135915060608501356001600160401b0381111561537057600080fd5b61537c87828801614d7d565b91505092959194509250565b6000806000806000608086880312156153a057600080fd5b6153a9866149f0565b94506153b7602087016149f0565b93506040860135925060608601356001600160401b038111156153d957600080fd5b6153e588828901614a02565b969995985093965092949392505050565b60008060006060848603121561540b57600080fd5b615414846149f0565b9250615422602085016149f0565b9150604084013590509250925092565b6000806040838503121561544557600080fd5b823561545081614b20565b91506020830135614eac81614b20565b6000806000806080858703121561547657600080fd5b61547f856149f0565b935061548d602086016149f0565b9250604085013561549d81614b20565b9396929550929360600135925050565b600080600080600060a086880312156154c557600080fd5b85356154d081614b20565b945060208601356154e081614b20565b935060408601356154f081614b20565b94979396509394606081013594506080013592915050565b600181811c9082168061551c57607f821691505b6020821081036151bd57634e487b7160e01b600052602260045260246000fd5b8183823760009101908152919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156112135761121361554c565b6040815260006155886040830185614bb0565b90508260208301529392505050565b61ffff861681526001600160a01b038516602082015260a0604082018190526000906155c590830186614bb0565b841515606084015282810360808401526155df8185614bb0565b98975050505050505050565b600080604083850312156155fe57600080fd5b505080516020909101519092909150565b80820281158282048414176112135761121361554c565b634e487b7160e01b600052601260045260246000fd5b60008261565957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b601f8211156113e857600081815260208120601f850160051c8101602086101561569b5750805b601f850160051c820191505b81811015611ff0578281556001016156a7565b600019600383901b1c191660019190911b1790565b6001600160401b038311156156e6576156e6614d10565b6156fa836156f48354615508565b83615674565b6000601f84116001811461572857600085156157165750838201355b61572086826156ba565b84555061139e565b600083815260209020601f19861690835b828110156157595786850135825560209485019460019092019101615739565b50868210156157765760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6020808252600c908201526b155b985d5d1a1bdc9a5cd95960a21b604082015260600190565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b61ffff84168152604060208201526000612e176040830184866157ae565b6020808252600d908201526c24b73b30b634b2103a37b5b2b760991b604082015260600190565b6020808252600990820152682737b716b7bbb732b960b91b604082015260600190565b634e487b7160e01b600052602160045260246000fd5b60008235603e1983360301811261586b57600080fd5b9190910192915050565b6000808335601e1984360301811261588c57600080fd5b8301803591506001600160401b038211156158a657600080fd5b6020019150368190038213156117d357600080fd5b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b81516001600160401b038111156158fa576158fa614d10565b61590e816159088454615508565b84615674565b602080601f83116001811461593d576000841561592b5750858301515b61593585826156ba565b865550611ff0565b600085815260208120601f198616915b8281101561596c5788860151825594840194600190910190840161594d565b508582101561598a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600081546159a781615508565b600182811680156159bf57600181146159d457615a03565b60ff1984168752821515830287019450615a03565b8560005260208060002060005b858110156159fa5781548a8201529084019082016159e1565b50505082870194505b5050505092915050565b6000612510828461599a565b6000615a25828561599a565b8351615a35818360208801614b8c565b64173539b7b760d91b9101908152600501949350505050565b600061ffff808816835280871660208401525084604083015260806060830152615a7c6080830184866157ae565b979650505050505050565b61ffff86168152608060208201526000615aa56080830186886157ae565b6001600160401b0394909416604083015250606001529392505050565b600082601f830112615ad357600080fd5b8151615ae1614d9c82614d56565b818152846020838601011115615af657600080fd5b612e1a826020830160208701614b8c565b600060208284031215615b1957600080fd5b81516001600160401b03811115615b2f57600080fd5b612e1a84828501615ac2565b6001600160a01b03858116825284166020808301919091526040820184905260806060830181905283519083018190526000918481019160a085019190845b81811015615b9657845184529382019392820192600101615b7a565b50919998505050505050505050565b61ffff85168152608060208201526000615bc26080830186614bb0565b6001600160401b03851660408401528281036060840152615a7c8185614bb0565b6000825161586b818460208701614b8c565b61ffff8616815260a060208201526000615c1260a0830187614bb0565b6001600160401b03861660408401528281036060840152615c338186614bb0565b905082810360808401526155df8185614bb0565b600060208284031215615c5957600080fd5b815161251081614c63565b60008060408385031215615c7757600080fd5b82516001600160401b03811115615c8d57600080fd5b615c9985828601615ac2565b925050602083015190509250929050565b600080600080600060a08688031215615cc257600080fd5b853594506020860135935060408601356001600160401b0380821115615ce757600080fd5b615cf389838a01614d7d565b94506060880135915080821115615d0957600080fd5b50615d1688828901614d7d565b95989497509295608001359392505050565b808201808211156112135761121361554c565b60208082526009908201526830206164647265737360b81b604082015260600190565b61ffff8716815260c060208201526000615d7b60c0830188614bb0565b8281036040840152615d8d8188614bb0565b6001600160a01b0387811660608601528616608085015283810360a08501529050615db88185614bb0565b9998505050505050505050565b6020808252600c908201526b2737b716b932b1b2b4bb32b960a11b604082015260600190565b76020b1b1b2b9b9a1b7b73a3937b61d1030b1b1b7bab73a1604d1b815260008351615e1d816017850160208801614b8c565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351615e4e816028840160208801614b8c565b01602801949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615e8d90830184614bb0565b9695505050505050565b600060208284031215615ea957600080fd5b815161251081614aed565b600081615ec357615ec361554c565b506000190190565b6020808252600e908201526d105b1c9958591e481b5a5b9d195960921b60408201526060019056fe7a543e745b6e00adac27dbc211206942183c75536c579dac6cca74ecac7454b1ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef4ff52032f36e32ac782042a01802e20394d4255c84a3c046490be98ab632691ba26469706673582212200898893c156b813491439538cc90d0e8329030bbc7e7be42c6ea123c286996de64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000888888888888660f286a7c06cfa3407d09af44b200000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000001
-----Decoded View---------------
Arg [0] : epsRegister_ (address): 0x888888888888660F286A7C06cfa3407d09af44B2
Arg [1] : lzEndpoint_ (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675
Arg [2] : layerZeroBase_ (bool): True
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000888888888888660f286a7c06cfa3407d09af44b2
Arg [1] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.