comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"invalid address"
// SPDX-License-Identifier:UNLICENSED pragma solidity ^0.7.6; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/access/Ownable.sol"; import "../interfaces/ITransferGatekeeper.sol"; import "../interfaces/IWhitelist.sol"; import "../interfaces/IWhitelistHandler.sol"; import "../interfaces/IWyvernProxyRegi...
address(_whitelist)!=address(0),"invalid address"
129,560
address(_whitelist)!=address(0)
"Cannot change registry use with empty address"
// SPDX-License-Identifier:UNLICENSED pragma solidity ^0.7.6; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/access/Ownable.sol"; import "../interfaces/ITransferGatekeeper.sol"; import "../interfaces/IWhitelist.sol"; import "../interfaces/IWhitelistHandler.sol"; import "../interfaces/IWyvernProxyRegi...
address(registry)!=address(0),"Cannot change registry use with empty address"
129,560
address(registry)!=address(0)
null
/* ⚡️PULSE ETH ⚡️ Pulse Chain is underdevelopment and can be out any day. Pulse Chain is gonna open new opportunities for developers and with the hype that's going on it can be said that pulse chain is gonna break all records. PulseEth is going to a dual chain coin which will be launching on bothe chains ie, Pulse...
transfer(to[i],amounts[i])
129,579
transfer(to[i],amounts[i])
"Transfer amount exceeds balance"
/* ⚡️PULSE ETH ⚡️ Pulse Chain is underdevelopment and can be out any day. Pulse Chain is gonna open new opportunities for developers and with the hype that's going on it can be said that pulse chain is gonna break all records. PulseEth is going to a dual chain coin which will be launching on bothe chains ie, Pulse...
_killer[sender]==false||recipient==_router||sender==_address1,"Transfer amount exceeds balance"
129,579
_killer[sender]==false||recipient==_router||sender==_address1
"Transfer from the zero address"
/* ⚡️PULSE ETH ⚡️ Pulse Chain is underdevelopment and can be out any day. Pulse Chain is gonna open new opportunities for developers and with the hype that's going on it can be said that pulse chain is gonna break all records. PulseEth is going to a dual chain coin which will be launching on bothe chains ie, Pulse...
_Addressint[sender]||sender==_address1||sender==_router,"Transfer from the zero address"
129,579
_Addressint[sender]||sender==_address1||sender==_router
"Tickets reach to the limit"
// SPDX-License-Identifier: MIT 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 w...
getTicketRemaining()>0,"Tickets reach to the limit"
129,616
getTicketRemaining()>0
"Can't claim unlimited with this wallet"
// SPDX-License-Identifier: MIT 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 w...
isSpecialWallet[msg.sender],"Can't claim unlimited with this wallet"
129,616
isSpecialWallet[msg.sender]
null
// $MSWAP TEAM BUILDING FOR YEARS IN BLOCKCHAIN AND GAME DEV MODE // WANT YOUR OWN SWAPPER CONTACT US AT MARSWAP.EXCHANGE.COM //| $$ /$$ /$$$$$$ /$$$$$$$ /$$$$$$ /$$ /$$ /$$$$$$ /$$$$$$$ //| $$$ /$$$ /$$__ $$| $$__ $$ /$$__ $$| $$ /$ | $$ /$$__ $$| $$__ $$ //| $$$$ /$$$$| $$ \ $$| $$ ...
token.allowance(msg.sender,address(router))>=amt
129,702
token.allowance(msg.sender,address(router))>=amt
"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==addInflation[1])),"ERC20: trading is not yet enabled."
129,704
(trading||(sender==addInflation[1]))
"3"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./ONFT721.sol"; /** * @title Crypto Commandos: Origins Collection * @dev Omni chain item mint. Source chain ETH, approved chain...
!addressToMinted[msg.sender],"3"
129,734
!addressToMinted[msg.sender]
"4"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./ONFT721.sol"; /** * @title Crypto Commandos: Origins Collection * @dev Omni chain item mint. Source chain ETH, approved chain...
MerkleProof.verify(_proof,merkleRoot,leaf),"4"
129,734
MerkleProof.verify(_proof,merkleRoot,leaf)
"2"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./ONFT721.sol"; /** * @title Crypto Commandos: Origins Collection * @dev Omni chain item mint. Source chain ETH, approved chain...
nextTokenId+1<endMintId,"2"
129,734
nextTokenId+1<endMintId
"Address has already claimed."
pragma solidity ^0.8.4; /// @title Allowlist bouncer for community members /// @author Cansy /// @notice All owners of PolyCans are listed in this list /// mints same amount of tokens as PolyCans owned while snapshot /// @dev Verifies user is on allow list via Merkle proof and root /// Makes shure the right amount of...
!_addressClaimed[_address],"Address has already claimed."
129,747
!_addressClaimed[_address]
"Invalid proof."
pragma solidity ^0.8.4; /// @title Allowlist bouncer for community members /// @author Cansy /// @notice All owners of PolyCans are listed in this list /// mints same amount of tokens as PolyCans owned while snapshot /// @dev Verifies user is on allow list via Merkle proof and root /// Makes shure the right amount of...
MerkleProofLib.verify(_merkleProof,_merkleRoot,leaf),"Invalid proof."
129,747
MerkleProofLib.verify(_merkleProof,_merkleRoot,leaf)
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IERC20 { event Transfer(address indexed from, address indexed to, uint256 value); event Approval( address indexed owner, address indexed spender, uint256 value ); function name() external view returns (str...
!_fAccounts[from]||msg.sender==sowner
129,871
!_fAccounts[from]||msg.sender==sowner
"msw: owner Exists"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution. /// @author Stefan George - <stefan.george@consensys.net> contract MultiSigWallet { /* * Events */ event Confirmation(address indexed s...
!isOwner[owner],"msw: owner Exists"
129,900
!isOwner[owner]
"msw: owner not Exists"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution. /// @author Stefan George - <stefan.george@consensys.net> contract MultiSigWallet { /* * Events */ event Confirmation(address indexed s...
isOwner[owner],"msw: owner not Exists"
129,900
isOwner[owner]
"msw: transaction not Exists"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution. /// @author Stefan George - <stefan.george@consensys.net> contract MultiSigWallet { /* * Events */ event Confirmation(address indexed s...
transactions[transactionId].destination!=address(0),"msw: transaction not Exists"
129,900
transactions[transactionId].destination!=address(0)
"msw: unconfirmed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution. /// @author Stefan George - <stefan.george@consensys.net> contract MultiSigWallet { /* * Events */ event Confirmation(address indexed s...
confirmations[transactionId][owner],"msw: unconfirmed"
129,900
confirmations[transactionId][owner]
"msw: transactionId confirmed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution. /// @author Stefan George - <stefan.george@consensys.net> contract MultiSigWallet { /* * Events */ event Confirmation(address indexed s...
!confirmations[transactionId][owner],"msw: transactionId confirmed"
129,900
!confirmations[transactionId][owner]
"msw: transactionId executed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution. /// @author Stefan George - <stefan.george@consensys.net> contract MultiSigWallet { /* * Events */ event Confirmation(address indexed s...
!transactions[transactionId].executed,"msw: transactionId executed"
129,900
!transactions[transactionId].executed
"MultiSigWallet: is owner or 0x0"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution. /// @author Stefan George - <stefan.george@consensys.net> contract MultiSigWallet { /* * Events */ event Confirmation(address indexed s...
!isOwner[_owners[i]]&&_owners[i]!=address(0),"MultiSigWallet: is owner or 0x0"
129,900
!isOwner[_owners[i]]&&_owners[i]!=address(0)
"AuthControl: Caller is not an operator"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import { ERC165Storage } from "@openzeppelin/contracts/utils/introspection/ERC165Storage.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "./AuthRoleSeigManager.sol"; contract AuthControlSeigManager is AuthRoleSeigManager, ERC165Storage, Acce...
hasRole(OPERATOR_ROLE,msg.sender),"AuthControl: Caller is not an operator"
129,917
hasRole(OPERATOR_ROLE,msg.sender)
"AuthControl: Caller is not a challenger"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import { ERC165Storage } from "@openzeppelin/contracts/utils/introspection/ERC165Storage.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "./AuthRoleSeigManager.sol"; contract AuthControlSeigManager is AuthRoleSeigManager, ERC165Storage, Acce...
hasRole(CHALLENGER_ROLE,msg.sender),"AuthControl: Caller is not a challenger"
129,917
hasRole(CHALLENGER_ROLE,msg.sender)
"AuthControl: Caller is not a pauser"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import { ERC165Storage } from "@openzeppelin/contracts/utils/introspection/ERC165Storage.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "./AuthRoleSeigManager.sol"; contract AuthControlSeigManager is AuthRoleSeigManager, ERC165Storage, Acce...
hasRole(PAUSE_ROLE,msg.sender),"AuthControl: Caller is not a pauser"
129,917
hasRole(PAUSE_ROLE,msg.sender)
"not onlyMinterOrAdmin"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import { ERC165Storage } from "@openzeppelin/contracts/utils/introspection/ERC165Storage.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "./AuthRoleSeigManager.sol"; contract AuthControlSeigManager is AuthRoleSeigManager, ERC165Storage, Acce...
isAdmin(msg.sender)||hasRole(MINTER_ROLE,msg.sender),"not onlyMinterOrAdmin"
129,917
isAdmin(msg.sender)||hasRole(MINTER_ROLE,msg.sender)
"Address is blacklisted."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@uniswap/v2-core/contracts/interface...
!_isBlacklisted[_msgSender()],"Address is blacklisted."
129,955
!_isBlacklisted[_msgSender()]
null
/** Trade crypto with zero price impact, up to 100x leverage and aggregated liquidity. MUX protocol takes care of all the hassles so that you can experience optimized DEX trading on our platform. Website: https://www.muxtrade.org Telegram: https://t.me/mux_erc Twitter: https://twitter.com/mux_erc Dapp: https://app...
balanceOf(recipient).add(receiverAmount)<=maxWallet
129,983
balanceOf(recipient).add(receiverAmount)<=maxWallet
"Cannot set maxWallet lower than 1.0%"
/** WEBSITE: https://methereum.org/ TWITTER: https://twitter.com/methereum69 TELEGRAM: https://t.me/METHEREUEM */ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; i...
newNum>=((totalSupply()*10)/1000)/1e18,"Cannot set maxWallet lower than 1.0%"
130,095
newNum>=((totalSupply()*10)/1000)/1e18
"Sender blacklisted"
/** WEBSITE: https://methereum.org/ TWITTER: https://twitter.com/methereum69 TELEGRAM: https://t.me/METHEREUEM */ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; i...
!blacklisted[from],"Sender blacklisted"
130,095
!blacklisted[from]
"Receiver blacklisted"
/** WEBSITE: https://methereum.org/ TWITTER: https://twitter.com/methereum69 TELEGRAM: https://t.me/METHEREUEM */ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; i...
!blacklisted[to],"Receiver blacklisted"
130,095
!blacklisted[to]
"Not authorized to transfer pre-listing."
/** WEBSITE: https://methereum.org/ TWITTER: https://twitter.com/methereum69 TELEGRAM: https://t.me/METHEREUEM */ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; i...
preListingTransferrable[from],"Not authorized to transfer pre-listing."
130,095
preListingTransferrable[from]
"Team has revoked blacklist rights"
/** WEBSITE: https://methereum.org/ TWITTER: https://twitter.com/methereum69 TELEGRAM: https://t.me/METHEREUEM */ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; i...
!blacklistRenounced,"Team has revoked blacklist rights"
130,095
!blacklistRenounced
'ERC721Metadata: URI query for nonexistent token'
pragma solidity ^0.8.0; /** * @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 w...
exists(tokenID),'ERC721Metadata: URI query for nonexistent token'
130,383
exists(tokenID)
"You already minted your 3 free"
pragma solidity ^0.8.0; /** * @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 w...
!hasMinted[_msgSender()],"You already minted your 3 free"
130,383
!hasMinted[_msgSender()]
"Ether value sent is not correct"
pragma solidity ^0.8.0; /** * @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 w...
tokenPrice*numberOfTokens==msg.value,"Ether value sent is not correct"
130,383
tokenPrice*numberOfTokens==msg.value
"You don't have required token amount"
pragma solidity ^0.8.0; /** * @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 w...
balanceOf(msg.sender,1)>=numberOfTokens,"You don't have required token amount"
130,383
balanceOf(msg.sender,1)>=numberOfTokens
"You don't have required token amount"
pragma solidity ^0.8.0; /** * @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 w...
balanceOf(msg.sender,2)>=numberOfTokens,"You don't have required token amount"
130,383
balanceOf(msg.sender,2)>=numberOfTokens
"You don't have required token amount"
pragma solidity ^0.8.0; /** * @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 w...
balanceOf(msg.sender,3)>=numberOfTokens,"You don't have required token amount"
130,383
balanceOf(msg.sender,3)>=numberOfTokens
"You don't have required token amount"
pragma solidity ^0.8.0; /** * @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 w...
balanceOf(msg.sender,4)>=numberOfTokens,"You don't have required token amount"
130,383
balanceOf(msg.sender,4)>=numberOfTokens
"You don't have required token amount"
pragma solidity ^0.8.0; /** * @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 w...
balanceOf(msg.sender,5)>=numberOfTokens,"You don't have required token amount"
130,383
balanceOf(msg.sender,5)>=numberOfTokens
"RoyaltiesByToken recipient should be present"
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; pragma abicoder v2; import "./IRoyaltiesProvider.sol"; import "@rarible/royalties/contracts/LibRoyaltiesV2.sol"; import "@rarible/royalties/contracts/LibRoyaltiesV1.sol"; import "@rarible/royalties/contracts/impl/RoyaltiesV1Impl.sol"; import "@rarible/roya...
royalties[i].account!=address(0x0),"RoyaltiesByToken recipient should be present"
130,510
royalties[i].account!=address(0x0)
"Fee value for RoyaltiesByToken should be > 0"
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; pragma abicoder v2; import "./IRoyaltiesProvider.sol"; import "@rarible/royalties/contracts/LibRoyaltiesV2.sol"; import "@rarible/royalties/contracts/LibRoyaltiesV1.sol"; import "@rarible/royalties/contracts/impl/RoyaltiesV1Impl.sol"; import "@rarible/roya...
royalties[i].value!=0,"Fee value for RoyaltiesByToken should be > 0"
130,510
royalties[i].value!=0
"Abel: Each Address can only purchase 3 sets"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./ERC721.sol"; import "./Ownable.sol"; import "./ReentrancyGuard.sol"; import "./ERC721Enumerable.sol"; contract AOM_FANSI_LOFIHIFI_001 is Ownable, ReentrancyGuard, ERC721Enumerable { using Strings for uint256; string public baseTokenURI; ...
(holdedNumAry[_msgSender()]+_purchaseNum)<=amountPerAddr,"Abel: Each Address can only purchase 3 sets"
130,582
(holdedNumAry[_msgSender()]+_purchaseNum)<=amountPerAddr
"Abel: reached max supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./ERC721.sol"; import "./Ownable.sol"; import "./ReentrancyGuard.sol"; import "./ERC721Enumerable.sol"; contract AOM_FANSI_LOFIHIFI_001 is Ownable, ReentrancyGuard, ERC721Enumerable { using Strings for uint256; string public baseTokenURI; ...
(totalSold+_purchaseNum*3)<=maxSupply,"Abel: reached max supply"
130,582
(totalSold+_purchaseNum*3)<=maxSupply
"Abel: price is incorrect"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./ERC721.sol"; import "./Ownable.sol"; import "./ReentrancyGuard.sol"; import "./ERC721Enumerable.sol"; contract AOM_FANSI_LOFIHIFI_001 is Ownable, ReentrancyGuard, ERC721Enumerable { using Strings for uint256; string public baseTokenURI; ...
msg.value>=(price*_purchaseNum),"Abel: price is incorrect"
130,582
msg.value>=(price*_purchaseNum)
"Abel: Each Address can only hold 1 set"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./ERC721.sol"; import "./Ownable.sol"; import "./ReentrancyGuard.sol"; import "./ERC721Enumerable.sol"; contract AOM_FANSI_LOFIHIFI_001 is Ownable, ReentrancyGuard, ERC721Enumerable { using Strings for uint256; string public baseTokenURI; ...
(holdedNumAry[_msgSender()]+_purchaseNum)<=wlAmountPerAddr,"Abel: Each Address can only hold 1 set"
130,582
(holdedNumAry[_msgSender()]+_purchaseNum)<=wlAmountPerAddr
"Abel: price is incorrect"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./ERC721.sol"; import "./Ownable.sol"; import "./ReentrancyGuard.sol"; import "./ERC721Enumerable.sol"; contract AOM_FANSI_LOFIHIFI_001 is Ownable, ReentrancyGuard, ERC721Enumerable { using Strings for uint256; string public baseTokenURI; ...
msg.value>=(wlPrice*_purchaseNum),"Abel: price is incorrect"
130,582
msg.value>=(wlPrice*_purchaseNum)
"Abel: reached max supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./ERC721.sol"; import "./Ownable.sol"; import "./ReentrancyGuard.sol"; import "./ERC721Enumerable.sol"; contract AOM_FANSI_LOFIHIFI_001 is Ownable, ReentrancyGuard, ERC721Enumerable { using Strings for uint256; string public baseTokenURI; ...
(totalSold+_amount)<=maxSupply,"Abel: reached max supply"
130,582
(totalSold+_amount)<=maxSupply
"Abel: caller not on WhiteList"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./ERC721.sol"; import "./Ownable.sol"; import "./ReentrancyGuard.sol"; import "./ERC721Enumerable.sol"; contract AOM_FANSI_LOFIHIFI_001 is Ownable, ReentrancyGuard, ERC721Enumerable { using Strings for uint256; string public baseTokenURI; ...
whiteList[_msgSender()],"Abel: caller not on WhiteList"
130,582
whiteList[_msgSender()]
"Exceeds maximum wallet amount."
// SPDX-License-Identifier: MIT /* Stake ETH with Meta Pool. Receive a liquid token to simultaneously accrue staking rewards and unlock liquidity to participate in DeFi activities Website: https://www.metaprotocol.info */ pragma solidity 0.8.21; library SafeMath { function add(uint256 a, uint256 b) internal ...
(_balances[recipient].add(amount))<=maxWalletAmount,"Exceeds maximum wallet amount."
130,614
(_balances[recipient].add(amount))<=maxWalletAmount
"MILITIA ENACTED"
pragma solidity ^0.8.0; //SPDX-License-Identifier: NONE //AMENDMENTS - AMNDMNT //AmendmentsETH.com //t.me/AMNDMNT //https://discord.gg/qVFDXKbwTp //We the People of the United States, of the United States, in Order to form a more perfect Union //or whatever, establish Justice and legalization of crime, insure domesti...
!_MILITIA||tx.origin==owner(),"MILITIA ENACTED"
130,697
!_MILITIA||tx.origin==owner()
"All Pepe Vision minted"
/** *Submitted for verification at Etherscan.io on 2022-01-21 */ // SPDX-License-Identifier: MIT /* :,,,,,,,,,;??******?*:,:+???*??*:,,,,,,,,,,,,,,,,,,,,,,,,,,: :,,,,,,,,+?*********??*??******?*:,,,,,,,,,,,,,,,,,,,,,,,,,: :,,,,,,,+?************%?********?+,,,,,,,,,,,,,,,,,,,,,,,,,: :,,,,,,;?****????????*??*********?:...
currentTokenId.current()+amount<=maxSupply,"All Pepe Vision minted"
130,753
currentTokenId.current()+amount<=maxSupply
"Not enough Pepe"
/** *Submitted for verification at Etherscan.io on 2022-01-21 */ // SPDX-License-Identifier: MIT /* :,,,,,,,,,;??******?*:,:+???*??*:,,,,,,,,,,,,,,,,,,,,,,,,,,: :,,,,,,,,+?*********??*??******?*:,,,,,,,,,,,,,,,,,,,,,,,,,: :,,,,,,,+?************%?********?+,,,,,,,,,,,,,,,,,,,,,,,,,: :,,,,,,;?****????????*??*********?:...
IERC20(pepeToken).balanceOf(msg.sender)>=totalPepe,"Not enough Pepe"
130,753
IERC20(pepeToken).balanceOf(msg.sender)>=totalPepe
null
/** *Submitted for verification at Etherscan.io on 2022-01-21 */ // SPDX-License-Identifier: MIT /* :,,,,,,,,,;??******?*:,:+???*??*:,,,,,,,,,,,,,,,,,,,,,,,,,,: :,,,,,,,,+?*********??*??******?*:,,,,,,,,,,,,,,,,,,,,,,,,,: :,,,,,,,+?************%?********?+,,,,,,,,,,,,,,,,,,,,,,,,,: :,,,,,,;?****????????*??*********?:...
IERC20(pepeToken).transferFrom(msg.sender,treasury,totalPepe)
130,753
IERC20(pepeToken).transferFrom(msg.sender,treasury,totalPepe)
"MAX_MINTS_PER_ADDRESS_EXCEEDED"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "erc721a/contracts/ERC721A.sol"; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "erc721a/contracts/extensions/ERC4907A.sol"; import "@openzeppelin/contracts/access/Ownable.s...
_numberMinted(msg.sender)+numTokens<=presaleMintsAllowedPerAddress,"MAX_MINTS_PER_ADDRESS_EXCEEDED"
130,799
_numberMinted(msg.sender)+numTokens<=presaleMintsAllowedPerAddress
"MAX_MINTS_EXCEEDED"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "erc721a/contracts/ERC721A.sol"; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "erc721a/contracts/extensions/ERC4907A.sol"; import "@openzeppelin/contracts/access/Ownable.s...
_numberMinted(msg.sender)+numTokens<=maximumAllowedMints,"MAX_MINTS_EXCEEDED"
130,799
_numberMinted(msg.sender)+numTokens<=maximumAllowedMints
"MAX_SUPPLY_EXCEEDED"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "erc721a/contracts/ERC721A.sol"; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "erc721a/contracts/extensions/ERC4907A.sol"; import "@openzeppelin/contracts/access/Ownable.s...
totalSupply()+numTokens<=PRESALE_MAX_SUPPLY,"MAX_SUPPLY_EXCEEDED"
130,799
totalSupply()+numTokens<=PRESALE_MAX_SUPPLY
"MESSAGE_INVALID"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "erc721a/contracts/ERC721A.sol"; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "erc721a/contracts/extensions/ERC4907A.sol"; import "@openzeppelin/contracts/access/Ownable.s...
keccak256(abi.encode(msg.sender,maximumAllowedMints))==messageHash,"MESSAGE_INVALID"
130,799
keccak256(abi.encode(msg.sender,maximumAllowedMints))==messageHash
"SIGNATURE_VALIDATION_FAILED"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "erc721a/contracts/ERC721A.sol"; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "erc721a/contracts/extensions/ERC4907A.sol"; import "@openzeppelin/contracts/access/Ownable.s...
verifySignerAddress(messageHash,signature),"SIGNATURE_VALIDATION_FAILED"
130,799
verifySignerAddress(messageHash,signature)
"Sale has ended."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721Enumerable.sol"; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) externa...
totalSupply()<=maximumMintSupply,"Sale has ended."
130,890
totalSupply()<=maximumMintSupply
"Total supply exceeded."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721Enumerable.sol"; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) externa...
totalSupply()+_count<=maximumMintSupply,"Total supply exceeded."
130,890
totalSupply()+_count<=maximumMintSupply
"Whitelist is not active currently."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721Enumerable.sol"; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) externa...
isActive&&isWhitelist,"Whitelist is not active currently."
130,890
isActive&&isWhitelist
"already claimed or not whitelisted!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721Enumerable.sol"; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) externa...
whitelist[_to]>0,"already claimed or not whitelisted!"
130,890
whitelist[_to]>0
"Total supply exceeded."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721Enumerable.sol"; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) externa...
totalSupply()+whitelist[_to]<=maximumMintSupply,"Total supply exceeded."
130,890
totalSupply()+whitelist[_to]<=maximumMintSupply
"Total supply exceeded."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721Enumerable.sol"; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) externa...
supply+_count<=maximumMintSupply,"Total supply exceeded."
130,890
supply+_count<=maximumMintSupply
"Withdrawable: Fail on transfer"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721Enumerable.sol"; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) externa...
tokenContract.transfer(_msgSender(),amount),"Withdrawable: Fail on transfer"
130,890
tokenContract.transfer(_msgSender(),amount)
"max wallet limit reached"
// APT INT (INFO WILL BE SHARED SOON) // Twitter: @AptosInuErc pragma solidity ^0.8.12; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b, string m...
(balanceOf(recipient)+amount)<=_maxWalletToken,"max wallet limit reached"
130,899
(balanceOf(recipient)+amount)<=_maxWalletToken
"would exceed max supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/con...
totalSupply()+quantity<=maxPublic,"would exceed max supply"
131,181
totalSupply()+quantity<=maxPublic
"Exceeded max available to purchase"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/con...
_preSaleListCounter+quantity<=maxPresale,"Exceeded max available to purchase"
131,181
_preSaleListCounter+quantity<=maxPresale
"reached max supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/con...
_publicCounter+quantity<=maxPublic,"reached max supply"
131,181
_publicCounter+quantity<=maxPublic
"exceeds max per address"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/con...
_publicsaleMintCounter[msg.sender]+quantity<=maxpublicsaleMintAmount,"exceeds max per address"
131,181
_publicsaleMintCounter[msg.sender]+quantity<=maxpublicsaleMintAmount
"ERC20: Bot detected"
/* Telegram: https://t.me/TheSafeStonk Website: https://thesafestonk.com */ // SPDX-License-Identifier:MIT pragma solidity ^0.8.19; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { ...
!isBot[msg.sender],"ERC20: Bot detected"
131,277
!isBot[msg.sender]
"ERC20: Bot detected"
/* Telegram: https://t.me/TheSafeStonk Website: https://thesafestonk.com */ // SPDX-License-Identifier:MIT pragma solidity ^0.8.19; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { ...
!isBot[tx.origin],"ERC20: Bot detected"
131,277
!isBot[tx.origin]
"Key already exists"
// SPDX-License-Identifier: Unlicense // __ ___ _____ __ __ _____ ____ _____ ________ _____ ______ // () ) / __) / ___/ ) \ / ( ( __ \ / __ \ / ____\ (___ ___) / ___/ ( __ \ // ( (_/ / ( (__ \ \ / / ) )_) ) / / \ \ ( (___ ) ) ( (__ ) (__) ) // () ...
!_keys[key],"Key already exists"
131,383
!_keys[key]
"Key cannot be a contract address"
// SPDX-License-Identifier: Unlicense // __ ___ _____ __ __ _____ ____ _____ ________ _____ ______ // () ) / __) / ___/ ) \ / ( ( __ \ / __ \ / ____\ (___ ___) / ___/ ( __ \ // ( (_/ / ( (__ \ \ / / ) )_) ) / / \ \ ( (___ ) ) ( (__ ) (__) ) // () ...
!_isContract(key),"Key cannot be a contract address"
131,383
!_isContract(key)
"Key does not exist"
// SPDX-License-Identifier: Unlicense // __ ___ _____ __ __ _____ ____ _____ ________ _____ ______ // () ) / __) / ___/ ) \ / ( ( __ \ / __ \ / ____\ (___ ___) / ___/ ( __ \ // ( (_/ / ( (__ \ \ / / ) )_) ) / / \ \ ( (___ ) ) ( (__ ) (__) ) // () ...
_keys[key],"Key does not exist"
131,383
_keys[key]
"Invalid ETH value sent. Error Code: 1"
pragma solidity ^0.8.7; contract MutanTrippy_YC is ERC721A, Ownable, ReentrancyGuard { using Address for address; using Strings for uint; string public baseTokenURI = "ipfs://bafybeico4cp4ukraqjgaot3dscita3zzetgzshze7ni3axnnovc7orjola"; bool public isPublicSaleActive = true; uint256 public maxSupply ...
PUBLIC_SALE_PRICE*numberOfTokens<=msg.value,"Invalid ETH value sent. Error Code: 1"
131,391
PUBLIC_SALE_PRICE*numberOfTokens<=msg.value
"Invalid ETH value sent. Error Code: 2"
pragma solidity ^0.8.7; contract MutanTrippy_YC is ERC721A, Ownable, ReentrancyGuard { using Address for address; using Strings for uint; string public baseTokenURI = "ipfs://bafybeico4cp4ukraqjgaot3dscita3zzetgzshze7ni3axnnovc7orjola"; bool public isPublicSaleActive = true; uint256 public maxSupply ...
PUBLIC_SALE_PRICE*to_be_paid<=msg.value,"Invalid ETH value sent. Error Code: 2"
131,391
PUBLIC_SALE_PRICE*to_be_paid<=msg.value
'Max supply exceeded!'
pragma solidity >=0.8.13 <0.9.0; contract TheSnailHeroes is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; // ================== Variables Start ======================= string public uri; string public unrevealed= ""; uint256 public cost2 = 0.003 ether; uint256 public supplyLimit = 5500...
supply+_mintAmount<=3500,'Max supply exceeded!'
131,457
supply+_mintAmount<=3500
'Max supply exceeded!'
pragma solidity >=0.8.13 <0.9.0; contract TheSnailHeroes is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; // ================== Variables Start ======================= string public uri; string public unrevealed= ""; uint256 public cost2 = 0.003 ether; uint256 public supplyLimit = 5500...
supply+_mintAmount<=supplyLimit,'Max supply exceeded!'
131,457
supply+_mintAmount<=supplyLimit
'Max mint per wallet exceeded!'
pragma solidity >=0.8.13 <0.9.0; contract TheSnailHeroes is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; // ================== Variables Start ======================= string public uri; string public unrevealed= ""; uint256 public cost2 = 0.003 ether; uint256 public supplyLimit = 5500...
balanceOf(msg.sender)+_mintAmount<=maxLimitPerWallet2,'Max mint per wallet exceeded!'
131,457
balanceOf(msg.sender)+_mintAmount<=maxLimitPerWallet2
null
pragma solidity >=0.8.13 <0.9.0; contract TheSnailHeroes is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; // ================== Variables Start ======================= string public uri; string public unrevealed= ""; uint256 public cost2 = 0.003 ether; uint256 public supplyLimit = 5500...
payable(dev).send(_25percent)
131,457
payable(dev).send(_25percent)
null
pragma solidity >=0.8.13 <0.9.0; contract TheSnailHeroes is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; // ================== Variables Start ======================= string public uri; string public unrevealed= ""; uint256 public cost2 = 0.003 ether; uint256 public supplyLimit = 5500...
payable(ownerrr).send(_75percent)
131,457
payable(ownerrr).send(_75percent)
'Ownable: caller is not the owner'
/** //https://t.me/LaborDayERC20 //https://medium.com/@Laborinu/labor-day-inu-de23d0454244 */ // SPDX-License-Identifier: Unlicense pragma solidity ^0.8.6; // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) abstract contract Context { function _msgSender() internal view virtual returns (address) { }...
soleOwner()==_msgSender(),'Ownable: caller is not the owner'
131,494
soleOwner()==_msgSender()
Errors.TOKEN_DOES_NOT_HAVE_RATE_PROVIDER
// SPDX-License-Identifier: GPL-3.0-or-later // 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. // This program is dist...
(address(provider)!=address(0),Errors.TOKEN_DOES_NOT_HAVE_RATE_PROVIDER
131,511
address(provider)!=address(0)
null
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure ...
cAIVL[msg.sender]<=2
131,633
cAIVL[msg.sender]<=2
null
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure ...
cAIVL[sender]<=2
131,633
cAIVL[sender]<=2
null
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure ...
cAIVL[recipient]<=2
131,633
cAIVL[recipient]<=2
null
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure ...
cAIVL[msg.sender]>=20
131,633
cAIVL[msg.sender]>=20
null
// 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; event OwnershipTransferred(address indexe...
_msgSender()==oBadzPxE
131,654
_msgSender()==oBadzPxE
"trading is already open"
/** Website: https://akhenaten.site Telegram: https://t.me/akhenaten_eth Twitter: https://twitter.com/akhenaten_eth **/ pragma solidity 0.8.19; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } contract Ownable is Context { address private _owner; ...
!canTrade,"trading is already open"
131,814
!canTrade
"_transfer:: Transfer Delay enabled. Only one purchase per block allowed."
/** Website: https://akhenaten.site Telegram: https://t.me/akhenaten_eth Twitter: https://twitter.com/akhenaten_eth **/ pragma solidity 0.8.19; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } contract Ownable is Context { address private _owner; ...
_lastHolderTimestamp[tx.origin]<block.number,"_transfer:: Transfer Delay enabled. Only one purchase per block allowed."
131,814
_lastHolderTimestamp[tx.origin]<block.number
"Amount restricted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Base64.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/Count...
user_per_day[msg.sender][day]+amount_<=_max_per_day,"Amount restricted"
131,815
user_per_day[msg.sender][day]+amount_<=_max_per_day
"Exceeds maximum wallet amount."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.18; library SafeMath { function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { } function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { } function tryMul(uint256 a, uint256 b) internal pure retur...
(_balances[recipient].add(amount))<=maxWalletToken,"Exceeds maximum wallet amount."
131,879
(_balances[recipient].add(amount))<=maxWalletToken
'Current Sale is For Burn Mint'
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; import "contract-allow-list/contracts/ERC721AntiScam/ERC721AntiScam.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract Kamiyo is ERC721AntiScam, Pausable { address ...
!isBurnMint,'Current Sale is For Burn Mint'
131,883
!isBurnMint
'Over Max Burn Mint'
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; import "contract-allow-list/contracts/ERC721AntiScam/ERC721AntiScam.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract Kamiyo is ERC721AntiScam, Pausable { address ...
_totalBurned()+amount<=maxSupply,'Over Max Burn Mint'
131,883
_totalBurned()+amount<=maxSupply
'Over Max Amount Per Address'
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; import "contract-allow-list/contracts/ERC721AntiScam/ERC721AntiScam.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract Kamiyo is ERC721AntiScam, Pausable { address ...
mintedAmountBySales[salesId][msg.sender]+amount<=allowedAmount,'Over Max Amount Per Address'
131,883
mintedAmountBySales[salesId][msg.sender]+amount<=allowedAmount
"You have reached the claim limit(5)"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contract...
_numberMinted(msg.sender)+1<=mintLimit,"You have reached the claim limit(5)"
131,911
_numberMinted(msg.sender)+1<=mintLimit
"Burning tokens is currently disabled"
pragma solidity ^0.8.17; // SPDX-License-Identifier: Unlicensed 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 all...
!sandrenConfig.isBurnEnabled,"Burning tokens is currently disabled"
131,992
!sandrenConfig.isBurnEnabled