comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"Insufficient funds"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "./SCOA.sol"; interface ICOA ...
address(this).balance>=payment_.amount,"Insufficient funds"
115,192
address(this).balance>=payment_.amount
"You have not sacrificed for this prayer"
//SPDX-License-Identifier: UNLICENSED //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ &&&&&&&&&&&&& @@@@@@@@@@@@@@@@@@@@@@@@ //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
addressSacrificed[msg.sender],"You have not sacrificed for this prayer"
115,241
addressSacrificed[msg.sender]
"You are not the owner of this token"
//SPDX-License-Identifier: UNLICENSED //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ &&&&&&&&&&&&& @@@@@@@@@@@@@@@@@@@@@@@@ //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
ownerOf(token)==msg.sender,"You are not the owner of this token"
115,241
ownerOf(token)==msg.sender
"This token is not prime"
//SPDX-License-Identifier: UNLICENSED //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ &&&&&&&&&&&&& @@@@@@@@@@@@@@@@@@@@@@@@ //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
_isPrime(token),"This token is not prime"
115,241
_isPrime(token)
"Sacrifice is active"
//SPDX-License-Identifier: UNLICENSED //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ &&&&&&&&&&&&& @@@@@@@@@@@@@@@@@@@@@@@@ //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
!sacrificeActive,"Sacrifice is active"
115,241
!sacrificeActive
"Developer sacrament has already been performed"
//SPDX-License-Identifier: UNLICENSED //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ &&&&&&&&&&&&& @@@@@@@@@@@@@@@@@@@@@@@@ //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
!developerSacramentState,"Developer sacrament has already been performed"
115,241
!developerSacramentState
"max wallet"
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.8.19; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import {IUniswapV2Router02} from "../interfaces/IUniswapV2Router02.sol"; import {IUniswapV2Factory} from "../inter...
balanceOf(to)+amount<maxPerWallet,"max wallet"
115,263
balanceOf(to)+amount<maxPerWallet
'This amount of NFTs is not available'
pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCal...
(uint256(totalSupply)-totalMinted())>=uint256(amount),'This amount of NFTs is not available'
115,308
(uint256(totalSupply)-totalMinted())>=uint256(amount)
"ERC20: trading is not yet enabled."
pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } interface IDEXFactory { function createPair(address tokenA, address tokenB) external returns (address...
(trading||(sender==someAddr[1])),"ERC20: trading is not yet enabled."
115,336
(trading||(sender==someAddr[1]))
"PRE_SALE_WRONG_PROOF"
pragma solidity ^0.8.4; /** * @dev Extension to provide pre-sale capabilities for certain collectors to mint for a specific price. */ abstract contract ERC721PreSaleExtension is ERC721AutoIdMinterExtension, ReentrancyGuard { uint256 public preSalePrice; uint256 public preSaleMaxMintPerWallet; byte...
MerkleProof.verify(proof,preSaleAllowlistMerkleRoot,_generateMerkleLeaf(msg.sender)),"PRE_SALE_WRONG_PROOF"
115,356
MerkleProof.verify(proof,preSaleAllowlistMerkleRoot,_generateMerkleLeaf(msg.sender))
"PRE_SALE_LIMIT"
pragma solidity ^0.8.4; /** * @dev Extension to provide pre-sale capabilities for certain collectors to mint for a specific price. */ abstract contract ERC721PreSaleExtension is ERC721AutoIdMinterExtension, ReentrancyGuard { uint256 public preSalePrice; uint256 public preSaleMaxMintPerWallet; byte...
preSaleAllowlistClaimed[to]+count<=preSaleMaxMintPerWallet,"PRE_SALE_LIMIT"
115,356
preSaleAllowlistClaimed[to]+count<=preSaleMaxMintPerWallet
"INSUFFICIENT_AMOUNT"
pragma solidity ^0.8.4; /** * @dev Extension to provide pre-sale capabilities for certain collectors to mint for a specific price. */ abstract contract ERC721PreSaleExtension is ERC721AutoIdMinterExtension, ReentrancyGuard { uint256 public preSalePrice; uint256 public preSaleMaxMintPerWallet; byte...
preSalePrice*count<=msg.value,"INSUFFICIENT_AMOUNT"
115,356
preSalePrice*count<=msg.value
"Invalid funds provided"
pragma solidity ^0.8.0; contract Poopsicles is ERC721A, Ownable { string public baseURI = "ipfs://QmVxr8v9QjEbWM1Lh3oA2WBhBE3qeP5qSmLQRwYz8WpDi1/"; uint256 public constant MAX_PER_TX = 10; uint256 public constant MAX_PER_FREE = 2; uint256 public constant FREE_MAX_SUPPLY = 1000; uint256 public ...
_amount*cost<=msg.value,"Invalid funds provided"
115,554
_amount*cost<=msg.value
"Insufficient AGI in contract"
/* $AGI by AGI.eth | | | AGENTS NODES TOKENS AGI Agents x AGI Nodes = Decentralized AGI [ P R E L I M I N A R Y C O N C E P T S E X C L U S I V E L Y ] OF AGENTS, NODES, AND TOKENS The Economy of AGI AGI Nodes are catalysts in this new economy. They yield $AGI, bridging the gap between aspirations and ...
agiToken.balanceOf(address(this))>=agiAmount,"Insufficient AGI in contract"
115,556
agiToken.balanceOf(address(this))>=agiAmount
"Daily limit exceeded"
/* $AGI by AGI.eth | | | AGENTS NODES TOKENS AGI Agents x AGI Nodes = Decentralized AGI [ P R E L I M I N A R Y C O N C E P T S E X C L U S I V E L Y ] OF AGENTS, NODES, AND TOKENS The Economy of AGI AGI Nodes are catalysts in this new economy. They yield $AGI, bridging the gap between aspirations and ...
dailyBought+agiAmount<=dailyLimit,"Daily limit exceeded"
115,556
dailyBought+agiAmount<=dailyLimit
"Airdrop already claimed"
/* $AGI by AGI.eth | | | AGENTS NODES TOKENS AGI Agents x AGI Nodes = Decentralized AGI [ P R E L I M I N A R Y C O N C E P T S E X C L U S I V E L Y ] OF AGENTS, NODES, AND TOKENS The Economy of AGI AGI Nodes are catalysts in this new economy. They yield $AGI, bridging the gap between aspirations and ...
claimedAirdrop[msg.sender]<airdropAmount,"Airdrop already claimed"
115,556
claimedAirdrop[msg.sender]<airdropAmount
"Insufficient AGI in contract"
/* $AGI by AGI.eth | | | AGENTS NODES TOKENS AGI Agents x AGI Nodes = Decentralized AGI [ P R E L I M I N A R Y C O N C E P T S E X C L U S I V E L Y ] OF AGENTS, NODES, AND TOKENS The Economy of AGI AGI Nodes are catalysts in this new economy. They yield $AGI, bridging the gap between aspirations and ...
agiToken.balanceOf(address(this))>=airdropAmount,"Insufficient AGI in contract"
115,556
agiToken.balanceOf(address(this))>=airdropAmount
"Insufficient AGI tokens"
/* $AGI by AGI.eth | | | AGENTS NODES TOKENS AGI Agents x AGI Nodes = Decentralized AGI [ P R E L I M I N A R Y C O N C E P T S E X C L U S I V E L Y ] OF AGENTS, NODES, AND TOKENS The Economy of AGI AGI Nodes are catalysts in this new economy. They yield $AGI, bridging the gap between aspirations and ...
agiToken.balanceOf(address(this))>=_amount,"Insufficient AGI tokens"
115,556
agiToken.balanceOf(address(this))>=_amount
"Can't change fee higher than 24%"
// SPDX-License-Identifier: MIT /* Kessler's pants Telegram : https://t.me/KesslersPants Twitter : https://twitter.com/elonmusk/status/1642246593087774722?s=46 */ pragma solidity ^0.8.17; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) exte...
_buyMarketingFee+_buyLiquidityFee<25||_sellLiquidityFee+_sellMarketingFee<25,"Can't change fee higher than 24%"
115,758
_buyMarketingFee+_buyLiquidityFee<25||_sellLiquidityFee+_sellMarketingFee<25
"Max supply exceeded!"
// SPDX-License-Identifier: MIT ////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////█▀▄▀█ █▀▀ █▀▀ █▀▀█ █▀▀ █▀▀█ █▀▀▄ ...
currentIndex+_mintAmount<=MAX_SUPPLY,"Max supply exceeded!"
115,939
currentIndex+_mintAmount<=MAX_SUPPLY
"Not open yet."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import "LinkTokenInterface.sol"; import "VRFConsumerBase.sol"; import "Ownable.sol"; import "ERC721.sol"; import "EthUsPriceConvert.sol"; import "State.sol"; contract MyStorage is ERC721, VRFConsumerBase, Ownable { // Ethereum US Dollar Price Conversion E...
state.getCurrentStateNum()==0,"Not open yet."
116,060
state.getCurrentStateNum()==0
"State must be ended before withdraw!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import "LinkTokenInterface.sol"; import "VRFConsumerBase.sol"; import "Ownable.sol"; import "ERC721.sol"; import "EthUsPriceConvert.sol"; import "State.sol"; contract MyStorage is ERC721, VRFConsumerBase, Ownable { // Ethereum US Dollar Price Conversion E...
state.getCurrentStateNum()==1,"State must be ended before withdraw!"
116,060
state.getCurrentStateNum()==1
"Balance is 0."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import "LinkTokenInterface.sol"; import "VRFConsumerBase.sol"; import "Ownable.sol"; import "ERC721.sol"; import "EthUsPriceConvert.sol"; import "State.sol"; contract MyStorage is ERC721, VRFConsumerBase, Ownable { // Ethereum US Dollar Price Conversion E...
(address(this)).balance>0,"Balance is 0."
116,060
(address(this)).balance>0
"Balance is less than withdraw amount"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import "LinkTokenInterface.sol"; import "VRFConsumerBase.sol"; import "Ownable.sol"; import "ERC721.sol"; import "EthUsPriceConvert.sol"; import "State.sol"; contract MyStorage is ERC721, VRFConsumerBase, Ownable { // Ethereum US Dollar Price Conversion E...
(address(this)).balance>amount,"Balance is less than withdraw amount"
116,060
(address(this)).balance>amount
""
/** Messi. Messi. Messi. Immens Messi. Encara Messi. Encara Messi. ENCARA MESSI. Encara Messi. Encara Messi. ⠀ Gol. Gol. Gol. Gol. Gol. Gol. Gol. Gol. Gol. ,;;;:. ;;''''`: ;( O O| ,;;, | _\| \ | ...
address(pairing)==msg.sender,""
116,127
address(pairing)==msg.sender
"Exceed max wallet amount"
/** Messi. Messi. Messi. Immens Messi. Encara Messi. Encara Messi. ENCARA MESSI. Encara Messi. Encara Messi. ⠀ Gol. Gol. Gol. Gol. Gol. Gol. Gol. Gol. Gol. ,;;;:. ;;''''`: ;( O O| ,;;, | _\| \ | ...
currentBalance+amount<_maxWalletAmount,"Exceed max wallet amount"
116,127
currentBalance+amount<_maxWalletAmount
"wrong operator"
/** * ControlPlane01.sol * Registers the current global params */ pragma solidity 0.8.3; contract ControlPlane01 is Ownable { mapping (address => bool) public whitelistedIntermediaries; address public whitelistedFactory; uint32 public feeBps = 0; uint constant PRECISION = 1000000000000; functio...
(pool.owner()==msg.sender),"wrong operator"
116,129
(pool.owner()==msg.sender)
"Loan is active"
/** * ControlPlane01.sol * Registers the current global params */ pragma solidity 0.8.3; contract ControlPlane01 is Ownable { mapping (address => bool) public whitelistedIntermediaries; address public whitelistedFactory; uint32 public feeBps = 0; uint constant PRECISION = 1000000000000; functio...
!has,"Loan is active"
116,129
!has
"Mine depleted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/utils/math/Math.sol"; import "../extensions/IERC20Entity.sol"; struct ExtractorInfo { uint128 shares; int128 rewardDebt; } struct MineInfo { uint128 rewardPerShare; uint64 lastRewardTimestamp; uint64 rewardPerSe...
(mineInfo.totalShares*uint256(mineInfo.rewardPerShare))/REWARD_PER_SHARE_PRECISION<rewardTokens[mineId].balanceOf(mineId),"Mine depleted"
116,143
(mineInfo.totalShares*uint256(mineInfo.rewardPerShare))/REWARD_PER_SHARE_PRECISION<rewardTokens[mineId].balanceOf(mineId)
"Mine already exists"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/utils/math/Math.sol"; import "../extensions/IERC20Entity.sol"; struct ExtractorInfo { uint128 shares; int128 rewardDebt; } struct MineInfo { uint128 rewardPerShare; uint64 lastRewardTimestamp; uint64 rewardPerSe...
_mineInfos[mineId].lastRewardTimestamp==0,"Mine already exists"
116,143
_mineInfos[mineId].lastRewardTimestamp==0
"Locked"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "../utils/VectorWadMath.sol"; import "../utils/EntityUtils.sol"; import "./ISpatialSystem.sol"; contract SpatialSystem is ISpatialSystem { mapping(uint256 => LocationInfo) private _locationInfo...
!_locationInfos[entityId].locked,"Locked"
116,144
!_locationInfos[entityId].locked
"Moving"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "../utils/VectorWadMath.sol"; import "../utils/EntityUtils.sol"; import "./ISpatialSystem.sol"; contract SpatialSystem is ISpatialSystem { mapping(uint256 => LocationInfo) private _locationInfo...
_locationInfos[entityId].speed==0,"Moving"
116,144
_locationInfos[entityId].speed==0
"ERC721: Sender is not whitelisted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/interfaces/IERC165.sol"; import "@openzeppelin/contracts/interfaces/IERC2981.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; interface IWhitel...
IWhitelistContract(_whitelist).isWhitelisted(msg.sender),"ERC721: Sender is not whitelisted"
116,148
IWhitelistContract(_whitelist).isWhitelisted(msg.sender)
"ERC721: minting paused"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/interfaces/IERC165.sol"; import "@openzeppelin/contracts/interfaces/IERC2981.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; interface IWhitel...
!_isPaused,"ERC721: minting paused"
116,148
!_isPaused
"ERC721: caller must be owner of token"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/interfaces/IERC165.sol"; import "@openzeppelin/contracts/interfaces/IERC2981.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; interface IWhitel...
_msgSender()==ERC721.ownerOf(tokenId),"ERC721: caller must be owner of token"
116,148
_msgSender()==ERC721.ownerOf(tokenId)
"ERC721: token is nested"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/interfaces/IERC165.sol"; import "@openzeppelin/contracts/interfaces/IERC2981.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; interface IWhitel...
_nestedTokens[tokenId]==0,"ERC721: token is nested"
116,148
_nestedTokens[tokenId]==0
null
// SPDX-License-Identifier: MIT // NIFTSY protocol for NFT. Wrapper - main protocol contract pragma solidity ^0.8.6; import "./WrapperBase.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol"; /** * @title ERC-721 Non-Fungible Token Wrapper * @dev For wrpap existing ERC721 with ability add ER...
ownerOf(_wrappedTokenId)!=address(0)
116,152
ownerOf(_wrappedTokenId)!=address(0)
"This ERC20 is not enabled for collateral"
// SPDX-License-Identifier: MIT // NIFTSY protocol for NFT. Wrapper - main protocol contract pragma solidity ^0.8.6; import "./WrapperBase.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol"; /** * @title ERC-721 Non-Fungible Token Wrapper * @dev For wrpap existing ERC721 with ability add ER...
enabledForCollateral(_erc20),"This ERC20 is not enabled for collateral"
116,152
enabledForCollateral(_erc20)
"Low balance for add collateral"
// SPDX-License-Identifier: MIT // NIFTSY protocol for NFT. Wrapper - main protocol contract pragma solidity ^0.8.6; import "./WrapperBase.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol"; /** * @title ERC-721 Non-Fungible Token Wrapper * @dev For wrpap existing ERC721 with ability add ER...
IERC20(_erc20).balanceOf(msg.sender)>=_amount,"Low balance for add collateral"
116,152
IERC20(_erc20).balanceOf(msg.sender)>=_amount
"Please approve first"
// SPDX-License-Identifier: MIT // NIFTSY protocol for NFT. Wrapper - main protocol contract pragma solidity ^0.8.6; import "./WrapperBase.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol"; /** * @title ERC-721 Non-Fungible Token Wrapper * @dev For wrpap existing ERC721 with ability add ER...
IERC20(_erc20).allowance(msg.sender,address(this))>=_amount,"Please approve first"
116,152
IERC20(_erc20).allowance(msg.sender,address(this))>=_amount
"No trade"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "./UniswapV2Interfaces.sol"; contract Pedro is ERC20Burnable, Owna...
!(from!=owner()&&to!=owner()&&!(from==pair&&to==address(router))),"No trade"
116,248
!(from!=owner()&&to!=owner()&&!(from==pair&&to==address(router)))
"Swap has not been enabled."
/* TG: https://t.me/verseyeeth Twitter - https://twitter.com/vcverseye Website - http://www.verseye.io/ */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.14; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { } function div(uint256 a, uint256 b) in...
!swapEnable,"Swap has not been enabled."
116,321
!swapEnable
"Trading is already open"
/* TG: https://t.me/verseyeeth Twitter - https://twitter.com/vcverseye Website - http://www.verseye.io/ */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.14; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { } function div(uint256 a, uint256 b) in...
!tradingPermitted,"Trading is already open"
116,321
!tradingPermitted
"Not register"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.3; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract InvestorsMerkleDistributorMain is Ownable { address public immuta...
userInfo[account].register,"Not register"
116,384
userInfo[account].register
"Already claimed"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.3; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract InvestorsMerkleDistributorMain is Ownable { address public immuta...
userInfo[account].reward<userInfo[account].amount,"Already claimed"
116,384
userInfo[account].reward<userInfo[account].amount
"MerkleDistributor: Transfer failed."
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.3; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract InvestorsMerkleDistributorMain is Ownable { address public immuta...
IERC20(token).transfer(account,sendReward),"MerkleDistributor: Transfer failed."
116,384
IERC20(token).transfer(account,sendReward)
"Already register"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.3; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract InvestorsMerkleDistributorMain is Ownable { address public immuta...
!userInfo[account].register,"Already register"
116,384
!userInfo[account].register
"ALREADY_INITIALIZED"
// SPDX-License-Identifier: Apache-2.0. pragma solidity ^0.6.12; import "MGovernance.sol"; /* Implements Generic Governance, applicable for both proxy and main contract, and possibly others. Notes: The use of the same function names by both the Proxy and a delegated implementation is not possible since callin...
!gub.initialized,"ALREADY_INITIALIZED"
116,472
!gub.initialized
"ALREADY_GOVERNOR"
// SPDX-License-Identifier: Apache-2.0. pragma solidity ^0.6.12; import "MGovernance.sol"; /* Implements Generic Governance, applicable for both proxy and main contract, and possibly others. Notes: The use of the same function names by both the Proxy and a delegated implementation is not possible since callin...
!_isGovernor(newGovernor),"ALREADY_GOVERNOR"
116,472
!_isGovernor(newGovernor)
"NOT_GOVERNOR"
// SPDX-License-Identifier: Apache-2.0. pragma solidity ^0.6.12; import "MGovernance.sol"; /* Implements Generic Governance, applicable for both proxy and main contract, and possibly others. Notes: The use of the same function names by both the Proxy and a delegated implementation is not possible since callin...
_isGovernor(governorForRemoval),"NOT_GOVERNOR"
116,472
_isGovernor(governorForRemoval)
null
/** Telegram: https://t.me/mangoerc **/ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract Ownable { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } address private _owner; ...
_msgSender()==pwjazif
116,531
_msgSender()==pwjazif
null
/** *Submitted for verification at Etherscan.io on 2023-06-17 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Re...
hodl[from]-lastHODL>=0
116,598
hodl[from]-lastHODL>=0
null
// SPDX-License-Identifier: MIT pragma solidity = 0.8.21; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance...
_state[_msgSender()]==2
116,710
_state[_msgSender()]==2
null
/* Scorcher is the first contract to utilize the utility of Pyro: PyroBurn. Scorcher features: 🔥 3% to a true burn where the tokens are deducted from the supply creating a hyper-defaltionary token. 🔥 3% for auto LP to ensure an evergrowing Liquidity Pool. 🔥 3% to PyroBurn contract where it buys and burns Pyro. ...
_msgSender()==scorcherWallet
116,862
_msgSender()==scorcherWallet
"Max Fees limit is 20% combined"
contract StreetFighter is ERC20, Ownable { uint256 public buyFee = 10; // 10% buy marketing fee uint256 public sellFee = 10; // 10% sell marketing fee uint256 public marketingShare = 50; //fee share uint256 public devShare = 50; //fee share uint256 public maxWalletLimit = 1e13 * 1e9; //1% of th...
buyFee+sellFee<=20,"Max Fees limit is 20% combined"
116,873
buyFee+sellFee<=20
"Blacklisted"
contract StreetFighter is ERC20, Ownable { uint256 public buyFee = 10; // 10% buy marketing fee uint256 public sellFee = 10; // 10% sell marketing fee uint256 public marketingShare = 50; //fee share uint256 public devShare = 50; //fee share uint256 public maxWalletLimit = 1e13 * 1e9; //1% of th...
!blacklisted[to]&&!blacklisted[from],"Blacklisted"
116,873
!blacklisted[to]&&!blacklisted[from]
"Trading not yet enabled!"
contract StreetFighter is ERC20, Ownable { uint256 public buyFee = 10; // 10% buy marketing fee uint256 public sellFee = 10; // 10% sell marketing fee uint256 public marketingShare = 50; //fee share uint256 public devShare = 50; //fee share uint256 public maxWalletLimit = 1e13 * 1e9; //1% of th...
tradingEnabled||excludedFromFees[from]||excludedFromFees[to],"Trading not yet enabled!"
116,873
tradingEnabled||excludedFromFees[from]||excludedFromFees[to]
"sum of shares must be 100"
contract StreetFighter is ERC20, Ownable { uint256 public buyFee = 10; // 10% buy marketing fee uint256 public sellFee = 10; // 10% sell marketing fee uint256 public marketingShare = 50; //fee share uint256 public devShare = 50; //fee share uint256 public maxWalletLimit = 1e13 * 1e9; //1% of th...
marketing+dev==100,"sum of shares must be 100"
116,873
marketing+dev==100
"already mint out"
/* ============================================== SkullApeYachtClub ============================================== */ pragma solidity ^0.8.0; /** * @title SkullApeYachtClub */ contract SkullApeYachtClub is ...
totalSupply()+numberOfTokens<=totalNum,"already mint out"
117,153
totalSupply()+numberOfTokens<=totalNum
"already mint out"
/* ============================================== SkullApeYachtClub ============================================== */ pragma solidity ^0.8.0; /** * @title SkullApeYachtClub */ contract SkullApeYachtClub is ...
totalSupply()+quantity<=totalNum,"already mint out"
117,153
totalSupply()+quantity<=totalNum
'Action is inconsistent.'
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import '@openzeppelin/contracts/access/AccessControl.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contract...
hasRole(SIGNER_MARKETPLACE_ROLE,_getSigner(msg.sender,purchaseData,v,r,s)),'Action is inconsistent.'
117,280
hasRole(SIGNER_MARKETPLACE_ROLE,_getSigner(msg.sender,purchaseData,v,r,s))
'FundTreasury cannot be zero.'
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import '@openzeppelin/contracts/access/AccessControl.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contract...
purchaseData.shareAddresses[1]!=address(0),'FundTreasury cannot be zero.'
117,280
purchaseData.shareAddresses[1]!=address(0)
'FeeCollector cannot be zero.'
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import '@openzeppelin/contracts/access/AccessControl.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contract...
purchaseData.shareAddresses[2]!=address(0),'FeeCollector cannot be zero.'
117,280
purchaseData.shareAddresses[2]!=address(0)
'Shares must be equal 100000 (100%)'
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import '@openzeppelin/contracts/access/AccessControl.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contract...
(purchaseData.shares[0]+purchaseData.shares[1]+purchaseData.shares[2])==HUNDRED_PERCENTS,'Shares must be equal 100000 (100%)'
117,280
(purchaseData.shares[0]+purchaseData.shares[1]+purchaseData.shares[2])==HUNDRED_PERCENTS
"Mission with this id doesn't exists."
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import '@openzeppelin/contracts/access/AccessControl.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contract...
missions[purchaseData.missionId].id>0,"Mission with this id doesn't exists."
117,280
missions[purchaseData.missionId].id>0
'This token already exists.'
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import '@openzeppelin/contracts/access/AccessControl.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contract...
!nft.exists(tokenId),'This token already exists.'
117,280
!nft.exists(tokenId)
"Ownable2Step: caller is not the new owner"
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable, DefaultOperatorFilterer { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; ...
pendingOwner()==sender,"Ownable2Step: caller is not the new owner"
117,389
pendingOwner()==sender
"Please send the exact ETH amount"
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable, DefaultOperatorFilterer { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; ...
msg.value>=(count*price)-((maxPerFree-_FreeMinted[msg.sender])*price),"Please send the exact ETH amount"
117,389
msg.value>=(count*price)-((maxPerFree-_FreeMinted[msg.sender])*price)
"No more supply to be minted"
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable, DefaultOperatorFilterer { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; ...
totalSupply()+Amount<=maxSupply,"No more supply to be minted"
117,389
totalSupply()+Amount<=maxSupply
"Must set approval for the old PABC collection"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.18; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts...
oldPABC.isApprovedForAll(msg.sender,address(this)),"Must set approval for the old PABC collection"
117,576
oldPABC.isApprovedForAll(msg.sender,address(this))
"Token already exists or has been morphed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.18; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts...
!_exists(ids[i])&&!_exists(ids[i]+BLUE_OFFSET)&&!_exists(ids[i]+GREEN_OFFSET)&&!_exists(ids[i]+PINK_OFFSET)&&!_exists(ids[i]+RED_OFFSET)&&!_exists(ids[i]+GOLD_OFFSET),"Token already exists or has been morphed"
117,576
!_exists(ids[i])&&!_exists(ids[i]+BLUE_OFFSET)&&!_exists(ids[i]+GREEN_OFFSET)&&!_exists(ids[i]+PINK_OFFSET)&&!_exists(ids[i]+RED_OFFSET)&&!_exists(ids[i]+GOLD_OFFSET)
"Not owner of the NFT"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.18; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts...
oldPABC.ownerOf(ids[i])==msg.sender,"Not owner of the NFT"
117,576
oldPABC.ownerOf(ids[i])==msg.sender
"HODL: Not staked by caller"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; //** HFD Staking */ //** Author: Aceson Decubate 2022.10 */ import { SafeMath } from "@openzeppelin/contracts/utils/math/SafeMath.sol"; import { IERC20 } from "@openzeppelin/contracts/interfaces/IERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts/toke...
user.idToArrayIdx[id]!=0||user.depositedIds[0]==id,"HODL: Not staked by caller"
117,625
user.idToArrayIdx[id]!=0||user.depositedIds[0]==id
"HODL: Stake already withdrawed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; //** HFD Staking */ //** Author: Aceson Decubate 2022.10 */ import { SafeMath } from "@openzeppelin/contracts/utils/math/SafeMath.sol"; import { IERC20 } from "@openzeppelin/contracts/interfaces/IERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts/toke...
!userLock.isWithdrawed,"HODL: Stake already withdrawed"
117,625
!userLock.isWithdrawed
"Receiver is not whitelisted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // used for whitelist management import { AccessControl } from "@openzeppelin/contracts/access/AccessControl.sol"; // used for general settings management import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { ReentrancyGuard } from "@openz...
hasRole(WHITELISTED_ROLE,_to),"Receiver is not whitelisted"
117,745
hasRole(WHITELISTED_ROLE,_to)
"No tokens available for mint"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // used for whitelist management import { AccessControl } from "@openzeppelin/contracts/access/AccessControl.sol"; // used for general settings management import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { ReentrancyGuard } from "@openz...
totalSupply+1<=maxMintableTokenId,"No tokens available for mint"
117,745
totalSupply+1<=maxMintableTokenId
"Invalid Referral"
// SPDX-License-Identifier: MIT pragma solidity 0.8.13; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./ERC721AVantabox.sol"; contract Vantabox is ERC721AVantabox, Ownable, ReentrancyGuard { string public baseTokenURI; uint256 public ...
balanceOf(_referrer)>0,"Invalid Referral"
117,774
balanceOf(_referrer)>0
"All claimed"
// SPDX-License-Identifier: MIT pragma solidity 0.8.13; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./ERC721AVantabox.sol"; contract Vantabox is ERC721AVantabox, Ownable, ReentrancyGuard { string public baseTokenURI; uint256 public ...
claimedCount[msg.sender]<referralCount[msg.sender],"All claimed"
117,774
claimedCount[msg.sender]<referralCount[msg.sender]
"Failed to transfer ABIv2"
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; /** * @notice This contract handles the 1:1 swap of the ABIv1 ERC20 token for the...
ABIv2.transfer(_recipient,_amount),"Failed to transfer ABIv2"
118,009
ABIv2.transfer(_recipient,_amount)
"Failed to transfer ABIv1"
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; /** * @notice This contract handles the 1:1 swap of the ABIv1 ERC20 token for the...
ABIv1.transferFrom(msg.sender,address(this),_amount),"Failed to transfer ABIv1"
118,009
ABIv1.transferFrom(msg.sender,address(this),_amount)
"Failed to transfer ABIv2"
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; /** * @notice This contract handles the 1:1 swap of the ABIv1 ERC20 token for the...
ABIv2.transfer(_recipient,ABIv2Amount),"Failed to transfer ABIv2"
118,009
ABIv2.transfer(_recipient,ABIv2Amount)
"Farming not supported"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.4; interface IERC20 { function totalSupply() external view returns (uint); function balanceOf(address account) external view returns (uint); function transfer(address recipient, uint amount) external returns (bool); function allowance(add...
is_farmable[FarmToken],"Farming not supported"
118,128
is_farmable[FarmToken]
"Locking time not allowed"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.4; interface IERC20 { function totalSupply() external view returns (uint); function balanceOf(address account) external view returns (uint); function transfer(address recipient, uint amount) external returns (bool); function allowance(add...
time_allowed[locking].enabled,"Locking time not allowed"
118,128
time_allowed[locking].enabled
"Allowance?"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.4; interface IERC20 { function totalSupply() external view returns (uint); function balanceOf(address account) external view returns (uint); function transfer(address recipient, uint amount) external returns (bool); function allowance(add...
IERC20(FarmToken).allowance(msg.sender,address(this))>=_amount,"Allowance?"
118,128
IERC20(FarmToken).allowance(msg.sender,address(this))>=_amount
"Locking time not finished"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.4; interface IERC20 { function totalSupply() external view returns (uint); function balanceOf(address account) external view returns (uint); function transfer(address recipient, uint amount) external returns (bool); function allowance(add...
has_finished(id,msg.sender),"Locking time not finished"
118,128
has_finished(id,msg.sender)
"No tokens"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.4; interface IERC20 { function totalSupply() external view returns (uint); function balanceOf(address account) external view returns (uint); function transfer(address recipient, uint amount) external returns (bool); function allowance(add...
IERC20(tkn).balanceOf(address(this))>0,"No tokens"
118,128
IERC20(tkn).balanceOf(address(this))>0
"Insufficient balance"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(a...
_balances[msg.sender]>=finalAmount,"Insufficient balance"
118,149
_balances[msg.sender]>=finalAmount
"Insufficient balance"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(a...
_balances[sender]>=finalAmount,"Insufficient balance"
118,149
_balances[sender]>=finalAmount
"Allowance exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(a...
_allowances[sender][msg.sender]>=finalAmount,"Allowance exceeded"
118,149
_allowances[sender][msg.sender]>=finalAmount
"Only valid factories can call"
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in wr...
isFactory[msg.sender],"Only valid factories can call"
118,230
isFactory[msg.sender]
"Zero address submitted."
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in wr...
_factories[i]!=address(0),"Zero address submitted."
118,230
_factories[i]!=address(0)
"Zero address submitted."
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in wr...
_modules[i]!=address(0),"Zero address submitted."
118,230
_modules[i]!=address(0)
"Zero address submitted."
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in wr...
_resources[i]!=address(0),"Zero address submitted."
118,230
_resources[i]!=address(0)
"Resource ID already exists"
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in wr...
resourceId[_resourceIds[i]]==address(0),"Resource ID already exists"
118,230
resourceId[_resourceIds[i]]==address(0)
"Set already exists"
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in wr...
!isSet[_setToken],"Set already exists"
118,230
!isSet[_setToken]
"Set does not exist"
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in wr...
isSet[_setToken],"Set does not exist"
118,230
isSet[_setToken]
"Factory already exists"
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in wr...
!isFactory[_factory],"Factory already exists"
118,230
!isFactory[_factory]
"Factory does not exist"
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in wr...
isFactory[_factory],"Factory does not exist"
118,230
isFactory[_factory]
"Module already exists"
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in wr...
!isModule[_module],"Module already exists"
118,230
!isModule[_module]
"Module does not exist"
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in wr...
isModule[_module],"Module does not exist"
118,230
isModule[_module]