Player001 Token Logo

Il-nam [Player001] Token

ALERT: pump & dump

About Il-nam

Listings

Not Found
Token 17 months

Website

Not Found

Player 001's real name is Oh Il-nam, which he tells Gi-hun before his faked death. He confirms this again in the final episode. The character's name literally translates to "first man" in English.

Player 001 as a founding member, rewards you with Squid Game 2.0.

Social

Laser Scorebeta Last Audit: 19 June 2022

report
Token seems to be a scam (type: pump & dump).

Player001.swapBack() (#679-729) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#711)
- (tmpSuccess,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#712)
- (tmpSuccess,None) = address(ecoFeeReceiver).call{gas: 30000,value: amountBNBEco}() (#713)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

DividendDistributor.distributeDividend(address) (#340-351) ignores return value by RWRD.transfer(shareholder,amount) (#346)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

Reentrancy in Player001._transferFrom(address,address,uint256) (#529-580):
External calls:
- swapBack() (#559)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#692-698)
- distributor.deposit{value: amountBNBReflection}() (#710)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#711)
- (tmpSuccess,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#712)
- (tmpSuccess,None) = address(ecoFeeReceiver).call{gas: 30000,value: amountBNBEco}() (#713)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#719-726)
External calls sending eth:
- swapBack() (#559)
- distributor.deposit{value: amountBNBReflection}() (#710)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#711)
- (tmpSuccess,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#712)
- (tmpSuccess,None) = address(ecoFeeReceiver).call{gas: 30000,value: amountBNBEco}() (#713)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#719-726)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#562)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#565)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#564)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#613)
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.


Combination 2: Unchecked transfer + 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.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Contract ownership is not renounced (belongs to a wallet)

Player001.swapBack().tmpSuccess (#711) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#711)
(tmpSuccess,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#712)
Player001.swapBack().tmpSuccess (#711) is written in both
(tmpSuccess,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#712)
(tmpSuccess,None) = address(ecoFeeReceiver).call{gas: 30000,value: amountBNBEco}() (#713)
Player001.swapBack().tmpSuccess (#711) is written in both
(tmpSuccess,None) = address(ecoFeeReceiver).call{gas: 30000,value: amountBNBEco}() (#713)
tmpSuccess = false (#716)
Fix or remove the writes.

Additional information: link

Player001.manage_houseguests(address[],bool).i (#668) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

Player001.swapBack() (#679-729) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#719-726)
Ensure that all the return values of the function calls are used.

Additional information: link

Player001.setMaster(address) (#799-801) should emit an event for:
- master = _master (#800)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#146) lacks a zero-check on :
- owner = adr (#147)
Player001.clearStuckBalanceX(uint256,address).adr (#635) lacks a zero-check on :
- address(adr).transfer(amountBNB * amountPercentage / 100) (#637)
Player001.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#767) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#768)
Player001.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#767) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#769)
Player001.setFeeReceivers(address,address,address,address)._buyBackFeeReceiver (#767) lacks a zero-check on :
- buyBackFeeReceiver = _buyBackFeeReceiver (#770)
Player001.setFeeReceivers(address,address,address,address)._ecoFeeReceiver (#767) lacks a zero-check on :
- ecoFeeReceiver = _ecoFeeReceiver (#771)
Player001.setMaster(address)._master (#799) lacks a zero-check on :
- master = _master (#800)
Check that the address is not zero.

Additional information: link

DividendDistributor.shouldDistribute(address) (#335-338) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#336-337)
Player001._transferFrom(address,address,uint256) (#529-580) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,buy Cooldown exists) (#543)
Avoid relying on block.timestamp.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#130-132)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#134-136)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#146-150)
tradingStatus(bool,uint256) should be declared external:
- Player001.tradingStatus(bool,uint256) (#646-652)
launchStatus(uint256) should be declared external:
- Player001.launchStatus(uint256) (#654-656)
enable_hotel_CaliforniaMode(bool) should be declared external:
- Player001.enable_hotel_CaliforniaMode(bool) (#659-661)
set_max_roomrent(uint256) should be declared external:
- Player001.set_max_roomrent(uint256) (#663-665)
manage_houseguests(address[],bool) should be declared external:
- Player001.manage_houseguests(address[],bool) (#667-671)
cooldownEnabled(bool,uint8) should be declared external:
- Player001.cooldownEnabled(bool,uint8) (#673-676)
rescueToken(address,uint256) should be declared external:
- Player001.rescueToken(address,uint256) (#829-831)
Use the external attribute for functions never called from the contract.

Additional information: link

Contract ticker (Il-nam) 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.

Player001.takeFee(address,uint256,bool) (#600-617) performs a multiplication on the result of a division:
-feeAmount = amount.div(feeDenominator * 100).mul(totalFee).mul(multiplier) (#607)
Player001.takeFee(address,uint256,bool) (#600-617) performs a multiplication on the result of a division:
-feeAmount = amount.div(100).mul(99) (#610)
Player001.swapBack() (#679-729) performs a multiplication on the result of a division:
-amountToLiquify = tokensToSell.div(totalFee).mul(dynamicLiquidityFee).div(2) (#683)
Player001.setSwapBackSettings(bool,uint256) (#776-779) performs a multiplication on the result of a division:
-swapThreshold = _totalSupply.div(10000).mul(_percentage_base10000) (#778)
Player001.setMaxWalletPercent_base1000(uint256) (#857-859) performs a multiplication on the result of a division:
-_maxWalletToken = _totalSupply.div(1000).mul(maxWallPercent_base1000) (#858)
Player001.setMaxTxPercent_base1000(uint256) (#861-863) performs a multiplication on the result of a division:
-_maxTxAmount = _totalSupply.div(1000).mul(maxTXPercentage_base1000) (#862)
Player001.slitherConstructorVariables() (#384-920) performs a multiplication on the result of a division:
-_maxTxAmount = _totalSupply.div(1000).mul(10) (#461)
Player001.slitherConstructorVariables() (#384-920) performs a multiplication on the result of a division:
-_maxWalletToken = _totalSupply.div(1000).mul(10) (#462)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#340-351):
External calls:
- RWRD.transfer(shareholder,amount) (#346)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#348)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#349)
Reentrancy in DividendDistributor.process(uint256) (#309-333):
External calls:
- distributeDividend(shareholders[currentIndex]) (#325)
- RWRD.transfer(shareholder,amount) (#346)
State variables written after the call(s):
- currentIndex ++ (#330)
Reentrancy in DividendDistributor.setShare(address,uint256) (#273-287):
External calls:
- distributeDividend(shareholder) (#275)
- RWRD.transfer(shareholder,amount) (#346)
State variables written after the call(s):
- shares[shareholder].amount = amount (#285)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#286)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#268-271) should emit an event for:
- minPeriod = _minPeriod (#269)
- minDistribution = _minDistribution (#270)
Player001.set_sell_multiplier(uint256) (#640-642) should emit an event for:
- sellMultiplier = Multiplier (#641)
Player001.tradingStatus(bool,uint256) (#646-652) should emit an event for:
- deadBlocks = _deadBlocks (#650)
Player001.launchStatus(uint256) (#654-656) should emit an event for:
- launchedAt = _launchblock (#655)
Player001.setFees(uint256,uint256,uint256,uint256,uint256,uint256) (#755-764) should emit an event for:
- liquidityFee = _liquidityFee (#756)
- reflectionFee = _reflectionFee (#757)
- marketingFee = _marketingFee (#758)
- buyBackFee = _buyBackFee (#759)
- ecoFee = _ecoFee (#760)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee).add(_buyBackFee).add(_ecoFee) (#761)
- feeDenominator = _feeDenominator (#762)
Player001.setSwapBackSettings(bool,uint256) (#776-779) should emit an event for:
- swapThreshold = _totalSupply.div(10000).mul(_percentage_base10000) (#778)
Player001.setTargetLiquidity(uint256,uint256) (#782-785) should emit an event for:
- targetLiquidity = _target (#783)
- targetLiquidityDenominator = _denominator (#784)
Player001.setMaxWalletPercent_base1000(uint256) (#857-859) should emit an event for:
- _maxWalletToken = _totalSupply.div(1000).mul(maxWallPercent_base1000) (#858)
Player001.setMaxTxPercent_base1000(uint256) (#861-863) should emit an event for:
- _maxTxAmount = _totalSupply.div(1000).mul(maxTXPercentage_base1000) (#862)
Emit an event for critical parameter changes.

Additional information: link

DividendDistributor.distributeDividend(address) (#340-351) has external calls inside a loop: RWRD.transfer(shareholder,amount) (#346)
Player001.multiTransfer(address,address[],uint256[]) (#869-893) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],balanceOf(addresses[i_scope_0])) (#885)
Player001.multiTransfer_fixed(address,address[],uint256) (#895-914) has external calls inside a loop: distributor.setShare(addresses[i],balanceOf(addresses[i])) (#906)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in Player001.constructor() (#464-491):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#466)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#467)
- _balances[msg.sender] = _totalSupply (#489)
- autoLiquidityReceiver = 0xb5af90979FC0010DB224F076d9369cEC20a98Dfb (#484)
- buyBackFeeReceiver = 0xb5af90979FC0010DB224F076d9369cEC20a98Dfb (#486)
- distributor = new DividendDistributor(address(router)) (#471)
- ecoFeeReceiver = 0xb5af90979FC0010DB224F076d9369cEC20a98Dfb (#487)
- isDividendExempt[pair] = true (#480)
- isDividendExempt[address(this)] = true (#481)
- isDividendExempt[DEAD] = true (#482)
- isFeeExempt[msg.sender] = true (#473)
- isTimelockExempt[msg.sender] = true (#476)
- isTimelockExempt[DEAD] = true (#477)
- isTimelockExempt[address(this)] = true (#478)
- isTxLimitExempt[msg.sender] = true (#474)
- marketingFeeReceiver = 0xd170c53b7952856b3d2B72c5199235a3e83BdF79 (#485)
- pairContract = InterfaceLP(pair) (#469)
Reentrancy in DividendDistributor.deposit() (#289-307):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#296-301)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#306)
- totalDividends = totalDividends.add(amount) (#305)
Reentrancy in DividendDistributor.distributeDividend(address) (#340-351):
External calls:
- RWRD.transfer(shareholder,amount) (#346)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#347)
Reentrancy in DividendDistributor.setShare(address,uint256) (#273-287):
External calls:
- distributeDividend(shareholder) (#275)
- RWRD.transfer(shareholder,amount) (#346)
State variables written after the call(s):
- addShareholder(shareholder) (#279)
- shareholderIndexes[shareholder] = shareholders.length (#373)
- removeShareholder(shareholder) (#281)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#379)
- addShareholder(shareholder) (#279)
- shareholders.push(shareholder) (#374)
- removeShareholder(shareholder) (#281)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#378)
- shareholders.pop() (#380)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#284)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Player001._transferFrom(address,address,uint256) (#529-580):
External calls:
- swapBack() (#559)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#692-698)
- distributor.deposit{value: amountBNBReflection}() (#710)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#711)
- (tmpSuccess,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#712)
- (tmpSuccess,None) = address(ecoFeeReceiver).call{gas: 30000,value: amountBNBEco}() (#713)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#719-726)
- distributor.setShare(sender,balanceOf(sender)) (#569)
- distributor.setShare(recipient,balanceOf(recipient)) (#573)
- distributor.process(distributorGas) (#576)
External calls sending eth:
- swapBack() (#559)
- distributor.deposit{value: amountBNBReflection}() (#710)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#711)
- (tmpSuccess,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#712)
- (tmpSuccess,None) = address(ecoFeeReceiver).call{gas: 30000,value: amountBNBEco}() (#713)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#719-726)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#578)
Reentrancy in Player001._transferFrom(address,address,uint256) (#529-580):
External calls:
- swapBack() (#559)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#692-698)
- distributor.deposit{value: amountBNBReflection}() (#710)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#711)
- (tmpSuccess,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#712)
- (tmpSuccess,None) = address(ecoFeeReceiver).call{gas: 30000,value: amountBNBEco}() (#713)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#719-726)
External calls sending eth:
- swapBack() (#559)
- distributor.deposit{value: amountBNBReflection}() (#710)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#711)
- (tmpSuccess,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#712)
- (tmpSuccess,None) = address(ecoFeeReceiver).call{gas: 30000,value: amountBNBEco}() (#713)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#719-726)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#614)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#564)
Reentrancy in Player001.constructor() (#464-491):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#466)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#490)
Reentrancy in Player001.swapBack() (#679-729):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#692-698)
- distributor.deposit{value: amountBNBReflection}() (#710)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#711)
- (tmpSuccess,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#712)
- (tmpSuccess,None) = address(ecoFeeReceiver).call{gas: 30000,value: amountBNBEco}() (#713)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#719-726)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#710)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#711)
- (tmpSuccess,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#712)
- (tmpSuccess,None) = address(ecoFeeReceiver).call{gas: 30000,value: amountBNBEco}() (#713)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#719-726)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#727)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.process(uint256) (#309-333) has costly operations inside a loop:
- currentIndex = 0 (#321)
DividendDistributor.distributeDividend(address) (#340-351) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#345)
DividendDistributor.process(uint256) (#309-333) has costly operations inside a loop:
- currentIndex ++ (#330)
Use a local variable to hold the loop computation result.

Additional information: link

SafeMathInt.abs(int256) (#89-92) is never used and should be removed
SafeMathInt.add(int256,int256) (#83-87) is never used and should be removed
SafeMathInt.div(int256,int256) (#71-75) is never used and should be removed
SafeMathInt.mul(int256,int256) (#63-69) is never used and should be removed
SafeMathInt.sub(int256,int256) (#77-81) is never used and should be removed
Remove unused functions.

Additional information: link

Player001.totalFee (#410) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + buyBackFee + ecoFee
Player001.swapThreshold (#457) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 50 / 10000
Player001._maxTxAmount (#461) is set pre-construction with a non-constant function or state variable:
- _totalSupply.div(1000).mul(10)
Player001._maxWalletToken (#462) is set pre-construction with a non-constant function or state variable:
- _totalSupply.div(1000).mul(10)
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

Pragma version^0.7.4 (#21) allows old versions
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in Player001.swapBack() (#679-729):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#711)
- (tmpSuccess,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#712)
- (tmpSuccess,None) = address(ecoFeeReceiver).call{gas: 30000,value: amountBNBEco}() (#713)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IDEXRouter.WETH() (#165) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#268) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#268) is not in mixedCase
Variable DividendDistributor._token (#221) is not in mixedCase
Variable DividendDistributor.RWRD (#229) is not in mixedCase
Variable DividendDistributor.WBNB (#230) is not in mixedCase
Function Player001.clearStuckBalance_sender(uint256) (#630-633) is not in mixedCase
Function Player001.set_sell_multiplier(uint256) (#640-642) is not in mixedCase
Parameter Player001.set_sell_multiplier(uint256).Multiplier (#640) is not in mixedCase
Parameter Player001.tradingStatus(bool,uint256)._status (#646) is not in mixedCase
Parameter Player001.tradingStatus(bool,uint256)._deadBlocks (#646) is not in mixedCase
Parameter Player001.launchStatus(uint256)._launchblock (#654) is not in mixedCase
Function Player001.enable_hotel_CaliforniaMode(bool) (#659-661) is not in mixedCase
Parameter Player001.enable_hotel_CaliforniaMode(bool)._status (#659) is not in mixedCase
Function Player001.set_max_roomrent(uint256) (#663-665) is not in mixedCase
Parameter Player001.set_max_roomrent(uint256)._rent_withoutdecimal (#663) is not in mixedCase
Function Player001.manage_houseguests(address[],bool) (#667-671) is not in mixedCase
Parameter Player001.cooldownEnabled(bool,uint8)._status (#673) is not in mixedCase
Parameter Player001.cooldownEnabled(bool,uint8)._interval (#673) is not in mixedCase
Parameter Player001.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#755) is not in mixedCase
Parameter Player001.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#755) is not in mixedCase
Parameter Player001.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#755) is not in mixedCase
Parameter Player001.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._buyBackFee (#755) is not in mixedCase
Parameter Player001.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._ecoFee (#755) is not in mixedCase
Parameter Player001.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#755) is not in mixedCase
Parameter Player001.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#767) is not in mixedCase
Parameter Player001.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#767) is not in mixedCase
Parameter Player001.setFeeReceivers(address,address,address,address)._buyBackFeeReceiver (#767) is not in mixedCase
Parameter Player001.setFeeReceivers(address,address,address,address)._ecoFeeReceiver (#767) is not in mixedCase
Parameter Player001.setSwapBackSettings(bool,uint256)._enabled (#776) is not in mixedCase
Parameter Player001.setSwapBackSettings(bool,uint256)._percentage_base10000 (#776) is not in mixedCase
Parameter Player001.setTargetLiquidity(uint256,uint256)._target (#782) is not in mixedCase
Parameter Player001.setTargetLiquidity(uint256,uint256)._denominator (#782) is not in mixedCase
Parameter Player001.setLP(address)._address (#792) is not in mixedCase
Parameter Player001.setMaster(address)._master (#799) is not in mixedCase
Parameter Player001.setDistributionCriteria(uint256,uint256)._minPeriod (#816) is not in mixedCase
Parameter Player001.setDistributionCriteria(uint256,uint256)._minDistribution (#816) is not in mixedCase
Function Player001.setMaxWalletPercent_base1000(uint256) (#857-859) is not in mixedCase
Parameter Player001.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#857) is not in mixedCase
Function Player001.setMaxTxPercent_base1000(uint256) (#861-863) is not in mixedCase
Parameter Player001.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#861) is not in mixedCase
Function Player001.multiTransfer_fixed(address,address[],uint256) (#895-914) is not in mixedCase
Variable Player001.WBNB (#388) is not in mixedCase
Variable Player001.DEAD (#389) is not in mixedCase
Variable Player001.ZERO (#390) is not in mixedCase
Constant Player001._name (#392) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Player001._symbol (#393) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Player001._decimals (#394) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Player001._balances (#397) is not in mixedCase
Variable Player001._allowances (#398) is not in mixedCase
Variable Player001._totalSupply (#456) is not in mixedCase
Variable Player001._maxTxAmount (#461) is not in mixedCase
Variable Player001._maxWalletToken (#462) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#170) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#171)
Prevent variables from having similar names.

Additional information: link

Player001.setDistributorSettings(uint256) (#822-825) uses literals with too many digits:
- require(bool)(gas < 900000) (#823)
Player001.slitherConstructorVariables() (#384-920) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#389)
Player001.slitherConstructorVariables() (#384-920) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#390)
Player001.slitherConstructorVariables() (#384-920) uses literals with too many digits:
- maxRoomRent = 50000000000 (#414)
Player001.slitherConstructorVariables() (#384-920) uses literals with too many digits:
- distributorGas = 500000 (#438)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#61) is never used in SafeMathInt (#59-93)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#230) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#243) should be constant
Player001.DEAD (#389) should be constant
Player001.WBNB (#388) should be constant
Player001.ZERO (#390) should be constant
Player001._totalSupply (#456) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Holders:

Contract has 12% buy tax and 12% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.


Average 30d PancakeSwap liquidity is low.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Telegram account has relatively few subscribers


Twitter account has relatively few followers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


Unable to find website, listings and other project-related information


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


Token is marked as risky (blacklisted creator, fake name, dead project, etc.)

Additional information: link

Price for Il-nam

News for Il-nam