Transactions
Token Transfers
Tokens
Internal Transactions
Coin Balance History
Logs
Code
Read Contract
Write Contract
- Contract name:
- ENERGYWEBDOGE
- Optimization enabled
- false
- Compiler version
- v0.8.4+commit.c7e474f2
- EVM Version
- default
- Verified at
- 2021-07-27T02:38:54.167758Z
Contract source code
/** * Project would not have been made possible without the efforts of Agent_Karbone, Lee // Cà řbøņ Ąřb Ķiņğ, Lucas, Freezy and myself VulcanBearBull. * * Name: EnergyWeb DOGE * Ticker: EWD * Total supply minted: 100,000,000 * Max tx size: 1,000,000 * Transaction tax: 2% * - 1% green tax * - 0.75% Automatic liquidity repooling tax * - 0.25% Community airdrop tax * * .. * :==-. * :==--:. :++==-. * =*+++++=-. :+++=--: * -****+++==-:. -++++==-: * .+****++=====--. =+++++==-: * -****++++===++=-:. :=++++++==--. * +****+++++++==++==-. .:=+++++*++===-: * .+*+++*****+++++**+==-. ...::--===========++++=-. * .++++********++++**+++==-----========================--===++=-: * .+**+**######**+++*#*++++++=========================---------=-: * +**++*###%##**++++*#**+**+=====-=-==========+++=====------------. * =+++++*##%%#*++++++**#*+====================++++====------:--------:. * .++++++*##%%%**+++***+========================++++==---:::::----------::. * =+++=++*#%%%%%*++++===========================+++===--::::::----------::::. * =**+++++*##%%##*+=================-=------======++==--::::---------::::::::: * .=++*#+++++***++====================---------====++===---:-----------:::--:::: * .-+++++++++++=====---===============--------:--==++++===-----==+##*+=--:::--:-:. * .-=+****+++++=-------=================-----------==========---+##%#+**=-::..::::: * -==+****+++==--------==================+==-------==--==----==-+%#%%##-=::......::. * .-=+*###++===-----=====--========+=+*#@@%#%*========----------==*@%###=+-::......:: * -==++**++========-====--==--====++#@@@%#++-+%#*++====------------=**#*+=-:::......:. * -==+++++=====--=====-------======*%%%%@@%%*-+%%#**+==------:---------------:........ * .-====++=====----------------------=*#%%%%%*+#%%*+++=-------:--------:::----:......... * :===========-----------::::::::------==+***+*++======-------:-----::--:::::::......... * :========-------:::-----::::::::----=---===------===-------:::------------:........... * .-=======---------::::----::::::::-----=======------------::::----=+***++***++-......... * .-==-====-------:::::::::::::::::::----------------------:::::::-+##%%%%%%%%%%%%*.....:... * :-==-====-------::::::::::::::::::::--:-:::::::::-------::::::::=*#%%%@@@@%%%%@%+:..::::.. * .--=========---------:::::::::::::::::::::::::::::::-----:::::::-=+%@@@@@@@%%%%#*+-:...:... * ---==========-------------:::::::::::::::::::::::::------------:--+*#%@%%%%%%%%%%*-::..:.... * :-========+====--------------::::::::::::::::::::::::-----::::-----=+*##%%%%%@%%#*+=-:::::::. * :--=======++====--------------------::::::-:::::::::::--------------==+*###%%%%##***+--:::.... * --========+++=====----------------------------------------------=-===++########*****=--:::.... * :-==========+====-----------------------------------======--========++*#*##%%@@%%#*+--:::...:. * --==============-------:::::::---------------------===+++====--=====+#%@@%@%%%%####+::::::.... * :-======++========---------:::--------------------===+*########*+*##%%%%%%%%%###**=-:::::::.. * .=======+++=++=====----------------------------------==++*******#%####*##**#***+=--::::::::. * :==++++++++++========---------------------------------===+++++++++++++++++++++=--::::::::: * .=++++++++====++======----------:-----------------------====================------::::::. * .=+++++++++=++=========------------------------------------------------------:-:::::::: * .-=++++++++=+++======---------::-----------==========-------=----------:--::-:::::::. * :=+++++++========--------------:---------======---==------------------:::::::::. * .=++++++=====--------------------:---------==--==----==-------------::---::: * :=+++==========--------------------======--==----==------------------:. * .-=====-------------------------===============------------------. * :-====-----------=========-==============--=----------------. * ..:----===-------========================-------------:. * .::--------===============================-:. * .....::::--==================--:.. * */ pragma solidity ^0.8.4; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return payable(msg.sender); } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } library Address { function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } 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"); } 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"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { if (returndata.length > 0) { assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } contract ERC20 is Context, IERC20, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { 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); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } function owner() public view returns (address) { return _owner; } modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } 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; } // 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.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.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; } contract ENERGYWEBDOGE is ERC20, Ownable { using Address for address; address public SUSUToken = 0x9cd9CAECDC816C3E7123A4F130A91A684D01f4Dc; IUniswapV2Router02 public router; address public pair; bool private _liquidityMutex = false; uint256 public _tokenLiquidityThreshold = 1000e18; bool public ProvidingLiquidity = true; uint16 public feeliq = 75; uint16 public feegreen = 100; uint16 public feecommunity = 25; uint16 constant internal DIV = 10000; uint16 public feesum = feeliq + feegreen + feecommunity; address public greenWallet = 0xE64EEa65C941c06b57e69DCe3325D7D67e7e4770; address public communityWallet = 0x660b67251b69a68700d8cDd8dFB149169E4F6fEE; address public LPWallet = 0x0264333232EdB6033a982C2deA43D94a97CBD690; uint256 public transferlimit; mapping (address => bool) public exemptTransferlimit; mapping (address => bool) public exemptFee; event LiquidityProvided(uint256 tokenAmount, uint256 nativeAmount, uint256 exchangeAmount); event LiquidityProvisionStateChanged(bool newState); event LiquidityThresholdUpdated(uint256 newThreshold); modifier mutexLock() { if (!_liquidityMutex) { _liquidityMutex = true; _; _liquidityMutex = false; } } constructor() ERC20("EnergyWeb DOGE", unicode"🔋 EWD 🔋") { _mint(msg.sender, 1e8 * 10 ** decimals()); transferlimit = 1e6* 10** decimals(); exemptTransferlimit[msg.sender] = true; exemptFee[msg.sender] = true; IUniswapV2Router02 _carbonSwapRouter = IUniswapV2Router02(0x3b932c3f73A9Eb6836Cd31145F2D47561e21DeCB); // Create a pair for this new token address _carbonSwapPair = IUniswapV2Factory(_carbonSwapRouter.factory()) .createPair(address(this), SUSUToken); router = _carbonSwapRouter; pair = _carbonSwapPair; exemptTransferlimit[greenWallet] = true; exemptFee[greenWallet] = true; exemptTransferlimit[address(this)] = true; exemptFee[address(this)] = true; } function _transfer(address sender, address recipient, uint256 amount) internal override { //check transferlimit require(amount <= transferlimit || exemptTransferlimit[sender] || exemptTransferlimit[recipient] , "you can't transfer that much"); //calculate fee uint256 fee = amount * feesum / DIV; uint256 fee_ex = amount * feeliq / DIV; uint256 fee_comm = amount * feecommunity / DIV; uint256 fee_green = amount * feegreen / DIV; //set fee to zero if fees in contract are handled or exempted if (_liquidityMutex || exemptFee[sender] || exemptFee[recipient]) fee = 0; //send fees if threshold has been reached //don't do this on buys, breaks swap if (ProvidingLiquidity && sender != pair) handle_fees(); //rest to recipient super._transfer(sender, recipient, amount - fee); //send the fee to the contract if (fee > 0) { super._transfer(sender, address(this), fee_ex); super._transfer(sender, communityWallet, fee_comm); super._transfer(sender, greenWallet, fee_green); } } function approveOtherContract() public { IERC20(SUSUToken).approve(address(router), 100000 * 10**18); } function handle_fees() private mutexLock { uint256 contractBalance = balanceOf(address(this)); if (contractBalance >= _tokenLiquidityThreshold) { contractBalance = _tokenLiquidityThreshold; //calculate how many tokens we need to exchange uint256 exchangeSusu = contractBalance / 2; uint256 exchangeSusuOtherHalf = exchangeSusu; //exchange to SUSU exchangeTokenToSUSU(exchangeSusu); uint256 susuBalance = IERC20(SUSUToken).balanceOf(address(this)); addToLiquiditySUSU(exchangeSusuOtherHalf, susuBalance); } } function exchangeTokenToSUSU(uint256 tokenAmount) private { address[] memory path = new address[](3); path[0] = address(this); path[1] = router.WETH(); path[2] = SUSUToken; _approve(address(this), address(router), tokenAmount); router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(this), block.timestamp); } function addToLiquiditySUSU(uint256 tokenAmount, uint256 susuAmount) private { _approve(address(this), address(router), tokenAmount); IERC20(SUSUToken).approve(address(router), tokenAmount); router.addLiquidity(SUSUToken, address(this), susuAmount, tokenAmount, 0, 0, LPWallet, block.timestamp); } // fallbacks receive() external payable {} }
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"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":"LiquidityProvided","inputs":[{"type":"uint256","name":"tokenAmount","internalType":"uint256","indexed":false},{"type":"uint256","name":"nativeAmount","internalType":"uint256","indexed":false},{"type":"uint256","name":"exchangeAmount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"LiquidityProvisionStateChanged","inputs":[{"type":"bool","name":"newState","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"LiquidityThresholdUpdated","inputs":[{"type":"uint256","name":"newThreshold","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":"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":"address","name":"","internalType":"address"}],"name":"LPWallet","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"ProvidingLiquidity","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"SUSUToken","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"_tokenLiquidityThreshold","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":"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":"nonpayable","outputs":[],"name":"approveOtherContract","inputs":[]},{"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":"address","name":"","internalType":"address"}],"name":"communityWallet","inputs":[]},{"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":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"exemptFee","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"exemptTransferlimit","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint16","name":"","internalType":"uint16"}],"name":"feecommunity","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint16","name":"","internalType":"uint16"}],"name":"feegreen","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint16","name":"","internalType":"uint16"}],"name":"feeliq","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint16","name":"","internalType":"uint16"}],"name":"feesum","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"greenWallet","inputs":[]},{"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":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"pair","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IUniswapV2Router02"}],"name":"router","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":"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":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"transferlimit","inputs":[]},{"type":"receive","stateMutability":"payable"}]
Deployed ByteCode
0x6080604052600436106101d15760003560e01c806381c28b2e116100f7578063a99114ea11610095578063dd62ed3e11610064578063dd62ed3e146106a3578063efa54470146106e0578063f2fde38b1461070b578063f887ea4014610734576101d8565b8063a99114ea146105d3578063c5d32bb214610610578063c75748391461064d578063d5dd1dd814610678576101d8565b806395d89b41116100d157806395d89b4114610503578063a457c2d71461052e578063a8aa1b311461056b578063a9059cbb14610596576101d8565b806381c28b2e146104825780638da5cb5b146104ad57806392bfe8b9146104d8576101d8565b8063315761221161016f5780635e4d6fa51161013e5780635e4d6fa5146103d857806370a0823114610403578063715018a6146104405780637c32b61014610457576101d8565b8063315761221461031a5780633487f04914610345578063395093511461037057806345283165146103ad576101d8565b806323b872dd116101ab57806323b872dd1461027057806329baf803146102ad5780632cc29835146102d8578063313ce567146102ef576101d8565b806306fdde03146101dd578063095ea7b31461020857806318160ddd14610245576101d8565b366101d857005b600080fd5b3480156101e957600080fd5b506101f261075f565b6040516101ff919061265a565b60405180910390f35b34801561021457600080fd5b5061022f600480360381019061022a91906121c8565b6107f1565b60405161023c9190612624565b60405180910390f35b34801561025157600080fd5b5061025a61080f565b60405161026791906127d7565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190612179565b610819565b6040516102a49190612624565b60405180910390f35b3480156102b957600080fd5b506102c261091a565b6040516102cf9190612539565b60405180910390f35b3480156102e457600080fd5b506102ed610940565b005b3480156102fb57600080fd5b50610304610a1e565b604051610311919061284c565b60405180910390f35b34801561032657600080fd5b5061032f610a27565b60405161033c9190612624565b60405180910390f35b34801561035157600080fd5b5061035a610a3a565b60405161036791906127bc565b60405180910390f35b34801561037c57600080fd5b50610397600480360381019061039291906121c8565b610a4e565b6040516103a49190612624565b60405180910390f35b3480156103b957600080fd5b506103c2610afa565b6040516103cf9190612539565b60405180910390f35b3480156103e457600080fd5b506103ed610b20565b6040516103fa91906127bc565b60405180910390f35b34801561040f57600080fd5b5061042a600480360381019061042591906120eb565b610b34565b60405161043791906127d7565b60405180910390f35b34801561044c57600080fd5b50610455610b7c565b005b34801561046357600080fd5b5061046c610cd4565b60405161047991906127d7565b60405180910390f35b34801561048e57600080fd5b50610497610cda565b6040516104a491906127bc565b60405180910390f35b3480156104b957600080fd5b506104c2610cee565b6040516104cf9190612539565b60405180910390f35b3480156104e457600080fd5b506104ed610d18565b6040516104fa9190612539565b60405180910390f35b34801561050f57600080fd5b50610518610d3e565b604051610525919061265a565b60405180910390f35b34801561053a57600080fd5b50610555600480360381019061055091906121c8565b610dd0565b6040516105629190612624565b60405180910390f35b34801561057757600080fd5b50610580610ec4565b60405161058d9190612539565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b891906121c8565b610eea565b6040516105ca9190612624565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f591906120eb565b610f08565b6040516106079190612624565b60405180910390f35b34801561061c57600080fd5b50610637600480360381019061063291906120eb565b610f28565b6040516106449190612624565b60405180910390f35b34801561065957600080fd5b50610662610f48565b60405161066f9190612539565b60405180910390f35b34801561068457600080fd5b5061068d610f6e565b60405161069a91906127d7565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c5919061213d565b610f74565b6040516106d791906127d7565b60405180910390f35b3480156106ec57600080fd5b506106f5610ffb565b60405161070291906127bc565b60405180910390f35b34801561071757600080fd5b50610732600480360381019061072d91906120eb565b61100f565b005b34801561074057600080fd5b506107496111d6565b604051610756919061263f565b60405180910390f35b60606003805461076e90612aaf565b80601f016020809104026020016040519081016040528092919081815260200182805461079a90612aaf565b80156107e75780601f106107bc576101008083540402835291602001916107e7565b820191906000526020600020905b8154815290600101906020018083116107ca57829003601f168201915b5050505050905090565b60006108056107fe6111fc565b8484611204565b6001905092915050565b6000600254905090565b60006108268484846113cf565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108716111fc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e89061271c565b60405180910390fd5b61090e856108fd6111fc565b8584610909919061299d565b611204565b60019150509392505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1669152d02c7e14af68000006040518363ffffffff1660e01b81526004016109c99291906125d2565b602060405180830381600087803b1580156109e357600080fd5b505af11580156109f7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1b9190612204565b50565b60006012905090565b600a60009054906101000a900460ff1681565b600a60019054906101000a900461ffff1681565b6000610af0610a5b6111fc565b848460016000610a696111fc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610aeb91906128bc565b611204565b6001905092915050565b600a60099054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60039054906101000a900461ffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b846111fc565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a9061273c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60095481565b600a60079054906101000a900461ffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610d4d90612aaf565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7990612aaf565b8015610dc65780601f10610d9b57610100808354040283529160200191610dc6565b820191906000526020600020905b815481529060010190602001808311610da957829003601f168201915b5050505050905090565b60008060016000610ddf6111fc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e939061279c565b60405180910390fd5b610eb9610ea76111fc565b858584610eb4919061299d565b611204565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610efe610ef76111fc565b84846113cf565b6001905092915050565b600e6020528060005260406000206000915054906101000a900460ff1681565b600f6020528060005260406000206000915054906101000a900460ff1681565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a60059054906101000a900461ffff1681565b6110176111fc565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d9061273c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d9061269c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b9061277c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db906126bc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113c291906127d7565b60405180910390a3505050565b600d54811115806114295750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061147d5750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b3906126fc565b60405180910390fd5b600061271061ffff16600a60079054906101000a900461ffff1661ffff16836114e59190612943565b6114ef9190612912565b9050600061271061ffff16600a60019054906101000a900461ffff1661ffff168461151a9190612943565b6115249190612912565b9050600061271061ffff16600a60059054906101000a900461ffff1661ffff168561154f9190612943565b6115599190612912565b9050600061271061ffff16600a60039054906101000a900461ffff1661ffff16866115849190612943565b61158e9190612912565b9050600860149054906101000a900460ff16806115f45750600f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806116485750600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561165257600093505b600a60009054906101000a900460ff1680156116bc5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b156116ca576116c9611758565b5b6116e0878786886116db919061299d565b61189d565b600084111561174f576116f487308561189d565b61172187600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461189d565b61174e87600a60099054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361189d565b5b50505050505050565b600860149054906101000a900460ff1661189b576001600860146101000a81548160ff021916908315150217905550600061179230610b34565b9050600954811061187e57600954905060006002826117b19190612912565b905060008190506117c182611b1c565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161181e9190612539565b60206040518083038186803b15801561183657600080fd5b505afa15801561184a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186e919061222d565b905061187a8282611e77565b5050505b506000600860146101000a81548160ff0219169083151502179055505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561190d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119049061275c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561197d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119749061267c565b60405180910390fd5b61198883838361207d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a05906126dc565b60405180910390fd5b8181611a1a919061299d565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aaa91906128bc565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b0e91906127d7565b60405180910390a350505050565b6000600367ffffffffffffffff811115611b5f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611b8d5781602001602082028036833780820191505090505b5090503081600081518110611bcb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611c6d57600080fd5b505afa158015611c81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ca59190612114565b81600181518110611cdf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600281518110611d76577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ddd30600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611204565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958360008430426040518663ffffffff1660e01b8152600401611e419594939291906127f2565b600060405180830381600087803b158015611e5b57600080fd5b505af1158015611e6f573d6000803e3d6000fd5b505050505050565b611ea430600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611204565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401611f239291906125fb565b602060405180830381600087803b158015611f3d57600080fd5b505af1158015611f51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f759190612204565b50600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e8e33700600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16308486600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518963ffffffff1660e01b8152600401612024989796959493929190612554565b606060405180830381600087803b15801561203e57600080fd5b505af1158015612052573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120769190612256565b5050505050565b505050565b60008135905061209181612e49565b92915050565b6000815190506120a681612e49565b92915050565b6000815190506120bb81612e60565b92915050565b6000813590506120d081612e77565b92915050565b6000815190506120e581612e77565b92915050565b6000602082840312156120fd57600080fd5b600061210b84828501612082565b91505092915050565b60006020828403121561212657600080fd5b600061213484828501612097565b91505092915050565b6000806040838503121561215057600080fd5b600061215e85828601612082565b925050602061216f85828601612082565b9150509250929050565b60008060006060848603121561218e57600080fd5b600061219c86828701612082565b93505060206121ad86828701612082565b92505060406121be868287016120c1565b9150509250925092565b600080604083850312156121db57600080fd5b60006121e985828601612082565b92505060206121fa858286016120c1565b9150509250929050565b60006020828403121561221657600080fd5b6000612224848285016120ac565b91505092915050565b60006020828403121561223f57600080fd5b600061224d848285016120d6565b91505092915050565b60008060006060848603121561226b57600080fd5b6000612279868287016120d6565b935050602061228a868287016120d6565b925050604061229b868287016120d6565b9150509250925092565b60006122b183836122bd565b60208301905092915050565b6122c6816129d1565b82525050565b6122d5816129d1565b82525050565b60006122e682612877565b6122f0818561289a565b93506122fb83612867565b8060005b8381101561232c57815161231388826122a5565b975061231e8361288d565b9250506001810190506122ff565b5085935050505092915050565b612342816129e3565b82525050565b61235181612a34565b82525050565b61236081612a58565b82525050565b61236f81612a6a565b82525050565b600061238082612882565b61238a81856128ab565b935061239a818560208601612a7c565b6123a381612b6e565b840191505092915050565b60006123bb6023836128ab565b91506123c682612b7f565b604082019050919050565b60006123de6026836128ab565b91506123e982612bce565b604082019050919050565b60006124016022836128ab565b915061240c82612c1d565b604082019050919050565b60006124246026836128ab565b915061242f82612c6c565b604082019050919050565b6000612447601c836128ab565b915061245282612cbb565b602082019050919050565b600061246a6028836128ab565b915061247582612ce4565b604082019050919050565b600061248d6020836128ab565b915061249882612d33565b602082019050919050565b60006124b06025836128ab565b91506124bb82612d5c565b604082019050919050565b60006124d36024836128ab565b91506124de82612dab565b604082019050919050565b60006124f66025836128ab565b915061250182612dfa565b604082019050919050565b612515816129ef565b82525050565b61252481612a1d565b82525050565b61253381612a27565b82525050565b600060208201905061254e60008301846122cc565b92915050565b60006101008201905061256a600083018b6122cc565b612577602083018a6122cc565b612584604083018961251b565b612591606083018861251b565b61259e6080830187612357565b6125ab60a0830186612357565b6125b860c08301856122cc565b6125c560e083018461251b565b9998505050505050505050565b60006040820190506125e760008301856122cc565b6125f46020830184612366565b9392505050565b600060408201905061261060008301856122cc565b61261d602083018461251b565b9392505050565b60006020820190506126396000830184612339565b92915050565b60006020820190506126546000830184612348565b92915050565b600060208201905081810360008301526126748184612375565b905092915050565b60006020820190508181036000830152612695816123ae565b9050919050565b600060208201905081810360008301526126b5816123d1565b9050919050565b600060208201905081810360008301526126d5816123f4565b9050919050565b600060208201905081810360008301526126f581612417565b9050919050565b600060208201905081810360008301526127158161243a565b9050919050565b600060208201905081810360008301526127358161245d565b9050919050565b6000602082019050818103600083015261275581612480565b9050919050565b60006020820190508181036000830152612775816124a3565b9050919050565b60006020820190508181036000830152612795816124c6565b9050919050565b600060208201905081810360008301526127b5816124e9565b9050919050565b60006020820190506127d1600083018461250c565b92915050565b60006020820190506127ec600083018461251b565b92915050565b600060a082019050612807600083018861251b565b6128146020830187612357565b818103604083015261282681866122db565b905061283560608301856122cc565b612842608083018461251b565b9695505050505050565b6000602082019050612861600083018461252a565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006128c782612a1d565b91506128d283612a1d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561290757612906612ae1565b5b828201905092915050565b600061291d82612a1d565b915061292883612a1d565b92508261293857612937612b10565b5b828204905092915050565b600061294e82612a1d565b915061295983612a1d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561299257612991612ae1565b5b828202905092915050565b60006129a882612a1d565b91506129b383612a1d565b9250828210156129c6576129c5612ae1565b5b828203905092915050565b60006129dc826129fd565b9050919050565b60008115159050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000612a3f82612a46565b9050919050565b6000612a51826129fd565b9050919050565b6000612a6382612a1d565b9050919050565b6000612a7582612a1d565b9050919050565b60005b83811015612a9a578082015181840152602081019050612a7f565b83811115612aa9576000848401525b50505050565b60006002820490506001821680612ac757607f821691505b60208210811415612adb57612ada612b3f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f796f752063616e2774207472616e736665722074686174206d75636800000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b612e52816129d1565b8114612e5d57600080fd5b50565b612e69816129e3565b8114612e7457600080fd5b50565b612e8081612a1d565b8114612e8b57600080fd5b5056fea2646970667358221220f57d954ffcc843ba302416cb72473c40f7932e739a04fb501f894d2203d04c2c64736f6c63430008040033