Token ArbInu
Overview ERC20
Price
$0.00 @ 0.000002 ETH (-25.59%)
Fully Diluted Market Cap
Total Supply:
1,000,000,000 ARBINU
Holders:
4,931 addresses
Contract:
Decimals:
18
Official Site:
Balance
294,844,618.953926333172680782 ARBINUValue
$1,232,479.99 ( ~694.2611 ETH) [29.4845%]
[ Download CSV Export ]
[ Download CSV Export ]
OVERVIEW
Arbinu is a community-owned, fairly launched token, born out of a desire to create a home for all members of the greater Arbitrum ecosystem. It serves as a cute and cozy all-accepting family where everyone has a seat at the table and can freely speak their mind.Market
Volume (24H) | : | $287,086.00 |
Market Capitalization | : | $0.00 |
Circulating Supply | : | 0.00 ARBINU |
Market Data Source: Coinmarketcap |
Update? Click here to update the token ICO / general information
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ArbInu
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; contract ArbInu is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; address private constant DEAD = 0x000000000000000000000000000000000000dEaD; string private _name; string private _symbol; uint8 private _decimals; address public router; address public basePair; uint256 public prevDevFee; mapping(address => uint256) private _tOwned; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromDevFee; mapping(address => bool) private _isExcludedFromMaxAmount; mapping(address => bool) private _isDevWallet; address[] private _excluded; address public _devWalletAddress; uint256 private _tTotal; uint256 public _devFee; uint256 private _previousDevFee = _devFee; uint256 public _maxTxAmount; uint256 public _maxHeldAmount; IUniswapV2Router02 public uniswapV2Router; IUniswapV2Pair public uniswapV2Pair; constructor( address tokenOwner, address devWalletAddress_, address _router, address _basePair ) { _name = "ArbInu"; _symbol = "ARBINU"; _decimals = 18; _tTotal = 1000000000 * 10**_decimals; _tOwned[tokenOwner] = _tTotal; _devFee = 4; _previousDevFee = _devFee; _devWalletAddress = devWalletAddress_; _maxHeldAmount = _tTotal.mul(20).div(1000); // 2% _maxTxAmount = _maxHeldAmount; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(_router); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Pair( IUniswapV2Factory(_uniswapV2Router.factory()).createPair( address(this), _basePair ) ); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; //exclude owner and this contract from fee _isExcludedFromDevFee[owner()] = true; _isExcludedFromDevFee[address(this)] = true; _isExcludedFromDevFee[_devWalletAddress] = true; _isExcludedFromMaxAmount[owner()] = true; _isExcludedFromMaxAmount[address(this)] = true; _isExcludedFromMaxAmount[_devWalletAddress] = true; //set wallet provided to true _isDevWallet[_devWalletAddress] = true; emit Transfer(address(0), tokenOwner, _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) { return _tOwned[account]; } function getBasePairAddr() public view returns (address) { return basePair; } 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 excludeFromFee(address account) public onlyOwner { require(!_isExcludedFromDevFee[account], "Account is already excluded"); _isExcludedFromDevFee[account] = true; } function includeInFee(address account) public onlyOwner { require(_isExcludedFromDevFee[account], "Account is already included"); _isExcludedFromDevFee[account] = false; } function excludeFromMaxAmount(address account) public onlyOwner { require( !_isExcludedFromMaxAmount[account], "Account is already excluded" ); _isExcludedFromMaxAmount[account] = true; } function includeInMaxAmount(address account) public onlyOwner { require( _isExcludedFromMaxAmount[account], "Account is already included" ); _isExcludedFromMaxAmount[account] = false; } function setDevFeePercent(uint256 devFee) external onlyOwner { require(devFee >= 0, "teamFee out of range"); _devFee = devFee; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner { require(maxTxPercent <= 100, "maxTxPercent out of range"); _maxTxAmount = _tTotal.mul(maxTxPercent).div(10**2); } function setDevWalletAddress(address _addr) public onlyOwner { require(!_isDevWallet[_addr], "Wallet address already set"); if (!_isExcludedFromDevFee[_addr]) { excludeFromFee(_addr); } _isDevWallet[_addr] = true; _devWalletAddress = _addr; } function replaceDevWalletAddress(address _addr, address _newAddr) external onlyOwner { require(_isDevWallet[_addr], "Wallet address not set previously"); if (_isExcludedFromDevFee[_addr]) { includeInFee(_addr); } _isDevWallet[_addr] = false; if (_devWalletAddress == _addr) { setDevWalletAddress(_newAddr); } } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function _getValues(uint256 tAmount) private view returns (uint256, uint256) { uint256 tDev = calculateDevFee(tAmount); uint256 tTransferAmount = tAmount.sub(tDev); return (tTransferAmount, tDev); } function _takeDev(uint256 tDev) private { _tOwned[_devWalletAddress] = _tOwned[_devWalletAddress].add(tDev); } function calculateDevFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_devFee).div(10**2); } function removeAllFee() private { if (_devFee == 0) return; _previousDevFee = _devFee; _devFee = 0; } function restoreAllFee() private { _devFee = _previousDevFee; } function isExcludedFromFee(address account) public view returns (bool) { return _isExcludedFromDevFee[account]; } function isExcludedFromMaxAmount(address account) public view returns (bool) { return _isExcludedFromMaxAmount[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"); // Only limit max TX for swaps, not for standard transactions if ( from == address(uniswapV2Router) || to == address(uniswapV2Router) ) { if ( !_isExcludedFromMaxAmount[from] && !_isExcludedFromMaxAmount[to] ) require( amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount." ); } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromDevFee account then remove the fee if (_isExcludedFromDevFee[from] || _isExcludedFromDevFee[to]) { takeFee = false; } if (!_isExcludedFromMaxAmount[to]) { require( _tOwned[to].add(amount) <= _maxHeldAmount, "Recipient already owns maximum amount of tokens." ); } //transfer amount, it will take dev, liquidity fee _tokenTransfer(from, to, amount, takeFee); //reset tax fees restoreAllFee(); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> WHT address[] memory path = new address[](2); path[0] = address(this); path[1] = getBasePairAddr(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ETHAmount) private { // 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 DEAD, 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 { if (!takeFee) removeAllFee(); (uint256 tTransferAmount, uint256 tDev) = _getValues(amount); _tOwned[sender] = _tOwned[sender].sub(amount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _takeDev(tDev); emit Transfer(sender, recipient, tTransferAmount); } function disableFees() public onlyOwner { removeAllFee(); } function enableFees() public onlyOwner { restoreAllFee(); } }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; 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; }
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); }
pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (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 generally not needed starting with Solidity 0.8, since 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 subtraction 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; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"address","name":"devWalletAddress_","type":"address"},{"internalType":"address","name":"_router","type":"address"},{"internalType":"address","name":"_basePair","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_devWalletAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxHeldAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"basePair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromMaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getBasePairAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInMaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prevDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"address","name":"_newAddr","type":"address"}],"name":"replaceDevWalletAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"devFee","type":"uint256"}],"name":"setDevFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setDevWalletAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"contract IUniswapV2Pair","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600e54600f553480156200001757600080fd5b5060405162001e9d38038062001e9d8339810160408190526200003a916200042d565b62000045336200039b565b604080518082019091526006815265417262496e7560d01b60208201526001906200007190826200052f565b50604080518082019091526006815265415242494e5560d01b60208201526002906200009e90826200052f565b506003805460ff19166012908117909155620000bc90600a6200070e565b620000cc90633b9aca006200071f565b600d8190556001600160a01b0385811660009081526006602090815260409091208390556004600e819055600f55600c80546001600160a01b0319169287169290921790915562000147916103e891620001339190601490620003eb811b62000dde17901c565b6200040260201b62000df11790919060201c565b60118190556010556040805163c45a015560e01b8152905183916001600160a01b0383169163c45a0155916004808201926020929091908290030181865afa15801562000198573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001be919062000739565b6040516364e329cb60e11b81523060048201526001600160a01b038481166024830152919091169063c9c65396906044016020604051808303816000875af11580156200020f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000235919062000739565b601380546001600160a01b03199081166001600160a01b0393841617909155601280549091169183169190911790556001600860006200027d6000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526008909352818320805485166001908117909155600c54909116835290822080549093168117909255600990620002ed6000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260098452828120805486166001908117909155600c80548416835284832080548816831790555483168252600a8552838220805490961617909455600d549151918252881692917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050506200077a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000620003f982846200071f565b90505b92915050565b6000620003f9828462000757565b80516001600160a01b03811681146200042857600080fd5b919050565b600080600080608085870312156200044457600080fd5b6200044f8562000410565b93506200045f6020860162000410565b92506200046f6040860162000410565b91506200047f6060860162000410565b905092959194509250565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004b557607f821691505b602082108103620004d657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200052a57600081815260208120601f850160051c81016020861015620005055750805b601f850160051c820191505b81811015620005265782815560010162000511565b5050505b505050565b81516001600160401b038111156200054b576200054b6200048a565b62000563816200055c8454620004a0565b84620004dc565b602080601f8311600181146200059b5760008415620005825750858301515b600019600386901b1c1916600185901b17855562000526565b600085815260208120601f198616915b82811015620005cc57888601518255948401946001909101908401620005ab565b5085821015620005eb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000652578160001904821115620006365762000636620005fb565b808516156200064457918102915b93841c939080029062000616565b509250929050565b6000826200066b57506001620003fc565b816200067a57506000620003fc565b81600181146200069357600281146200069e57620006be565b6001915050620003fc565b60ff841115620006b257620006b2620005fb565b50506001821b620003fc565b5060208310610133831016604e8410600b8410161715620006e3575081810a620003fc565b620006ef838362000611565b8060001904821115620007065762000706620005fb565b029392505050565b6000620003f960ff8416836200065a565b8082028115828204841417620003fc57620003fc620005fb565b6000602082840312156200074c57600080fd5b620003f98262000410565b6000826200077557634e487b7160e01b600052601260045260246000fd5b500490565b611713806200078a6000396000f3fe6080604052600436106102135760003560e01c80637d1db4a511610118578063bf2e2c52116100a0578063dd62ed3e1161006f578063dd62ed3e14610627578063ddf47a321461066d578063ea2f0b371461068b578063f2fde38b146106ab578063f887ea40146106cb57600080fd5b8063bf2e2c52146105bc578063ce404b23146105d2578063d543dbeb146105e7578063d7034bd61461060757600080fd5b8063a457c2d7116100e7578063a457c2d714610530578063a9059cbb14610550578063aa45026b14610570578063b0dee10114610586578063b425bac31461059c57600080fd5b80637d1db4a5146104c757806383bbe74b146104dd5780638da5cb5b146104fd57806395d89b411461051b57600080fd5b8063395093511161019b5780634d77e91d1161016a5780634d77e91d146103ea5780635342acb4146104235780635930919b1461045c57806370a082311461047c578063715018a6146104b257600080fd5b8063395093511461036a578063437823ec1461038a57806349bd5a5e146103aa5780634ab76827146103ca57600080fd5b806318160ddd116101e257806318160ddd146102d457806323b872dd146102f3578063313ce56714610313578063368f5bd514610335578063379e29191461034a57600080fd5b806306fdde031461021f578063095ea7b31461024a578063120a06121461027a5780631694505e1461029c57600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b506102346106f0565b60405161024191906114aa565b60405180910390f35b34801561025657600080fd5b5061026a610265366004611514565b610782565b6040519015158152602001610241565b34801561028657600080fd5b5061029a61029536600461153e565b610799565b005b3480156102a857600080fd5b506012546102bc906001600160a01b031681565b6040516001600160a01b039091168152602001610241565b3480156102e057600080fd5b50600d545b604051908152602001610241565b3480156102ff57600080fd5b5061026a61030e366004611559565b61086f565b34801561031f57600080fd5b5060035460405160ff9091168152602001610241565b34801561034157600080fd5b5061029a6108d8565b34801561035657600080fd5b5061029a610365366004611595565b6108ed565b34801561037657600080fd5b5061026a610385366004611514565b6108fa565b34801561039657600080fd5b5061029a6103a536600461153e565b610930565b3480156103b657600080fd5b506013546102bc906001600160a01b031681565b3480156103d657600080fd5b5061029a6103e536600461153e565b6109c5565b3480156103f657600080fd5b5061026a61040536600461153e565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561042f57600080fd5b5061026a61043e36600461153e565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561046857600080fd5b506004546102bc906001600160a01b031681565b34801561048857600080fd5b506102e561049736600461153e565b6001600160a01b031660009081526006602052604090205490565b3480156104be57600080fd5b5061029a610a5a565b3480156104d357600080fd5b506102e560105481565b3480156104e957600080fd5b5061029a6104f836600461153e565b610a6c565b34801561050957600080fd5b506000546001600160a01b03166102bc565b34801561052757600080fd5b50610234610afd565b34801561053c57600080fd5b5061026a61054b366004611514565b610b0c565b34801561055c57600080fd5b5061026a61056b366004611514565b610b5b565b34801561057c57600080fd5b506102e5600e5481565b34801561059257600080fd5b506102e560115481565b3480156105a857600080fd5b50600c546102bc906001600160a01b031681565b3480156105c857600080fd5b506102e560055481565b3480156105de57600080fd5b5061029a610b68565b3480156105f357600080fd5b5061029a610602366004611595565b610b78565b34801561061357600080fd5b5061029a6106223660046115ae565b610bf7565b34801561063357600080fd5b506102e56106423660046115ae565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b34801561067957600080fd5b506004546001600160a01b03166102bc565b34801561069757600080fd5b5061029a6106a636600461153e565b610cd4565b3480156106b757600080fd5b5061029a6106c636600461153e565b610d65565b3480156106d757600080fd5b506003546102bc9061010090046001600160a01b031681565b6060600180546106ff906115e1565b80601f016020809104026020016040519081016040528092919081815260200182805461072b906115e1565b80156107785780601f1061074d57610100808354040283529160200191610778565b820191906000526020600020905b81548152906001019060200180831161075b57829003601f168201915b5050505050905090565b600061078f338484610dfd565b5060015b92915050565b6107a1610f21565b6001600160a01b0381166000908152600a602052604090205460ff161561080f5760405162461bcd60e51b815260206004820152601a60248201527f57616c6c6574206164647265737320616c72656164792073657400000000000060448201526064015b60405180910390fd5b6001600160a01b03811660009081526008602052604090205460ff166108385761083881610930565b6001600160a01b03166000818152600a60205260409020805460ff19166001179055600c80546001600160a01b0319169091179055565b600061087c848484610f7b565b6108ce84336108c985604051806060016040528060288152602001611691602891396001600160a01b038a1660009081526007602090815260408083203384529091529020549190611290565b610dfd565b5060019392505050565b6108e0610f21565b6108eb600f54600e55565b565b6108f5610f21565b600e55565b3360008181526007602090815260408083206001600160a01b0387168452909152812054909161078f9185906108c990866112bc565b610938610f21565b6001600160a01b03811660009081526008602052604090205460ff16156109a15760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610806565b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6109cd610f21565b6001600160a01b03811660009081526009602052604090205460ff1615610a365760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610806565b6001600160a01b03166000908152600960205260409020805460ff19166001179055565b610a62610f21565b6108eb60006112c8565b610a74610f21565b6001600160a01b03811660009081526009602052604090205460ff16610adc5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c7564656400000000006044820152606401610806565b6001600160a01b03166000908152600960205260409020805460ff19169055565b6060600280546106ff906115e1565b600061078f33846108c9856040518060600160405280602581526020016116b9602591393360009081526007602090815260408083206001600160a01b038d1684529091529020549190611290565b600061078f338484610f7b565b610b70610f21565b6108eb611318565b610b80610f21565b6064811115610bd15760405162461bcd60e51b815260206004820152601960248201527f6d6178547850657263656e74206f7574206f662072616e6765000000000000006044820152606401610806565b610bf16064610beb83600d54610dde90919063ffffffff16565b90610df1565b60105550565b610bff610f21565b6001600160a01b0382166000908152600a602052604090205460ff16610c715760405162461bcd60e51b815260206004820152602160248201527f57616c6c65742061646472657373206e6f74207365742070726576696f75736c6044820152607960f81b6064820152608401610806565b6001600160a01b03821660009081526008602052604090205460ff1615610c9b57610c9b82610cd4565b6001600160a01b038083166000818152600a60205260409020805460ff19169055600c5490911603610cd057610cd081610799565b5050565b610cdc610f21565b6001600160a01b03811660009081526008602052604090205460ff16610d445760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c7564656400000000006044820152606401610806565b6001600160a01b03166000908152600860205260409020805460ff19169055565b610d6d610f21565b6001600160a01b038116610dd25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610806565b610ddb816112c8565b50565b6000610dea8284611631565b9392505050565b6000610dea8284611648565b6001600160a01b038316610e5f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610806565b6001600160a01b038216610ec05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610806565b6001600160a01b0383811660008181526007602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b031633146108eb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610806565b6001600160a01b038316610fdf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610806565b6001600160a01b0382166110415760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610806565b600081116110a35760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610806565b6012546001600160a01b03848116911614806110cc57506012546001600160a01b038381169116145b1561117b576001600160a01b03831660009081526009602052604090205460ff1615801561111357506001600160a01b03821660009081526009602052604090205460ff16155b1561117b5760105481111561117b5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610806565b6001600160a01b03831660009081526008602052604090205460019060ff16806111bd57506001600160a01b03831660009081526008602052604090205460ff165b156111c6575060005b6001600160a01b03831660009081526009602052604090205460ff16611273576011546001600160a01b03841660009081526006602052604090205461120c90846112bc565b11156112735760405162461bcd60e51b815260206004820152603060248201527f526563697069656e7420616c7265616479206f776e73206d6178696d756d206160448201526f36b7bab73a1037b3103a37b5b2b7399760811b6064820152608401610806565b61127f84848484611331565b61128a600f54600e55565b50505050565b600081848411156112b45760405162461bcd60e51b815260040161080691906114aa565b505050900390565b6000610dea828461166a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600e5460000361132457565b600e8054600f5560009055565b8061133e5761133e611318565b60008061134a84611418565b6001600160a01b0388166000908152600660205260409020549193509150611372908561143f565b6001600160a01b0380881660009081526006602052604080822093909355908716815220546113a190836112bc565b6001600160a01b0386166000908152600660205260409020556113c38161144b565b846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161140891815260200190565b60405180910390a3505050505050565b60008060006114268461148e565b90506000611434858361143f565b959194509092505050565b6000610dea828461167d565b600c546001600160a01b031660009081526006602052604090205461147090826112bc565b600c546001600160a01b031660009081526006602052604090205550565b60006107936064610beb600e5485610dde90919063ffffffff16565b600060208083528351808285015260005b818110156114d7578581018301518582016040015282016114bb565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461150f57600080fd5b919050565b6000806040838503121561152757600080fd5b611530836114f8565b946020939093013593505050565b60006020828403121561155057600080fd5b610dea826114f8565b60008060006060848603121561156e57600080fd5b611577846114f8565b9250611585602085016114f8565b9150604084013590509250925092565b6000602082840312156115a757600080fd5b5035919050565b600080604083850312156115c157600080fd5b6115ca836114f8565b91506115d8602084016114f8565b90509250929050565b600181811c908216806115f557607f821691505b60208210810361161557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176107935761079361161b565b60008261166557634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156107935761079361161b565b818103818111156107935761079361161b56fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122011c992c0d5768f28bab6444f83ea7e46bc67b9f0e7f5c539fe58084fb976f33364736f6c63430008110033000000000000000000000000ee2573ab0c6356a371ccc52c1ff2779588908342000000000000000000000000ee2573ab0c6356a371ccc52c1ff27795889083420000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b4799750600000000000000000000000082af49447d8a07e3bd95bd0d56f35241523fbab1
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ee2573ab0c6356a371ccc52c1ff2779588908342000000000000000000000000ee2573ab0c6356a371ccc52c1ff27795889083420000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b4799750600000000000000000000000082af49447d8a07e3bd95bd0d56f35241523fbab1
-----Decoded View---------------
Arg [0] : tokenOwner (address): 0xee2573ab0c6356a371ccc52c1ff2779588908342
Arg [1] : devWalletAddress_ (address): 0xee2573ab0c6356a371ccc52c1ff2779588908342
Arg [2] : _router (address): 0x1b02da8cb0d097eb8d57a175b88c7d8b47997506
Arg [3] : _basePair (address): 0x82af49447d8a07e3bd95bd0d56f35241523fbab1
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000ee2573ab0c6356a371ccc52c1ff2779588908342
Arg [1] : 000000000000000000000000ee2573ab0c6356a371ccc52c1ff2779588908342
Arg [2] : 0000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b47997506
Arg [3] : 00000000000000000000000082af49447d8a07e3bd95bd0d56f35241523fbab1