META COURSE Token Logo

COURSE [META COURSE] Token

About COURSE

Listings

Token 20 months
CoinGecko 18 months
CoinMarketCap 19 months
white paper

Meta Course aims to provide free online training to all schools and companies to bring flexible, affordable, business-related online learning to individuals and organizations worldwide.

Social

Laser Scorebeta Last Audit: 12 October 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

METACOURSE.addLiquidity(uint256,uint256) (#1022-1035) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1027-1034)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in METACOURSE._transfer(address,address,uint256) (#952-979):
External calls:
- swapAndLiquify(contractTokenBalance) (#974)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1027-1034)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1013-1019)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#974)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1027-1034)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#978)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#923)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurn) (#1116)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1150)
- _rOwned[devWallet] = _rOwned[devWallet].add(rdev) (#1143)
- _rOwned[marketingWallet] = _rOwned[marketingWallet].add(rMarketing) (#1130)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1161)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#867)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1152)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1162)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#869)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1100)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1101)
- _tokenTransfer(from,to,amount) (#978)
- _rTotal = _rTotal.sub(rFee) (#878)
- _tokenTransfer(from,to,amount) (#978)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#925)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#866)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1160)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1151)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#868)
Apply the check-effects-interactions pattern.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

Redundant expression "this (#230)" inContext (#224-233)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Ownable.unlock() (#452-457) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#454)
Avoid relying on block.timestamp.

Additional information: link

METACOURSE.setNumTokensSellToAddToLiquidity(uint256,uint256) (#1176-1178) should emit an event for:
- numTokensSellToAddToLiquidity = newAmt * 10 ** decimal (#1177)
METACOURSE.setMaxTxAmount(uint256,uint256) (#1180-1183) should emit an event for:
- _maxTxAmount = maxTxAmount * 10 ** decimal (#1182)
Emit an event for critical parameter changes.

Additional information: link

Variable METACOURSE._maxTxAmount (#721) is not in mixedCase
Variable METACOURSE._marketingFee (#698) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#497) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#513) is not in mixedCase
Parameter METACOURSE.calculateLiquidityFee(uint256)._amount (#934) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#496) is not in mixedCase
Parameter METACOURSE.setSwapAndLiquifyEnabled(bool)._enabled (#1191) is not in mixedCase
Parameter METACOURSE.calculateTaxFee(uint256)._amount (#928) is not in mixedCase
Variable METACOURSE._devFee (#696) is not in mixedCase
Variable METACOURSE._taxFee (#697) is not in mixedCase
Function IUniswapV2Router01.WETH() (#534) is not in mixedCase
Variable METACOURSE._liquidityFee (#695) is not in mixedCase
Variable METACOURSE._burnFee (#699) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

METACOURSE.slitherConstructorVariables() (#672-1197) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#708)
METACOURSE.slitherConstructorVariables() (#672-1197) uses literals with too many digits:
- _maxTxAmount = 10000000000000000 * 10 ** 17 (#721)
METACOURSE.slitherConstructorVariables() (#672-1197) uses literals with too many digits:
- _tTotal = 10000000000000000 * 10 ** 17 (#686)
METACOURSE.slitherConstructorVariables() (#672-1197) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 50000000000 * 10 ** 17 (#720)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

METACOURSE._symbol (#691) should be constant
METACOURSE._name (#690) should be constant
METACOURSE._decimals (#692) should be constant
METACOURSE._tTotal (#686) should be constant
METACOURSE.devWallet (#709) should be constant
METACOURSE.deadAddress (#708) should be constant
METACOURSE.marketingWallet (#710) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

totalSupply() should be declared external:
- METACOURSE.totalSupply() (#769-771)
decreaseAllowance(address,uint256) should be declared external:
- METACOURSE.decreaseAllowance(address,uint256) (#803-806)
allowance(address,address) should be declared external:
- METACOURSE.allowance(address,address) (#783-785)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#424-427)
totalFees() should be declared external:
- METACOURSE.totalFees() (#812-814)
excludeFromFee(address) should be declared external:
- METACOURSE.excludeFromFee(address) (#1168-1170)
setRouterAddress(address) should be declared external:
- METACOURSE.setRouterAddress(address) (#1185-1189)
approve(address,uint256) should be declared external:
- METACOURSE.approve(address,uint256) (#787-790)
setSwapAndLiquifyEnabled(bool) should be declared external:
- METACOURSE.setSwapAndLiquifyEnabled(bool) (#1191-1194)
excludeFromReward(address) should be declared external:
- METACOURSE.excludeFromReward(address) (#842-849)
deliver(uint256) should be declared external:
- METACOURSE.deliver(uint256) (#816-823)
isExcludedFromFee(address) should be declared external:
- METACOURSE.isExcludedFromFee(address) (#940-942)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#433-437)
name() should be declared external:
- METACOURSE.name() (#757-759)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#439-441)
includeInFee(address) should be declared external:
- METACOURSE.includeInFee(address) (#1172-1174)
transfer(address,uint256) should be declared external:
- METACOURSE.transfer(address,uint256) (#778-781)
reflectionFromToken(uint256,bool) should be declared external:
- METACOURSE.reflectionFromToken(uint256,bool) (#825-834)
isExcludedFromReward(address) should be declared external:
- METACOURSE.isExcludedFromReward(address) (#808-810)
unlock() should be declared external:
- Ownable.unlock() (#452-457)
increaseAllowance(address,uint256) should be declared external:
- METACOURSE.increaseAllowance(address,uint256) (#798-801)
symbol() should be declared external:
- METACOURSE.symbol() (#761-763)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#444-449)
decimals() should be declared external:
- METACOURSE.decimals() (#765-767)
transferFrom(address,address,uint256) should be declared external:
- METACOURSE.transferFrom(address,address,uint256) (#792-796)
Use the external attribute for functions never called from the contract.

Additional information: link

METACOURSE.addLiquidity(uint256,uint256) (#1022-1035) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1027-1034)
Ensure that all the return values of the function calls are used.

Additional information: link

METACOURSE.allowance(address,address).owner (#783) shadows:
- Ownable.owner() (#405-407) (function)
METACOURSE._approve(address,address,uint256).owner (#944) shadows:
- Ownable.owner() (#405-407) (function)
Rename the local variables that shadow another component.

Additional information: link

Address.isContract(address) (#257-266) uses assembly
- INLINE ASM (#264)
Address._functionCallWithValue(address,bytes,uint256,string) (#350-371) uses assembly
- INLINE ASM (#363-366)
Do not use evm assembly.

Additional information: link

METACOURSE.takeDev(address,uint256,uint256,uint256) (#1135-1146) performs a multiplication on the result of a division:
-tdev = tAmount.div(100).mul(_devFee) (#1139)
METACOURSE.takeBurn(address,uint256,uint256,uint256) (#1108-1119) performs a multiplication on the result of a division:
-tBurn = tAmount.div(100).mul(_burnFee) (#1112)
METACOURSE.takeMarketing(address,uint256,uint256,uint256) (#1122-1133) performs a multiplication on the result of a division:
-tMarketing = tAmount.div(100).mul(_marketingFee) (#1126)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in METACOURSE.swapAndLiquify(uint256) (#981-1002):
External calls:
- swapTokensForEth(half) (#993)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1013-1019)
- addLiquidity(otherHalf,newBalance) (#999)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1027-1034)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#999)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1027-1034)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#999)
- _allowances[owner][spender] = amount (#948)
Reentrancy in METACOURSE.transferFrom(address,address,uint256) (#792-796):
External calls:
- _transfer(sender,recipient,amount) (#793)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1027-1034)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1013-1019)
External calls sending eth:
- _transfer(sender,recipient,amount) (#793)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1027-1034)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#794)
- _allowances[owner][spender] = amount (#948)
Reentrancy in METACOURSE.setRouterAddress(address) (#1185-1189):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#1187)
State variables written after the call(s):
- uniswapV2Router = _newPancakeRouter (#1188)
Reentrancy in METACOURSE._transfer(address,address,uint256) (#952-979):
External calls:
- swapAndLiquify(contractTokenBalance) (#974)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1027-1034)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1013-1019)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#974)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1027-1034)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#978)
- _burnFee = _previousBurnFee (#1087)
- _burnFee = 0 (#1080)
- _tokenTransfer(from,to,amount) (#978)
- _devFee = _previousDevFee (#1089)
- _devFee = 0 (#1081)
- _tokenTransfer(from,to,amount) (#978)
- _liquidityFee = _previousLiquidityFee (#1086)
- _liquidityFee = 0 (#1078)
- _tokenTransfer(from,to,amount) (#978)
- _marketingFee = _previousmarketingFee (#1088)
- _marketingFee = 0 (#1079)
- _tokenTransfer(from,to,amount) (#978)
- _previousBurnFee = _burnFee (#1074)
- _tokenTransfer(from,to,amount) (#978)
- _previousDevFee = _devFee (#1076)
- _tokenTransfer(from,to,amount) (#978)
- _previousLiquidityFee = _liquidityFee (#1073)
- _tokenTransfer(from,to,amount) (#978)
- _previousTaxFee = _taxFee (#1072)
- _tokenTransfer(from,to,amount) (#978)
- _previousmarketingFee = _marketingFee (#1075)
- _tokenTransfer(from,to,amount) (#978)
- _tFeeTotal = _tFeeTotal.add(tFee) (#879)
- _tokenTransfer(from,to,amount) (#978)
- _taxFee = _previousTaxFee (#1085)
- _taxFee = 0 (#1077)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in METACOURSE.transferFrom(address,address,uint256) (#792-796):
External calls:
- _transfer(sender,recipient,amount) (#793)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1027-1034)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1013-1019)
External calls sending eth:
- _transfer(sender,recipient,amount) (#793)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1027-1034)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#949)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#794)
Reentrancy in METACOURSE.swapAndLiquify(uint256) (#981-1002):
External calls:
- swapTokensForEth(half) (#993)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1013-1019)
- addLiquidity(otherHalf,newBalance) (#999)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1027-1034)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#999)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1027-1034)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#949)
- addLiquidity(otherHalf,newBalance) (#999)
- SwapAndLiquify(half,newBalance,otherHalf) (#1001)
Reentrancy in METACOURSE._transfer(address,address,uint256) (#952-979):
External calls:
- swapAndLiquify(contractTokenBalance) (#974)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1027-1034)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1013-1019)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#974)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1027-1034)
Event emitted after the call(s):
- Transfer(sender,marketingWallet,tMarketing) (#1131)
- _tokenTransfer(from,to,amount) (#978)
- Transfer(sender,devWallet,tdev) (#1144)
- _tokenTransfer(from,to,amount) (#978)
- Transfer(sender,deadAddress,tBurn) (#1117)
- _tokenTransfer(from,to,amount) (#978)
- Transfer(sender,recipient,tTransferAmount) (#1165)
- _tokenTransfer(from,to,amount) (#978)
- Transfer(sender,recipient,tTransferAmount) (#1155)
- _tokenTransfer(from,to,amount) (#978)
- Transfer(sender,recipient,tTransferAmount) (#872)
- _tokenTransfer(from,to,amount) (#978)
- Transfer(sender,recipient,tTransferAmount) (#1104)
- _tokenTransfer(from,to,amount) (#978)
Apply the check-effects-interactions pattern.

Additional information: link

METACOURSE.includeInReward(address) (#851-862) has costly operations inside a loop:
- _excluded.pop() (#858)
Use a local variable to hold the loop computation result.

Additional information: link

Address.sendValue(address,uint256) (#284-290) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#335-337) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#218-221) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#345-348) is never used and should be removed
Context._msgData() (#229-232) is never used and should be removed
SafeMath.mod(uint256,uint256) (#202-204) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#350-371) is never used and should be removed
Address.isContract(address) (#257-266) is never used and should be removed
Address.functionCall(address,bytes,string) (#320-322) is never used and should be removed
Address.functionCall(address,bytes) (#310-312) is never used and should be removed
Remove unused functions.

Additional information: link

METACOURSE._rTotal (#687) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
METACOURSE._previousDevFee (#701) is set pre-construction with a non-constant function or state variable:
- _devFee
METACOURSE._previousBurnFee (#705) is set pre-construction with a non-constant function or state variable:
- _burnFee
METACOURSE._previousTaxFee (#702) is set pre-construction with a non-constant function or state variable:
- _taxFee
METACOURSE._previousLiquidityFee (#703) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
METACOURSE._previousmarketingFee (#704) is set pre-construction with a non-constant function or state variable:
- _marketingFee
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._functionCallWithValue(address,bytes,uint256,string) (#350-371):
- (success,returndata) = target.call{value: weiValue}(data) (#354)
Low level call in Address.sendValue(address,uint256) (#284-290):
- (success) = recipient.call{value: amount}() (#288)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable METACOURSE.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1108) is too similar to METACOURSE._transferBothExcluded(address,address,uint256).tTransferAmount (#865)
Variable METACOURSE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#899) is too similar to METACOURSE.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1108)
Variable METACOURSE.reflectionFromToken(uint256,bool).rTransferAmount (#831) is too similar to METACOURSE.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1135)
Variable METACOURSE._transferToExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to METACOURSE._getValues(uint256).tTransferAmount (#883)
Variable METACOURSE.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1135) is too similar to METACOURSE._getValues(uint256).tTransferAmount (#883)
Variable METACOURSE.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1135) is too similar to METACOURSE.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1135)
Variable METACOURSE._transferStandard(address,address,uint256).rTransferAmount (#1096) is too similar to METACOURSE.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1108)
Variable METACOURSE._transferBothExcluded(address,address,uint256).rTransferAmount (#865) is too similar to METACOURSE.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1135)
Variable METACOURSE.reflectionFromToken(uint256,bool).rTransferAmount (#831) is too similar to METACOURSE._transferStandard(address,address,uint256).tTransferAmount (#1096)
Variable METACOURSE._transferStandard(address,address,uint256).rTransferAmount (#1096) is too similar to METACOURSE._transferToExcluded(address,address,uint256).tTransferAmount (#1149)
Variable METACOURSE._transferToExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to METACOURSE._transferStandard(address,address,uint256).tTransferAmount (#1096)
Variable METACOURSE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#899) is too similar to METACOURSE.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1135)
Variable METACOURSE.reflectionFromToken(uint256,bool).rTransferAmount (#831) is too similar to METACOURSE._getTValues(uint256).tTransferAmount (#891)
Variable METACOURSE._transferStandard(address,address,uint256).rTransferAmount (#1096) is too similar to METACOURSE._getTValues(uint256).tTransferAmount (#891)
Variable METACOURSE._transferToExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to METACOURSE._getTValues(uint256).tTransferAmount (#891)
Variable METACOURSE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#899) is too similar to METACOURSE.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1122)
Variable METACOURSE.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1108) is too similar to METACOURSE.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1122)
Variable METACOURSE._getValues(uint256).rTransferAmount (#884) is too similar to METACOURSE._getTValues(uint256).tTransferAmount (#891)
Variable METACOURSE.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1108) is too similar to METACOURSE._transferStandard(address,address,uint256).tTransferAmount (#1096)
Variable METACOURSE._transferFromExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to METACOURSE.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1135)
Variable METACOURSE.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1135) is too similar to METACOURSE.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1122)
Variable METACOURSE.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1108) is too similar to METACOURSE.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1108)
Variable METACOURSE._transferBothExcluded(address,address,uint256).rTransferAmount (#865) is too similar to METACOURSE._getValues(uint256).tTransferAmount (#883)
Variable METACOURSE._getValues(uint256).rTransferAmount (#884) is too similar to METACOURSE.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1135)
Variable METACOURSE.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1122) is too similar to METACOURSE.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1135)
Variable METACOURSE._transferStandard(address,address,uint256).rTransferAmount (#1096) is too similar to METACOURSE.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1135)
Variable METACOURSE._transferToExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to METACOURSE.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1122)
Variable METACOURSE._transferFromExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to METACOURSE._transferToExcluded(address,address,uint256).tTransferAmount (#1149)
Variable METACOURSE.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1122) is too similar to METACOURSE._getTValues(uint256).tTransferAmount (#891)
Variable METACOURSE.reflectionFromToken(uint256,bool).rTransferAmount (#831) is too similar to METACOURSE._transferFromExcluded(address,address,uint256).tTransferAmount (#1159)
Variable METACOURSE._transferFromExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to METACOURSE.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1122)
Variable METACOURSE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#899) is too similar to METACOURSE._transferBothExcluded(address,address,uint256).tTransferAmount (#865)
Variable METACOURSE._transferToExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to METACOURSE._transferFromExcluded(address,address,uint256).tTransferAmount (#1159)
Variable METACOURSE._getValues(uint256).rTransferAmount (#884) is too similar to METACOURSE._transferToExcluded(address,address,uint256).tTransferAmount (#1149)
Variable METACOURSE.reflectionFromToken(uint256,bool).rTransferAmount (#831) is too similar to METACOURSE.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1122)
Variable METACOURSE.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1108) is too similar to METACOURSE._transferFromExcluded(address,address,uint256).tTransferAmount (#1159)
Variable METACOURSE._transferStandard(address,address,uint256).rTransferAmount (#1096) is too similar to METACOURSE._transferStandard(address,address,uint256).tTransferAmount (#1096)
Variable METACOURSE._transferFromExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to METACOURSE._transferFromExcluded(address,address,uint256).tTransferAmount (#1159)
Variable METACOURSE._transferStandard(address,address,uint256).rTransferAmount (#1096) is too similar to METACOURSE._transferBothExcluded(address,address,uint256).tTransferAmount (#865)
Variable METACOURSE._transferStandard(address,address,uint256).rTransferAmount (#1096) is too similar to METACOURSE._transferFromExcluded(address,address,uint256).tTransferAmount (#1159)
Variable METACOURSE.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1122) is too similar to METACOURSE.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1122)
Variable METACOURSE._transferToExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to METACOURSE._transferBothExcluded(address,address,uint256).tTransferAmount (#865)
Variable METACOURSE._getValues(uint256).rTransferAmount (#884) is too similar to METACOURSE.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1108)
Variable METACOURSE._getValues(uint256).rTransferAmount (#884) is too similar to METACOURSE.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1122)
Variable METACOURSE._transferStandard(address,address,uint256).rTransferAmount (#1096) is too similar to METACOURSE._getValues(uint256).tTransferAmount (#883)
Variable METACOURSE.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1135) is too similar to METACOURSE._transferBothExcluded(address,address,uint256).tTransferAmount (#865)
Variable METACOURSE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#899) is too similar to METACOURSE._transferStandard(address,address,uint256).tTransferAmount (#1096)
Variable METACOURSE.reflectionFromToken(uint256,bool).rTransferAmount (#831) is too similar to METACOURSE.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1108)
Variable METACOURSE.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1135) is too similar to METACOURSE._transferFromExcluded(address,address,uint256).tTransferAmount (#1159)
Variable METACOURSE._transferFromExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to METACOURSE._transferStandard(address,address,uint256).tTransferAmount (#1096)
Variable METACOURSE._transferToExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to METACOURSE.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1108)
Variable METACOURSE._getValues(uint256).rTransferAmount (#884) is too similar to METACOURSE._transferFromExcluded(address,address,uint256).tTransferAmount (#1159)
Variable METACOURSE.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1108) is too similar to METACOURSE.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1135)
Variable METACOURSE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#899) is too similar to METACOURSE._getTValues(uint256).tTransferAmount (#891)
Variable METACOURSE._getValues(uint256).rTransferAmount (#884) is too similar to METACOURSE._transferStandard(address,address,uint256).tTransferAmount (#1096)
Variable METACOURSE.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1135) is too similar to METACOURSE._transferToExcluded(address,address,uint256).tTransferAmount (#1149)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#539) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#540)
Variable METACOURSE.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1135) is too similar to METACOURSE._transferStandard(address,address,uint256).tTransferAmount (#1096)
Variable METACOURSE._transferToExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to METACOURSE._transferToExcluded(address,address,uint256).tTransferAmount (#1149)
Variable METACOURSE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#899) is too similar to METACOURSE._getValues(uint256).tTransferAmount (#883)
Variable METACOURSE._transferFromExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to METACOURSE._getTValues(uint256).tTransferAmount (#891)
Variable METACOURSE._transferBothExcluded(address,address,uint256).rTransferAmount (#865) is too similar to METACOURSE._getTValues(uint256).tTransferAmount (#891)
Variable METACOURSE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#899) is too similar to METACOURSE._transferToExcluded(address,address,uint256).tTransferAmount (#1149)
Variable METACOURSE.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1122) is too similar to METACOURSE.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1108)
Variable METACOURSE.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1122) is too similar to METACOURSE._transferFromExcluded(address,address,uint256).tTransferAmount (#1159)
Variable METACOURSE.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1122) is too similar to METACOURSE._getValues(uint256).tTransferAmount (#883)
Variable METACOURSE._getValues(uint256).rTransferAmount (#884) is too similar to METACOURSE._transferBothExcluded(address,address,uint256).tTransferAmount (#865)
Variable METACOURSE.reflectionFromToken(uint256,bool).rTransferAmount (#831) is too similar to METACOURSE._transferBothExcluded(address,address,uint256).tTransferAmount (#865)
Variable METACOURSE.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1108) is too similar to METACOURSE._getTValues(uint256).tTransferAmount (#891)
Variable METACOURSE.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1122) is too similar to METACOURSE._transferBothExcluded(address,address,uint256).tTransferAmount (#865)
Variable METACOURSE.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1122) is too similar to METACOURSE._transferToExcluded(address,address,uint256).tTransferAmount (#1149)
Variable METACOURSE.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1108) is too similar to METACOURSE._getValues(uint256).tTransferAmount (#883)
Variable METACOURSE.reflectionFromToken(uint256,bool).rTransferAmount (#831) is too similar to METACOURSE._transferToExcluded(address,address,uint256).tTransferAmount (#1149)
Variable METACOURSE._transferBothExcluded(address,address,uint256).rTransferAmount (#865) is too similar to METACOURSE._transferFromExcluded(address,address,uint256).tTransferAmount (#1159)
Variable METACOURSE.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1135) is too similar to METACOURSE.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1108)
Variable METACOURSE._transferBothExcluded(address,address,uint256).rTransferAmount (#865) is too similar to METACOURSE.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1122)
Variable METACOURSE._transferFromExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to METACOURSE.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1108)
Variable METACOURSE._transferBothExcluded(address,address,uint256).rTransferAmount (#865) is too similar to METACOURSE._transferToExcluded(address,address,uint256).tTransferAmount (#1149)
Variable METACOURSE.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1135) is too similar to METACOURSE._getTValues(uint256).tTransferAmount (#891)
Variable METACOURSE._transferFromExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to METACOURSE._getValues(uint256).tTransferAmount (#883)
Variable METACOURSE.reflectionFromToken(uint256,bool).rTransferAmount (#831) is too similar to METACOURSE._getValues(uint256).tTransferAmount (#883)
Variable METACOURSE._transferToExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to METACOURSE.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1135)
Variable METACOURSE.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1108) is too similar to METACOURSE._transferToExcluded(address,address,uint256).tTransferAmount (#1149)
Variable METACOURSE._transferBothExcluded(address,address,uint256).rTransferAmount (#865) is too similar to METACOURSE.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1108)
Variable METACOURSE._getValues(uint256).rTransferAmount (#884) is too similar to METACOURSE._getValues(uint256).tTransferAmount (#883)
Variable METACOURSE._transferFromExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to METACOURSE._transferBothExcluded(address,address,uint256).tTransferAmount (#865)
Variable METACOURSE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#899) is too similar to METACOURSE._transferFromExcluded(address,address,uint256).tTransferAmount (#1159)
Variable METACOURSE.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1122) is too similar to METACOURSE._transferStandard(address,address,uint256).tTransferAmount (#1096)
Variable METACOURSE._transferStandard(address,address,uint256).rTransferAmount (#1096) is too similar to METACOURSE.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1122)
Variable METACOURSE._transferBothExcluded(address,address,uint256).rTransferAmount (#865) is too similar to METACOURSE._transferStandard(address,address,uint256).tTransferAmount (#1096)
Variable METACOURSE._transferBothExcluded(address,address,uint256).rTransferAmount (#865) is too similar to METACOURSE._transferBothExcluded(address,address,uint256).tTransferAmount (#865)
Prevent variables from having similar names.

Additional information: link

Holders:


Token is deployed only at one blockchain


Average 30d PancakeSwap liquidity is low.


Average 30d PancakeSwap volume is low.


Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.


Average 30d number of PancakeSwap swaps is low.

Contract has 8% buy tax and 7% sell tax.
Taxes are low and contract ownership is renounced.


Twitter account has relatively few followers


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to find token on CoinHunt

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


Token has relatively low CoinGecko rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for COURSE

News for COURSE