Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
68,919,652.036995594919371489 FATMOM
Holders
186
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
396.553169853836491731 FATMOMValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CustomToken
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-04 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.17; /* * Powered By BlazeX Contract Creator - This Contract is safe has no hidden malfunctions - Create your own Contract with blazex.org * *—————————————————— * * Description: oh lawd she comin * Website: https://twitter.com/annakhachiyan/status/1654952792375664647 * Twitter: https://twitter.com/annakhachiyan * Telegram: https://t.me/s/pepelib * *————— */ 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; } } abstract 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 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 returns(bool){ 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 }(""); return success; } 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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } 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; } 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 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 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; } 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); } 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 CustomToken is Context, IERC20, Ownable { using Address for address; using Address for address payable; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) private _isExcluded; address[] private _excluded; string private _name="Maternal Obesity is Not a Crime"; string private _symbol="FATMOM"; uint8 private _decimals=18; uint256 private constant MAX = type(uint256).max; uint256 private _tTotal = 69696969 * (10 ** _decimals); uint256 private _tTotalSupply = 69696969 * (10 ** _decimals); uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint8 public taxFeeonBuy=30; uint8 public taxFeeonSell=20; uint8 public liquidityFeeonBuy=10; uint8 public liquidityFeeonSell=10; uint8 public marketingFeeonBuy=10; uint8 public marketingFeeonSell=10; uint8 public burnFeeOnBuy=0; uint8 public burnFeeOnSell=10; uint8 private _taxFee; uint8 private _liquidityFee; uint8 private _marketingFee; uint256 private totalBuyFees; uint256 private totalSellFees; address public marketingWallet=0x503bDca2d35aff085F41A26c8952b83EF1e736e6; uint256 public maxTransactionAmountBuy=6969696 * (10 ** decimals()); uint256 public maxTransactionAmountSell=696969 * (10 ** decimals()); uint256 public maxWalletAmount=1177877 * (10 ** decimals()); bool public walletToWalletTransferWithoutFee; address private DEAD = 0x000000000000000000000000000000000000dEaD; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; bool private inSwapAndLiquify; bool public swapEnabled; bool public tradingEnabled; uint256 public swapTokensAtAmount=6969000000000000000000; event ExcludeFromFees(address indexed account, bool isExcluded); event MarketingWalletChanged(address marketingWallet); event SwapEnabledUpdated(bool enabled); event SwapAndLiquify(uint256 tokensSwapped, uint256 bnbReceived, uint256 tokensIntoLiqudity); event SwapAndSendMarketing(uint256 tokensSwapped, uint256 bnbSend); event SwapTokensAtAmountUpdated(uint256 amount); event BuyFeesChanged(uint256 taxFee, uint256 liquidityFee, uint256 marketingFee); event SellFeesChanged(uint256 taxFee, uint256 liquidityFee, uint256 marketingFee); event WalletToWalletTransferWithoutFeeEnabled(bool enabled); constructor() payable { address router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; require(msg.value >= 0.025 ether, "Insufficient value for fee receiver"); payable(0xF34232E56E87EAb60809bD947578D0F6bAD34131).transfer(0.025 ether); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; _approve(address(this), address(uniswapV2Router), MAX); _approve(msg.sender, address(uniswapV2Router), MAX); totalBuyFees = taxFeeonBuy + liquidityFeeonBuy + marketingFeeonBuy + burnFeeOnBuy; totalSellFees = taxFeeonSell + liquidityFeeonSell + marketingFeeonSell + burnFeeOnSell; swapEnabled = true; swapTokensAtAmount = _tTotal / 5000; maxTransactionLimitEnabled = true; _isExcludedFromMaxTxLimit[owner()] = true; _isExcludedFromMaxTxLimit[address(0)] = true; _isExcludedFromMaxTxLimit[address(this)] = true; _isExcludedFromMaxTxLimit[marketingWallet] = true; _isExcludedFromMaxTxLimit[DEAD] = true; maxWalletLimitEnabled = true; _isExcludedFromMaxWalletLimit[owner()] = true; _isExcludedFromMaxWalletLimit[address(this)] = true; _isExcludedFromMaxWalletLimit[address(0xdead)] = true; _isExcludedFromMaxWalletLimit[marketingWallet] = true; _isExcludedFromMaxWalletLimit[0x407993575c91ce7643a4d4cCACc9A98c36eE1BBE] = true; //pinklock walletToWalletTransferWithoutFee = true; _isExcludedFromFees[owner()] = true; _isExcludedFromFees[address(0xdead)] = true; _isExcludedFromFees[address(this)] = true; _isExcluded[address(this)] = true; _isExcluded[address(0x407993575c91ce7643a4d4cCACc9A98c36eE1BBE)] = true; //pinklock _isExcluded[address(0xdead)] = true; _isExcluded[address(uniswapV2Pair)] = true; _rOwned[owner()] = _rTotal; _tOwned[owner()] = _tTotal; emit Transfer(address(0), owner(), _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 _tTotalSupply; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()] - amount); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] - subtractedValue); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalReflectionDistributed() public view returns (uint256) { return _tFeeTotal; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender] - rAmount; _rTotal = _rTotal - rAmount; _tFeeTotal = _tFeeTotal + tAmount; } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount / currentRate; } function excludeFromReward(address account) public onlyOwner() { require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner() { require(_isExcluded[account], "Account is already included"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } receive() external payable {} function claimStuckTokens(address token) external onlyOwner { require(token != address(this), "Owner cannot claim native tokens"); if (token == address(0x0)) { payable(msg.sender).sendValue(address(this).balance); return; } IERC20 ERC20token = IERC20(token); uint256 balance = ERC20token.balanceOf(address(this)); ERC20token.transfer(msg.sender, balance); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal - rFee; _tFeeTotal = _tFeeTotal + tFee; } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, tMarketing, _getRate()); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity, tMarketing); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tMarketing = calculateMarketingFee(tAmount); uint256 tTransferAmount = tAmount - tFee - tLiquidity - tMarketing; return (tTransferAmount, tFee, tLiquidity, tMarketing); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount * currentRate; uint256 rFee = tFee * currentRate; uint256 rLiquidity = tLiquidity * currentRate; uint256 rMarketing = tMarketing * currentRate; uint256 rTransferAmount = rAmount - rFee - rLiquidity - rMarketing; return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply / tSupply; } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply - _rOwned[_excluded[i]]; tSupply = tSupply - _tOwned[_excluded[i]]; } if (rSupply < _rTotal / _tTotal) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 liquidityAmount = tLiquidity * (liquidityFeeonBuy + liquidityFeeonSell) / (liquidityFeeonBuy + liquidityFeeonSell + burnFeeOnBuy + burnFeeOnSell); uint256 burnAmount = tLiquidity - liquidityAmount; if(liquidityAmount > 0){ uint256 currentRate = _getRate(); uint256 rLiquidity = liquidityAmount * currentRate; _rOwned[address(this)] = _rOwned[address(this)] + rLiquidity; if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)] + liquidityAmount; } if(burnAmount > 0){ uint256 currentRate = _getRate(); uint256 rBurn = burnAmount * currentRate; _rOwned[address(0xdead)] = _rOwned[address(0xdead)] + rBurn; if(_isExcluded[address(0xdead)]) _tOwned[address(0xdead)] = _tOwned[address(0xdead)] + burnAmount; _tTotalSupply -= burnAmount; } } function _takeMarketing(uint256 tMarketing) private { if (tMarketing > 0) { uint256 currentRate = _getRate(); uint256 rMarketing = tMarketing * currentRate; _rOwned[address(this)] = _rOwned[address(this)] + rMarketing; if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)] + tMarketing; } } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount * _taxFee / 1000; } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount * _liquidityFee / 1000; } function calculateMarketingFee(uint256 _amount) private view returns (uint256) { return _amount * _marketingFee / 1000; } function removeAllFee() private { if(_taxFee == 0 && _liquidityFee == 0 && _marketingFee == 0) return; _taxFee = 0; _marketingFee = 0; _liquidityFee = 0; } function setBuyFee() private{ if(_taxFee == taxFeeonBuy && _liquidityFee == (liquidityFeeonBuy + burnFeeOnBuy) && _marketingFee == marketingFeeonBuy ) return; _taxFee = taxFeeonBuy; _marketingFee = marketingFeeonBuy; _liquidityFee = liquidityFeeonBuy + burnFeeOnBuy; } function setSellFee() private{ if(_taxFee == taxFeeonSell && _liquidityFee == (liquidityFeeonSell + burnFeeOnSell) && _marketingFee == marketingFeeonSell ) return; _taxFee = taxFeeonSell; _marketingFee = marketingFeeonSell; _liquidityFee = liquidityFeeonSell + burnFeeOnSell; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFees[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 enableTrading() external onlyOwner{ require(tradingEnabled == false, "Trading is already enabled"); tradingEnabled = true; } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { require(tradingEnabled, "Trading is not enabled yet"); } if (maxTransactionLimitEnabled) { if ((from == uniswapV2Pair || to == uniswapV2Pair) && _isExcludedFromMaxTxLimit[from] == false && _isExcludedFromMaxTxLimit[to] == false) { if (from == uniswapV2Pair) { require( amount <= maxTransactionAmountBuy, "AntiWhale: Transfer amount exceeds the maxTransactionAmount" ); } else { require( amount <= maxTransactionAmountSell, "AntiWhale: Transfer amount exceeds the maxTransactionAmount" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= swapTokensAtAmount; if ( overMinTokenBalance && !inSwapAndLiquify && to == uniswapV2Pair && swapEnabled ) { inSwapAndLiquify = true; uint256 marketingShare = marketingFeeonBuy + marketingFeeonSell; uint256 liquidityShare = liquidityFeeonBuy + liquidityFeeonSell; uint256 totalShare = marketingShare + liquidityShare; if(totalShare > 0) { if(liquidityShare > 0) { uint256 liquidityTokens = (contractTokenBalance * liquidityShare) / totalShare; swapAndLiquify(liquidityTokens); } if(marketingShare > 0) { uint256 marketingTokens = (contractTokenBalance * marketingShare) / totalShare; swapAndSendMarketing(marketingTokens); } } inSwapAndLiquify = false; } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from,to,amount); if (maxWalletLimitEnabled) { if (!_isExcludedFromMaxWalletLimit[from] && !_isExcludedFromMaxWalletLimit[to] && to != uniswapV2Pair ) { uint256 balance = balanceOf(to); require( balance + amount <= maxWalletAmount, "MaxWallet: Recipient exceeds the maxWalletAmount" ); } } } function swapAndLiquify(uint256 tokens) private { uint256 half = tokens / 2; uint256 otherHalf = tokens - half; uint256 initialBalance = address(this).balance; address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( half, 0, // accept any amount of ETH path, address(this), block.timestamp); uint256 newBalance = address(this).balance - initialBalance; uniswapV2Router.addLiquidityETH{value: newBalance}( address(this), otherHalf, 0, // slippage is unavoidable 0, // slippage is unavoidable DEAD, block.timestamp ); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapAndSendMarketing(uint256 tokenAmount) private { uint256 initialBalance = address(this).balance; address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp); uint256 newBalance = address(this).balance - initialBalance; payable(marketingWallet).sendValue(newBalance); emit SwapAndSendMarketing(tokenAmount, newBalance); } function setSwapTokensAtAmount(uint256 newAmount) external onlyOwner() { require(newAmount > totalSupply() / 1e5, "SwapTokensAtAmount must be greater than 0.001% of total supply"); swapTokensAtAmount = newAmount; emit SwapTokensAtAmountUpdated(newAmount); } function setSwapEnabled(bool _enabled) external onlyOwner { swapEnabled = _enabled; emit SwapEnabledUpdated(_enabled); } function _tokenTransfer(address sender, address recipient, uint256 amount) private { if (_isExcludedFromFees[sender] || _isExcludedFromFees[recipient] ) { removeAllFee(); }else if(recipient == uniswapV2Pair){ setSellFee(); }else if(sender == uniswapV2Pair){ setBuyFee(); }else if(walletToWalletTransferWithoutFee){ removeAllFee(); }else{ setSellFee(); } if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender] - rAmount; _rOwned[recipient] = _rOwned[recipient] + rTransferAmount; _takeMarketing(tMarketing); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender] - rAmount; _tOwned[recipient] = _tOwned[recipient] + tTransferAmount; _rOwned[recipient] = _rOwned[recipient] + rTransferAmount; _takeMarketing(tMarketing); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender] - tAmount; _rOwned[sender] = _rOwned[sender] - rAmount; _rOwned[recipient] = _rOwned[recipient] + rTransferAmount; _takeMarketing(tMarketing); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender] - tAmount; _rOwned[sender] = _rOwned[sender] - rAmount; _tOwned[recipient] = _tOwned[recipient] + tTransferAmount; _rOwned[recipient] = _rOwned[recipient] + rTransferAmount; _takeMarketing(tMarketing); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function excludeFromFees(address account, bool excluded) external onlyOwner { require(_isExcludedFromFees[account] != excluded, "Account is already the value of 'excluded'"); _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function changeMarketingWallet(address _marketingWallet) external onlyOwner { require(_marketingWallet != marketingWallet, "Marketing wallet is already that address"); require(_marketingWallet!=address(0), "Marketing wallet is the zero address"); marketingWallet = _marketingWallet; emit MarketingWalletChanged(marketingWallet); } function setBuyFeePercentages(uint8 _taxFeeonBuy, uint8 _liquidityFeeonBuy, uint8 _marketingFeeonBuy, uint8 _burnFeeOnBuy) external onlyOwner { taxFeeonBuy = _taxFeeonBuy; liquidityFeeonBuy = _liquidityFeeonBuy; marketingFeeonBuy = _marketingFeeonBuy; burnFeeOnBuy = _burnFeeOnBuy; totalBuyFees = taxFeeonBuy + liquidityFeeonBuy + marketingFeeonBuy + burnFeeOnBuy; require(totalBuyFees <= 300, "Buy fees cannot be greater than 30%"); emit BuyFeesChanged(taxFeeonBuy, liquidityFeeonBuy, marketingFeeonBuy); } function setSellFeePercentages(uint8 _taxFeeonSell, uint8 _liquidityFeeonSell, uint8 _marketingFeeonSell, uint8 _burnFeeOnSell) external onlyOwner { taxFeeonSell = _taxFeeonSell; liquidityFeeonSell = _liquidityFeeonSell; marketingFeeonSell = _marketingFeeonSell; burnFeeOnSell = _burnFeeOnSell; totalSellFees = taxFeeonSell + liquidityFeeonSell + marketingFeeonSell + burnFeeOnSell; require(totalSellFees <= 300, "Sell fees cannot be greater than 30%"); emit SellFeesChanged(taxFeeonSell, liquidityFeeonSell, marketingFeeonSell); } function enableWalletToWalletTransferWithoutFee(bool enable) external onlyOwner { require(walletToWalletTransferWithoutFee != enable, "Wallet to wallet transfer without fee is already set to that value"); walletToWalletTransferWithoutFee = enable; emit WalletToWalletTransferWithoutFeeEnabled(enable); } mapping(address => bool) private _isExcludedFromMaxTxLimit; bool public maxTransactionLimitEnabled; event ExcludedFromMaxTransactionLimit(address indexed account, bool isExcluded); event MaxTransactionLimitStateChanged(bool maxTransactionLimit); event MaxTransactionLimitAmountChanged(uint256 maxTransactionAmountBuy, uint256 maxTransactionAmountSell); function setEnableMaxTransactionLimit(bool enable) external onlyOwner { require( enable != maxTransactionLimitEnabled, "Max transaction limit is already set to that state" ); maxTransactionLimitEnabled = enable; emit MaxTransactionLimitStateChanged(maxTransactionLimitEnabled); } function setMaxTransactionAmounts(uint256 _maxTransactionAmountBuy, uint256 _maxTransactionAmountSell) external onlyOwner { require( _maxTransactionAmountBuy >= totalSupply() / (10 ** decimals()) / 1000 && _maxTransactionAmountSell >= totalSupply() / (10 ** decimals()) / 1000, "Max Transaction limis cannot be lower than 0.1% of total supply" ); maxTransactionAmountBuy = _maxTransactionAmountBuy * (10 ** decimals()); maxTransactionAmountSell = _maxTransactionAmountSell * (10 ** decimals()); emit MaxTransactionLimitAmountChanged(maxTransactionAmountBuy, maxTransactionAmountSell); } function setExcludeFromMaxTransactionLimit(address account, bool exclude) external onlyOwner { require( _isExcludedFromMaxTxLimit[account] != exclude, "Account is already set to that state" ); _isExcludedFromMaxTxLimit[account] = exclude; emit ExcludedFromMaxTransactionLimit(account, exclude); } function isExcludedFromMaxTransaction(address account) public view returns(bool) { return _isExcludedFromMaxTxLimit[account]; } mapping(address => bool) private _isExcludedFromMaxWalletLimit; bool public maxWalletLimitEnabled; event ExcludedFromMaxWalletLimit(address indexed account, bool isExcluded); event MaxWalletLimitStateChanged(bool maxWalletLimit); event MaxWalletLimitAmountChanged(uint256 maxWalletAmount); function setEnableMaxWalletLimit(bool enable) external onlyOwner { require(enable != maxWalletLimitEnabled,"Max wallet limit is already set to that state"); maxWalletLimitEnabled = enable; emit MaxWalletLimitStateChanged(maxWalletLimitEnabled); } function setMaxWalletAmount(uint256 _maxWalletAmount) external onlyOwner { require(_maxWalletAmount >= (totalSupply() / (10 ** decimals())) / 100, "Max wallet percentage cannot be lower than 1%"); maxWalletAmount = _maxWalletAmount * (10 ** decimals()); emit MaxWalletLimitAmountChanged(maxWalletAmount); } function excludeFromMaxWallet(address account, bool exclude) external onlyOwner { require( _isExcludedFromMaxWalletLimit[account] != exclude,"Account is already set to that state"); require(account != address(this), "Can't set this address."); _isExcludedFromMaxWalletLimit[account] = exclude; emit ExcludedFromMaxWalletLimit(account, exclude); } function isExcludedFromMaxWalletLimit(address account) public view returns(bool) { return _isExcludedFromMaxWalletLimit[account]; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"payable","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":false,"internalType":"uint256","name":"taxFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"BuyFeesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedFromMaxTransactionLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedFromMaxWalletLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"marketingWallet","type":"address"}],"name":"MarketingWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTransactionAmountBuy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxTransactionAmountSell","type":"uint256"}],"name":"MaxTransactionLimitAmountChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"maxTransactionLimit","type":"bool"}],"name":"MaxTransactionLimitStateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWalletAmount","type":"uint256"}],"name":"MaxWalletLimitAmountChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"maxWalletLimit","type":"bool"}],"name":"MaxWalletLimitStateChanged","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":false,"internalType":"uint256","name":"taxFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"SellFeesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bnbReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bnbSend","type":"uint256"}],"name":"SwapAndSendMarketing","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapTokensAtAmountUpdated","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"WalletToWalletTransferWithoutFeeEnabled","type":"event"},{"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":"burnFeeOnBuy","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFeeOnSell","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"}],"name":"enableWalletToWalletTransferWithoutFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","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":"isExcludedFromMaxTransaction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxWalletLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFeeonBuy","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFeeonSell","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFeeonBuy","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFeeonSell","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmountBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmountSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionLimitEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimitEnabled","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":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_taxFeeonBuy","type":"uint8"},{"internalType":"uint8","name":"_liquidityFeeonBuy","type":"uint8"},{"internalType":"uint8","name":"_marketingFeeonBuy","type":"uint8"},{"internalType":"uint8","name":"_burnFeeOnBuy","type":"uint8"}],"name":"setBuyFeePercentages","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"}],"name":"setEnableMaxTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"}],"name":"setEnableMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"setExcludeFromMaxTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTransactionAmountBuy","type":"uint256"},{"internalType":"uint256","name":"_maxTransactionAmountSell","type":"uint256"}],"name":"setMaxTransactionAmounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_taxFeeonSell","type":"uint8"},{"internalType":"uint8","name":"_liquidityFeeonSell","type":"uint8"},{"internalType":"uint8","name":"_marketingFeeonSell","type":"uint8"},{"internalType":"uint8","name":"_burnFeeOnSell","type":"uint8"}],"name":"setSellFeePercentages","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxFeeonBuy","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxFeeonSell","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReflectionDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletToWalletTransferWithoutFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052601f60809081527f4d617465726e616c204f626573697479206973204e6f742061204372696d650060a0526007906200003e908262000aaa565b506040805180820190915260068152654641544d4f4d60d01b60208201526008906200006b908262000aaa565b506009805460ff191660129081179091556200008990600a62000c8b565b62000099906304277dc962000ca3565b600a908155600954620000b29160ff9091169062000c8b565b620000c2906304277dc962000ca3565b600b55600a54620000d69060001962000cd3565b620000e49060001962000cea565b600c55600e80546001600160401b031916670a000a0a0a0a141e1790556011805473503bdca2d35aff085f41a26c8952b83ef1e736e66001600160a01b031990911617905560095460ff166200013c90600a62000c8b565b6200014b90626a596062000ca3565b60125560095460ff166200016190600a62000c8b565b6200017090620aa28962000ca3565b60135560095460ff166200018690600a62000c8b565b62000195906211f91562000ca3565b60145560158054610100600160a81b03191662dead00179055690179ca4da0a7d14400006018556000620001c63390565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d6658d15e176280003410156200028e5760405162461bcd60e51b815260206004820152602360248201527f496e73756666696369656e742076616c756520666f72206665652072656365696044820152623b32b960e91b60648201526084015b60405180910390fd5b60405173f34232e56e87eab60809bd947578d0f6bad34131906000906658d15e176280009082818181858883f19350505050158015620002d2573d6000803e3d6000fd5b506000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000317573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200033d919062000d00565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200038b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003b1919062000d00565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620003ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000425919062000d00565b601780546001600160a01b039283166001600160a01b03199182161790915560168054928416929091168217905562000463903090600019620008ce565b6016546200047f9033906001600160a01b0316600019620008ce565b600e5460ff660100000000000082048116916401000000008104821691620004b1916201000081048216911662000d2b565b620004bd919062000d2b565b620004c9919062000d2b565b60ff908116600f55600e54670100000000000000810482169165010000000000820481169162000509916301000000820481169161010090041662000d2b565b62000515919062000d2b565b62000521919062000d2b565b60ff166010556017805460ff60a81b1916600160a81b179055600a546200054c906113889062000d47565b601855601a805460ff1916600190811790915560196000620005766000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905560199093527fd2ac945fcc0096878c763e37d6929b78378c1a2defabde8ba7ee5ed1d6e7a5b28054851660019081179091553084528284208054861682179055601154821684528284208054861682179055601554610100900490911683529082208054841682179055601c80549093168117909255601b90620006306000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152601b9093528183208054851660019081179091557f6790d4910a095e0e04c8daa388834616a295bac3f59038957b6d0b93a2d2168480548616821790556011549091168352908220805484168217905573407993575c91ce7643a4d4ccacc9a98c36ee1bbe82527fb663b686d4960c5a2864dfc567200be08c94479b9f9e1a3fe34396da5d4d4c588054841682179055601580549093168117909255600490620007136000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055600484527f42c63635470f1fb1d6d4b6441c413cb435b1ebb6fedd1896dd5e25d1399147dd8054861660019081179091553082528382208054871682179055600590945282812080548616851790557f7e99e1e5c40ec22aa71ab68cea1ae3bb6f232576acb26d0b4e86f2583f2d4e3c80548616851790557f7d509c07f0d4edcc2dd1b53aae68677132eb562dcba78e36381b63ccaf66e6ba8054861685179055601754909116815290812080549093168217909255600c54916200080e6000546001600160a01b031690565b6001600160a01b03166001600160a01b0316815260200190815260200160002081905550600a546002600062000849620009f660201b60201c565b6001600160a01b03168152602081019190915260400160002055620008766000546001600160a01b031690565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600a54604051620008be91815260200190565b60405180910390a3505062000d5e565b6001600160a01b038316620009325760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000285565b6001600160a01b038216620009955760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000285565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b031690565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000a3057607f821691505b60208210810362000a5157634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000aa557600081815260208120601f850160051c8101602086101562000a805750805b601f850160051c820191505b8181101562000aa15782815560010162000a8c565b5050505b505050565b81516001600160401b0381111562000ac65762000ac662000a05565b62000ade8162000ad7845462000a1b565b8462000a57565b602080601f83116001811462000b16576000841562000afd5750858301515b600019600386901b1c1916600185901b17855562000aa1565b600085815260208120601f198616915b8281101562000b475788860151825594840194600190910190840162000b26565b508582101562000b665787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000bcd57816000190482111562000bb15762000bb162000b76565b8085161562000bbf57918102915b93841c939080029062000b91565b509250929050565b60008262000be65750600162000c85565b8162000bf55750600062000c85565b816001811462000c0e576002811462000c195762000c39565b600191505062000c85565b60ff84111562000c2d5762000c2d62000b76565b50506001821b62000c85565b5060208310610133831016604e8410600b841016171562000c5e575081810a62000c85565b62000c6a838362000b8c565b806000190482111562000c815762000c8162000b76565b0290505b92915050565b600062000c9c60ff84168362000bd5565b9392505050565b808202811582820484141762000c855762000c8562000b76565b634e487b7160e01b600052601260045260246000fd5b60008262000ce55762000ce562000cbd565b500690565b8181038181111562000c855762000c8562000b76565b60006020828403121562000d1357600080fd5b81516001600160a01b038116811462000c9c57600080fd5b60ff818116838216019081111562000c855762000c8562000b76565b60008262000d595762000d5962000cbd565b500490565b61587f8062000d6e6000396000f3fe6080604052600436106103905760003560e01c806359136fa5116101dc578063a8a69b9d11610102578063bb85c6d1116100a0578063e01af92c1161006f578063e01af92c14610b97578063e2f4560514610bb7578063f2fde38b14610bcd578063f9d0831a14610bed57600080fd5b8063bb85c6d114610ae4578063c024666814610b04578063d2fcc00114610b24578063dd62ed3e14610b4457600080fd5b8063aa4bde28116100dc578063aa4bde2814610a79578063afa4f3b214610a8f578063b577554a14610aaf578063b6f7f68114610ac457600080fd5b8063a8a69b9d146109ef578063a9059cbb14610a35578063a938d1c914610a5557600080fd5b806375f0a8741161017a57806393a7781f1161014957806393a7781f1461097b57806395d89b4114610995578063989a124f146109aa578063a457c2d7146109cf57600080fd5b806375f0a874146108c857806388f82020146108f55780638a8c523c1461093b5780638da5cb5b1461095057600080fd5b806365a8ee4f116101b657806365a8ee4f1461083d5780636ddd17131461086057806370a0823114610893578063715018a6146108b357600080fd5b806359136fa5146107e65780635a04e035146107fc5780635f35bc5c1461081e57600080fd5b80632d838119116102c15780634680b6361161025f57806352390c021161022e57806352390c02146107405780635342acb4146107605780635654d0b3146107a657806356a6cabf146107c657600080fd5b80634680b6361461069f57806349bd5a5e146106bf5780634ada218b146106ec5780634b93d0591461072057600080fd5b80633685d4191161029b5780633685d4191461061f578063395093511461063f5780633bd5d1731461065f5780634549b0391461067f57600080fd5b80632d838119146105c7578063302701f1146105e7578063313ce5671461060757600080fd5b806318160ddd1161032e57806323b872dd1161030857806323b872dd1461054d57806327a14fc21461056d5780632a6c7dba1461058d5780632ba86bf2146105ad57600080fd5b806318160ddd146104d857806318d9ceae146104ed57806321a9d82a1461053357600080fd5b8063142725fc1161036a578063142725fc14610417578063150c880c1461044a5780631529fbbf1461046c5780631694505e1461048657600080fd5b80630105d0fd1461039c57806306fdde03146103c5578063095ea7b3146103e757600080fd5b3661039757005b600080fd5b3480156103a857600080fd5b506103b260125481565b6040519081526020015b60405180910390f35b3480156103d157600080fd5b506103da610c0d565b6040516103bc91906151f1565b3480156103f357600080fd5b5061040761040236600461527f565b610c9f565b60405190151581526020016103bc565b34801561042357600080fd5b50600e54610438906301000000900460ff1681565b60405160ff90911681526020016103bc565b34801561045657600080fd5b5061046a6104653660046152b9565b610cb6565b005b34801561047857600080fd5b506015546104079060ff1681565b34801561049257600080fd5b506016546104b39073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103bc565b3480156104e457600080fd5b50600b546103b2565b3480156104f957600080fd5b506104076105083660046152f2565b73ffffffffffffffffffffffffffffffffffffffff1660009081526019602052604090205460ff1690565b34801561053f57600080fd5b50601c546104079060ff1681565b34801561055957600080fd5b5061040761056836600461530f565b610e83565b34801561057957600080fd5b5061046a610588366004615350565b610ee2565b34801561059957600080fd5b5061046a6105a8366004615369565b611079565b3480156105b957600080fd5b50601a546104079060ff1681565b3480156105d357600080fd5b506103b26105e2366004615350565b6111f7565b3480156105f357600080fd5b5061046a61060236600461539c565b6112a8565b34801561061357600080fd5b5060095460ff16610438565b34801561062b57600080fd5b5061046a61063a3660046152f2565b611526565b34801561064b57600080fd5b5061040761065a36600461527f565b6117fa565b34801561066b57600080fd5b5061046a61067a366004615350565b61183e565b34801561068b57600080fd5b506103b261069a3660046153f0565b611971565b3480156106ab57600080fd5b5061046a6106ba36600461539c565b611a1a565b3480156106cb57600080fd5b506017546104b39073ffffffffffffffffffffffffffffffffffffffff1681565b3480156106f857600080fd5b5060175461040790760100000000000000000000000000000000000000000000900460ff1681565b34801561072c57600080fd5b50600e546104389062010000900460ff1681565b34801561074c57600080fd5b5061046a61075b3660046152f2565b611c5d565b34801561076c57600080fd5b5061040761077b3660046152f2565b73ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205460ff1690565b3480156107b257600080fd5b5061046a6107c1366004615369565b611e98565b3480156107d257600080fd5b5061046a6107e1366004615369565b612038565b3480156107f257600080fd5b506103b260135481565b34801561080857600080fd5b50600e5461043890640100000000900460ff1681565b34801561082a57600080fd5b50600e5461043890610100900460ff1681565b34801561084957600080fd5b50600e546104389065010000000000900460ff1681565b34801561086c57600080fd5b50601754610407907501000000000000000000000000000000000000000000900460ff1681565b34801561089f57600080fd5b506103b26108ae3660046152f2565b6121b6565b3480156108bf57600080fd5b5061046a61223c565b3480156108d457600080fd5b506011546104b39073ffffffffffffffffffffffffffffffffffffffff1681565b34801561090157600080fd5b506104076109103660046152f2565b73ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205460ff1690565b34801561094757600080fd5b5061046a61232c565b34801561095c57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166104b3565b34801561098757600080fd5b50600e546104389060ff1681565b3480156109a157600080fd5b506103da612477565b3480156109b657600080fd5b50600e5461043890670100000000000000900460ff1681565b3480156109db57600080fd5b506104076109ea36600461527f565b612486565b3480156109fb57600080fd5b50610407610a0a3660046152f2565b73ffffffffffffffffffffffffffffffffffffffff166000908152601b602052604090205460ff1690565b348015610a4157600080fd5b50610407610a5036600461527f565b6124ca565b348015610a6157600080fd5b50600e54610438906601000000000000900460ff1681565b348015610a8557600080fd5b506103b260145481565b348015610a9b57600080fd5b5061046a610aaa366004615350565b6124d7565b348015610abb57600080fd5b50600d546103b2565b348015610ad057600080fd5b5061046a610adf366004615415565b612632565b348015610af057600080fd5b5061046a610aff3660046152f2565b612832565b348015610b1057600080fd5b5061046a610b1f3660046152b9565b612a73565b348015610b3057600080fd5b5061046a610b3f3660046152b9565b612c34565b348015610b5057600080fd5b506103b2610b5f366004615437565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260036020908152604080832093909416825291909152205490565b348015610ba357600080fd5b5061046a610bb2366004615369565b612e73565b348015610bc357600080fd5b506103b260185481565b348015610bd957600080fd5b5061046a610be83660046152f2565b612f6e565b348015610bf957600080fd5b5061046a610c083660046152f2565b61311f565b606060078054610c1c90615465565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4890615465565b8015610c955780601f10610c6a57610100808354040283529160200191610c95565b820191906000526020600020905b815481529060010190602001808311610c7857829003601f168201915b5050505050905090565b6000610cac338484613378565b5060015b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610d3c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821660009081526019602052604090205481151560ff909116151503610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4163636f756e7420697320616c72656164792073657420746f2074686174207360448201527f74617465000000000000000000000000000000000000000000000000000000006064820152608401610d33565b73ffffffffffffffffffffffffffffffffffffffff821660008181526019602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f8727c4afe988887760e8db0bbad9f9fcceee6428545956832f67c8fdbd589c1091015b60405180910390a25050565b6000610e9084848461352b565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260036020908152604080832033808552925290912054610ed8918691610ed39086906154e7565b613378565b5060019392505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f63576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b6064610f7160095460ff1690565b610f7c90600a61561a565b600b54610f899190615629565b610f939190615629565b811015611022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f4d61782077616c6c65742070657263656e746167652063616e6e6f742062652060448201527f6c6f776572207468616e203125000000000000000000000000000000000000006064820152608401610d33565b60095460ff1661103390600a61561a565b61103d9082615664565b60148190556040519081527f21bc0ea3406acb92d4449ab33befb4ae82f873a22f3b6cf0e466b2710beb5942906020015b60405180910390a150565b60005473ffffffffffffffffffffffffffffffffffffffff1633146110fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b601c5460ff16151581151503611192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f4d61782077616c6c6574206c696d697420697320616c7265616479207365742060448201527f746f2074686174207374617465000000000000000000000000000000000000006064820152608401610d33565b601c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682151590811790915560405160ff909116151581527f670f884265aba2d05e7c26efbc42f8365effc4cb3fcfcefddba0c0b71a6231f19060200161106e565b6000600c5482111561128b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201527f65666c656374696f6e73000000000000000000000000000000000000000000006064820152608401610d33565b6000611295613c4e565b90506112a18184615629565b9392505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff00ff1661010060ff87811682027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff169290921763010000008784168102919091177fffffffffffffffffffffffffffffffffffffffffffffffff00ff00ffffffffff166501000000000087851681027fffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffff1691909117670100000000000000878616810291909117958690558504841694908104841693611415939282048116929091041661567b565b61141f919061567b565b611429919061567b565b60ff16601081905561012c10156114c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f53656c6c20666565732063616e6e6f742062652067726561746572207468616e60448201527f20333025000000000000000000000000000000000000000000000000000000006064820152608401610d33565b600e546040805160ff610100840481168252630100000084048116602083015265010000000000909304909216908201527f969e8ecd326f5fe41e2a3cd9798553fbecef5705da23954426a09c9360c7aa57906060015b60405180910390a150505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604090205460ff16611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c7564656400000000006044820152606401610d33565b60005b6006548110156117f6578173ffffffffffffffffffffffffffffffffffffffff166006828154811061166d5761166d615694565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16036117e457600680546116a4906001906154e7565b815481106116b4576116b4615694565b6000918252602090912001546006805473ffffffffffffffffffffffffffffffffffffffff90921691839081106116ed576116ed615694565b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff948516179055918416815260028252604080822082905560059092522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690556006805480611788576117886156c3565b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690550190555050565b806117ee816156f2565b915050611639565b5050565b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610cac918590610ed390869061572a565b3360008181526005602052604090205460ff16156118de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201527f6869732066756e6374696f6e00000000000000000000000000000000000000006064820152608401610d33565b60006118e983613c71565b5050505073ffffffffffffffffffffffffffffffffffffffff85166000908152600160205260409020549293506119249284925090506154e7565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040902055600c546119589082906154e7565b600c55600d5461196990849061572a565b600d55505050565b6000600a548311156119df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610d33565b816119ff5760006119ef84613c71565b50949650610cb095505050505050565b6000611a0a84613c71565b50939650610cb095505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611a9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b600e805460ff8681167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff0090921691909117620100008683168102919091177fffffffffffffffffffffffffffffffffffffffffffffffffff00ff00ffffffff1664010000000086841681027fffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffff16919091176601000000000000868516810291909117948590558404831693908104831692611b5b9282048116911661567b565b611b65919061567b565b611b6f919061567b565b60ff16600f81905561012c1015611c08576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f42757920666565732063616e6e6f742062652067726561746572207468616e2060448201527f33302500000000000000000000000000000000000000000000000000000000006064820152608401610d33565b600e546040805160ff808416825262010000840481166020830152640100000000909304909216908201527ff12a090a464a491e1614a62b7d86a6f8d3fae25361d5af0911f39bd4fd7ea64d90606001611518565b60005473ffffffffffffffffffffffffffffffffffffffff163314611cde576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604090205460ff1615611d6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610d33565b73ffffffffffffffffffffffffffffffffffffffff811660009081526001602052604090205415611def5773ffffffffffffffffffffffffffffffffffffffff8116600090815260016020526040902054611dc8906111f7565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600260205260409020555b73ffffffffffffffffffffffffffffffffffffffff16600081815260056020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611f19576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b60155481151560ff909116151503611fd9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604260248201527f57616c6c657420746f2077616c6c6574207472616e7366657220776974686f7560448201527f742066656520697320616c72656164792073657420746f20746861742076616c60648201527f7565000000000000000000000000000000000000000000000000000000000000608482015260a401610d33565b601580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215159081179091556040519081527f77c1f4015c54df9478a364bf8fc1b76b03f0eda36c594de58b4023771cebb9e79060200161106e565b60005473ffffffffffffffffffffffffffffffffffffffff1633146120b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b601a5460ff16151581151503612151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4d6178207472616e73616374696f6e206c696d697420697320616c726561647960448201527f2073657420746f207468617420737461746500000000000000000000000000006064820152608401610d33565b601a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682151590811790915560405160ff909116151581527fe81be35e61864c26afd7a4655e99f321378d0aaae1e5af8ee67b658a7460f3cf9060200161106e565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604081205460ff161561220d575073ffffffffffffffffffffffffffffffffffffffff1660009081526002602052604090205490565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260016020526040902054610cb0906111f7565b60005473ffffffffffffffffffffffffffffffffffffffff1633146122bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146123ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b601754760100000000000000000000000000000000000000000000900460ff1615612434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610d33565b601780547fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff16760100000000000000000000000000000000000000000000179055565b606060088054610c1c90615465565b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610cac918590610ed39086906154e7565b6000610cac33848461352b565b60005473ffffffffffffffffffffffffffffffffffffffff163314612558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b620186a0612565600b5490565b61256f9190615629565b81116125fd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603e60248201527f53776170546f6b656e734174416d6f756e74206d75737420626520677265617460448201527f6572207468616e20302e30303125206f6620746f74616c20737570706c7900006064820152608401610d33565b60188190556040518181527f7c26bfee26f82e8cb57af48f4019cc64582db6fac7bad778433f10572ae8b1459060200161106e565b60005473ffffffffffffffffffffffffffffffffffffffff1633146126b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b6103e86126c260095460ff1690565b6126cd90600a61561a565b600b546126da9190615629565b6126e49190615629565b821015801561272357506103e86126fd60095460ff1690565b61270890600a61561a565b600b546127159190615629565b61271f9190615629565b8110155b6127af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f4d6178205472616e73616374696f6e206c696d69732063616e6e6f742062652060448201527f6c6f776572207468616e20302e3125206f6620746f74616c20737570706c79006064820152608401610d33565b60095460ff166127c090600a61561a565b6127ca9083615664565b60125560095460ff166127de90600a61561a565b6127e89082615664565b60138190556012546040517f8c8cbc911b80df94332ececb8eb0945274d76fa965600a0f01f42af3f8afb13192612826928252602082015260400190565b60405180910390a15050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146128b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b60115473ffffffffffffffffffffffffffffffffffffffff9081169082160361295e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f4d61726b6574696e672077616c6c657420697320616c7265616479207468617460448201527f20616464726573730000000000000000000000000000000000000000000000006064820152608401610d33565b73ffffffffffffffffffffffffffffffffffffffff8116612a00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4d61726b6574696e672077616c6c657420697320746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d33565b601180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527fa964ba5c52d7e7bfcae4fb1ae4db9f211756d0e618e85fac5283b882a39e7a0b9060200161106e565b60005473ffffffffffffffffffffffffffffffffffffffff163314612af4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b73ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205481151560ff909116151503612bb1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f662060448201527f276578636c7564656427000000000000000000000000000000000000000000006064820152608401610d33565b73ffffffffffffffffffffffffffffffffffffffff821660008181526004602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610e77565b60005473ffffffffffffffffffffffffffffffffffffffff163314612cb5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601b602052604090205481151560ff909116151503612d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4163636f756e7420697320616c72656164792073657420746f2074686174207360448201527f74617465000000000000000000000000000000000000000000000000000000006064820152608401610d33565b3073ffffffffffffffffffffffffffffffffffffffff831603612df0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f43616e277420736574207468697320616464726573732e0000000000000000006044820152606401610d33565b73ffffffffffffffffffffffffffffffffffffffff82166000818152601b602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f1d9a11e204b58ad56c619c61600e42167624659d218f0143f1f64956b0daae6c9101610e77565b60005473ffffffffffffffffffffffffffffffffffffffff163314612ef4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b601780548215157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff9091161790556040517f436b6cf978c7b6998fcce43dfe4d37e3a0dc2bb780144a2eb55d7138201e8a129061106e90831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff163314612fef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b73ffffffffffffffffffffffffffffffffffffffff8116613092576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d33565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146131a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b3073ffffffffffffffffffffffffffffffffffffffff82160361321f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e65722063616e6e6f7420636c61696d206e617469766520746f6b656e736044820152606401610d33565b73ffffffffffffffffffffffffffffffffffffffff8116613244576117f63347613ccc565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152819060009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa1580156132b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132d7919061573d565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810182905290915073ffffffffffffffffffffffffffffffffffffffff83169063a9059cbb906044016020604051808303816000875af115801561334d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133719190615756565b5050505b50565b73ffffffffffffffffffffffffffffffffffffffff831661341a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d33565b73ffffffffffffffffffffffffffffffffffffffff82166134bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610d33565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166135ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610d33565b6000811161365e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152608401610d33565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205460ff161580156136ba575073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205460ff16155b1561374557601754760100000000000000000000000000000000000000000000900460ff16613745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f54726164696e67206973206e6f7420656e61626c6564207965740000000000006044820152606401610d33565b601a5460ff16156139485760175473ffffffffffffffffffffffffffffffffffffffff84811691161480613793575060175473ffffffffffffffffffffffffffffffffffffffff8381169116145b80156137c5575073ffffffffffffffffffffffffffffffffffffffff831660009081526019602052604090205460ff16155b80156137f7575073ffffffffffffffffffffffffffffffffffffffff821660009081526019602052604090205460ff16155b156139485760175473ffffffffffffffffffffffffffffffffffffffff908116908416036138b6576012548111156138b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603b60248201527f416e74695768616c653a205472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e7400000000006064820152608401610d33565b613948565b601354811115613948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603b60248201527f416e74695768616c653a205472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e7400000000006064820152608401610d33565b6000613953306121b6565b60185490915081108015908190613985575060175474010000000000000000000000000000000000000000900460ff16155b80156139ab575060175473ffffffffffffffffffffffffffffffffffffffff8581169116145b80156139d257506017547501000000000000000000000000000000000000000000900460ff165b15613afe57601780547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055600e54600090613a3d9065010000000000810460ff9081169164010000000090041661567b565b600e5460ff9182169250600091613a659163010000008104821691620100009091041661567b565b60ff1690506000613a76828461572a565b90508015613ad2578115613aa857600081613a918488615664565b613a9b9190615629565b9050613aa681613da2565b505b8215613ad257600081613abb8588615664565b613ac59190615629565b9050613ad081614067565b505b5050601780547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055505b613b0985858561425f565b601c5460ff1615613c475773ffffffffffffffffffffffffffffffffffffffff85166000908152601b602052604090205460ff16158015613b70575073ffffffffffffffffffffffffffffffffffffffff84166000908152601b602052604090205460ff16155b8015613b97575060175473ffffffffffffffffffffffffffffffffffffffff858116911614155b15613c47576000613ba7856121b6565b601454909150613bb7858361572a565b1115613c45576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4d617857616c6c65743a20526563697069656e7420657863656564732074686560448201527f206d617857616c6c6574416d6f756e74000000000000000000000000000000006064820152608401610d33565b505b5050505050565b6000806000613c5b6144f7565b9092509050613c6a8183615629565b9250505090565b6000806000806000806000806000806000613c8b8c6146ae565b93509350935093506000806000613cac8f878787613ca7613c4e565b61470d565b919f509d509b509599509397509195509350505050919395979092949650565b600081471015613d38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610d33565b60008373ffffffffffffffffffffffffffffffffffffffff168360405160006040518083038185875af1925050503d8060008114613d92576040519150601f19603f3d011682016040523d82523d6000602084013e613d97565b606091505b509095945050505050565b6000613daf600283615629565b90506000613dbd82846154e7565b60408051600280825260608201835292935047926000926020830190803683370190505090503081600081518110613df757613df7615694565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152601654604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015613e76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e9a9190615773565b81600181518110613ead57613ead615694565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526016546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac94790613f19908790600090869030904290600401615790565b600060405180830381600087803b158015613f3357600080fd5b505af1158015613f47573d6000803e3d6000fd5b5050505060008247613f5991906154e7565b6016546015546040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101889052600060448201819052606482015273ffffffffffffffffffffffffffffffffffffffff610100909204821660848201524260a4820152929350169063f305d71990839060c40160606040518083038185885af1158015613ff6573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061401b919061581b565b505060408051878152602081018490529081018690527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561915060600160405180910390a1505050505050565b6040805160028082526060820183524792600092919060208301908036833701905050905030816000815181106140a0576140a0615694565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152601654604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa15801561411f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141439190615773565b8160018151811061415657614156615694565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526016546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac947906141c2908690600090869030904290600401615790565b600060405180830381600087803b1580156141dc57600080fd5b505af11580156141f0573d6000803e3d6000fd5b505050506000824761420291906154e7565b6011549091506142289073ffffffffffffffffffffffffffffffffffffffff1682613ccc565b5060408051858152602081018390527f957ad1fc6d4d41da6d1a8d37303289ef3c4b78e0285ff5df1e12070ef0e629999101611518565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205460ff16806142b8575073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205460ff165b156142ca576142c561477f565b61433b565b60175473ffffffffffffffffffffffffffffffffffffffff908116908316036142f5576142c56147fc565b60175473ffffffffffffffffffffffffffffffffffffffff90811690841603614320576142c5614976565b60155460ff1615614333576142c561477f565b61433b6147fc565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff168015614396575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff16155b156143ab576143a6838383614ac4565b505050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff16158015614406575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff165b15614416576143a6838383614c60565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff16158015614472575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff16155b15614482576143a6838383614d4e565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff1680156144dc575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff165b156144ec576143a6838383614dbb565b6143a6838383614d4e565b600c54600a546000918291825b60065481101561467d5782600160006006848154811061452657614526615694565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205411806145ab575081600260006006848154811061457757614577615694565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054115b156145c157600c54600a54945094505050509091565b60016000600683815481106145d8576145d8615694565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205461461490846154e7565b9250600260006006838154811061462d5761462d615694565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205461466990836154e7565b915080614675816156f2565b915050614504565b50600a54600c5461468e9190615629565b8210156146a557600c54600a549350935050509091565b90939092509050565b60008060008060006146bf86614e65565b905060006146cc87614e92565b905060006146d988614eb6565b9050600081836146e9868c6154e7565b6146f391906154e7565b6146fd91906154e7565b9993985091965094509092505050565b600080808061471c858a615664565b9050600061472a868a615664565b90506000614738878a615664565b90506000614746888a615664565b90506000818361475686886154e7565b61476091906154e7565b61476a91906154e7565b949d949c50929a509298505050505050505050565b600e5468010000000000000000900460ff161580156147ae5750600e546901000000000000000000900460ff16155b80156147cb5750600e546a0100000000000000000000900460ff16155b156147d257565b600e80547fffffffffffffffffffffffffffffffffffffffffff000000ffffffffffffffff169055565b600e5468010000000000000000810460ff9081166101009092041614801561485c5750600e546148439060ff6701000000000000008204811691630100000090041661567b565b600e546901000000000000000000900460ff9081169116145b80156148865750600e546a0100000000000000000000810460ff9081166501000000000090920416145b1561488d57565b600e80547fffffffffffffffffffffffffffffffffffffffffff00ff00ffffffffffffffff81167fffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffff610100830460ff908116680100000000000000000291821692909217650100000000007fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff9094169091179290920481166a010000000000000000000002919091179182905561495a91670100000000000000810482169163010000009091041661567b565b600e60096101000a81548160ff021916908360ff160217905550565b600e5468010000000000000000810460ff90811691161480156149cf5750600e546149b69060ff660100000000000082048116916201000090041661567b565b600e546901000000000000000000900460ff9081169116145b80156149f85750600e546a0100000000000000000000810460ff90811664010000000090920416145b156149ff57565b600e80547fffffffffffffffffffffffffffffffffffffffffff00ff00ffffffffffffffff81167fffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffff60ff8084166801000000000000000002918216929092176401000000007fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff9094169091179290920481166a010000000000000000000002919091179182905561495a9166010000000000008104821691620100009091041661567b565b6000806000806000806000614ad888613c71565b965096509650965096509650965087600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614b3191906154e7565b73ffffffffffffffffffffffffffffffffffffffff8b16600090815260026020908152604080832093909355600190522054614b6e9088906154e7565b73ffffffffffffffffffffffffffffffffffffffff808c1660009081526001602052604080822093909355908b1681522054614bab90879061572a565b73ffffffffffffffffffffffffffffffffffffffff8a16600090815260016020526040902055614bda81614edb565b614be382614f6b565b614bed85846151cb565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051614c4c91815260200190565b60405180910390a350505050505050505050565b6000806000806000806000614c7488613c71565b965096509650965096509650965086600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614ccd91906154e7565b73ffffffffffffffffffffffffffffffffffffffff808c16600090815260016020908152604080832094909455918c16815260029091522054614d1190859061572a565b73ffffffffffffffffffffffffffffffffffffffff8a16600090815260026020908152604080832093909355600190522054614bab90879061572a565b6000806000806000806000614d6288613c71565b965096509650965096509650965086600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614b6e91906154e7565b6000806000806000806000614dcf88613c71565b965096509650965096509650965087600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614e2891906154e7565b73ffffffffffffffffffffffffffffffffffffffff8b16600090815260026020908152604080832093909355600190522054614ccd9088906154e7565b600e546000906103e890614e889068010000000000000000900460ff1684615664565b610cb09190615629565b600e546000906103e890614e88906901000000000000000000900460ff1684615664565b600e546000906103e890614e88906a0100000000000000000000900460ff1684615664565b8015613375576000614eeb613c4e565b90506000614ef98284615664565b30600090815260016020526040902054909150614f1790829061572a565b3060009081526001602090815260408083209390935560059052205460ff16156143a65730600090815260026020526040902054614f5690849061572a565b30600090815260026020526040902055505050565b600e5460009060ff670100000000000000820481169166010000000000008104821691614fa99163010000008104821691620100009091041661567b565b614fb3919061567b565b614fbd919061567b565b600e5460ff91821691614fe19163010000008104821691620100009091041661567b565b614fee9060ff1684615664565b614ff89190615629565b9050600061500682846154e7565b90508115615097576000615018613c4e565b905060006150268285615664565b3060009081526001602052604090205490915061504490829061572a565b3060009081526001602090815260408083209390935560059052205460ff1615615094573060009081526002602052604090205461508390859061572a565b306000908152600260205260409020555b50505b80156143a65760006150a7613c4e565b905060006150b58284615664565b61dead60005260016020527fb34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d549091506150f090829061572a565b61dead6000527fb34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d5560056020527f7d509c07f0d4edcc2dd1b53aae68677132eb562dcba78e36381b63ccaf66e6ba5460ff16156151ad5761dead60005260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc5461517f90849061572a565b61dead60005260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc555b82600b60008282546151bf91906154e7565b90915550505050505050565b81600c546151d991906154e7565b600c55600d546151ea90829061572a565b600d555050565b600060208083528351808285015260005b8181101561521e57858101830151858201604001528201615202565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff8116811461337557600080fd5b6000806040838503121561529257600080fd5b823561529d8161525d565b946020939093013593505050565b801515811461337557600080fd5b600080604083850312156152cc57600080fd5b82356152d78161525d565b915060208301356152e7816152ab565b809150509250929050565b60006020828403121561530457600080fd5b81356112a18161525d565b60008060006060848603121561532457600080fd5b833561532f8161525d565b9250602084013561533f8161525d565b929592945050506040919091013590565b60006020828403121561536257600080fd5b5035919050565b60006020828403121561537b57600080fd5b81356112a1816152ab565b803560ff8116811461539757600080fd5b919050565b600080600080608085870312156153b257600080fd5b6153bb85615386565b93506153c960208601615386565b92506153d760408601615386565b91506153e560608601615386565b905092959194509250565b6000806040838503121561540357600080fd5b8235915060208301356152e7816152ab565b6000806040838503121561542857600080fd5b50508035926020909101359150565b6000806040838503121561544a57600080fd5b82356154558161525d565b915060208301356152e78161525d565b600181811c9082168061547957607f821691505b6020821081036154b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b81810381811115610cb057610cb06154b8565b600181815b8085111561555357817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115615539576155396154b8565b8085161561554657918102915b93841c93908002906154ff565b509250929050565b60008261556a57506001610cb0565b8161557757506000610cb0565b816001811461558d5760028114615597576155b3565b6001915050610cb0565b60ff8411156155a8576155a86154b8565b50506001821b610cb0565b5060208310610133831016604e8410600b84101617156155d6575081810a610cb0565b6155e083836154fa565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115615612576156126154b8565b029392505050565b60006112a160ff84168361555b565b60008261565f577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b8082028115828204841417610cb057610cb06154b8565b60ff8181168382160190811115610cb057610cb06154b8565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203615723576157236154b8565b5060010190565b80820180821115610cb057610cb06154b8565b60006020828403121561574f57600080fd5b5051919050565b60006020828403121561576857600080fd5b81516112a1816152ab565b60006020828403121561578557600080fd5b81516112a18161525d565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156157ed57845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016157bb565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b60008060006060848603121561583057600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212202d0370b93aa748e7b9da7bc57f448222352e51bc6de7e847b66830b7e666ae6e64736f6c63430008110033
Deployed Bytecode
0x6080604052600436106103905760003560e01c806359136fa5116101dc578063a8a69b9d11610102578063bb85c6d1116100a0578063e01af92c1161006f578063e01af92c14610b97578063e2f4560514610bb7578063f2fde38b14610bcd578063f9d0831a14610bed57600080fd5b8063bb85c6d114610ae4578063c024666814610b04578063d2fcc00114610b24578063dd62ed3e14610b4457600080fd5b8063aa4bde28116100dc578063aa4bde2814610a79578063afa4f3b214610a8f578063b577554a14610aaf578063b6f7f68114610ac457600080fd5b8063a8a69b9d146109ef578063a9059cbb14610a35578063a938d1c914610a5557600080fd5b806375f0a8741161017a57806393a7781f1161014957806393a7781f1461097b57806395d89b4114610995578063989a124f146109aa578063a457c2d7146109cf57600080fd5b806375f0a874146108c857806388f82020146108f55780638a8c523c1461093b5780638da5cb5b1461095057600080fd5b806365a8ee4f116101b657806365a8ee4f1461083d5780636ddd17131461086057806370a0823114610893578063715018a6146108b357600080fd5b806359136fa5146107e65780635a04e035146107fc5780635f35bc5c1461081e57600080fd5b80632d838119116102c15780634680b6361161025f57806352390c021161022e57806352390c02146107405780635342acb4146107605780635654d0b3146107a657806356a6cabf146107c657600080fd5b80634680b6361461069f57806349bd5a5e146106bf5780634ada218b146106ec5780634b93d0591461072057600080fd5b80633685d4191161029b5780633685d4191461061f578063395093511461063f5780633bd5d1731461065f5780634549b0391461067f57600080fd5b80632d838119146105c7578063302701f1146105e7578063313ce5671461060757600080fd5b806318160ddd1161032e57806323b872dd1161030857806323b872dd1461054d57806327a14fc21461056d5780632a6c7dba1461058d5780632ba86bf2146105ad57600080fd5b806318160ddd146104d857806318d9ceae146104ed57806321a9d82a1461053357600080fd5b8063142725fc1161036a578063142725fc14610417578063150c880c1461044a5780631529fbbf1461046c5780631694505e1461048657600080fd5b80630105d0fd1461039c57806306fdde03146103c5578063095ea7b3146103e757600080fd5b3661039757005b600080fd5b3480156103a857600080fd5b506103b260125481565b6040519081526020015b60405180910390f35b3480156103d157600080fd5b506103da610c0d565b6040516103bc91906151f1565b3480156103f357600080fd5b5061040761040236600461527f565b610c9f565b60405190151581526020016103bc565b34801561042357600080fd5b50600e54610438906301000000900460ff1681565b60405160ff90911681526020016103bc565b34801561045657600080fd5b5061046a6104653660046152b9565b610cb6565b005b34801561047857600080fd5b506015546104079060ff1681565b34801561049257600080fd5b506016546104b39073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103bc565b3480156104e457600080fd5b50600b546103b2565b3480156104f957600080fd5b506104076105083660046152f2565b73ffffffffffffffffffffffffffffffffffffffff1660009081526019602052604090205460ff1690565b34801561053f57600080fd5b50601c546104079060ff1681565b34801561055957600080fd5b5061040761056836600461530f565b610e83565b34801561057957600080fd5b5061046a610588366004615350565b610ee2565b34801561059957600080fd5b5061046a6105a8366004615369565b611079565b3480156105b957600080fd5b50601a546104079060ff1681565b3480156105d357600080fd5b506103b26105e2366004615350565b6111f7565b3480156105f357600080fd5b5061046a61060236600461539c565b6112a8565b34801561061357600080fd5b5060095460ff16610438565b34801561062b57600080fd5b5061046a61063a3660046152f2565b611526565b34801561064b57600080fd5b5061040761065a36600461527f565b6117fa565b34801561066b57600080fd5b5061046a61067a366004615350565b61183e565b34801561068b57600080fd5b506103b261069a3660046153f0565b611971565b3480156106ab57600080fd5b5061046a6106ba36600461539c565b611a1a565b3480156106cb57600080fd5b506017546104b39073ffffffffffffffffffffffffffffffffffffffff1681565b3480156106f857600080fd5b5060175461040790760100000000000000000000000000000000000000000000900460ff1681565b34801561072c57600080fd5b50600e546104389062010000900460ff1681565b34801561074c57600080fd5b5061046a61075b3660046152f2565b611c5d565b34801561076c57600080fd5b5061040761077b3660046152f2565b73ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205460ff1690565b3480156107b257600080fd5b5061046a6107c1366004615369565b611e98565b3480156107d257600080fd5b5061046a6107e1366004615369565b612038565b3480156107f257600080fd5b506103b260135481565b34801561080857600080fd5b50600e5461043890640100000000900460ff1681565b34801561082a57600080fd5b50600e5461043890610100900460ff1681565b34801561084957600080fd5b50600e546104389065010000000000900460ff1681565b34801561086c57600080fd5b50601754610407907501000000000000000000000000000000000000000000900460ff1681565b34801561089f57600080fd5b506103b26108ae3660046152f2565b6121b6565b3480156108bf57600080fd5b5061046a61223c565b3480156108d457600080fd5b506011546104b39073ffffffffffffffffffffffffffffffffffffffff1681565b34801561090157600080fd5b506104076109103660046152f2565b73ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205460ff1690565b34801561094757600080fd5b5061046a61232c565b34801561095c57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166104b3565b34801561098757600080fd5b50600e546104389060ff1681565b3480156109a157600080fd5b506103da612477565b3480156109b657600080fd5b50600e5461043890670100000000000000900460ff1681565b3480156109db57600080fd5b506104076109ea36600461527f565b612486565b3480156109fb57600080fd5b50610407610a0a3660046152f2565b73ffffffffffffffffffffffffffffffffffffffff166000908152601b602052604090205460ff1690565b348015610a4157600080fd5b50610407610a5036600461527f565b6124ca565b348015610a6157600080fd5b50600e54610438906601000000000000900460ff1681565b348015610a8557600080fd5b506103b260145481565b348015610a9b57600080fd5b5061046a610aaa366004615350565b6124d7565b348015610abb57600080fd5b50600d546103b2565b348015610ad057600080fd5b5061046a610adf366004615415565b612632565b348015610af057600080fd5b5061046a610aff3660046152f2565b612832565b348015610b1057600080fd5b5061046a610b1f3660046152b9565b612a73565b348015610b3057600080fd5b5061046a610b3f3660046152b9565b612c34565b348015610b5057600080fd5b506103b2610b5f366004615437565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260036020908152604080832093909416825291909152205490565b348015610ba357600080fd5b5061046a610bb2366004615369565b612e73565b348015610bc357600080fd5b506103b260185481565b348015610bd957600080fd5b5061046a610be83660046152f2565b612f6e565b348015610bf957600080fd5b5061046a610c083660046152f2565b61311f565b606060078054610c1c90615465565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4890615465565b8015610c955780601f10610c6a57610100808354040283529160200191610c95565b820191906000526020600020905b815481529060010190602001808311610c7857829003601f168201915b5050505050905090565b6000610cac338484613378565b5060015b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610d3c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821660009081526019602052604090205481151560ff909116151503610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4163636f756e7420697320616c72656164792073657420746f2074686174207360448201527f74617465000000000000000000000000000000000000000000000000000000006064820152608401610d33565b73ffffffffffffffffffffffffffffffffffffffff821660008181526019602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f8727c4afe988887760e8db0bbad9f9fcceee6428545956832f67c8fdbd589c1091015b60405180910390a25050565b6000610e9084848461352b565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260036020908152604080832033808552925290912054610ed8918691610ed39086906154e7565b613378565b5060019392505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f63576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b6064610f7160095460ff1690565b610f7c90600a61561a565b600b54610f899190615629565b610f939190615629565b811015611022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f4d61782077616c6c65742070657263656e746167652063616e6e6f742062652060448201527f6c6f776572207468616e203125000000000000000000000000000000000000006064820152608401610d33565b60095460ff1661103390600a61561a565b61103d9082615664565b60148190556040519081527f21bc0ea3406acb92d4449ab33befb4ae82f873a22f3b6cf0e466b2710beb5942906020015b60405180910390a150565b60005473ffffffffffffffffffffffffffffffffffffffff1633146110fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b601c5460ff16151581151503611192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f4d61782077616c6c6574206c696d697420697320616c7265616479207365742060448201527f746f2074686174207374617465000000000000000000000000000000000000006064820152608401610d33565b601c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682151590811790915560405160ff909116151581527f670f884265aba2d05e7c26efbc42f8365effc4cb3fcfcefddba0c0b71a6231f19060200161106e565b6000600c5482111561128b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201527f65666c656374696f6e73000000000000000000000000000000000000000000006064820152608401610d33565b6000611295613c4e565b90506112a18184615629565b9392505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff00ff1661010060ff87811682027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff169290921763010000008784168102919091177fffffffffffffffffffffffffffffffffffffffffffffffff00ff00ffffffffff166501000000000087851681027fffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffff1691909117670100000000000000878616810291909117958690558504841694908104841693611415939282048116929091041661567b565b61141f919061567b565b611429919061567b565b60ff16601081905561012c10156114c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f53656c6c20666565732063616e6e6f742062652067726561746572207468616e60448201527f20333025000000000000000000000000000000000000000000000000000000006064820152608401610d33565b600e546040805160ff610100840481168252630100000084048116602083015265010000000000909304909216908201527f969e8ecd326f5fe41e2a3cd9798553fbecef5705da23954426a09c9360c7aa57906060015b60405180910390a150505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604090205460ff16611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c7564656400000000006044820152606401610d33565b60005b6006548110156117f6578173ffffffffffffffffffffffffffffffffffffffff166006828154811061166d5761166d615694565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16036117e457600680546116a4906001906154e7565b815481106116b4576116b4615694565b6000918252602090912001546006805473ffffffffffffffffffffffffffffffffffffffff90921691839081106116ed576116ed615694565b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff948516179055918416815260028252604080822082905560059092522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690556006805480611788576117886156c3565b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690550190555050565b806117ee816156f2565b915050611639565b5050565b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610cac918590610ed390869061572a565b3360008181526005602052604090205460ff16156118de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201527f6869732066756e6374696f6e00000000000000000000000000000000000000006064820152608401610d33565b60006118e983613c71565b5050505073ffffffffffffffffffffffffffffffffffffffff85166000908152600160205260409020549293506119249284925090506154e7565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040902055600c546119589082906154e7565b600c55600d5461196990849061572a565b600d55505050565b6000600a548311156119df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610d33565b816119ff5760006119ef84613c71565b50949650610cb095505050505050565b6000611a0a84613c71565b50939650610cb095505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611a9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b600e805460ff8681167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff0090921691909117620100008683168102919091177fffffffffffffffffffffffffffffffffffffffffffffffffff00ff00ffffffff1664010000000086841681027fffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffff16919091176601000000000000868516810291909117948590558404831693908104831692611b5b9282048116911661567b565b611b65919061567b565b611b6f919061567b565b60ff16600f81905561012c1015611c08576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f42757920666565732063616e6e6f742062652067726561746572207468616e2060448201527f33302500000000000000000000000000000000000000000000000000000000006064820152608401610d33565b600e546040805160ff808416825262010000840481166020830152640100000000909304909216908201527ff12a090a464a491e1614a62b7d86a6f8d3fae25361d5af0911f39bd4fd7ea64d90606001611518565b60005473ffffffffffffffffffffffffffffffffffffffff163314611cde576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604090205460ff1615611d6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610d33565b73ffffffffffffffffffffffffffffffffffffffff811660009081526001602052604090205415611def5773ffffffffffffffffffffffffffffffffffffffff8116600090815260016020526040902054611dc8906111f7565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600260205260409020555b73ffffffffffffffffffffffffffffffffffffffff16600081815260056020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611f19576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b60155481151560ff909116151503611fd9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604260248201527f57616c6c657420746f2077616c6c6574207472616e7366657220776974686f7560448201527f742066656520697320616c72656164792073657420746f20746861742076616c60648201527f7565000000000000000000000000000000000000000000000000000000000000608482015260a401610d33565b601580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215159081179091556040519081527f77c1f4015c54df9478a364bf8fc1b76b03f0eda36c594de58b4023771cebb9e79060200161106e565b60005473ffffffffffffffffffffffffffffffffffffffff1633146120b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b601a5460ff16151581151503612151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4d6178207472616e73616374696f6e206c696d697420697320616c726561647960448201527f2073657420746f207468617420737461746500000000000000000000000000006064820152608401610d33565b601a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682151590811790915560405160ff909116151581527fe81be35e61864c26afd7a4655e99f321378d0aaae1e5af8ee67b658a7460f3cf9060200161106e565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604081205460ff161561220d575073ffffffffffffffffffffffffffffffffffffffff1660009081526002602052604090205490565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260016020526040902054610cb0906111f7565b60005473ffffffffffffffffffffffffffffffffffffffff1633146122bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146123ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b601754760100000000000000000000000000000000000000000000900460ff1615612434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610d33565b601780547fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff16760100000000000000000000000000000000000000000000179055565b606060088054610c1c90615465565b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610cac918590610ed39086906154e7565b6000610cac33848461352b565b60005473ffffffffffffffffffffffffffffffffffffffff163314612558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b620186a0612565600b5490565b61256f9190615629565b81116125fd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603e60248201527f53776170546f6b656e734174416d6f756e74206d75737420626520677265617460448201527f6572207468616e20302e30303125206f6620746f74616c20737570706c7900006064820152608401610d33565b60188190556040518181527f7c26bfee26f82e8cb57af48f4019cc64582db6fac7bad778433f10572ae8b1459060200161106e565b60005473ffffffffffffffffffffffffffffffffffffffff1633146126b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b6103e86126c260095460ff1690565b6126cd90600a61561a565b600b546126da9190615629565b6126e49190615629565b821015801561272357506103e86126fd60095460ff1690565b61270890600a61561a565b600b546127159190615629565b61271f9190615629565b8110155b6127af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f4d6178205472616e73616374696f6e206c696d69732063616e6e6f742062652060448201527f6c6f776572207468616e20302e3125206f6620746f74616c20737570706c79006064820152608401610d33565b60095460ff166127c090600a61561a565b6127ca9083615664565b60125560095460ff166127de90600a61561a565b6127e89082615664565b60138190556012546040517f8c8cbc911b80df94332ececb8eb0945274d76fa965600a0f01f42af3f8afb13192612826928252602082015260400190565b60405180910390a15050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146128b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b60115473ffffffffffffffffffffffffffffffffffffffff9081169082160361295e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f4d61726b6574696e672077616c6c657420697320616c7265616479207468617460448201527f20616464726573730000000000000000000000000000000000000000000000006064820152608401610d33565b73ffffffffffffffffffffffffffffffffffffffff8116612a00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4d61726b6574696e672077616c6c657420697320746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d33565b601180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527fa964ba5c52d7e7bfcae4fb1ae4db9f211756d0e618e85fac5283b882a39e7a0b9060200161106e565b60005473ffffffffffffffffffffffffffffffffffffffff163314612af4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b73ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205481151560ff909116151503612bb1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f662060448201527f276578636c7564656427000000000000000000000000000000000000000000006064820152608401610d33565b73ffffffffffffffffffffffffffffffffffffffff821660008181526004602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610e77565b60005473ffffffffffffffffffffffffffffffffffffffff163314612cb5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601b602052604090205481151560ff909116151503612d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4163636f756e7420697320616c72656164792073657420746f2074686174207360448201527f74617465000000000000000000000000000000000000000000000000000000006064820152608401610d33565b3073ffffffffffffffffffffffffffffffffffffffff831603612df0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f43616e277420736574207468697320616464726573732e0000000000000000006044820152606401610d33565b73ffffffffffffffffffffffffffffffffffffffff82166000818152601b602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f1d9a11e204b58ad56c619c61600e42167624659d218f0143f1f64956b0daae6c9101610e77565b60005473ffffffffffffffffffffffffffffffffffffffff163314612ef4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b601780548215157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff9091161790556040517f436b6cf978c7b6998fcce43dfe4d37e3a0dc2bb780144a2eb55d7138201e8a129061106e90831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff163314612fef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b73ffffffffffffffffffffffffffffffffffffffff8116613092576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d33565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146131a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d33565b3073ffffffffffffffffffffffffffffffffffffffff82160361321f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e65722063616e6e6f7420636c61696d206e617469766520746f6b656e736044820152606401610d33565b73ffffffffffffffffffffffffffffffffffffffff8116613244576117f63347613ccc565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152819060009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa1580156132b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132d7919061573d565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810182905290915073ffffffffffffffffffffffffffffffffffffffff83169063a9059cbb906044016020604051808303816000875af115801561334d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133719190615756565b5050505b50565b73ffffffffffffffffffffffffffffffffffffffff831661341a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d33565b73ffffffffffffffffffffffffffffffffffffffff82166134bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610d33565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166135ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610d33565b6000811161365e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152608401610d33565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205460ff161580156136ba575073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205460ff16155b1561374557601754760100000000000000000000000000000000000000000000900460ff16613745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f54726164696e67206973206e6f7420656e61626c6564207965740000000000006044820152606401610d33565b601a5460ff16156139485760175473ffffffffffffffffffffffffffffffffffffffff84811691161480613793575060175473ffffffffffffffffffffffffffffffffffffffff8381169116145b80156137c5575073ffffffffffffffffffffffffffffffffffffffff831660009081526019602052604090205460ff16155b80156137f7575073ffffffffffffffffffffffffffffffffffffffff821660009081526019602052604090205460ff16155b156139485760175473ffffffffffffffffffffffffffffffffffffffff908116908416036138b6576012548111156138b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603b60248201527f416e74695768616c653a205472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e7400000000006064820152608401610d33565b613948565b601354811115613948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603b60248201527f416e74695768616c653a205472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e7400000000006064820152608401610d33565b6000613953306121b6565b60185490915081108015908190613985575060175474010000000000000000000000000000000000000000900460ff16155b80156139ab575060175473ffffffffffffffffffffffffffffffffffffffff8581169116145b80156139d257506017547501000000000000000000000000000000000000000000900460ff165b15613afe57601780547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055600e54600090613a3d9065010000000000810460ff9081169164010000000090041661567b565b600e5460ff9182169250600091613a659163010000008104821691620100009091041661567b565b60ff1690506000613a76828461572a565b90508015613ad2578115613aa857600081613a918488615664565b613a9b9190615629565b9050613aa681613da2565b505b8215613ad257600081613abb8588615664565b613ac59190615629565b9050613ad081614067565b505b5050601780547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055505b613b0985858561425f565b601c5460ff1615613c475773ffffffffffffffffffffffffffffffffffffffff85166000908152601b602052604090205460ff16158015613b70575073ffffffffffffffffffffffffffffffffffffffff84166000908152601b602052604090205460ff16155b8015613b97575060175473ffffffffffffffffffffffffffffffffffffffff858116911614155b15613c47576000613ba7856121b6565b601454909150613bb7858361572a565b1115613c45576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4d617857616c6c65743a20526563697069656e7420657863656564732074686560448201527f206d617857616c6c6574416d6f756e74000000000000000000000000000000006064820152608401610d33565b505b5050505050565b6000806000613c5b6144f7565b9092509050613c6a8183615629565b9250505090565b6000806000806000806000806000806000613c8b8c6146ae565b93509350935093506000806000613cac8f878787613ca7613c4e565b61470d565b919f509d509b509599509397509195509350505050919395979092949650565b600081471015613d38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610d33565b60008373ffffffffffffffffffffffffffffffffffffffff168360405160006040518083038185875af1925050503d8060008114613d92576040519150601f19603f3d011682016040523d82523d6000602084013e613d97565b606091505b509095945050505050565b6000613daf600283615629565b90506000613dbd82846154e7565b60408051600280825260608201835292935047926000926020830190803683370190505090503081600081518110613df757613df7615694565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152601654604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015613e76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e9a9190615773565b81600181518110613ead57613ead615694565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526016546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac94790613f19908790600090869030904290600401615790565b600060405180830381600087803b158015613f3357600080fd5b505af1158015613f47573d6000803e3d6000fd5b5050505060008247613f5991906154e7565b6016546015546040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101889052600060448201819052606482015273ffffffffffffffffffffffffffffffffffffffff610100909204821660848201524260a4820152929350169063f305d71990839060c40160606040518083038185885af1158015613ff6573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061401b919061581b565b505060408051878152602081018490529081018690527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561915060600160405180910390a1505050505050565b6040805160028082526060820183524792600092919060208301908036833701905050905030816000815181106140a0576140a0615694565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152601654604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa15801561411f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141439190615773565b8160018151811061415657614156615694565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526016546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac947906141c2908690600090869030904290600401615790565b600060405180830381600087803b1580156141dc57600080fd5b505af11580156141f0573d6000803e3d6000fd5b505050506000824761420291906154e7565b6011549091506142289073ffffffffffffffffffffffffffffffffffffffff1682613ccc565b5060408051858152602081018390527f957ad1fc6d4d41da6d1a8d37303289ef3c4b78e0285ff5df1e12070ef0e629999101611518565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205460ff16806142b8575073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205460ff165b156142ca576142c561477f565b61433b565b60175473ffffffffffffffffffffffffffffffffffffffff908116908316036142f5576142c56147fc565b60175473ffffffffffffffffffffffffffffffffffffffff90811690841603614320576142c5614976565b60155460ff1615614333576142c561477f565b61433b6147fc565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff168015614396575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff16155b156143ab576143a6838383614ac4565b505050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff16158015614406575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff165b15614416576143a6838383614c60565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff16158015614472575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff16155b15614482576143a6838383614d4e565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff1680156144dc575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff165b156144ec576143a6838383614dbb565b6143a6838383614d4e565b600c54600a546000918291825b60065481101561467d5782600160006006848154811061452657614526615694565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205411806145ab575081600260006006848154811061457757614577615694565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054115b156145c157600c54600a54945094505050509091565b60016000600683815481106145d8576145d8615694565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205461461490846154e7565b9250600260006006838154811061462d5761462d615694565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205461466990836154e7565b915080614675816156f2565b915050614504565b50600a54600c5461468e9190615629565b8210156146a557600c54600a549350935050509091565b90939092509050565b60008060008060006146bf86614e65565b905060006146cc87614e92565b905060006146d988614eb6565b9050600081836146e9868c6154e7565b6146f391906154e7565b6146fd91906154e7565b9993985091965094509092505050565b600080808061471c858a615664565b9050600061472a868a615664565b90506000614738878a615664565b90506000614746888a615664565b90506000818361475686886154e7565b61476091906154e7565b61476a91906154e7565b949d949c50929a509298505050505050505050565b600e5468010000000000000000900460ff161580156147ae5750600e546901000000000000000000900460ff16155b80156147cb5750600e546a0100000000000000000000900460ff16155b156147d257565b600e80547fffffffffffffffffffffffffffffffffffffffffff000000ffffffffffffffff169055565b600e5468010000000000000000810460ff9081166101009092041614801561485c5750600e546148439060ff6701000000000000008204811691630100000090041661567b565b600e546901000000000000000000900460ff9081169116145b80156148865750600e546a0100000000000000000000810460ff9081166501000000000090920416145b1561488d57565b600e80547fffffffffffffffffffffffffffffffffffffffffff00ff00ffffffffffffffff81167fffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffff610100830460ff908116680100000000000000000291821692909217650100000000007fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff9094169091179290920481166a010000000000000000000002919091179182905561495a91670100000000000000810482169163010000009091041661567b565b600e60096101000a81548160ff021916908360ff160217905550565b600e5468010000000000000000810460ff90811691161480156149cf5750600e546149b69060ff660100000000000082048116916201000090041661567b565b600e546901000000000000000000900460ff9081169116145b80156149f85750600e546a0100000000000000000000810460ff90811664010000000090920416145b156149ff57565b600e80547fffffffffffffffffffffffffffffffffffffffffff00ff00ffffffffffffffff81167fffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffff60ff8084166801000000000000000002918216929092176401000000007fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff9094169091179290920481166a010000000000000000000002919091179182905561495a9166010000000000008104821691620100009091041661567b565b6000806000806000806000614ad888613c71565b965096509650965096509650965087600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614b3191906154e7565b73ffffffffffffffffffffffffffffffffffffffff8b16600090815260026020908152604080832093909355600190522054614b6e9088906154e7565b73ffffffffffffffffffffffffffffffffffffffff808c1660009081526001602052604080822093909355908b1681522054614bab90879061572a565b73ffffffffffffffffffffffffffffffffffffffff8a16600090815260016020526040902055614bda81614edb565b614be382614f6b565b614bed85846151cb565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051614c4c91815260200190565b60405180910390a350505050505050505050565b6000806000806000806000614c7488613c71565b965096509650965096509650965086600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614ccd91906154e7565b73ffffffffffffffffffffffffffffffffffffffff808c16600090815260016020908152604080832094909455918c16815260029091522054614d1190859061572a565b73ffffffffffffffffffffffffffffffffffffffff8a16600090815260026020908152604080832093909355600190522054614bab90879061572a565b6000806000806000806000614d6288613c71565b965096509650965096509650965086600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614b6e91906154e7565b6000806000806000806000614dcf88613c71565b965096509650965096509650965087600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614e2891906154e7565b73ffffffffffffffffffffffffffffffffffffffff8b16600090815260026020908152604080832093909355600190522054614ccd9088906154e7565b600e546000906103e890614e889068010000000000000000900460ff1684615664565b610cb09190615629565b600e546000906103e890614e88906901000000000000000000900460ff1684615664565b600e546000906103e890614e88906a0100000000000000000000900460ff1684615664565b8015613375576000614eeb613c4e565b90506000614ef98284615664565b30600090815260016020526040902054909150614f1790829061572a565b3060009081526001602090815260408083209390935560059052205460ff16156143a65730600090815260026020526040902054614f5690849061572a565b30600090815260026020526040902055505050565b600e5460009060ff670100000000000000820481169166010000000000008104821691614fa99163010000008104821691620100009091041661567b565b614fb3919061567b565b614fbd919061567b565b600e5460ff91821691614fe19163010000008104821691620100009091041661567b565b614fee9060ff1684615664565b614ff89190615629565b9050600061500682846154e7565b90508115615097576000615018613c4e565b905060006150268285615664565b3060009081526001602052604090205490915061504490829061572a565b3060009081526001602090815260408083209390935560059052205460ff1615615094573060009081526002602052604090205461508390859061572a565b306000908152600260205260409020555b50505b80156143a65760006150a7613c4e565b905060006150b58284615664565b61dead60005260016020527fb34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d549091506150f090829061572a565b61dead6000527fb34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d5560056020527f7d509c07f0d4edcc2dd1b53aae68677132eb562dcba78e36381b63ccaf66e6ba5460ff16156151ad5761dead60005260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc5461517f90849061572a565b61dead60005260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc555b82600b60008282546151bf91906154e7565b90915550505050505050565b81600c546151d991906154e7565b600c55600d546151ea90829061572a565b600d555050565b600060208083528351808285015260005b8181101561521e57858101830151858201604001528201615202565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff8116811461337557600080fd5b6000806040838503121561529257600080fd5b823561529d8161525d565b946020939093013593505050565b801515811461337557600080fd5b600080604083850312156152cc57600080fd5b82356152d78161525d565b915060208301356152e7816152ab565b809150509250929050565b60006020828403121561530457600080fd5b81356112a18161525d565b60008060006060848603121561532457600080fd5b833561532f8161525d565b9250602084013561533f8161525d565b929592945050506040919091013590565b60006020828403121561536257600080fd5b5035919050565b60006020828403121561537b57600080fd5b81356112a1816152ab565b803560ff8116811461539757600080fd5b919050565b600080600080608085870312156153b257600080fd5b6153bb85615386565b93506153c960208601615386565b92506153d760408601615386565b91506153e560608601615386565b905092959194509250565b6000806040838503121561540357600080fd5b8235915060208301356152e7816152ab565b6000806040838503121561542857600080fd5b50508035926020909101359150565b6000806040838503121561544a57600080fd5b82356154558161525d565b915060208301356152e78161525d565b600181811c9082168061547957607f821691505b6020821081036154b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b81810381811115610cb057610cb06154b8565b600181815b8085111561555357817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115615539576155396154b8565b8085161561554657918102915b93841c93908002906154ff565b509250929050565b60008261556a57506001610cb0565b8161557757506000610cb0565b816001811461558d5760028114615597576155b3565b6001915050610cb0565b60ff8411156155a8576155a86154b8565b50506001821b610cb0565b5060208310610133831016604e8410600b84101617156155d6575081810a610cb0565b6155e083836154fa565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115615612576156126154b8565b029392505050565b60006112a160ff84168361555b565b60008261565f577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b8082028115828204841417610cb057610cb06154b8565b60ff8181168382160190811115610cb057610cb06154b8565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203615723576157236154b8565b5060010190565b80820180821115610cb057610cb06154b8565b60006020828403121561574f57600080fd5b5051919050565b60006020828403121561576857600080fd5b81516112a1816152ab565b60006020828403121561578557600080fd5b81516112a18161525d565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156157ed57845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016157bb565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b60008060006060848603121561583057600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212202d0370b93aa748e7b9da7bc57f448222352e51bc6de7e847b66830b7e666ae6e64736f6c63430008110033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.