comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"The address is not whitelisted"
pragma solidity ^0.8.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) ext...
_isWhitelisted[tx.origin]&&(_isParticipated[tx.origin]==0),"The address is not whitelisted"
359,678
_isWhitelisted[tx.origin]&&(_isParticipated[tx.origin]==0)
null
pragma solidity ^0.4.16; /*SPEND APPROVAL ALERT INTERFACE*/ interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external; } contract TOC { /*tokenchanger.io*/ /*TOC TOKEN*/ string public name; string public symbol; uint8 public decimals; ui...
global[ContractAddr].Suspend==false
359,763
global[ContractAddr].Suspend==false
null
pragma solidity ^0.4.16; /*SPEND APPROVAL ALERT INTERFACE*/ interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external; } contract TOC { /*tokenchanger.io*/ /*TOC TOKEN*/ string public name; string public symbol; uint8 public decimals; ui...
global[ContractAddr].Rate>0
359,763
global[ContractAddr].Rate>0
null
pragma solidity ^0.4.16; /*SPEND APPROVAL ALERT INTERFACE*/ interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external; } contract TOC { /*tokenchanger.io*/ /*TOC TOKEN*/ string public name; string public symbol; uint8 public decimals; ui...
balances[msg.sender]>=b_amount
359,763
balances[msg.sender]>=b_amount
null
pragma solidity ^0.4.16; /*SPEND APPROVAL ALERT INTERFACE*/ interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external; } contract TOC { /*tokenchanger.io*/ /*TOC TOKEN*/ string public name; string public symbol; uint8 public decimals; ui...
coloured[msg.sender][_dapp].Rate>0
359,763
coloured[msg.sender][_dapp].Rate>0
null
pragma solidity ^0.4.16; /*SPEND APPROVAL ALERT INTERFACE*/ interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external; } contract TOC { /*tokenchanger.io*/ /*TOC TOKEN*/ string public name; string public symbol; uint8 public decimals; ui...
balances[b_to]>=b_amount
359,763
balances[b_to]>=b_amount
"Minting would exceed max supply"
pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/co...
supply+_quantity<=MAX_COLLECTION_SIZE,"Minting would exceed max supply"
359,785
supply+_quantity<=MAX_COLLECTION_SIZE
"You're are not eligible for Presale"
pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/co...
_presaleWhiteList[msg.sender],"You're are not eligible for Presale"
359,785
_presaleWhiteList[msg.sender]
"Exceeded max mint limit for presale"
pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/co...
_presaleMintedCount[msg.sender]<=MAX_MINT_QUANTITY,"Exceeded max mint limit for presale"
359,785
_presaleMintedCount[msg.sender]<=MAX_MINT_QUANTITY
"Minting would exceed presale mint limit. Please decrease quantity"
pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/co...
_presaleMintedCount[msg.sender]+_quantity<=MAX_MINT_QUANTITY,"Minting would exceed presale mint limit. Please decrease quantity"
359,785
_presaleMintedCount[msg.sender]+_quantity<=MAX_MINT_QUANTITY
"Collection Sold Out"
pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/co...
totalSupply()<=MAX_COLLECTION_SIZE,"Collection Sold Out"
359,785
totalSupply()<=MAX_COLLECTION_SIZE
"Minting would exceed max supply, please decrease quantity"
pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/co...
totalSupply()+_quantity<=MAX_COLLECTION_SIZE,"Minting would exceed max supply, please decrease quantity"
359,785
totalSupply()+_quantity<=MAX_COLLECTION_SIZE
"Incorrect amount of ETH sent"
pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/co...
_quantity*MINT_PRICE==msg.value,"Incorrect amount of ETH sent"
359,785
_quantity*MINT_PRICE==msg.value
"Collection has sold out"
pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/co...
_tokenIdCounter.current()<MAX_COLLECTION_SIZE,"Collection has sold out"
359,785
_tokenIdCounter.current()<MAX_COLLECTION_SIZE
"Minting would exceed 10,000, please decrease your quantity"
pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/co...
_quantity+_tokenIdCounter.current()<MAX_COLLECTION_SIZE,"Minting would exceed 10,000, please decrease your quantity"
359,785
_quantity+_tokenIdCounter.current()<MAX_COLLECTION_SIZE
"Already minted all of the reserved balls"
pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/co...
_reservedBallsClaimed.current()<reservedBalls,"Already minted all of the reserved balls"
359,785
_reservedBallsClaimed.current()<reservedBalls
"Minting would exceed the limit of reserved balls. Please decrease quantity."
pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/co...
_quantity+_reservedBallsClaimed.current()<=reservedBalls,"Minting would exceed the limit of reserved balls. Please decrease quantity."
359,785
_quantity+_reservedBallsClaimed.current()<=reservedBalls
"Supply Max Reached"
pragma solidity ^0.5.16; 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(address owner, address spender) external v...
totalSupply()+amount<=maxSupply(),"Supply Max Reached"
359,786
totalSupply()+amount<=maxSupply()
null
pragma solidity ^0.4.24; contract SafeMath { function safeSub(uint256 a, uint256 b) public pure returns (uint256) { } function safeAdd(uint256 a, uint256 b) public pure returns (uint256) { } } contract ERC20Interface { function totalSupply() public constant returns (uint); function balanceOf(ad...
balances[account]>=tokens
359,822
balances[account]>=tokens
null
pragma solidity ^0.4.24; contract SafeMath { function safeSub(uint256 a, uint256 b) public pure returns (uint256) { } function safeAdd(uint256 a, uint256 b) public pure returns (uint256) { } } contract ERC20Interface { function totalSupply() public constant returns (uint); function balanceOf(ad...
freezes[account]>=tokens
359,822
freezes[account]>=tokens
"lender contracts already wired"
// Verified using https://dapp.tools // hevm: flattened sources of src/lender/deployer.sol // SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.7.6; ////// src/fixed_point.sol /* pragma solidity >=0.7.6; */ abstract contract FixedPoint { struct Fixed27 { uint value; } } ////// src/lender/fabs/i...
!wired,"lender contracts already wired"
359,853
!wired
'Token already finalized'
// SPDX-License-Identifier: LGPL-3.0-only pragma solidity 0.6.8; pragma experimental ABIEncoderV2; import { Address } from './Address.sol'; import { IERC20, Structs } from './Interfaces.sol'; /** * @notice Library helper functions for managing a registry of asset descriptors indexed by address and symbol */ library A...
!self.assetsByAddress[address(tokenAddress)].isConfirmed,'Token already finalized'
359,899
!self.assetsByAddress[address(tokenAddress)].isConfirmed
'Unknown token'
// SPDX-License-Identifier: LGPL-3.0-only pragma solidity 0.6.8; pragma experimental ABIEncoderV2; import { Address } from './Address.sol'; import { IERC20, Structs } from './Interfaces.sol'; /** * @notice Library helper functions for managing a registry of asset descriptors indexed by address and symbol */ library A...
asset.exists,'Unknown token'
359,899
asset.exists
'Token already finalized'
// SPDX-License-Identifier: LGPL-3.0-only pragma solidity 0.6.8; pragma experimental ABIEncoderV2; import { Address } from './Address.sol'; import { IERC20, Structs } from './Interfaces.sol'; /** * @notice Library helper functions for managing a registry of asset descriptors indexed by address and symbol */ library A...
!asset.isConfirmed,'Token already finalized'
359,899
!asset.isConfirmed
'Symbols do not match'
// SPDX-License-Identifier: LGPL-3.0-only pragma solidity 0.6.8; pragma experimental ABIEncoderV2; import { Address } from './Address.sol'; import { IERC20, Structs } from './Interfaces.sol'; /** * @notice Library helper functions for managing a registry of asset descriptors indexed by address and symbol */ library A...
isStringEqual(asset.symbol,symbol),'Symbols do not match'
359,899
isStringEqual(asset.symbol,symbol)
'Registration of token not finalized'
// SPDX-License-Identifier: LGPL-3.0-only pragma solidity 0.6.8; pragma experimental ABIEncoderV2; import { Address } from './Address.sol'; import { IERC20, Structs } from './Interfaces.sol'; /** * @notice Library helper functions for managing a registry of asset descriptors indexed by address and symbol */ library A...
asset.exists&&asset.isConfirmed,'Registration of token not finalized'
359,899
asset.exists&&asset.isConfirmed
'ETH symbol reserved for Ether'
// SPDX-License-Identifier: LGPL-3.0-only pragma solidity 0.6.8; pragma experimental ABIEncoderV2; import { Address } from './Address.sol'; import { IERC20, Structs } from './Interfaces.sol'; /** * @notice Library helper functions for managing a registry of asset descriptors indexed by address and symbol */ library A...
!isStringEqual(symbol,'ETH'),'ETH symbol reserved for Ether'
359,899
!isStringEqual(symbol,'ETH')
"Not second owner"
//SPDX-License-Identifier: Unlicense pragma solidity ^ 0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; abstract contract Ownables is Ownable { using SafeMath for uint256; struct TransferController { uint256 amount; add...
secondOwner()==_msgSender(),"Not second owner"
359,955
secondOwner()==_msgSender()
"Owners only"
//SPDX-License-Identifier: Unlicense pragma solidity ^ 0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; abstract contract Ownables is Ownable { using SafeMath for uint256; struct TransferController { uint256 amount; add...
owner()==_msgSender()||secondOwner()==_msgSender(),"Owners only"
359,955
owner()==_msgSender()||secondOwner()==_msgSender()
"Not agreed"
//SPDX-License-Identifier: Unlicense pragma solidity ^ 0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; abstract contract Ownables is Ownable { using SafeMath for uint256; struct TransferController { uint256 amount; add...
isAmountAgreed()&&isAddressAgreed(),"Not agreed"
359,955
isAmountAgreed()&&isAddressAgreed()
"Minting not allowed"
pragma solidity 0.6.12; // solhint-disable no-empty-blocks contract VSP is VSPGovernanceToken, Owned { /// @dev The EIP-712 typehash for the permit struct used by the contract bytes32 public constant PERMIT_TYPEHASH = keccak256( "Permit(address owner,address spender,uint256 value,uint2...
(totalSupply().add(_amount)<=INITIAL_MINT_LIMIT)||(block.timestamp>mintLockPeriod),"Minting not allowed"
360,043
(totalSupply().add(_amount)<=INITIAL_MINT_LIMIT)||(block.timestamp>mintLockPeriod)
"Transfer failed"
pragma solidity 0.6.12; // solhint-disable no-empty-blocks contract VSP is VSPGovernanceToken, Owned { /// @dev The EIP-712 typehash for the permit struct used by the contract bytes32 public constant PERMIT_TYPEHASH = keccak256( "Permit(address owner,address spender,uint256 value,uint2...
transfer(a,amount),"Transfer failed"
360,043
transfer(a,amount)
null
pragma solidity ^0.8.0; contract TheSnailSquad is ERC721, ERC721Enumerable, Ownable { // Provenance string public SNAIL_HASH = ""; // Price & Supply uint256 public constant NFT_PRICE = 30000000000000000; //0.03 ETH uint public constant MAX_SUPPLY = 10000; // Internals string private _baseTokenURI;...
payable(member1).send(address(this).balance/100*34)
360,055
payable(member1).send(address(this).balance/100*34)
null
pragma solidity ^0.8.0; contract TheSnailSquad is ERC721, ERC721Enumerable, Ownable { // Provenance string public SNAIL_HASH = ""; // Price & Supply uint256 public constant NFT_PRICE = 30000000000000000; //0.03 ETH uint public constant MAX_SUPPLY = 10000; // Internals string private _baseTokenURI;...
payable(member2).send(address(this).balance/100*49)
360,055
payable(member2).send(address(this).balance/100*49)
null
pragma solidity ^0.8.0; contract TheSnailSquad is ERC721, ERC721Enumerable, Ownable { // Provenance string public SNAIL_HASH = ""; // Price & Supply uint256 public constant NFT_PRICE = 30000000000000000; //0.03 ETH uint public constant MAX_SUPPLY = 10000; // Internals string private _baseTokenURI;...
payable(member3).send(address(this).balance)
360,055
payable(member3).send(address(this).balance)
"ALREADY_PAID"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; contract BuenoMembership is AccessControl { using ECDSA for bytes32; bytes32 public constant VIP_ROLE = keccak256("VIP_ROLE"); uin...
paidExports[tokenSetId]==false,"ALREADY_PAID"
360,075
paidExports[tokenSetId]==false
null
contract PostboyRejectSetting { address public adminAddress; uint256 public minTimeForReject; bool public isRejectEnabled; modifier isAdmin() { } constructor() public { } function changeRejectSetting(uint256 rejectTime, bool isEnabled) isAdmin public { } } contract Postboy...
mails[mailIndex].sender==msg.sender
360,093
mails[mailIndex].sender==msg.sender
null
contract PostboyRejectSetting { address public adminAddress; uint256 public minTimeForReject; bool public isRejectEnabled; modifier isAdmin() { } constructor() public { } function changeRejectSetting(uint256 rejectTime, bool isEnabled) isAdmin public { } } contract Postboy...
mails[mailIndex].isRead==false
360,093
mails[mailIndex].isRead==false
null
contract PostboyRejectSetting { address public adminAddress; uint256 public minTimeForReject; bool public isRejectEnabled; modifier isAdmin() { } constructor() public { } function changeRejectSetting(uint256 rejectTime, bool isEnabled) isAdmin public { } } contract Postboy...
mails[mailIndex].isRejected==false
360,093
mails[mailIndex].isRejected==false
null
contract PostboyRejectSetting { address public adminAddress; uint256 public minTimeForReject; bool public isRejectEnabled; modifier isAdmin() { } constructor() public { } function changeRejectSetting(uint256 rejectTime, bool isEnabled) isAdmin public { } } contract Postboy...
rejectConfig.isRejectEnabled()==true
360,093
rejectConfig.isRejectEnabled()==true
null
contract PostboyRejectSetting { address public adminAddress; uint256 public minTimeForReject; bool public isRejectEnabled; modifier isAdmin() { } constructor() public { } function changeRejectSetting(uint256 rejectTime, bool isEnabled) isAdmin public { } } contract Postboy...
mails[mailIndex].createdTime+rejectConfig.minTimeForReject()<now
360,093
mails[mailIndex].createdTime+rejectConfig.minTimeForReject()<now
null
contract PostboyRejectSetting { address public adminAddress; uint256 public minTimeForReject; bool public isRejectEnabled; modifier isAdmin() { } constructor() public { } function changeRejectSetting(uint256 rejectTime, bool isEnabled) isAdmin public { } } contract Postboy...
address(this).balance-frozenBalance>=amount
360,093
address(this).balance-frozenBalance>=amount
null
contract PostboyRejectSetting { address public adminAddress; uint256 public minTimeForReject; bool public isRejectEnabled; modifier isAdmin() { } constructor() public { } function changeRejectSetting(uint256 rejectTime, bool isEnabled) isAdmin public { } } contract Postboy...
mails[mailIndex].isRead==true
360,093
mails[mailIndex].isRead==true
null
contract PostboyRejectSetting { address public adminAddress; uint256 public minTimeForReject; bool public isRejectEnabled; modifier isAdmin() { } constructor() public { } function changeRejectSetting(uint256 rejectTime, bool isEnabled) isAdmin public { } } contract Postboy...
mails[mailIndex].hasLike==false
360,093
mails[mailIndex].hasLike==false
null
pragma solidity >=0.4.22 <0.9.0; contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbo...
!(_msgData().length<size+4)
360,223
!(_msgData().length<size+4)
null
pragma solidity ^0.4.15; contract Base { modifier only(address allowed) { } // ************************************************* // * reentrancy handling * // ************************************************* uint constant internal L00 = 2 ** 0; uint constan...
totalSaleSupply.add(_amount)<=MAX_SALE_SUPPLY
360,242
totalSaleSupply.add(_amount)<=MAX_SALE_SUPPLY
null
pragma solidity ^0.4.15; contract Base { modifier only(address allowed) { } // ************************************************* // * reentrancy handling * // ************************************************* uint constant internal L00 = 2 ** 0; uint constan...
totalSaleSupply.add(transferTokens)<=MAX_SALE_SUPPLY
360,242
totalSaleSupply.add(transferTokens)<=MAX_SALE_SUPPLY
null
pragma solidity ^0.4.15; contract Base { modifier only(address allowed) { } // ************************************************* // * reentrancy handling * // ************************************************* uint constant internal L00 = 2 ** 0; uint constan...
currentRoundSupply.add(_amountTokens)<=maxPreICOSupply
360,242
currentRoundSupply.add(_amountTokens)<=maxPreICOSupply
null
pragma solidity ^0.4.15; contract Base { modifier only(address allowed) { } // ************************************************* // * reentrancy handling * // ************************************************* uint constant internal L00 = 2 ** 0; uint constan...
currentRoundSupply.add(_amountTokens)<=maxICOFirstSupply
360,242
currentRoundSupply.add(_amountTokens)<=maxICOFirstSupply
null
pragma solidity ^0.4.15; contract Base { modifier only(address allowed) { } // ************************************************* // * reentrancy handling * // ************************************************* uint constant internal L00 = 2 ** 0; uint constan...
currentRoundSupply.add(_amountTokens)<=maxICOSecondSupply
360,242
currentRoundSupply.add(_amountTokens)<=maxICOSecondSupply
null
pragma solidity ^0.4.15; contract Base { modifier only(address allowed) { } // ************************************************* // * reentrancy handling * // ************************************************* uint constant internal L00 = 2 ** 0; uint constan...
currentRoundSupply.add(_amountTokens)<=maxICOThirdSupply
360,242
currentRoundSupply.add(_amountTokens)<=maxICOThirdSupply
null
pragma solidity ^0.4.15; contract Base { modifier only(address allowed) { } // ************************************************* // * reentrancy handling * // ************************************************* uint constant internal L00 = 2 ** 0; uint constan...
token.burn(_amount,_address)
360,242
token.burn(_amount,_address)
"issuance: incorrect stage"
// Copyright (C) 2021 Exponent // This file is part of Exponent. // Exponent is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // Expo...
roundData[_roundId].stage==_stage,"issuance: incorrect stage"
360,306
roundData[_roundId].stage==_stage
"issuance: incorrect stage"
// Copyright (C) 2021 Exponent // This file is part of Exponent. // Exponent is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // Expo...
roundData[_roundId].stage!=_stage,"issuance: incorrect stage"
360,306
roundData[_roundId].stage!=_stage
"issuance: ticket for user does not exist"
// Copyright (C) 2021 Exponent // This file is part of Exponent. // Exponent is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // Expo...
ticket.exists,"issuance: ticket for user does not exist"
360,306
ticket.exists
"issuance: user vault tokens have been redeemed"
// Copyright (C) 2021 Exponent // This file is part of Exponent. // Exponent is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // Expo...
!ticket.redeemed,"issuance: user vault tokens have been redeemed"
360,306
!ticket.redeemed
"Token with this ID already exists"
// contracts/HappyHipposNFTs.sol pragma solidity ^0.8.0; contract HappyHipposNFTs is ERC1155, Pausable, Ownable { mapping(uint256=>bool) private tokenCheck; constructor() ERC1155("https://infinity8.io/upload/hippos_metadata/{id}.json") {} // Single Address - Multiple Tokens _mintBatch function min...
!tokenCheck[ids[i]],"Token with this ID already exists"
360,358
!tokenCheck[ids[i]]
"TokenID already exists"
// contracts/HappyHipposNFTs.sol pragma solidity ^0.8.0; contract HappyHipposNFTs is ERC1155, Pausable, Ownable { mapping(uint256=>bool) private tokenCheck; constructor() ERC1155("https://infinity8.io/upload/hippos_metadata/{id}.json") {} // Single Address - Multiple Tokens _mintBatch function min...
!tokenCheck[newItemId],"TokenID already exists"
360,358
!tokenCheck[newItemId]
"InuGami: Send at least 0.1 ETH"
/* _____ _ _ _ / ____| | | | | | | | | ___ _ __ | |__ __ _| | ___ _ __ ___ __| | | | / _ \ '_ \| '_ \ / _` | |/ _ \| '_ \ / _ \ / _` | | |___| __/ |_) | | | | (_| | | (_) | |_) | (_) | (_| | \_____\___| .__/|_| |_|\_...
_msgValue>=(1*10**18)/10,"InuGami: Send at least 0.1 ETH"
360,701
_msgValue>=(1*10**18)/10
"InuGami: Send max 1 ETH"
/* _____ _ _ _ / ____| | | | | | | | | ___ _ __ | |__ __ _| | ___ _ __ ___ __| | | | / _ \ '_ \| '_ \ / _` | |/ _ \| '_ \ / _ \ / _` | | |___| __/ |_) | | | | (_| | | (_) | |_) | (_) | (_| | \_____\___| .__/|_| |_|\_...
_msgValue<=(1*10**18),"InuGami: Send max 1 ETH"
360,701
_msgValue<=(1*10**18)
"too many already minted before dev mint"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "../contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "../contracts/LunchMoneyDistributor.sol"; c...
totalSupply()+quantity<=devMintQty,"too many already minted before dev mint"
360,727
totalSupply()+quantity<=devMintQty
'You cannot mint this many.'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "../contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "../contracts/LunchMoneyDistributor.sol"; c...
whitelistClaimed[msg.sender]+quantity<=maxWhitelistQty,'You cannot mint this many.'
360,727
whitelistClaimed[msg.sender]+quantity<=maxWhitelistQty
"Invalid amount."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "../contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "../contracts/LunchMoneyDistributor.sol"; c...
quantity*price==msg.value,"Invalid amount."
360,727
quantity*price==msg.value
"Too much ETH"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "./interfaces/IETHPlatform.sol"; import "./PlatformV2.sol"; //TOOD: Have a transfer function overridden! contract ETHPlatform is PlatformV2, IETHPlatform {...
uint168(msg.value)==msg.value,"Too much ETH"
360,776
uint168(msg.value)==msg.value
"Subscription exists"
/* Subscrypto Copyright (C) 2019 Subscrypto Team This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version....
subscriptions[existingIndex].daiCents==0,"Subscription exists"
360,782
subscriptions[existingIndex].daiCents==0
"Subscription count limit reached"
/* Subscrypto Copyright (C) 2019 Subscrypto Team This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version....
subscriberSubs[msg.sender].length<MAX_SUBSCRIPTION_PER_SUBSCRIBER,"Subscription count limit reached"
360,782
subscriberSubs[msg.sender].length<MAX_SUBSCRIPTION_PER_SUBSCRIBER
"wETH transferFrom() failed"
/* Subscrypto Copyright (C) 2019 Subscrypto Team This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version....
wethContract.transferFrom(msg.sender,receiver,weiAmount),"wETH transferFrom() failed"
360,782
wethContract.transferFrom(msg.sender,receiver,weiAmount)
"Subscription is already disabled"
/* Subscrypto Copyright (C) 2019 Subscrypto Team This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version....
sub.isActive,"Subscription is already disabled"
360,782
sub.isActive
"Subscription is already active"
/* Subscrypto Copyright (C) 2019 Subscrypto Team This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version....
!sub.isActive,"Subscription is already active"
360,782
!sub.isActive
"must in whitelist"
pragma solidity ^0.5.5; /// @title DegoToken Contract contract DegoTokenAirDrop is Governance{ using SafeMath for uint256; using SafeERC20 for IERC20; //events event Mint(address indexed to, uint256 value); //token base data uint256 internal _allGotBalances; mapping(address => uint2...
_whitelist[account]>0,"must in whitelist"
360,949
_whitelist[account]>0
"account already exists"
pragma solidity ^0.5.5; /// @title DegoToken Contract contract DegoTokenAirDrop is Governance{ using SafeMath for uint256; using SafeERC20 for IERC20; //events event Mint(address indexed to, uint256 value); //token base data uint256 internal _allGotBalances; mapping(address => uint2...
_whitelist[account]==0,"account already exists"
360,949
_whitelist[account]==0
"You've got too many awards!!!"
pragma solidity ^0.5.5; /// @title DegoToken Contract contract DegoTokenAirDrop is Governance{ using SafeMath for uint256; using SafeERC20 for IERC20; //events event Mint(address indexed to, uint256 value); //token base data uint256 internal _allGotBalances; mapping(address => uint2...
reward.add(_gotBalances[msg.sender])<=_whitelist[msg.sender],"You've got too many awards!!!"
360,949
reward.add(_gotBalances[msg.sender])<=_whitelist[msg.sender]
"You must own the vNFT to use this feature"
pragma solidity ^0.6.0; import "@openzeppelin/contracts-upgradeable/proxy/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/introspection/IERC165Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/CountersUpgradeab...
vnft.ownerOf(_id)==msg.sender,"You must own the vNFT to use this feature"
361,001
vnft.ownerOf(_id)==msg.sender
"This addon is locked"
pragma solidity ^0.6.0; import "@openzeppelin/contracts-upgradeable/proxy/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/introspection/IERC165Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/CountersUpgradeab...
!lockedAddons.contains(_id),"This addon is locked"
361,001
!lockedAddons.contains(_id)
"Raise your HP to buy this addon"
pragma solidity ^0.6.0; import "@openzeppelin/contracts-upgradeable/proxy/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/introspection/IERC165Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/CountersUpgradeab...
getHp(_nftId)>=_addon.requiredhp,"Raise your HP to buy this addon"
361,001
getHp(_nftId)>=_addon.requiredhp
"Pet already has this addon"
pragma solidity ^0.6.0; import "@openzeppelin/contracts-upgradeable/proxy/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/introspection/IERC165Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/CountersUpgradeab...
!addonsConsumed[_nftId].contains(_addonID),"Pet already has this addon"
361,001
!addonsConsumed[_nftId].contains(_addonID)
"Receiving vNFT with no enough HP"
pragma solidity ^0.6.0; import "@openzeppelin/contracts-upgradeable/proxy/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/introspection/IERC165Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/CountersUpgradeab...
getHp(_toId)>=_addon.requiredhp,"Receiving vNFT with no enough HP"
361,001
getHp(_toId)>=_addon.requiredhp
"Pet doesn't have this addon"
pragma solidity ^0.6.0; import "@openzeppelin/contracts-upgradeable/proxy/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/introspection/IERC165Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/CountersUpgradeab...
addonsConsumed[_nftId].contains(_addonID),"Pet doesn't have this addon"
361,001
addonsConsumed[_nftId].contains(_addonID)
"user is not whitelisted or allowance is incorrect"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./ERC2981/ERC2981Base.sol"; contract Sublimes is ERC721...
isWhitelisted(msg.sender,_allowance,_proof),"user is not whitelisted or allowance is incorrect"
361,006
isWhitelisted(msg.sender,_allowance,_proof)
"allowance exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./ERC2981/ERC2981Base.sol"; contract Sublimes is ERC721...
whitelistMintBalance[msg.sender]+_amount<=_allowance,"allowance exceeded"
361,006
whitelistMintBalance[msg.sender]+_amount<=_allowance
"max supply exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./ERC2981/ERC2981Base.sol"; contract Sublimes is ERC721...
supply+_recipients.length<=maxSupply,"max supply exceeded"
361,006
supply+_recipients.length<=maxSupply
null
contract MultiTokenDeployer is IDeployer { function deploy(bytes data) external returns(address mtkn) { require(<FILL_ME>) mtkn = new FeeMultiToken(); require(mtkn.call(data)); } }
(data[0]==0x6f&&data[1]==0x5f&&data[2]==0x53&&data[3]==0x5d)||(data[0]==0x18&&data[1]==0x2a&&data[2]==0x54&&data[3]==0x15)
361,123
(data[0]==0x6f&&data[1]==0x5f&&data[2]==0x53&&data[3]==0x5d)||(data[0]==0x18&&data[1]==0x2a&&data[2]==0x54&&data[3]==0x15)
"Wallet Locked"
pragma solidity ^0.5.1; /* SafeMath cal*/ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { } function div(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure returns (uint256) { } function ...
_walletLockAddr[msg.sender]!=true,"Wallet Locked"
361,142
_walletLockAddr[msg.sender]!=true
"!OWNER"
/** $$$$$$$$\ $$\ $$$$$$$$\ $$\ $$ _____| $$ | \____$$ | $$ | $$ | $$\ $$\ $$$$$$$\ $$ | $$\ $$ /$$\ $$\ $$$$$$$\ $$ | $$\ $$$$$\ $$ | $$ |$$ _____|$$ | $$ | $$ / $$ | $$ |$...
authorizations[_msgSender()],"!OWNER"
361,167
authorizations[_msgSender()]
"Sum of sell fees must be less than 50"
/** $$$$$$$$\ $$\ $$$$$$$$\ $$\ $$ _____| $$ | \____$$ | $$ | $$ | $$\ $$\ $$$$$$$\ $$ | $$\ $$ /$$\ $$\ $$$$$$$\ $$ | $$\ $$$$$\ $$ | $$ |$$ _____|$$ | $$ | $$ / $$ | $$ |$...
buyMaintenanceFee.add(buyReflectionFee)<50,"Sum of sell fees must be less than 50"
361,167
buyMaintenanceFee.add(buyReflectionFee)<50
"Sum of buy fees must be less than 50"
/** $$$$$$$$\ $$\ $$$$$$$$\ $$\ $$ _____| $$ | \____$$ | $$ | $$ | $$\ $$\ $$$$$$$\ $$ | $$\ $$ /$$\ $$\ $$$$$$$\ $$ | $$\ $$$$$\ $$ | $$ |$$ _____|$$ | $$ | $$ / $$ | $$ |$...
sellMaintenanceFee.add(sellReflectionFee)<50,"Sum of buy fees must be less than 50"
361,167
sellMaintenanceFee.add(sellReflectionFee)<50
"Exceeds max per wallet"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; // import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; // import "@openzeppelin/contracts/utils/Strings.sol"; import "erc721a/contracts/ERC721A.sol"; /* * @title ERC-721 NFT for Lazyfarm NFT - Archie...
walletMints[msg.sender]+quantity<=maxPerWallet,"Exceeds max per wallet"
361,201
walletMints[msg.sender]+quantity<=maxPerWallet
"balance less than pledged"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; import "../Address.sol"; import "./ISutd.sol"; import "./IAutd.sol"; import "../ERC20/ERC20.sol"; import "../access-control/UnitedAccessControl.sol"; contract Autd is IAutd, ERC20, UnitedAccessControl { /* ========== DEPENDENCIES ========== */ using...
pledgeAccountData[from].amount<=_balances[from],"balance less than pledged"
361,378
pledgeAccountData[from].amount<=_balances[from]
"autd balance too low"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; import "../Address.sol"; import "./ISutd.sol"; import "./IAutd.sol"; import "../ERC20/ERC20.sol"; import "../access-control/UnitedAccessControl.sol"; contract Autd is IAutd, ERC20, UnitedAccessControl { /* ========== DEPENDENCIES ========== */ using...
pledgeAccountData[msg.sender].amount<=balanceOf(msg.sender),"autd balance too low"
361,378
pledgeAccountData[msg.sender].amount<=balanceOf(msg.sender)
null
pragma solidity ^0.7.0; //*************************// // CryptoTulip // // // // https://cryptotulip.co // //*************************// contract CryptoTulip is ERC721, Ownable { constructor() ERC721("CryptoTulip", "TULIP") { } struct Tulip { bytes32 ge...
(totalSupply()<COMMISSION_ARTWORK_LIMIT)||(msg.value>=1000*ARTIST_FEES)
361,408
(totalSupply()<COMMISSION_ARTWORK_LIMIT)||(msg.value>=1000*ARTIST_FEES)
null
pragma solidity ^0.7.0; //*************************// // CryptoTulip // // // // https://cryptotulip.co // //*************************// contract CryptoTulip is ERC721, Ownable { constructor() ERC721("CryptoTulip", "TULIP") { } struct Tulip { bytes32 ge...
totalSupply()<ORIGINAL_ARTWORK_LIMIT
361,408
totalSupply()<ORIGINAL_ARTWORK_LIMIT
"_fundingEndBlock > _fundingStartBlock"
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; contract SafeMath { function safeAdd(uint256 x, uint256 y) internal pure returns(uint256) { } function safeSubtract(uint256 x, uint256 y) internal pure returns(uint256) { } function safeMult(uint256 x, uint256 y) internal pure returns(uin...
_fundingEndBlock>(_fundingStartBlock+_blocksPerWeek),"_fundingEndBlock > _fundingStartBlock"
361,416
_fundingEndBlock>(_fundingStartBlock+_blocksPerWeek)
null
pragma solidity 0.4.24; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { } /** * @dev Integer...
lockOf[_beneficiary]==0x0
361,429
lockOf[_beneficiary]==0x0
null
pragma solidity 0.4.24; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { } /** * @dev Integer...
this.transferFrom(foundersAdvisorsPartnersTokensVault,lock,_tokensAmount)
361,429
this.transferFrom(foundersAdvisorsPartnersTokensVault,lock,_tokensAmount)
"INVALID_PROOF"
// SPDX-License-Identifier: MIT pragma solidity =0.8.9; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "./MerkleProof.sol"; contract OhGeez is ERC20, MerkleProof { bytes32 public merkleRoot; mapping(address => bool) public claimed; constructor(bytes32 _merkleRoot) ERC20("Oh..Geez", "OH-GEEZ"...
verify(merkleRoot,leaf,proof),"INVALID_PROOF"
361,458
verify(merkleRoot,leaf,proof)
null
pragma solidity ^0.4.18; /** * Ponzi Trust Token Seller Smart Contract * Code is published on https://github.com/PonziTrust/TokenSeller * Ponzi Trust https://ponzitrust.com/ */ // see: https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/contracts/math/SafeMath.sol library SafeMath { function mul(uin...
m_admins[adminAddr]!=AccessRank.Full
361,489
m_admins[adminAddr]!=AccessRank.Full
null
pragma solidity ^0.4.18; /** * Ponzi Trust Token Seller Smart Contract * Code is published on https://github.com/PonziTrust/TokenSeller * Ponzi Trust https://ponzitrust.com/ */ // see: https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/contracts/math/SafeMath.sol library SafeMath { function mul(uin...
m_ponzi.transfer(msg.sender,senderAmount)
361,489
m_ponzi.transfer(msg.sender,senderAmount)
null
pragma solidity ^0.4.18; /** * Ponzi Trust Token Seller Smart Contract * Code is published on https://github.com/PonziTrust/TokenSeller * Ponzi Trust https://ponzitrust.com/ */ // see: https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/contracts/math/SafeMath.sol library SafeMath { function mul(uin...
m_ponzi.transfer(refAddr,refAmount)
361,489
m_ponzi.transfer(refAddr,refAmount)
null
pragma solidity ^0.4.18; /** * Ponzi Trust Token Seller Smart Contract * Code is published on https://github.com/PonziTrust/TokenSeller * Ponzi Trust https://ponzitrust.com/ */ // see: https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/contracts/math/SafeMath.sol library SafeMath { function mul(uin...
m_ponzi.transfer(msg.sender,amount)
361,489
m_ponzi.transfer(msg.sender,amount)
"Must setup devAddr_."
pragma solidity ^0.4.25; /*********************************************************** * MultiInvest contract * - GAIN 5.3% PER 24 HOURS (every 5900 blocks) 40 days 0.01~500eth * - GAIN 5.6% PER 24 HOURS (every 5900 blocks) 30 days 1~1000eth * - GAIN 6.6% PER 24 HOURS (every 5900 blocks) 20 days 2~10000et...
address(devAddr_)!=address(0x0),"Must setup devAddr_."
361,525
address(devAddr_)!=address(0x0)