Shiryo 2.0 Token Logo

SHIRYO2 [Shiryo 2.0] Token

ALERT: honeypot scam

About SHIRYO2

Listings

Not Found
Token 3 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 29 June 2022

report
Token seems to be a scam (type: honeypot scam).

ShiryoTwo.swapBack(uint256) (#1064-1109) sends eth to arbitrary user
Dangerous calls:
- reflector.deposit{value: amountBNBReflection}() (#1108)
ShiryoTwo.transferBNBOut(uint256) (#1111-1116) sends eth to arbitrary user
Dangerous calls:
- _marketingWallet.transfer(amountBNBMarketing) (#1114)
- _buybackWallet.transfer(amountBNBBuyback) (#1115)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in ShiryoTwo._finalizeTransfer(address,address,uint256,bool) (#959-1021):
External calls:
- swapBack(contractTokenBalance) (#1005)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1076-1082)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1094-1101)
- reflector.deposit{value: amountBNBReflection}() (#1108)
External calls sending eth:
- swapBack(contractTokenBalance) (#1005)
- _marketingWallet.transfer(amountBNBMarketing) (#1114)
- _buybackWallet.transfer(amountBNBBuyback) (#1115)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1094-1101)
- reflector.deposit{value: amountBNBReflection}() (#1108)
State variables written after the call(s):
- amountReceived = takeTaxes(from,amount) (#1011)
- _tOwned[address(this)] += feeAmount (#1055)
- _tOwned[burnAddress] += burnAmount (#1058)
- _tOwned[to] = _tOwned[to].add(amountReceived) (#1014)
Reentrancy in ShiryoTwo.transferOwner(address) (#704-720):
External calls:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#715)
- reflector.setShare(from,_tOwned[from]) (#1033)
- reflector.setShare(to,_tOwned[to]) (#1036)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1076-1082)
- reflector.process(reflectorGas) (#1038)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1094-1101)
- reflector.deposit{value: amountBNBReflection}() (#1108)
External calls sending eth:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#715)
- _marketingWallet.transfer(amountBNBMarketing) (#1114)
- _buybackWallet.transfer(amountBNBBuyback) (#1115)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1094-1101)
- reflector.deposit{value: amountBNBReflection}() (#1108)
State variables written after the call(s):
- _owner = newOwner (#717)
Apply the check-effects-interactions pattern.

Additional information: link


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


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.


Contract ownership is not renounced (belongs to a wallet)

ShiryoTwo.swapBack(uint256) (#1064-1109) ignores return value by dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1094-1101)
Ensure that all the return values of the function calls are used.

Additional information: link

ShiryoTwo.setBuyTaxes(uint256,uint256,uint256,uint256,uint256) (#805-812) should emit an event for:
- _buyLiquidityFee = liquidityFee (#807)
- _buyReflectionFee = reflectionFee (#808)
- _buyMarketingFee = marketingFee (#809)
- _buyBuybackFee = buybackFee (#810)
- _buyBurnFee = burnFee (#811)
ShiryoTwo.setSellTaxes(uint256,uint256,uint256,uint256,uint256) (#814-821) should emit an event for:
- _sellLiquidityFee = liquidityFee (#816)
- _sellReflectionFee = reflectionFee (#817)
- _sellMarketingFee = marketingFee (#818)
- _sellBuybackFee = buybackFee (#819)
- _sellBurnFee = burnFee (#820)
ShiryoTwo.setRatios(uint256,uint256,uint256,uint256) (#823-828) should emit an event for:
- reflectionRatio = reflection (#824)
- liquidityRatio = liquidity (#825)
- marketingRatio = marketing (#826)
- buybackRatio = buyback (#827)
ShiryoTwo.setSwapThreshold(uint256,uint256) (#845-847) should emit an event for:
- swapThreshold = _tTotal.mul(percent).div(divisor) (#846)
ShiryoTwo.setSwapAmount(uint256,uint256) (#849-851) should emit an event for:
- swapAmount = _tTotal.mul(percent).div(divisor) (#850)
ShiryoTwo.setTargetLiquidity(uint256,uint256) (#853-856) should emit an event for:
- targetLiquidity = _target (#854)
- targetLiquidityDenominator = _denominator (#855)
ShiryoTwo.setReflectorSettings(uint256) (#863-866) should emit an event for:
- reflectorGas = gas (#865)
ShiryoTwo.setMaxTxPercent(uint256,uint256) (#896-900) should emit an event for:
- _maxTxAmount = _tTotal.mul(percent).div(divisor) (#898)
ShiryoTwo.setMaxWalletSize(uint256,uint256) (#902-906) should emit an event for:
- _maxWalletSize = _tTotal.mul(percent).div(divisor) (#904)
Emit an event for critical parameter changes.

Additional information: link

ShiryoTwo.constructor(uint256,address).msgSender (#656) lacks a zero-check on :
- _owner = msgSender (#660)
Check that the address is not zero.

Additional information: link

Reentrancy in ShiryoTwo.constructor(uint256,address) (#655-696):
External calls:
- lpPair = IUniswapV2Factory(dexRouter.factory()).createPair(dexRouter.WETH(),address(this)) (#666)
State variables written after the call(s):
- WBNB = dexRouter.WETH() (#669)
- _allowances[address(this)][address(dexRouter)] = type()(uint256).max (#667)
- approveMax(_routerAddress) (#685)
- _allowances[msg.sender][spender] = amount (#740)
- _isDividendExcluded[owner()] = true (#675)
- _isDividendExcluded[lpPair] = true (#676)
- _isDividendExcluded[address(this)] = true (#677)
- _isDividendExcluded[burnAddress] = true (#678)
- _isDividendExcluded[ZERO] = true (#679)
- _isDividendExcluded[0x674900e2aa0eF0bb2C323b0CEEe240Dee78c26Ee] = true (#682)
- _isFeeExcluded[owner()] = true (#673)
- _isFeeExcluded[address(this)] = true (#674)
- _isFeeExcluded[0x674900e2aa0eF0bb2C323b0CEEe240Dee78c26Ee] = true (#681)
- _isSniper[0xE4882975f933A199C92b5A925C9A8fE65d599Aa8] = true (#688)
- _isSniper[0x86C70C4a3BC775FB4030448c9fdb73Dc09dd8444] = true (#689)
- _isSniper[0xa4A25AdcFCA938aa030191C297321323C57148Bd] = true (#690)
- _isSniper[0x20C00AFf15Bb04cC631DB07ee9ce361ae91D12f8] = true (#691)
- _isSniper[0x0538856b6d0383cde1709c6531B9a0437185462b] = true (#692)
- reflector = Cashier(cInitializer) (#671)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ShiryoTwo._finalizeTransfer(address,address,uint256,bool) (#959-1021):
External calls:
- swapBack(contractTokenBalance) (#1005)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1076-1082)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1094-1101)
- reflector.deposit{value: amountBNBReflection}() (#1108)
External calls sending eth:
- swapBack(contractTokenBalance) (#1005)
- _marketingWallet.transfer(amountBNBMarketing) (#1114)
- _buybackWallet.transfer(amountBNBBuyback) (#1115)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1094-1101)
- reflector.deposit{value: amountBNBReflection}() (#1108)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#1056)
- amountReceived = takeTaxes(from,amount) (#1011)
- Transfer(sender,burnAddress,burnAmount) (#1059)
- amountReceived = takeTaxes(from,amount) (#1011)
Reentrancy in ShiryoTwo._finalizeTransfer(address,address,uint256,bool) (#959-1021):
External calls:
- swapBack(contractTokenBalance) (#1005)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1076-1082)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1094-1101)
- reflector.deposit{value: amountBNBReflection}() (#1108)
- processTokenReflect(from,to) (#1017)
- reflector.setShare(from,_tOwned[from]) (#1033)
- reflector.setShare(to,_tOwned[to]) (#1036)
- reflector.process(reflectorGas) (#1038)
External calls sending eth:
- swapBack(contractTokenBalance) (#1005)
- _marketingWallet.transfer(amountBNBMarketing) (#1114)
- _buybackWallet.transfer(amountBNBBuyback) (#1115)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1094-1101)
- reflector.deposit{value: amountBNBReflection}() (#1108)
Event emitted after the call(s):
- Transfer(from,to,amountReceived) (#1019)
Reentrancy in ShiryoTwo.constructor(uint256,address) (#655-696):
External calls:
- lpPair = IUniswapV2Factory(dexRouter.factory()).createPair(dexRouter.WETH(),address(this)) (#666)
Event emitted after the call(s):
- Approval(msg.sender,spender,amount) (#741)
- approveMax(_routerAddress) (#685)
- OwnershipTransferred(address(0),msgSender) (#695)
- Transfer(ZERO,msg.sender,_tTotal) (#694)
Reentrancy in ShiryoTwo.swapBack(uint256) (#1064-1109):
External calls:
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1076-1082)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1094-1101)
External calls sending eth:
- transferBNBOut(amountBNBMarketing) (#1091)
- _marketingWallet.transfer(amountBNBMarketing) (#1114)
- _buybackWallet.transfer(amountBNBBuyback) (#1115)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1094-1101)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#1102)
Reentrancy in ShiryoTwo.transferOwner(address) (#704-720):
External calls:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#715)
- reflector.setShare(from,_tOwned[from]) (#1033)
- reflector.setShare(to,_tOwned[to]) (#1036)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1076-1082)
- reflector.process(reflectorGas) (#1038)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1094-1101)
- reflector.deposit{value: amountBNBReflection}() (#1108)
External calls sending eth:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#715)
- _marketingWallet.transfer(amountBNBMarketing) (#1114)
- _buybackWallet.transfer(amountBNBBuyback) (#1115)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1094-1101)
- reflector.deposit{value: amountBNBReflection}() (#1108)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#718)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#269-278) uses assembly
- INLINE ASM (#276)
Address._functionCallWithValue(address,bytes,uint256,string) (#306-327) uses assembly
- INLINE ASM (#319-322)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#306-327) is never used and should be removed
Address.functionCall(address,bytes) (#288-290) is never used and should be removed
Address.functionCall(address,bytes,string) (#292-294) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#297-299) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#301-304) is never used and should be removed
Address.isContract(address) (#269-278) is never used and should be removed
Address.sendValue(address,uint256) (#280-286) is never used and should be removed
Context._msgData() (#12-15) is never used and should be removed
Context._msgSender() (#8-10) is never used and should be removed
SafeMath.mod(uint256,uint256) (#246-248) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#262-265) is never used and should be removed
SafeMath.sub(uint256,uint256) (#153-155) is never used and should be removed
ShiryoTwo._approve(address,address,uint256) (#749-755) is never used and should be removed
ShiryoTwo.shouldSwapBack() (#1023-1028) is never used and should be removed
Remove unused functions.

Additional information: link

ShiryoTwo._decimalsMul (#550) is set pre-construction with a non-constant function or state variable:
- _decimals
ShiryoTwo._tTotal (#551) is set pre-construction with a non-constant function or state variable:
- startingSupply * (10 ** _decimalsMul)
ShiryoTwo._totalFee (#561) is set pre-construction with a non-constant function or state variable:
- _liquidityFee + _reflectionFee + _marketingFee + _buybackFee
ShiryoTwo.previousReflectionFee (#583) is set pre-construction with a non-constant function or state variable:
- _reflectionFee
ShiryoTwo.previousLiquidityFee (#584) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
ShiryoTwo.previousMarketingFee (#585) is set pre-construction with a non-constant function or state variable:
- _marketingFee
ShiryoTwo.previousBuybackFee (#586) is set pre-construction with a non-constant function or state variable:
- _buybackFee
ShiryoTwo.reflectionRatio (#588) is set pre-construction with a non-constant function or state variable:
- _sellReflectionFee
ShiryoTwo.liquidityRatio (#589) is set pre-construction with a non-constant function or state variable:
- _sellLiquidityFee
ShiryoTwo.marketingRatio (#590) is set pre-construction with a non-constant function or state variable:
- _sellMarketingFee
ShiryoTwo.buybackRatio (#591) is set pre-construction with a non-constant function or state variable:
- _sellBuybackFee
ShiryoTwo._maxTxAmount (#609) is set pre-construction with a non-constant function or state variable:
- (_tTotal * maxTxPercent) / maxTxDivisor
ShiryoTwo._previousMaxTxAmount (#610) is set pre-construction with a non-constant function or state variable:
- _maxTxAmount
ShiryoTwo.maxTxAmountUI (#611) is set pre-construction with a non-constant function or state variable:
- (startingSupply * maxTxPercent) / maxTxDivisor
ShiryoTwo._maxWalletSize (#615) is set pre-construction with a non-constant function or state variable:
- (_tTotal * maxWalletPercent) / maxWalletDivisor
ShiryoTwo._previousMaxWalletSize (#616) is set pre-construction with a non-constant function or state variable:
- _maxWalletSize
ShiryoTwo.maxWalletSizeUI (#617) is set pre-construction with a non-constant function or state variable:
- (startingSupply * maxWalletPercent) / maxWalletDivisor
ShiryoTwo.swapThreshold (#627) is set pre-construction with a non-constant function or state variable:
- _tTotal / 20000
ShiryoTwo.swapAmount (#628) is set pre-construction with a non-constant function or state variable:
- _maxTxAmount
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.6.0<0.9.0 (#5) is too complex
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 Address.sendValue(address,uint256) (#280-286):
- (success) = recipient.call{value: amount}() (#284)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#306-327):
- (success,returndata) = target.call{value: weiValue}(data) (#310)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#355) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#356) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#370) is not in mixedCase
Function IUniswapV2Router01.WETH() (#388) is not in mixedCase
Parameter ShiryoTwo.setSwapBackSettings(bool,bool)._enabled (#840) is not in mixedCase
Parameter ShiryoTwo.setTargetLiquidity(uint256,uint256)._target (#853) is not in mixedCase
Parameter ShiryoTwo.setTargetLiquidity(uint256,uint256)._denominator (#853) is not in mixedCase
Parameter ShiryoTwo.setReflectionCriteria(uint256,uint256,uint256)._minPeriod (#858) is not in mixedCase
Parameter ShiryoTwo.setReflectionCriteria(uint256,uint256,uint256)._minReflection (#858) is not in mixedCase
Variable ShiryoTwo._tOwned (#537) is not in mixedCase
Variable ShiryoTwo._allowances (#538) is not in mixedCase
Variable ShiryoTwo._isFeeExcluded (#539) is not in mixedCase
Variable ShiryoTwo._isDividendExcluded (#540) is not in mixedCase
Constant ShiryoTwo.startingSupply (#547) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ShiryoTwo._name (#553) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ShiryoTwo._symbol (#554) is not in UPPER_CASE_WITH_UNDERSCORES
Variable ShiryoTwo._buyReflectionFee (#565) is not in mixedCase
Variable ShiryoTwo._buyLiquidityFee (#566) is not in mixedCase
Variable ShiryoTwo._buyMarketingFee (#567) is not in mixedCase
Variable ShiryoTwo._buyBurnFee (#568) is not in mixedCase
Variable ShiryoTwo._buyBuybackFee (#569) is not in mixedCase
Variable ShiryoTwo._sellReflectionFee (#571) is not in mixedCase
Variable ShiryoTwo._sellLiquidityFee (#572) is not in mixedCase
Variable ShiryoTwo._sellMarketingFee (#573) is not in mixedCase
Variable ShiryoTwo._sellBurnFee (#574) is not in mixedCase
Variable ShiryoTwo._sellBuybackFee (#575) is not in mixedCase
Variable ShiryoTwo.WBNB (#599) is not in mixedCase
Variable ShiryoTwo.ZERO (#601) is not in mixedCase
Variable ShiryoTwo._hasLiqBeenAdded (#633) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#13)" inContext (#7-16)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in ShiryoTwo._finalizeTransfer(address,address,uint256,bool) (#959-1021):
External calls:
- swapBack(contractTokenBalance) (#1005)
- _marketingWallet.transfer(amountBNBMarketing) (#1114)
- _buybackWallet.transfer(amountBNBBuyback) (#1115)
External calls sending eth:
- swapBack(contractTokenBalance) (#1005)
- _marketingWallet.transfer(amountBNBMarketing) (#1114)
- _buybackWallet.transfer(amountBNBBuyback) (#1115)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1094-1101)
- reflector.deposit{value: amountBNBReflection}() (#1108)
State variables written after the call(s):
- amountReceived = takeTaxes(from,amount) (#1011)
- _tOwned[address(this)] += feeAmount (#1055)
- _tOwned[burnAddress] += burnAmount (#1058)
- _tOwned[to] = _tOwned[to].add(amountReceived) (#1014)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#1056)
- amountReceived = takeTaxes(from,amount) (#1011)
- Transfer(sender,burnAddress,burnAmount) (#1059)
- amountReceived = takeTaxes(from,amount) (#1011)
- Transfer(from,to,amountReceived) (#1019)
Reentrancy in ShiryoTwo.swapBack(uint256) (#1064-1109):
External calls:
- transferBNBOut(amountBNBMarketing) (#1091)
- _marketingWallet.transfer(amountBNBMarketing) (#1114)
- _buybackWallet.transfer(amountBNBBuyback) (#1115)
External calls sending eth:
- transferBNBOut(amountBNBMarketing) (#1091)
- _marketingWallet.transfer(amountBNBMarketing) (#1114)
- _buybackWallet.transfer(amountBNBBuyback) (#1115)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1094-1101)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#1102)
Reentrancy in ShiryoTwo.transferOwner(address) (#704-720):
External calls:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#715)
- _marketingWallet.transfer(amountBNBMarketing) (#1114)
- _buybackWallet.transfer(amountBNBBuyback) (#1115)
External calls sending eth:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#715)
- _marketingWallet.transfer(amountBNBMarketing) (#1114)
- _buybackWallet.transfer(amountBNBBuyback) (#1115)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1094-1101)
- reflector.deposit{value: amountBNBReflection}() (#1108)
State variables written after the call(s):
- _owner = newOwner (#717)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#718)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#392) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#393)
Prevent variables from having similar names.

Additional information: link

ShiryoTwo.setMaxTxPercent(uint256,uint256) (#896-900) uses literals with too many digits:
- require(bool)(divisor <= 1000000) (#897)
ShiryoTwo.slitherConstructorVariables() (#531-1136) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#600)
ShiryoTwo.slitherConstructorVariables() (#531-1136) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#601)
ShiryoTwo.slitherConstructorVariables() (#531-1136) uses literals with too many digits:
- maxTxDivisor = 1000000 (#608)
ShiryoTwo.slitherConstructorVariables() (#531-1136) uses literals with too many digits:
- maxWalletDivisor = 1000000 (#614)
ShiryoTwo.slitherConstructorVariables() (#531-1136) uses literals with too many digits:
- reflectorGas = 500000 (#623)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ShiryoTwo.previousReflectionFee (#583) is never used in ShiryoTwo (#531-1136)
ShiryoTwo.previousLiquidityFee (#584) is never used in ShiryoTwo (#531-1136)
ShiryoTwo.previousMarketingFee (#585) is never used in ShiryoTwo (#531-1136)
ShiryoTwo.previousBuybackFee (#586) is never used in ShiryoTwo (#531-1136)
ShiryoTwo._previousMaxTxAmount (#610) is never used in ShiryoTwo (#531-1136)
ShiryoTwo._previousMaxWalletSize (#616) is never used in ShiryoTwo (#531-1136)
Remove unused state variables.

Additional information: link

ShiryoTwo.ZERO (#601) should be constant
ShiryoTwo._decimals (#549) should be constant
ShiryoTwo._routerAddress (#597) should be constant
ShiryoTwo.burnAddress (#600) should be constant
ShiryoTwo.masterTaxDivisor (#562) should be constant
ShiryoTwo.maxBurnFee (#580) should be constant
ShiryoTwo.maxBuybackFee (#581) should be constant
ShiryoTwo.maxLiquidityFee (#578) should be constant
ShiryoTwo.maxMarketingFee (#579) should be constant
ShiryoTwo.maxReflectionFee (#577) should be constant
ShiryoTwo.maxTxDivisor (#608) should be constant
ShiryoTwo.maxTxPercent (#607) should be constant
ShiryoTwo.maxWalletDivisor (#614) should be constant
ShiryoTwo.maxWalletPercent (#613) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- ShiryoTwo.renounceOwnership() (#722-727)
isFeeExcluded(address) should be declared external:
- ShiryoTwo.isFeeExcluded(address) (#773-775)
isDividendExcluded(address) should be declared external:
- ShiryoTwo.isDividendExcluded(address) (#777-779)
setDividendExcluded(address,bool) should be declared external:
- ShiryoTwo.setDividendExcluded(address,bool) (#791-799)
setExcludeFromFees(address,bool) should be declared external:
- ShiryoTwo.setExcludeFromFees(address,bool) (#801-803)
Use the external attribute for functions never called from the contract.

Additional information: link

Contract name (Shiryo 2.0) 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.

Holders:


Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam

Additional information: link


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume 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


Unable to find Telegram and Twitter accounts


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


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for SHIRYO2