Mystic Ape has come from the Depths of the Ether to help the DeFi Space along with his Community of Mystics to Ascend to the Moon, Mars and Beyond!
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in MysticApe._transfer(address,address,uint256) (#999-1042):
External calls:
- swapAndLiquify(contractTokenBalance) (#1029)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1096-1102)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1029)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
- _marketingAddress.transfer(marketingBNBToDonate) (#1083)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#955)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1152)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1143)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1144)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#871)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1163)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1164)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1154)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#873)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _rTotal = _rTotal.sub(rFee) (#910)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#957)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#870)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1162)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1153)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#872)
Apply the check-effects-interactions pattern.
Additional information: link
MysticApe._rTotal (#701) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
MysticApe._previousTaxFee (#709) is set pre-construction with a non-constant function or state variable:
- _taxFee
MysticApe._previousLiquidityFee (#712) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#295-301):
- (success) = recipient.call{value: amount}() (#299)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#361-382):
- (success,returndata) = target.call{value: weiValue}(data) (#365)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Redundant expression "this (#241)" inContext (#235-244)
Remove redundant statements if they congest code but offer no value.
Additional information: link
MysticApe.slitherConstructorVariables() (#684-1170) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#700)
MysticApe.slitherConstructorVariables() (#684-1170) uses literals with too many digits:
- _maxTxAmount = 10000000 * 10 ** 6 * 10 ** 9 (#721)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#435-438)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#444-448)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#450-452)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#455-460)
unlock() should be declared external:
- Ownable.unlock() (#463-468)
name() should be declared external:
- MysticApe.name() (#761-763)
symbol() should be declared external:
- MysticApe.symbol() (#765-767)
decimals() should be declared external:
- MysticApe.decimals() (#769-771)
totalSupply() should be declared external:
- MysticApe.totalSupply() (#773-775)
transfer(address,uint256) should be declared external:
- MysticApe.transfer(address,uint256) (#782-785)
allowance(address,address) should be declared external:
- MysticApe.allowance(address,address) (#787-789)
approve(address,uint256) should be declared external:
- MysticApe.approve(address,uint256) (#791-794)
transferFrom(address,address,uint256) should be declared external:
- MysticApe.transferFrom(address,address,uint256) (#796-800)
increaseAllowance(address,uint256) should be declared external:
- MysticApe.increaseAllowance(address,uint256) (#802-805)
decreaseAllowance(address,uint256) should be declared external:
- MysticApe.decreaseAllowance(address,uint256) (#807-810)
isExcludedFromReward(address) should be declared external:
- MysticApe.isExcludedFromReward(address) (#812-814)
totalFees() should be declared external:
- MysticApe.totalFees() (#816-818)
deliver(uint256) should be declared external:
- MysticApe.deliver(uint256) (#820-827)
reflectionFromToken(uint256,bool) should be declared external:
- MysticApe.reflectionFromToken(uint256,bool) (#829-838)
excludeFromReward(address) should be declared external:
- MysticApe.excludeFromReward(address) (#846-854)
excludeFromFee(address) should be declared external:
- MysticApe.excludeFromFee(address) (#879-881)
includeInFee(address) should be declared external:
- MysticApe.includeInFee(address) (#883-885)
setSwapAndLiquifyEnabled(bool) should be declared external:
- MysticApe.setSwapAndLiquifyEnabled(bool) (#901-904)
isExcludedFromFee(address) should be declared external:
- MysticApe.isExcludedFromFee(address) (#987-989)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract ticker (Mystic Ape) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.
MysticApe.addLiquidity(uint256,uint256) (#1105-1118) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
Ensure that all the return values of the function calls are used.
Additional information: link
MysticApe.allowance(address,address).owner (#787) shadows:
- Ownable.owner() (#416-418) (function)
MysticApe._approve(address,address,uint256).owner (#991) shadows:
- Ownable.owner() (#416-418) (function)
Rename the local variables that shadow another component.
Additional information: link
MysticApe.setTaxFeePercent(uint256) (#887-889) should emit an event for:
- _taxFee = taxFee (#888)
MysticApe.setLiquidityFeePercent(uint256) (#891-893) should emit an event for:
- _liquidityFee = liquidityFee (#892)
MysticApe.setMaxTxPercent(uint256) (#895-899) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#896-898)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in MysticApe._transfer(address,address,uint256) (#999-1042):
External calls:
- swapAndLiquify(contractTokenBalance) (#1029)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1096-1102)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1029)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
- _marketingAddress.transfer(marketingBNBToDonate) (#1083)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _liquidityFee = _previousLiquidityFee (#984)
- _liquidityFee = 0 (#979)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _previousLiquidityFee = _liquidityFee (#976)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _previousTaxFee = _taxFee (#975)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _tFeeTotal = _tFeeTotal.add(tFee) (#911)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _taxFee = _previousTaxFee (#983)
- _taxFee = 0 (#978)
Reentrancy in MysticApe.constructor() (#741-759):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#747-748)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#754)
- _isExcludedFromFee[address(this)] = true (#755)
- _isExcludedFromFee[_marketingAddress] = true (#756)
- uniswapV2Router = _uniswapV2Router (#751)
Reentrancy in MysticApe.swapAndLiquify(uint256) (#1046-1085):
External calls:
- swapTokensForEth(tokensToSwapToBNB) (#1066)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1096-1102)
- addLiquidity(tokenBalanceToLiquify,bnbToLiquify) (#1075)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
External calls sending eth:
- addLiquidity(tokenBalanceToLiquify,bnbToLiquify) (#1075)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
State variables written after the call(s):
- addLiquidity(tokenBalanceToLiquify,bnbToLiquify) (#1075)
- _allowances[owner][spender] = amount (#995)
Reentrancy in MysticApe.transferFrom(address,address,uint256) (#796-800):
External calls:
- _transfer(sender,recipient,amount) (#797)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1096-1102)
External calls sending eth:
- _transfer(sender,recipient,amount) (#797)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
- _marketingAddress.transfer(marketingBNBToDonate) (#1083)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#798)
- _allowances[owner][spender] = amount (#995)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in MysticApe._transfer(address,address,uint256) (#999-1042):
External calls:
- swapAndLiquify(contractTokenBalance) (#1029)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1096-1102)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1029)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
- _marketingAddress.transfer(marketingBNBToDonate) (#1083)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1147)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- Transfer(sender,recipient,tTransferAmount) (#1167)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- Transfer(sender,recipient,tTransferAmount) (#1157)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- Transfer(sender,recipient,tTransferAmount) (#876)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
Reentrancy in MysticApe.constructor() (#741-759):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#747-748)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#758)
Reentrancy in MysticApe.swapAndLiquify(uint256) (#1046-1085):
External calls:
- swapTokensForEth(tokensToSwapToBNB) (#1066)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1096-1102)
- addLiquidity(tokenBalanceToLiquify,bnbToLiquify) (#1075)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
External calls sending eth:
- addLiquidity(tokenBalanceToLiquify,bnbToLiquify) (#1075)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#996)
- addLiquidity(tokenBalanceToLiquify,bnbToLiquify) (#1075)
- SwapAndLiquify(tokenBalanceToLiquifyAsBNB,bnbToLiquify,tokenBalanceToLiquify) (#1077)
Reentrancy in MysticApe.swapAndLiquify(uint256) (#1046-1085):
External calls:
- swapTokensForEth(tokensToSwapToBNB) (#1066)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1096-1102)
- addLiquidity(tokenBalanceToLiquify,bnbToLiquify) (#1075)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
External calls sending eth:
- addLiquidity(tokenBalanceToLiquify,bnbToLiquify) (#1075)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
- _marketingAddress.transfer(marketingBNBToDonate) (#1083)
Event emitted after the call(s):
- DonateToMarketing(marketingBNBToDonate) (#1084)
Reentrancy in MysticApe.transferFrom(address,address,uint256) (#796-800):
External calls:
- _transfer(sender,recipient,amount) (#797)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1096-1102)
External calls sending eth:
- _transfer(sender,recipient,amount) (#797)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
- _marketingAddress.transfer(marketingBNBToDonate) (#1083)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#996)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#798)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#463-468) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#465)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#268-277) uses assembly
- INLINE ASM (#275)
Address._functionCallWithValue(address,bytes,uint256,string) (#361-382) uses assembly
- INLINE ASM (#374-377)
Do not use evm assembly.
Additional information: link
MysticApe.includeInReward(address) (#856-867) has costly operations inside a loop:
- _excluded.pop() (#863)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#361-382) is never used and should be removed
Address.functionCall(address,bytes) (#321-323) is never used and should be removed
Address.functionCall(address,bytes,string) (#331-333) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#346-348) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#356-359) is never used and should be removed
Address.isContract(address) (#268-277) is never used and should be removed
Address.sendValue(address,uint256) (#295-301) is never used and should be removed
Context._msgData() (#240-243) is never used and should be removed
SafeMath.mod(uint256,uint256) (#213-215) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#229-232) is never used and should be removed
Remove unused functions.
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#507) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#508) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#525) is not in mixedCase
Function IUniswapV2Router01.WETH() (#547) is not in mixedCase
Parameter MysticApe.setSwapAndLiquifyEnabled(bool)._enabled (#901) is not in mixedCase
Parameter MysticApe.calculateTaxFee(uint256)._amount (#960) is not in mixedCase
Parameter MysticApe.calculateLiquidityFee(uint256)._amount (#966) is not in mixedCase
Variable MysticApe._taxFee (#708) is not in mixedCase
Variable MysticApe._liquidityFee (#711) is not in mixedCase
Variable MysticApe._maxTxAmount (#721) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in MysticApe._transfer(address,address,uint256) (#999-1042):
External calls:
- swapAndLiquify(contractTokenBalance) (#1029)
- _marketingAddress.transfer(marketingBNBToDonate) (#1083)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1029)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
- _marketingAddress.transfer(marketingBNBToDonate) (#1083)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _liquidityFee = _previousLiquidityFee (#984)
- _liquidityFee = 0 (#979)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _previousLiquidityFee = _liquidityFee (#976)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _previousTaxFee = _taxFee (#975)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#955)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1152)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1143)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1144)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#871)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1163)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1164)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1154)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#873)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _rTotal = _rTotal.sub(rFee) (#910)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _tFeeTotal = _tFeeTotal.add(tFee) (#911)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#957)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#870)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1162)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1153)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#872)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- _taxFee = _previousTaxFee (#983)
- _taxFee = 0 (#978)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1147)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- Transfer(sender,recipient,tTransferAmount) (#1157)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- Transfer(sender,recipient,tTransferAmount) (#1167)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
- Transfer(sender,recipient,tTransferAmount) (#876)
- _tokenTransfer(from,to,amount,takeFee) (#1041)
Reentrancy in MysticApe.swapAndLiquify(uint256) (#1046-1085):
External calls:
- _marketingAddress.transfer(marketingBNBToDonate) (#1083)
External calls sending eth:
- addLiquidity(tokenBalanceToLiquify,bnbToLiquify) (#1075)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
- _marketingAddress.transfer(marketingBNBToDonate) (#1083)
Event emitted after the call(s):
- DonateToMarketing(marketingBNBToDonate) (#1084)
Reentrancy in MysticApe.transferFrom(address,address,uint256) (#796-800):
External calls:
- _transfer(sender,recipient,amount) (#797)
- _marketingAddress.transfer(marketingBNBToDonate) (#1083)
External calls sending eth:
- _transfer(sender,recipient,amount) (#797)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1110-1117)
- _marketingAddress.transfer(marketingBNBToDonate) (#1083)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#798)
- _allowances[owner][spender] = amount (#995)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#996)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#798)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#552) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#553)
Variable MysticApe._transferBothExcluded(address,address,uint256).rTransferAmount (#869) is too similar to MysticApe._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable MysticApe._transferToExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to MysticApe._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable MysticApe._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#931) is too similar to MysticApe._transferStandard(address,address,uint256).tTransferAmount (#1142)
Variable MysticApe._getValues(uint256).rTransferAmount (#916) is too similar to MysticApe._transferStandard(address,address,uint256).tTransferAmount (#1142)
Variable MysticApe._transferStandard(address,address,uint256).rTransferAmount (#1142) is too similar to MysticApe._transferStandard(address,address,uint256).tTransferAmount (#1142)
Variable MysticApe._transferFromExcluded(address,address,uint256).rTransferAmount (#1161) is too similar to MysticApe._transferStandard(address,address,uint256).tTransferAmount (#1142)
Variable MysticApe._getValues(uint256).rTransferAmount (#916) is too similar to MysticApe._getTValues(uint256).tTransferAmount (#923)
Variable MysticApe._transferStandard(address,address,uint256).rTransferAmount (#1142) is too similar to MysticApe._getTValues(uint256).tTransferAmount (#923)
Variable MysticApe._transferFromExcluded(address,address,uint256).rTransferAmount (#1161) is too similar to MysticApe._getValues(uint256).tTransferAmount (#915)
Variable MysticApe._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#931) is too similar to MysticApe._getTValues(uint256).tTransferAmount (#923)
Variable MysticApe._transferFromExcluded(address,address,uint256).rTransferAmount (#1161) is too similar to MysticApe._getTValues(uint256).tTransferAmount (#923)
Variable MysticApe._transferBothExcluded(address,address,uint256).rTransferAmount (#869) is too similar to MysticApe._transferStandard(address,address,uint256).tTransferAmount (#1142)
Variable MysticApe.reflectionFromToken(uint256,bool).rTransferAmount (#835) is too similar to MysticApe._transferStandard(address,address,uint256).tTransferAmount (#1142)
Variable MysticApe._transferBothExcluded(address,address,uint256).rTransferAmount (#869) is too similar to MysticApe._getValues(uint256).tTransferAmount (#915)
Variable MysticApe._transferToExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to MysticApe._transferStandard(address,address,uint256).tTransferAmount (#1142)
Variable MysticApe.reflectionFromToken(uint256,bool).rTransferAmount (#835) is too similar to MysticApe._getValues(uint256).tTransferAmount (#915)
Variable MysticApe._transferBothExcluded(address,address,uint256).rTransferAmount (#869) is too similar to MysticApe._getTValues(uint256).tTransferAmount (#923)
Variable MysticApe.reflectionFromToken(uint256,bool).rTransferAmount (#835) is too similar to MysticApe._getTValues(uint256).tTransferAmount (#923)
Variable MysticApe._transferFromExcluded(address,address,uint256).rTransferAmount (#1161) is too similar to MysticApe._transferFromExcluded(address,address,uint256).tTransferAmount (#1161)
Variable MysticApe._transferToExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to MysticApe._getValues(uint256).tTransferAmount (#915)
Variable MysticApe._transferToExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to MysticApe._getTValues(uint256).tTransferAmount (#923)
Variable MysticApe._transferBothExcluded(address,address,uint256).rTransferAmount (#869) is too similar to MysticApe._transferFromExcluded(address,address,uint256).tTransferAmount (#1161)
Variable MysticApe._transferToExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to MysticApe._transferFromExcluded(address,address,uint256).tTransferAmount (#1161)
Variable MysticApe._transferFromExcluded(address,address,uint256).rTransferAmount (#1161) is too similar to MysticApe._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable MysticApe._transferBothExcluded(address,address,uint256).rTransferAmount (#869) is too similar to MysticApe._transferBothExcluded(address,address,uint256).tTransferAmount (#869)
Variable MysticApe._getValues(uint256).rTransferAmount (#916) is too similar to MysticApe._transferBothExcluded(address,address,uint256).tTransferAmount (#869)
Variable MysticApe._transferToExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to MysticApe._transferBothExcluded(address,address,uint256).tTransferAmount (#869)
Variable MysticApe._getValues(uint256).rTransferAmount (#916) is too similar to MysticApe._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable MysticApe.reflectionFromToken(uint256,bool).rTransferAmount (#835) is too similar to MysticApe._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable MysticApe._transferStandard(address,address,uint256).rTransferAmount (#1142) is too similar to MysticApe._getValues(uint256).tTransferAmount (#915)
Variable MysticApe._transferStandard(address,address,uint256).rTransferAmount (#1142) is too similar to MysticApe._transferFromExcluded(address,address,uint256).tTransferAmount (#1161)
Variable MysticApe._transferStandard(address,address,uint256).rTransferAmount (#1142) is too similar to MysticApe._transferBothExcluded(address,address,uint256).tTransferAmount (#869)
Variable MysticApe._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#931) is too similar to MysticApe._getValues(uint256).tTransferAmount (#915)
Variable MysticApe._transferStandard(address,address,uint256).rTransferAmount (#1142) is too similar to MysticApe._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable MysticApe._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#931) is too similar to MysticApe._transferFromExcluded(address,address,uint256).tTransferAmount (#1161)
Variable MysticApe.reflectionFromToken(uint256,bool).rTransferAmount (#835) is too similar to MysticApe._transferFromExcluded(address,address,uint256).tTransferAmount (#1161)
Variable MysticApe._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#931) is too similar to MysticApe._transferBothExcluded(address,address,uint256).tTransferAmount (#869)
Variable MysticApe._transferFromExcluded(address,address,uint256).rTransferAmount (#1161) is too similar to MysticApe._transferBothExcluded(address,address,uint256).tTransferAmount (#869)
Variable MysticApe._getValues(uint256).rTransferAmount (#916) is too similar to MysticApe._getValues(uint256).tTransferAmount (#915)
Variable MysticApe.reflectionFromToken(uint256,bool).rTransferAmount (#835) is too similar to MysticApe._transferBothExcluded(address,address,uint256).tTransferAmount (#869)
Variable MysticApe._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#931) is too similar to MysticApe._transferToExcluded(address,address,uint256).tTransferAmount (#1151)
Variable MysticApe._getValues(uint256).rTransferAmount (#916) is too similar to MysticApe._transferFromExcluded(address,address,uint256).tTransferAmount (#1161)
Prevent variables from having similar names.
Additional information: link
MysticApe._decimals (#706) should be constant
MysticApe._marketingAddress (#697) should be constant
MysticApe._name (#704) should be constant
MysticApe._symbol (#705) should be constant
MysticApe._tTotal (#700) should be constant
MysticApe.numTokensSellToAddToLiquidity (#724) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to find KYC or doxxing proof
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Telegram account has less than 100 subscribers
Twitter account has less than 100 followers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts