Transactions
Token Transfers
Tokens
Internal Transactions
Coin Balance History
Logs
Code
Read Contract
Write Contract
- Contract name:
- TOKEN
- Optimization enabled
- true
- Compiler version
- v0.8.10+commit.fc410830
- Optimization runs
- 200
- EVM Version
- default
- Verified at
- 2022-04-09T18:53:59.903630Z
Constructor Arguments
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000af70682e6925a6dcb360534fbc06b01f6a08fda800000000000000000000000000000000000000000000000000000000000f4240000000000000000000000000000000000000000000000000000000000000753000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240
Arg [0] (uint16) : 0
Arg [1] (uint16) : 1
Arg [2] (uint16) : 12
Arg [3] (uint16) : 1
Arg [4] (uint16) : 12
Arg [5] (address) : 0xaf70682e6925a6dcb360534fbc06b01f6a08fda8
Arg [6] (uint256) : 1000000
Arg [7] (uint256) : 30000
Arg [8] (uint256) : 1000000
Arg [9] (uint256) : 1000000
Arg [10] (uint256) : 1000000
Contract source code
// tg: https://t.me/SquidMilk pragma solidity ^0.8.10; // SPDX-License-Identifier: MIT pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/math/SafeMath.sol pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } pragma solidity ^0.8.10; contract TOKEN is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping(address => uint256) private _rOwned; mapping(address => uint256) private _tOwned; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFee; mapping(address => bool) private _isExcluded; mapping(address => bool) public _isBlackListed; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal; uint256 private _rTotal; uint256 private _tFeeTotal; string private _name = "Squid Milk"; string private _symbol = "SQUIDMILK"; uint8 private _decimals = 9; bool public isTradingEnabled; uint256 public antiBotBlocks; uint16 deadBlocks; struct BuyFee { uint16 liquidityFee; uint16 marketingFee; uint16 buybackFee; uint16 taxFee; } struct SellFee { uint16 liquidityFee; uint16 marketingFee; uint16 buybackFee; uint16 taxFee; } BuyFee public buyFee; SellFee public sellFee; uint16 private _taxFee; uint16 private _liquidityFee; uint16 private _marketingFee; uint16 private _buybackFee; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; address payable public _marketingWallet; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public maxBuyAmount; uint256 public maxSellAmount; uint256 public numTokensSellToAddToLiquidity; uint256 public maxWalletAmount; bool public isBuyBackEnabled = false; uint256 public buybackLimit = 0.01 ether; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor(uint16 _deadBlocks, uint16 _buyliq, uint16 _buymarket, uint16 _sellliq, uint16 _sellmarket, address payable _marketing, uint256 _supply, uint256 _numTokens, uint256 _maxWallet, uint256 _maxBuy, uint256 _maxSell ) { _tTotal = _supply * 10 ** _decimals; _rTotal = (MAX - (MAX % _tTotal)); numTokensSellToAddToLiquidity = _numTokens * 10 ** _decimals; maxWalletAmount = _maxWallet * 10 ** _decimals; _rOwned[_msgSender()] = _rTotal; deadBlocks = _deadBlocks; maxBuyAmount = _maxBuy * 10 ** _decimals; maxSellAmount = _maxSell * 10 ** _decimals; buyFee.liquidityFee = _buyliq; buyFee.marketingFee = _buymarket; buyFee.buybackFee = 0; buyFee.taxFee = 0; sellFee.liquidityFee = _sellliq; sellFee.marketingFee = _sellmarket; sellFee.buybackFee = 0; sellFee.taxFee = 0; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x9D2E30C2FB648BeE307EDBaFDb461b09DF79516C ); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; _marketingWallet = _marketing; //exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue) ); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function checkBlock() public view returns (uint256) { return block.number; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require( !_isExcluded[sender], "Excluded addresses cannot call this function" ); (uint256 rAmount, , , , , ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns (uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount, , , , , ) = _getValues(tAmount); return rAmount; } else { (, uint256 rTransferAmount, , , , ) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns (uint256) { require( rAmount <= _rTotal, "Amount must be less than total reflections" ); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeFromReward(address account) public onlyOwner { // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.'); require(!_isExcluded[account], "Account is already excluded"); if (_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function excludeFromFee(address account) external onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) external onlyOwner { _isExcludedFromFee[account] = false; } function controlTrading(bool value) external onlyOwner { isTradingEnabled = value; } function launch() external onlyOwner { require(antiBotBlocks == 0); antiBotBlocks = block.number + deadBlocks; isTradingEnabled = true; } function controlBuyBack(bool value, uint256 amount) external onlyOwner { isBuyBackEnabled = value; buybackLimit = amount; } function setBuyFee(uint16 liq, uint16 market, uint16 reward, uint16 tax) external onlyOwner { buyFee.liquidityFee = liq; buyFee.marketingFee = market; buyFee.buybackFee = reward; buyFee.taxFee = tax; } function setSellFee(uint16 liq, uint16 market, uint16 reward, uint16 tax) external onlyOwner { sellFee.liquidityFee = liq; sellFee.marketingFee = market; sellFee.buybackFee = reward; sellFee.taxFee = tax; } function setNumTokensSellToAddToLiquidity(uint256 numTokens) external onlyOwner { numTokensSellToAddToLiquidity = numTokens * 10 ** _decimals; } function updateRouter(address newAddress) external onlyOwner { require( newAddress != address(uniswapV2Router), "TOKEN: The router already has that address" ); uniswapV2Router = IUniswapV2Router02(newAddress); address _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()) .createPair(address(this), uniswapV2Router.WETH()); uniswapV2Pair = _uniswapV2Pair; } function setMaxBuyAmount(uint256 value) external onlyOwner { maxBuyAmount = value * 10 ** _decimals; } function setMaxSellAmount(uint256 value) external onlyOwner { maxSellAmount = value * 10 ** _decimals; } function setMaxWallet(uint256 value) external onlyOwner { maxWalletAmount = value * 10 ** _decimals; } function setBlackList(address addr, bool value) external onlyOwner { _isBlackListed[addr] = value; } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } function triggerBuyBack(uint256 amount) external onlyOwner { swapETHForTokens(amount); } function claimStuckTokens(address _token) external onlyOwner { require(_token != address(this), "No rug pulls :)"); if (_token == address(0x0)) { payable(owner()).transfer(address(this).balance); return; } IERC20 erc20token = IERC20(_token); uint256 balance = erc20token.balanceOf(address(this)); erc20token.transfer(owner(), balance); } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns ( uint256, uint256, uint256, uint256, uint256, uint256 ) { ( uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tBuyBack, uint256 tMarketing ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, tLiquidity, tBuyBack, tMarketing, _getRate() ); return ( rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity ); } function _getTValues(uint256 tAmount) private view returns ( uint256, uint256, uint256, uint256, uint256 ) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tBuyBack = calculatebuybackFee(tAmount); uint256 tMarketing = calculateMarketingFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity); tTransferAmount = tTransferAmount.sub(tBuyBack).sub(tMarketing); return (tTransferAmount, tFee, tLiquidity, tBuyBack, tMarketing); } function _getRValues( uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tBuyBack, uint256 tMarketing, uint256 currentRate ) private pure returns ( uint256, uint256, uint256 ) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rBuyBack = tBuyBack.mul(currentRate); uint256 rMarketing = tMarketing.mul(currentRate); uint256 rTransferAmount = rAmount .sub(rFee) .sub(rLiquidity) .sub(rBuyBack) .sub(rMarketing); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns (uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns (uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if ( _rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply ) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); if (_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity); } function _takeBuyBackAndMarketing(uint256 tBuyBack, uint256 tMarketing) private { uint256 currentRate = _getRate(); uint256 rBuyBack = tBuyBack.mul(currentRate); uint256 rMarketing = tMarketing.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing).add(rBuyBack); _tOwned[address(this)] = _tOwned[address(this)].add(tMarketing).add(tBuyBack); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div(10**2); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div(10**2); } function calculatebuybackFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_buybackFee).div(10**2); } function calculateMarketingFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_marketingFee).div(10**2); } function removeAllFee() private { _taxFee = 0; _liquidityFee = 0; _buybackFee = 0; _marketingFee = 0; } function setBuy() private { _taxFee = buyFee.taxFee; _liquidityFee = buyFee.liquidityFee; _buybackFee = buyFee.buybackFee; _marketingFee = buyFee.marketingFee; } function setSell() private { _taxFee = sellFee.taxFee; _liquidityFee = sellFee.liquidityFee; _buybackFee = sellFee.buybackFee; _marketingFee = sellFee.marketingFee; } function setAntiBot() private { _taxFee = 30; _liquidityFee = 30; _marketingFee = 30; } function isExcludedFromFee(address account) public view returns (bool) { return _isExcludedFromFee[account]; } function _approve( address owner, address spender, uint256 amount ) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); require(!_isBlackListed[from] && !_isBlackListed[to],"Account is blacklisted"); // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); if (contractTokenBalance >= maxSellAmount) { contractTokenBalance = maxSellAmount; } if( !inSwapAndLiquify && from != uniswapV2Pair && isBuyBackEnabled && address(this).balance >= buybackLimit ) { swapETHForTokens(buybackLimit.div(10)); } bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { contractTokenBalance = numTokensSellToAddToLiquidity; uint256 forMarketing = contractTokenBalance .mul(buyFee.marketingFee + sellFee.marketingFee) .div( buyFee.marketingFee + sellFee.marketingFee + buyFee.liquidityFee + sellFee.liquidityFee + buyFee.buybackFee + sellFee.buybackFee ); uint256 forBuyBack = contractTokenBalance .mul(buyFee.buybackFee + sellFee.buybackFee) .div( buyFee.marketingFee + sellFee.marketingFee + buyFee.liquidityFee + sellFee.liquidityFee + buyFee.buybackFee + sellFee.buybackFee ); if(forMarketing > 0){ swapAndSendFee(forMarketing); } if(forBuyBack > 0){ swapTokensForEth(forBuyBack); } swapAndLiquify(contractTokenBalance - forMarketing - forBuyBack); } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { takeFee = false; } //transfer amount, it will take tax, reward, liquidity fee _tokenTransfer(from, to, amount, takeFee); } function swapAndLiquify(uint256 contractTokenBalance) private { // split the contract balance into halves uint256 half = contractTokenBalance.div(2); uint256 otherHalf = contractTokenBalance.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapAndSendFee(uint256 amount) private { uint256 initialBalance = address(this).balance; swapTokensForEth(amount); uint256 newBalance = address(this).balance.sub(initialBalance); payable(_marketingWallet).transfer(newBalance); } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapETHForTokens(uint256 amount) private lockTheSwap { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = uniswapV2Router.WETH(); path[1] = address(this); // make the swap uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}( 0, // accept any amount of Tokens path, address(0xdead), // Burn address block.timestamp.add(300) ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private lockTheSwap { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer( address sender, address recipient, uint256 amount, bool takeFee ) private { removeAllFee(); if (takeFee) { require(isTradingEnabled,"Trading not enabled yet"); if (sender == uniswapV2Pair) { require(amount <= maxBuyAmount, "Buy exceeds limit"); setBuy(); } if (recipient == uniswapV2Pair) { require(amount <= maxSellAmount, "Sell exceeds limit"); setSell(); } if(recipient != uniswapV2Pair){ require( balanceOf(recipient) + amount <= maxWalletAmount, "Balance exceeds limit" ); } if (block.number <= antiBotBlocks){ setAntiBot(); } } if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } } function _transferStandard( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeBuyBackAndMarketing( calculatebuybackFee(tAmount), calculateMarketingFee(tAmount) ); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeBuyBackAndMarketing( calculatebuybackFee(tAmount), calculateMarketingFee(tAmount) ); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity ) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeBuyBackAndMarketing( calculatebuybackFee(tAmount), calculateMarketingFee(tAmount) ); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity ) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeBuyBackAndMarketing( calculatebuybackFee(tAmount), calculateMarketingFee(tAmount) ); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } }
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"uint16","name":"_deadBlocks","internalType":"uint16"},{"type":"uint16","name":"_buyliq","internalType":"uint16"},{"type":"uint16","name":"_buymarket","internalType":"uint16"},{"type":"uint16","name":"_sellliq","internalType":"uint16"},{"type":"uint16","name":"_sellmarket","internalType":"uint16"},{"type":"address","name":"_marketing","internalType":"address payable"},{"type":"uint256","name":"_supply","internalType":"uint256"},{"type":"uint256","name":"_numTokens","internalType":"uint256"},{"type":"uint256","name":"_maxWallet","internalType":"uint256"},{"type":"uint256","name":"_maxBuy","internalType":"uint256"},{"type":"uint256","name":"_maxSell","internalType":"uint256"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"MinTokensBeforeSwapUpdated","inputs":[{"type":"uint256","name":"minTokensBeforeSwap","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"SwapAndLiquify","inputs":[{"type":"uint256","name":"tokensSwapped","internalType":"uint256","indexed":false},{"type":"uint256","name":"ethReceived","internalType":"uint256","indexed":false},{"type":"uint256","name":"tokensIntoLiqudity","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"SwapAndLiquifyEnabledUpdated","inputs":[{"type":"bool","name":"enabled","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"_isBlackListed","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address payable"}],"name":"_marketingWallet","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"antiBotBlocks","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint16","name":"liquidityFee","internalType":"uint16"},{"type":"uint16","name":"marketingFee","internalType":"uint16"},{"type":"uint16","name":"buybackFee","internalType":"uint16"},{"type":"uint16","name":"taxFee","internalType":"uint16"}],"name":"buyFee","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"buybackLimit","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"checkBlock","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"claimStuckTokens","inputs":[{"type":"address","name":"_token","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"controlBuyBack","inputs":[{"type":"bool","name":"value","internalType":"bool"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"controlTrading","inputs":[{"type":"bool","name":"value","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"deliver","inputs":[{"type":"uint256","name":"tAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"excludeFromFee","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"excludeFromReward","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"includeInFee","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"includeInReward","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isBuyBackEnabled","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isExcludedFromFee","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isExcludedFromReward","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isTradingEnabled","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"launch","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxBuyAmount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxSellAmount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxWalletAmount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"numTokensSellToAddToLiquidity","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"reflectionFromToken","inputs":[{"type":"uint256","name":"tAmount","internalType":"uint256"},{"type":"bool","name":"deductTransferFee","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint16","name":"liquidityFee","internalType":"uint16"},{"type":"uint16","name":"marketingFee","internalType":"uint16"},{"type":"uint16","name":"buybackFee","internalType":"uint16"},{"type":"uint16","name":"taxFee","internalType":"uint16"}],"name":"sellFee","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setBlackList","inputs":[{"type":"address","name":"addr","internalType":"address"},{"type":"bool","name":"value","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setBuyFee","inputs":[{"type":"uint16","name":"liq","internalType":"uint16"},{"type":"uint16","name":"market","internalType":"uint16"},{"type":"uint16","name":"reward","internalType":"uint16"},{"type":"uint16","name":"tax","internalType":"uint16"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMaxBuyAmount","inputs":[{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMaxSellAmount","inputs":[{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMaxWallet","inputs":[{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setNumTokensSellToAddToLiquidity","inputs":[{"type":"uint256","name":"numTokens","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setSellFee","inputs":[{"type":"uint16","name":"liq","internalType":"uint16"},{"type":"uint16","name":"market","internalType":"uint16"},{"type":"uint16","name":"reward","internalType":"uint16"},{"type":"uint16","name":"tax","internalType":"uint16"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setSwapAndLiquifyEnabled","inputs":[{"type":"bool","name":"_enabled","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"swapAndLiquifyEnabled","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenFromReflection","inputs":[{"type":"uint256","name":"rAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalFees","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"triggerBuyBack","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"uniswapV2Pair","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IUniswapV2Router02"}],"name":"uniswapV2Router","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateRouter","inputs":[{"type":"address","name":"newAddress","internalType":"address"}]},{"type":"receive","stateMutability":"payable"}]
Deployed ByteCode
0x6080604052600436106103395760003560e01c806370a08231116101ab578063b5bc894d116100f7578063e99c9d0911610095578063f2fde38b1161006f578063f2fde38b14610a13578063f34eb0b814610a33578063f9d0831a14610a53578063fff39e7e14610a7357600080fd5b8063e99c9d09146109b3578063ea2f0b37146109d3578063f0f165af146109f357600080fd5b8063c851cc32116100d1578063c851cc3214610917578063c890140a14610937578063d12a768814610957578063dd62ed3e1461096d57600080fd5b8063b5bc894d146108bd578063c49b9a80146108dd578063c7662283146108fd57600080fd5b80638dc6443911610164578063a457c2d71161013e578063a457c2d714610854578063a50558d714610874578063a9059cbb14610887578063aa4bde28146108a757600080fd5b80638dc64439146107ff57806395d89b411461081f578063962dfc751461083457600080fd5b806370a0823114610747578063715018a614610767578063784decb91461077c57806388e765ff1461079257806388f82020146107a85780638da5cb5b146107e157600080fd5b8063395093511161028557806352390c02116102235780635d0044ca116101fd5780635d0044ca146106c157806366d602ae146106e157806368092bd9146106f75780636c9bb93b1461071757600080fd5b806352390c02146106485780635342acb4146106685780635bcbe877146106a157600080fd5b80634549b0391161025f5780634549b039146105ae57806347062402146105ce57806349bd5a5e146106075780634a74bb021461062757600080fd5b8063395093511461054e5780633bd5d1731461056e578063437823ec1461058e57600080fd5b806318160ddd116102f25780632d477ab2116102cc5780632d477ab2146104cc5780632d838119146104ec578063313ce5671461050c5780633685d4191461052e57600080fd5b806318160ddd1461043057806323b872dd146104455780632b14ca561461046557600080fd5b806301339c2114610345578063064a59d01461035c57806306fdde0314610390578063095ea7b3146103b257806313114a9d146103d25780631694505e146103f157600080fd5b3661034057005b600080fd5b34801561035157600080fd5b5061035a610a89565b005b34801561036857600080fd5b50600d5461037b90610100900460ff1681565b60405190151581526020015b60405180910390f35b34801561039c57600080fd5b506103a5610aee565b60405161038791906131b3565b3480156103be57600080fd5b5061037b6103cd36600461321d565b610b80565b3480156103de57600080fd5b50600a545b604051908152602001610387565b3480156103fd57600080fd5b5060125461041890600160401b90046001600160a01b031681565b6040516001600160a01b039091168152602001610387565b34801561043c57600080fd5b506008546103e3565b34801561045157600080fd5b5061037b610460366004613249565b610b97565b34801561047157600080fd5b5060115461049e9061ffff80821691620100008104821691600160201b8204811691600160301b90041684565b6040805161ffff95861681529385166020850152918416918301919091529091166060820152608001610387565b3480156104d857600080fd5b5061035a6104e7366004613298565b610c00565b3480156104f857600080fd5b506103e36105073660046132b6565b610c41565b34801561051857600080fd5b50600d5460405160ff9091168152602001610387565b34801561053a57600080fd5b5061035a6105493660046132cf565b610cc5565b34801561055a57600080fd5b5061037b61056936600461321d565b610e7c565b34801561057a57600080fd5b5061035a6105893660046132b6565b610eb2565b34801561059a57600080fd5b5061035a6105a93660046132cf565b610f9c565b3480156105ba57600080fd5b506103e36105c93660046132ec565b610fea565b3480156105da57600080fd5b5060105461049e9061ffff80821691620100008104821691600160201b8204811691600160301b90041684565b34801561061357600080fd5b50601354610418906001600160a01b031681565b34801561063357600080fd5b5060145461037b90600160a81b900460ff1681565b34801561065457600080fd5b5061035a6106633660046132cf565b611077565b34801561067457600080fd5b5061037b6106833660046132cf565b6001600160a01b031660009081526004602052604090205460ff1690565b3480156106ad57600080fd5b5061035a6106bc366004613333565b6111ca565b3480156106cd57600080fd5b5061035a6106dc3660046132b6565b61124f565b3480156106ed57600080fd5b506103e360165481565b34801561070357600080fd5b5061035a610712366004613387565b61129a565b34801561072357600080fd5b5061037b6107323660046132cf565b60066020526000908152604090205460ff1681565b34801561075357600080fd5b506103e36107623660046132cf565b6112ef565b34801561077357600080fd5b5061035a61134e565b34801561078857600080fd5b506103e3601a5481565b34801561079e57600080fd5b506103e360155481565b3480156107b457600080fd5b5061037b6107c33660046132cf565b6001600160a01b031660009081526005602052604090205460ff1690565b3480156107ed57600080fd5b506000546001600160a01b0316610418565b34801561080b57600080fd5b5061035a61081a366004613333565b611384565b34801561082b57600080fd5b506103a5611409565b34801561084057600080fd5b50601454610418906001600160a01b031681565b34801561086057600080fd5b5061037b61086f36600461321d565b611418565b34801561088057600080fd5b50436103e3565b34801561089357600080fd5b5061037b6108a236600461321d565b611467565b3480156108b357600080fd5b506103e360185481565b3480156108c957600080fd5b5061035a6108d83660046132b6565b611474565b3480156108e957600080fd5b5061035a6108f83660046133b5565b6114aa565b34801561090957600080fd5b5060195461037b9060ff1681565b34801561092357600080fd5b5061035a6109323660046132cf565b61152c565b34801561094357600080fd5b5061035a6109523660046133b5565b611789565b34801561096357600080fd5b506103e360175481565b34801561097957600080fd5b506103e36109883660046133d2565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b3480156109bf57600080fd5b5061035a6109ce3660046132b6565b6117cd565b3480156109df57600080fd5b5061035a6109ee3660046132cf565b611818565b3480156109ff57600080fd5b5061035a610a0e3660046132b6565b611863565b348015610a1f57600080fd5b5061035a610a2e3660046132cf565b6118ae565b348015610a3f57600080fd5b5061035a610a4e3660046132b6565b611946565b348015610a5f57600080fd5b5061035a610a6e3660046132cf565b611991565b348015610a7f57600080fd5b506103e3600e5481565b6000546001600160a01b03163314610abc5760405162461bcd60e51b8152600401610ab390613400565b60405180910390fd5b600e5415610ac957600080fd5b600f54610ada9061ffff164361344b565b600e55600d805461ff001916610100179055565b6060600b8054610afd90613463565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2990613463565b8015610b765780601f10610b4b57610100808354040283529160200191610b76565b820191906000526020600020905b815481529060010190602001808311610b5957829003601f168201915b5050505050905090565b6000610b8d338484611b55565b5060015b92915050565b6000610ba4848484611c79565b610bf68433610bf18560405180606001604052806028815260200161378d602891396001600160a01b038a16600090815260036020908152604080832033845290915290205491906120dc565b611b55565b5060019392505050565b6000546001600160a01b03163314610c2a5760405162461bcd60e51b8152600401610ab390613400565b6019805460ff191692151592909217909155601a55565b6000600954821115610ca85760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610ab3565b6000610cb2612108565b9050610cbe838261212b565b9392505050565b6000546001600160a01b03163314610cef5760405162461bcd60e51b8152600401610ab390613400565b6001600160a01b03811660009081526005602052604090205460ff16610d575760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610ab3565b60005b600754811015610e7857816001600160a01b031660078281548110610d8157610d8161349e565b6000918252602090912001546001600160a01b03161415610e665760078054610dac906001906134b4565b81548110610dbc57610dbc61349e565b600091825260209091200154600780546001600160a01b039092169183908110610de857610de861349e565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600590925220805460ff191690556007805480610e4057610e406134cb565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610e70816134e1565b915050610d5a565b5050565b3360008181526003602090815260408083206001600160a01b03871684529091528120549091610b8d918590610bf19086612137565b3360008181526005602052604090205460ff1615610f275760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610ab3565b6000610f3283612143565b505050506001600160a01b038416600090815260016020526040902054919250610f5e9190508261219f565b6001600160a01b038316600090815260016020526040902055600954610f84908261219f565b600955600a54610f949084612137565b600a55505050565b6000546001600160a01b03163314610fc65760405162461bcd60e51b8152600401610ab390613400565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b600060085483111561103e5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610ab3565b8161105d57600061104e84612143565b50939550610b91945050505050565b600061106884612143565b50929550610b91945050505050565b6000546001600160a01b031633146110a15760405162461bcd60e51b8152600401610ab390613400565b6001600160a01b03811660009081526005602052604090205460ff161561110a5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610ab3565b6001600160a01b03811660009081526001602052604090205415611164576001600160a01b03811660009081526001602052604090205461114a90610c41565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600560205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6000546001600160a01b031633146111f45760405162461bcd60e51b8152600401610ab390613400565b6011805461ffff95861663ffffffff199091161762010000948616949094029390931767ffffffff000000001916600160201b9285169290920267ffff000000000000191691909117600160301b9190931602919091179055565b6000546001600160a01b031633146112795760405162461bcd60e51b8152600401610ab390613400565b600d5461128a9060ff16600a6135e0565b61129490826135ef565b60185550565b6000546001600160a01b031633146112c45760405162461bcd60e51b8152600401610ab390613400565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6001600160a01b03811660009081526005602052604081205460ff161561132c57506001600160a01b031660009081526002602052604090205490565b6001600160a01b038216600090815260016020526040902054610b9190610c41565b6000546001600160a01b031633146113785760405162461bcd60e51b8152600401610ab390613400565b61138260006121ab565b565b6000546001600160a01b031633146113ae5760405162461bcd60e51b8152600401610ab390613400565b6010805461ffff95861663ffffffff199091161762010000948616949094029390931767ffffffff000000001916600160201b9285169290920267ffff000000000000191691909117600160301b9190931602919091179055565b6060600c8054610afd90613463565b6000610b8d3384610bf1856040518060600160405280602581526020016137b5602591393360009081526003602090815260408083206001600160a01b038d16845290915290205491906120dc565b6000610b8d338484611c79565b6000546001600160a01b0316331461149e5760405162461bcd60e51b8152600401610ab390613400565b6114a7816121fb565b50565b6000546001600160a01b031633146114d45760405162461bcd60e51b8152600401610ab390613400565b60148054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061152190831515815260200190565b60405180910390a150565b6000546001600160a01b031633146115565760405162461bcd60e51b8152600401610ab390613400565b6012546001600160a01b03828116600160401b9092041614156115ce5760405162461bcd60e51b815260206004820152602a60248201527f544f4b454e3a2054686520726f7574657220616c7265616479206861732074686044820152696174206164647265737360b01b6064820152608401610ab3565b80601260086101000a8154816001600160a01b0302191690836001600160a01b031602179055506000601260089054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561164a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061166e919061360e565b6001600160a01b031663c9c6539630601260089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116f4919061360e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015611741573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611765919061360e565b601380546001600160a01b0319166001600160a01b03929092169190911790555050565b6000546001600160a01b031633146117b35760405162461bcd60e51b8152600401610ab390613400565b600d80549115156101000261ff0019909216919091179055565b6000546001600160a01b031633146117f75760405162461bcd60e51b8152600401610ab390613400565b600d546118089060ff16600a6135e0565b61181290826135ef565b60165550565b6000546001600160a01b031633146118425760405162461bcd60e51b8152600401610ab390613400565b6001600160a01b03166000908152600460205260409020805460ff19169055565b6000546001600160a01b0316331461188d5760405162461bcd60e51b8152600401610ab390613400565b600d5461189e9060ff16600a6135e0565b6118a890826135ef565b60175550565b6000546001600160a01b031633146118d85760405162461bcd60e51b8152600401610ab390613400565b6001600160a01b03811661193d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ab3565b6114a7816121ab565b6000546001600160a01b031633146119705760405162461bcd60e51b8152600401610ab390613400565b600d546119819060ff16600a6135e0565b61198b90826135ef565b60155550565b6000546001600160a01b031633146119bb5760405162461bcd60e51b8152600401610ab390613400565b6001600160a01b038116301415611a065760405162461bcd60e51b815260206004820152600f60248201526e4e6f207275672070756c6c73203a2960881b6044820152606401610ab3565b6001600160a01b038116611a4e57600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610e78573d6000803e3d6000fd5b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611a97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611abb919061362b565b9050816001600160a01b031663a9059cbb611ade6000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015611b2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b4f9190613644565b50505050565b6001600160a01b038316611bb75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ab3565b6001600160a01b038216611c185760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ab3565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611cdd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610ab3565b6001600160a01b038216611d3f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610ab3565b60008111611da15760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610ab3565b6001600160a01b03831660009081526006602052604090205460ff16158015611de357506001600160a01b03821660009081526006602052604090205460ff16155b611e285760405162461bcd60e51b81526020600482015260166024820152751058d8dbdd5b9d081a5cc8189b1858dadb1a5cdd195960521b6044820152606401610ab3565b6000611e33306112ef565b90506016548110611e4357506016545b601454600160a01b900460ff16158015611e6b57506013546001600160a01b03858116911614155b8015611e79575060195460ff165b8015611e875750601a544710155b15611ea357601a54611ea390611e9e90600a61212b565b6121fb565b60175481108015908190611ec15750601454600160a01b900460ff16155b8015611edb57506013546001600160a01b03868116911614155b8015611ef05750601454600160a81b900460ff165b1561207d57601754601154601054919350600091611f9d9161ffff600160201b8083048216939081048216928281169282811692611f3b926201000090819004831692910416613661565b611f459190613661565b611f4f9190613661565b611f599190613661565b611f639190613661565b60115460105461ffff92831692611f9792611f8c92620100009182900483169291900416613661565b869061ffff16612388565b9061212b565b60115460105491925060009161203d9161ffff600160201b8083048216939081048216928281169282811692611fe0926201000090819004831692910416613661565b611fea9190613661565b611ff49190613661565b611ffe9190613661565b6120089190613661565b60115460105461ffff92831692611f979261203292600160201b9182900483169291900416613661565b879061ffff16612388565b9050811561204e5761204e82612394565b801561205d5761205d816123e5565b61207a8161206b84876134b4565b61207591906134b4565b612586565b50505b6001600160a01b03851660009081526004602052604090205460019060ff16806120bf57506001600160a01b03851660009081526004602052604090205460ff165b156120c8575060005b6120d48686868461260d565b505050505050565b600081848411156121005760405162461bcd60e51b8152600401610ab391906131b3565b505050900390565b60008060006121156129e1565b9092509050612124828261212b565b9250505090565b6000610cbe8284613687565b6000610cbe828461344b565b600080600080600080600080600080600061215d8c612b63565b9450945094509450945060008060006121818f8888888861217c612108565b612bd7565b919f509d509b50969950949750929550505050505091939550919395565b6000610cbe82846134b4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6014805460ff60a01b1916600160a01b179055604080516002808252606082018352600092602083019080368337019050509050601260089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612282573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122a6919061360e565b816000815181106122b9576122b961349e565b60200260200101906001600160a01b031690816001600160a01b03168152505030816001815181106122ed576122ed61349e565b6001600160a01b039283166020918202929092010152601254600160401b90041663b6f9de958360008461dead6123264261012c612137565b6040518663ffffffff1660e01b815260040161234594939291906136ed565b6000604051808303818588803b15801561235e57600080fd5b505af1158015612372573d6000803e3d6000fd5b50506014805460ff60a01b191690555050505050565b6000610cbe82846135ef565b4761239e826123e5565b60006123aa478361219f565b6014546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611b4f573d6000803e3d6000fd5b6014805460ff60a01b1916600160a01b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061242d5761242d61349e565b60200260200101906001600160a01b031690816001600160a01b031681525050601260089054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124c4919061360e565b816001815181106124d7576124d761349e565b6001600160a01b039283166020918202929092010152601254612504913091600160401b90041684611b55565b60125460405163791ac94760e01b8152600160401b9091046001600160a01b03169063791ac94790612543908590600090869030904290600401613722565b600060405180830381600087803b15801561255d57600080fd5b505af1158015612571573d6000803e3d6000fd5b50506014805460ff60a01b1916905550505050565b600061259382600261212b565b905060006125a1838361219f565b9050476125ad836123e5565b60006125b9478361219f565b90506125c58382612c4b565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050505050565b6126236012805467ffffffffffffffff19169055565b801561288d57600d54610100900460ff166126805760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206e6f7420656e61626c6564207965740000000000000000006044820152606401610ab3565b6013546001600160a01b038581169116141561273d576015548211156126dc5760405162461bcd60e51b8152602060048201526011602482015270109d5e48195e18d959591cc81b1a5b5a5d607a1b6044820152606401610ab3565b60105460128054600160301b80840461ffff90811663ffffffff1990931692909217828516620100009081029190911767ffffffff000000001916600160201b80870485169390930265ffff00000000191617940491909116029190911790555b6013546001600160a01b03848116911614156127fb5760165482111561279a5760405162461bcd60e51b815260206004820152601260248201527114d95b1b08195e18d959591cc81b1a5b5a5d60721b6044820152606401610ab3565b60115460128054600160301b80840461ffff90811663ffffffff1990931692909217828516620100009081029190911767ffffffff000000001916600160201b80870485169390930265ffff00000000191617940491909116029190911790555b6013546001600160a01b0384811691161461286d576018548261281d856112ef565b612827919061344b565b111561286d5760405162461bcd60e51b815260206004820152601560248201527410985b185b98d948195e18d959591cc81b1a5b5a5d605a1b6044820152606401610ab3565b600e54431161288d576012805465ffffffffffff1916641e001e001e1790555b6001600160a01b03841660009081526005602052604090205460ff1680156128ce57506001600160a01b03831660009081526005602052604090205460ff16155b156128e3576128de848484612d50565b611b4f565b6001600160a01b03841660009081526005602052604090205460ff1615801561292457506001600160a01b03831660009081526005602052604090205460ff165b15612934576128de848484612e90565b6001600160a01b03841660009081526005602052604090205460ff1615801561297657506001600160a01b03831660009081526005602052604090205460ff16155b15612986576128de848484612f39565b6001600160a01b03841660009081526005602052604090205460ff1680156129c657506001600160a01b03831660009081526005602052604090205460ff165b156129d6576128de848484612f7d565b611b4f848484612f39565b6009546008546000918291825b600754811015612b3357826001600060078481548110612a1057612a1061349e565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612a7b5750816002600060078481548110612a5457612a5461349e565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612a9157600954600854945094505050509091565b612ad76001600060078481548110612aab57612aab61349e565b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061219f565b9250612b1f6002600060078481548110612af357612af361349e565b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061219f565b915080612b2b816134e1565b9150506129ee565b50600854600954612b439161212b565b821015612b5a576009546008549350935050509091565b90939092509050565b600080600080600080612b7587612ff0565b90506000612b828861300c565b90506000612b8f8961302e565b90506000612b9c8a613051565b90506000612bb484612bae8d8861219f565b9061219f565b9050612bc482612bae838661219f565b9b949a5092985090965094509092505050565b6000808080612be68a86612388565b90506000612bf48a87612388565b90506000612c028a88612388565b90506000612c108a89612388565b90506000612c1e8a8a612388565b90506000612c3482612bae858188818c8c61219f565b959f959e50939c50939a5050505050505050505050565b6014805460ff60a01b1916600160a01b179055601254612c7e9030906001600160a01b03600160401b9091041684611b55565b6012546001600160a01b03600160401b9091041663f305d719823085600080612caf6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612d17573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612d3c919061375e565b50506014805460ff60a01b19169055505050565b600080600080600080612d6287612143565b6001600160a01b038f16600090815260026020526040902054959b50939950919750955093509150612d94908861219f565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054612dc3908761219f565b6001600160a01b03808b1660009081526001602052604080822093909355908a1681522054612df29086612137565b6001600160a01b038916600090815260016020526040902055612e1481613074565b612e2e612e208861302e565b612e2989613051565b6130fd565b612e38848361318f565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051612e7d91815260200190565b60405180910390a3505050505050505050565b600080600080600080612ea287612143565b6001600160a01b038f16600090815260016020526040902054959b50939950919750955093509150612ed4908761219f565b6001600160a01b03808b16600090815260016020908152604080832094909455918b16815260029091522054612f0a9084612137565b6001600160a01b038916600090815260026020908152604080832093909355600190522054612df29086612137565b600080600080600080612f4b87612143565b6001600160a01b038f16600090815260016020526040902054959b50939950919750955093509150612dc3908761219f565b600080600080600080612f8f87612143565b6001600160a01b038f16600090815260026020526040902054959b50939950919750955093509150612fc1908861219f565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054612ed4908761219f565b601254600090610b9190606490611f9790859061ffff16612388565b601254600090610b9190606490611f9790859062010000900461ffff16612388565b601254600090610b9190606490611f97908590600160301b900461ffff16612388565b601254600090610b9190606490611f97908590600160201b900461ffff16612388565b600061307e612108565b9050600061308c8383612388565b306000908152600160205260409020549091506130a99082612137565b3060009081526001602090815260408083209390935560059052205460ff16156130f857306000908152600260205260409020546130e79084612137565b306000908152600260205260409020555b505050565b6000613107612108565b905060006131158483612388565b905060006131238484612388565b3060009081526001602052604090205490915061314c9083906131469084612137565b90612137565b306000908152600160209081526040808320939093556002905220546131789086906131469087612137565b306000908152600260205260409020555050505050565b60095461319c908361219f565b600955600a546131ac9082612137565b600a555050565b600060208083528351808285015260005b818110156131e0578581018301518582016040015282016131c4565b818111156131f2576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146114a757600080fd5b6000806040838503121561323057600080fd5b823561323b81613208565b946020939093013593505050565b60008060006060848603121561325e57600080fd5b833561326981613208565b9250602084013561327981613208565b929592945050506040919091013590565b80151581146114a757600080fd5b600080604083850312156132ab57600080fd5b823561323b8161328a565b6000602082840312156132c857600080fd5b5035919050565b6000602082840312156132e157600080fd5b8135610cbe81613208565b600080604083850312156132ff57600080fd5b8235915060208301356133118161328a565b809150509250929050565b803561ffff8116811461332e57600080fd5b919050565b6000806000806080858703121561334957600080fd5b6133528561331c565b93506133606020860161331c565b925061336e6040860161331c565b915061337c6060860161331c565b905092959194509250565b6000806040838503121561339a57600080fd5b82356133a581613208565b915060208301356133118161328a565b6000602082840312156133c757600080fd5b8135610cbe8161328a565b600080604083850312156133e557600080fd5b82356133f081613208565b9150602083013561331181613208565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561345e5761345e613435565b500190565b600181811c9082168061347757607f821691505b6020821081141561349857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b6000828210156134c6576134c6613435565b500390565b634e487b7160e01b600052603160045260246000fd5b60006000198214156134f5576134f5613435565b5060010190565b600181815b8085111561353757816000190482111561351d5761351d613435565b8085161561352a57918102915b93841c9390800290613501565b509250929050565b60008261354e57506001610b91565b8161355b57506000610b91565b8160018114613571576002811461357b57613597565b6001915050610b91565b60ff84111561358c5761358c613435565b50506001821b610b91565b5060208310610133831016604e8410600b84101617156135ba575081810a610b91565b6135c483836134fc565b80600019048211156135d8576135d8613435565b029392505050565b6000610cbe60ff84168361353f565b600081600019048311821515161561360957613609613435565b500290565b60006020828403121561362057600080fd5b8151610cbe81613208565b60006020828403121561363d57600080fd5b5051919050565b60006020828403121561365657600080fd5b8151610cbe8161328a565b600061ffff80831681851680830382111561367e5761367e613435565b01949350505050565b6000826136a457634e487b7160e01b600052601260045260246000fd5b500490565b600081518084526020808501945080840160005b838110156136e25781516001600160a01b0316875295820195908201906001016136bd565b509495945050505050565b84815260806020820152600061370660808301866136a9565b6001600160a01b03949094166040830152506060015292915050565b85815284602082015260a06040820152600061374160a08301866136a9565b6001600160a01b0394909416606083015250608001529392505050565b60008060006060848603121561377357600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203cd20ef1a72bee884e01c12dc1ef2cf70cd70f9aea1695f3f56ad3ec804adb7364736f6c634300080a0033