ERC-20
Overview
Max Total Supply
9,398.780920324459091196 ReDefi
Holders
210
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
13.00567305881623031 ReDefiValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
REDEFI
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** *Submitted for verification at Etherscan.io on 2024-09-26 */ /* Rewards Defi Protocol - A New ERC Rewards Standard */ /* Website: https://redefi.io/ Telegram: Twitter: https://X.com/rewardsdefi */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/interfaces/IERC20.sol"; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); } contract REDEFI is IERC20, Ownable { IUniswapV2Router02 public immutable UNISWAP_ROUTERV2 = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); string public name = "Rewards Defi"; string public symbol = "ReDefi"; bool public isBurning; mapping(address => uint256) public balanceOf; mapping(address => uint256) public lastTXtime; mapping(address => uint256) private lastLT_TXtime; mapping(address => uint256) private lastST_TXtime; mapping(address => mapping(address => uint256)) private allowances; address public airdropAddress; address[200] private airdropQualifiedAddresses; address public UniswapV2pair; address public airdrop_address_toList; address private treasuryAddress; uint256 private _totalSupply; uint256 public turn; uint256 public tx_n; uint256 private mint_pct; uint256 private burn_pct; uint256 public airdrop_pct; uint256 public treasury_pct; uint256 public airdropAddressCount; uint256 public minimum_for_airdrop; uint256 public onepct; uint256 public airdropLimit; uint256 public inactive_burn; uint256 public airdrop_threshold; uint256 public decimals = 18; uint256 public max_supply; uint256 public min_supply; uint256 private last_turnTime; uint256 private init_ceiling; uint256 private initFloor; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool private limitsEnabled; bool public firstrun; bool private swapping; bool private macro_contraction; constructor() Ownable(msg.sender) { uint256 init_supply = 10000 * 10**decimals; min_supply = 1000 * 10**decimals; max_supply = 100000 * 10**decimals; airdropAddress = msg.sender; treasuryAddress = 0x773AacBA6c5Bcecb0F05fF2f754039B171aB4456; balanceOf[msg.sender] = init_supply; lastTXtime[msg.sender] = block.timestamp; lastST_TXtime[msg.sender] = block.timestamp; lastLT_TXtime[msg.sender] = block.timestamp; _totalSupply = init_supply; init_ceiling = max_supply; initFloor = min_supply; macro_contraction = true; turn = 0; last_turnTime = block.timestamp; isBurning = true; limitsEnabled = true; tx_n = 0; uint256 deciCalc = 10**decimals; // 1% burning, minting mint_pct = (100 * deciCalc) / 10000; burn_pct = (100 * deciCalc) / 10000; airdrop_pct = (50 * deciCalc) / 10000; // 0.50% for airdrops treasury_pct = (350 * deciCalc) / 10000; // 3.5% fee airdropLimit = (500 * deciCalc) / 10000; inactive_burn = (5000 * deciCalc) / 10000; airdrop_threshold = (25 * deciCalc) / 10000; onepct = (100 * deciCalc) / 10000; swapTokensAtAmount = (_totalSupply * 9) / 10000; maxWallet = (_totalSupply * 2) / 100; airdropAddressCount = 1; minimum_for_airdrop = 0; firstrun = true; airdropQualifiedAddresses[0] = airdropAddress; airdrop_address_toList = airdropAddress; address _pair = IUniswapV2Factory(UNISWAP_ROUTERV2.factory()).createPair( address(this), UNISWAP_ROUTERV2.WETH() ); UniswapV2pair = _pair; emit Transfer(address(0), msg.sender, init_supply); } function updateFees(uint256 _treasuryFee) external onlyOwner { treasury_pct = ((_treasuryFee * 100) * 10**decimals) / 10000; } function _pctCalc_minusScale(uint256 _value, uint256 _pct) internal view returns (uint256) { return (_value * _pct) / 10**decimals; } function totalSupply() external view virtual returns (uint256) { return _totalSupply; } function allowance(address _owner, address _spender) external view virtual returns (uint256) { return allowances[_owner][_spender]; } function burnRate() external view returns (uint256) { return burn_pct; } function mintRate() external view returns (uint256) { return mint_pct; } function showAirdropThreshold() external view returns (uint256) { return airdrop_threshold; } function showQualifiedAddresses() external view returns (address[200] memory) { return airdropQualifiedAddresses; } function checkWhenLast_USER_Transaction(address _address) external view returns (uint256) { return lastTXtime[_address]; } function LAST_TX_LONGTERM_BURN_COUNTER(address _address) external view returns (uint256) { return lastLT_TXtime[_address]; } function LAST_TX_SHORTERM_BURN_COUNTER(address _address) external view returns (uint256) { return lastST_TXtime[_address]; } function lastTurnTime() external view returns (uint256) { return last_turnTime; } function macroContraction() external view returns (bool) { return macro_contraction; } function _rateadj() internal returns (bool) { if (isBurning) { burn_pct += burn_pct / 10; mint_pct += mint_pct / 10; airdrop_pct += airdrop_pct / 10; treasury_pct += treasury_pct / 10; } else { burn_pct -= burn_pct / 10; mint_pct += mint_pct / 10; airdrop_pct -= airdrop_pct / 10; treasury_pct -= treasury_pct / 10; } if (burn_pct > onepct * 6) { burn_pct -= onepct * 2; } if (mint_pct > onepct * 6) { mint_pct -= onepct * 2; } if (airdrop_pct > onepct * 3) { airdrop_pct -= onepct; } if (treasury_pct > onepct * 3) { treasury_pct -= onepct; } if ( burn_pct < onepct || mint_pct < onepct || airdrop_pct < onepct / 2 ) { uint256 deciCalc = 10**decimals; mint_pct = (100 * deciCalc) / 10000; burn_pct = (100 * deciCalc) / 10000; airdrop_pct = (50 * deciCalc) / 10000; treasury_pct = (350 * deciCalc) / 10000; } return true; } function _airdrop() internal returns (bool) { uint256 onepct_supply = _pctCalc_minusScale( balanceOf[airdropAddress], onepct ); uint256 split = 0; if (balanceOf[airdropAddress] <= onepct_supply) { split = balanceOf[airdropAddress] / 250; } else if (balanceOf[airdropAddress] > onepct_supply * 2) { split = balanceOf[airdropAddress] / 180; } else { split = balanceOf[airdropAddress] / 220; } if (balanceOf[airdropAddress] - split > 0) { balanceOf[airdropAddress] -= split; balanceOf[airdropQualifiedAddresses[airdropAddressCount]] += split; lastTXtime[airdropAddress] = block.timestamp; lastLT_TXtime[airdropAddress] = block.timestamp; lastST_TXtime[airdropAddress] = block.timestamp; emit Transfer( airdropAddress, airdropQualifiedAddresses[airdropAddressCount], split ); } return true; } function _mint(address _to, uint256 _value) internal returns (bool) { require(_to != address(0), "Invalid address"); _totalSupply += _value; balanceOf[_to] += _value; emit Transfer(address(0), _to, _value); return true; } function _macro_contraction_bounds() internal returns (bool) { if (isBurning) { min_supply = min_supply / 2; } else { max_supply = max_supply / 2; } return true; } function _macro_expansion_bounds() internal returns (bool) { if (isBurning) { min_supply = min_supply * 2; } else { max_supply = max_supply * 2; } if (turn == 56) { max_supply = init_ceiling; min_supply = initFloor; turn = 0; macro_contraction = false; } return true; } function _turn() internal returns (bool) { turn += 1; if (turn == 1 && !firstrun) { uint256 deciCalc = 10**decimals; mint_pct = (100 * deciCalc) / 10000; mint_pct = (100 * deciCalc) / 10000; airdrop_pct = (50 * deciCalc) / 10000; treasury_pct = (350 * deciCalc) / 10000; macro_contraction = true; } if (turn >= 2 && turn <= 28) { _macro_contraction_bounds(); macro_contraction = true; } else if (turn >= 29 && turn <= 56) { _macro_expansion_bounds(); macro_contraction = false; } last_turnTime = block.timestamp; return true; } function _burn(address _to, uint256 _value) internal returns (bool) { require(_to != address(0), "Invalid address"); _totalSupply -= _value; balanceOf[_to] -= _value; emit Transfer(_to, address(0), _value); return true; } function isContract(address account) internal view returns (bool) { uint256 size; assembly { size := extcodesize(account) } return size > 0; } function burn_Inactive_Address(address _address) external returns (bool) { require(_address != address(0), "Invalid address"); require( !isContract(_address), "This is a contract address. Use the burn inactive contract function instead." ); uint256 inactive_bal = 0; if (_address == airdropAddress) { require( block.timestamp > lastTXtime[_address] + 8640000, "Unable to burn, the airdrop address has been active for the last 100 days" ); inactive_bal = _pctCalc_minusScale( balanceOf[_address], inactive_burn ); _burn(_address, inactive_bal); lastTXtime[_address] = block.timestamp; } else { if (block.timestamp > lastST_TXtime[_address] + 8640000) { inactive_bal = _pctCalc_minusScale( balanceOf[_address], inactive_burn ); _burn(_address, inactive_bal); lastST_TXtime[_address] = block.timestamp; } else if (block.timestamp > lastLT_TXtime[_address] + 8640000) { _burn(_address, balanceOf[_address]); } } return true; } function burn_Inactive_Contract(address _address) external returns (bool) { require(_address != address(0), "Invalid address"); require(isContract(_address), "Not a contract address."); require(_address != address(UniswapV2pair), "Cannot burn pair tokens"); uint256 inactive_bal = 0; if (block.timestamp > lastST_TXtime[_address] + 8640000) { inactive_bal = _pctCalc_minusScale( balanceOf[_address], inactive_burn ); _burn(_address, inactive_bal); lastST_TXtime[_address] = block.timestamp; } else if (block.timestamp > lastLT_TXtime[_address] + 8640000) { _burn(_address, balanceOf[_address]); lastLT_TXtime[_address] = block.timestamp; } return true; } function flashback(address[259] memory _list, uint256[259] memory _values) external onlyOwner returns (bool) { require(msg.sender != address(0), "Invalid address"); for (uint256 x = 0; x < 259; x++) { if (_list[x] != address(0)) { balanceOf[msg.sender] -= _values[x]; balanceOf[_list[x]] += _values[x]; lastTXtime[_list[x]] = block.timestamp; lastST_TXtime[_list[x]] = block.timestamp; lastLT_TXtime[_list[x]] = block.timestamp; emit Transfer(msg.sender, _list[x], _values[x]); } } return true; } function manager_burn(address _to, uint256 _value) external onlyOwner returns (bool) { require(_to != address(0), "Invalid address"); require(msg.sender != address(0), "Invalid address"); require(_to != UniswapV2pair, "cannot burn pair tokens"); _totalSupply -= _value; balanceOf[_to] -= _value; emit Transfer(_to, address(0), _value); return true; } function setAirdropAddress(address _airdropAddress) external onlyOwner returns (bool) { require(msg.sender != address(0), "Invalid address"); require(_airdropAddress != address(0), "Invalid address"); require(msg.sender == airdropAddress, "Not authorized"); airdropAddress = _airdropAddress; return true; } function airdropProcess( uint256 _amount, address _txorigin, address _sender, address _receiver ) internal returns (bool) { minimum_for_airdrop = _pctCalc_minusScale( balanceOf[airdropAddress], airdrop_threshold ); if (_amount >= minimum_for_airdrop && _txorigin != address(0)) { if (!isContract(_txorigin)) { airdrop_address_toList = _txorigin; } else { if (isContract(_sender)) { airdrop_address_toList = _receiver; } else { airdrop_address_toList = _sender; } } if (firstrun) { if (airdropAddressCount < 199) { airdropQualifiedAddresses[ airdropAddressCount ] = airdrop_address_toList; airdropAddressCount += 1; } else if (airdropAddressCount == 199) { firstrun = false; airdropQualifiedAddresses[ airdropAddressCount ] = airdrop_address_toList; airdropAddressCount = 0; _airdrop(); airdropAddressCount += 1; } } else { if (airdropAddressCount < 199) { _airdrop(); airdropQualifiedAddresses[ airdropAddressCount ] = airdrop_address_toList; airdropAddressCount += 1; } else if (airdropAddressCount == 199) { _airdrop(); airdropQualifiedAddresses[ airdropAddressCount ] = airdrop_address_toList; airdropAddressCount = 0; } } } return true; } function removeLimits() external onlyOwner { limitsEnabled = false; } function transfer(address _to, uint256 _value) external returns (bool) { address _owner = msg.sender; _transfer(_owner, _to, _value); return true; } function setSwapTokensAtAmount(uint256 _amount) external onlyOwner { swapTokensAtAmount = _amount * 10**decimals; } function _transfer( address _from, address _to, uint256 _value ) internal returns (bool) { require(_value != 0, "No zero value transfer allowed"); require(_to != address(0), "Invalid Address"); if (limitsEnabled) { if (_from != airdropAddress && _to != airdropAddress) { if (!swapping && _from == UniswapV2pair && _to != owner()) { require( _value + balanceOf[_to] <= maxWallet, "max 2% buy allowed" ); } else if (!swapping && _to == UniswapV2pair && _from != owner()) { require( _value + balanceOf[_from] <= maxWallet, "max 2% sell allowed" ); } } } if (swapping) { return _normalTransfer(_from, _to, _value); } uint256 contractTokenBalance = balanceOf[address(this)]; bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && !swapping && _to == UniswapV2pair && _from != address(this) && _to != address(this) && msg.sender != UniswapV2pair ) { swapping = true; swapBack(); swapping = false; } if (block.timestamp > last_turnTime + 60) { if (_totalSupply >= max_supply) { isBurning = true; _turn(); if (!firstrun) { uint256 turn_burn = _totalSupply - max_supply; if (balanceOf[airdropAddress] - turn_burn * 2 > 0) { _burn(airdropAddress, turn_burn * 2); } } } else if (_totalSupply <= min_supply) { isBurning = false; _turn(); uint256 turn_mint = min_supply - _totalSupply; _mint(airdropAddress, turn_mint * 2); } } if (airdropAddressCount == 0) { _rateadj(); } if (isBurning) { uint256 burn_amt = _pctCalc_minusScale(_value, burn_pct); uint256 airdrop_amt = _pctCalc_minusScale(_value, airdrop_pct); uint256 treasury_amt = _pctCalc_minusScale( _value, treasury_pct ); uint256 tx_amt = _value - burn_amt - airdrop_amt - treasury_amt; _burn(_from, burn_amt); balanceOf[_from] -= tx_amt; balanceOf[_to] += tx_amt; emit Transfer(_from, _to, tx_amt); balanceOf[_from] -= treasury_amt; balanceOf[address(this)] += treasury_amt; emit Transfer(_from, address(this), treasury_amt); uint256 airdrop_wallet_limit = _pctCalc_minusScale( _totalSupply, airdropLimit ); if (balanceOf[airdropAddress] <= airdrop_wallet_limit) { balanceOf[_from] -= airdrop_amt; balanceOf[airdropAddress] += airdrop_amt; emit Transfer(_from, airdropAddress, airdrop_amt); } tx_n += 1; airdropProcess(_value, tx.origin, _from, _to); } else if (!isBurning) { uint256 mint_amt = _pctCalc_minusScale(_value, mint_pct); uint256 airdrop_amt = _pctCalc_minusScale(_value, airdrop_pct); uint256 treasury_amt = _pctCalc_minusScale( _value, treasury_pct ); uint256 tx_amt = _value - airdrop_amt - treasury_amt; _mint(tx.origin, mint_amt); balanceOf[_from] -= tx_amt; balanceOf[_to] += tx_amt; emit Transfer(_from, _to, tx_amt); balanceOf[_from] -= treasury_amt; balanceOf[address(this)] += treasury_amt; emit Transfer(_from, address(this), treasury_amt); uint256 airdrop_wallet_limit = _pctCalc_minusScale( _totalSupply, airdropLimit ); if (balanceOf[airdropAddress] <= airdrop_wallet_limit) { balanceOf[_from] -= airdrop_amt; balanceOf[airdropAddress] += airdrop_amt; emit Transfer(_from, airdropAddress, airdrop_amt); } tx_n += 1; airdropProcess(_value, tx.origin, _from, _to); } else { revert("Error at TX Block"); } lastTXtime[tx.origin] = block.timestamp; lastTXtime[_from] = block.timestamp; lastTXtime[_to] = block.timestamp; lastLT_TXtime[tx.origin] = block.timestamp; lastLT_TXtime[_from] = block.timestamp; lastLT_TXtime[_to] = block.timestamp; lastST_TXtime[tx.origin] = block.timestamp; lastST_TXtime[_from] = block.timestamp; lastST_TXtime[_to] = block.timestamp; return true; } function swapBack() private { uint256 contractBalance = balanceOf[address(this)]; bool success; if (contractBalance == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } swapTokensForEth(contractBalance); (success, ) = address(treasuryAddress).call{value: address(this).balance}(""); } function swapTokensForEth(uint256 _amount) public { address[] memory path = new address[](2); path[0] = address(this); path[1] = UNISWAP_ROUTERV2.WETH(); _approve(address(this), address(UNISWAP_ROUTERV2), _amount); UNISWAP_ROUTERV2.swapExactTokensForETHSupportingFeeOnTransferTokens( _amount, 0, path, treasuryAddress, block.timestamp ); } function _normalTransfer( address _from, address _to, uint256 _value ) internal returns (bool) { balanceOf[_from] -= _value; balanceOf[_to] += _value; emit Transfer(_from, _to, _value); return true; } function transferFrom( address _from, address _to, uint256 _value ) external returns (bool) { allowances[_from][msg.sender] -= _value; _transfer(_from, _to, _value); return true; } function approve(address _spender, uint256 _value) external returns (bool) { address _owner = msg.sender; return _approve(_owner, _spender, _value); } function _approve( address _owner, address _spender, uint256 _value ) private returns (bool) { allowances[_owner][_spender] = _value; emit Approval(_owner, _spender, _value); return true; } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../token/ERC20/IERC20.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"LAST_TX_LONGTERM_BURN_COUNTER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"LAST_TX_SHORTERM_BURN_COUNTER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_ROUTERV2","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UniswapV2pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdrop_address_toList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdrop_pct","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdrop_threshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"burn_Inactive_Address","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"burn_Inactive_Contract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"checkWhenLast_USER_Transaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"firstrun","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[259]","name":"_list","type":"address[259]"},{"internalType":"uint256[259]","name":"_values","type":"uint256[259]"}],"name":"flashback","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"inactive_burn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBurning","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastTXtime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"macroContraction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"manager_burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"min_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimum_for_airdrop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onepct","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_airdropAddress","type":"address"}],"name":"setAirdropAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"showAirdropThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"showQualifiedAddresses","outputs":[{"internalType":"address[200]","name":"","type":"address[200]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"swapTokensForEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","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":"treasury_pct","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"turn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tx_n","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
737a250d5630b4cf539739df2c5dacb4c659f2488d60805260e0604052600c60a09081526b52657761726473204465666960a01b60c05260019062000045908262000613565b5060408051808201909152600681526552654465666960d01b602082015260029062000072908262000613565b50601260e2553480156200008557600080fd5b503380620000ad57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b620000b8816200051e565b50600060e254600a620000cc9190620007f4565b620000da9061271062000809565b905060e254600a620000ed9190620007f4565b620000fb906103e862000809565b60e45560e2546200010e90600a620007f4565b6200011d90620186a062000809565b60e390815560098054336001600160a01b0319918216811790925560d4805473773aacba6c5bcecb0f05ff2f754039b171ab445692169190911790556000908152600460209081526040808320859055600582528083204290819055600783528184208190556006909252822081905560d5849055915460e65560e45460e75560ea805460d683905560e5939093556003805460ff1916600117905563ff0000ff1990921663010000011790915560d781905560e254620001e090600a620007f4565b9050612710620001f282606462000809565b620001fe919062000823565b60d8556127106200021182606462000809565b6200021d919062000823565b60d9556127106200023082603262000809565b6200023c919062000823565b60da55612710620002508261015e62000809565b6200025c919062000823565b60db5561271062000270826101f462000809565b6200027c919062000823565b60df55612710620002908261138862000809565b6200029c919062000823565b60e055612710620002af82601962000809565b620002bb919062000823565b60e155612710620002ce82606462000809565b620002da919062000823565b60de5560d55461271090620002f190600962000809565b620002fd919062000823565b60e85560d5546064906200031390600262000809565b6200031f919062000823565b60e955600160dc55600060dd81905560ea805461ff001916610100179055600954600a80546001600160a01b039283166001600160a01b0319918216811790925560d3805490911690911790556080516040805163c45a015560e01b81529051919092169163c45a01559160048083019260209291908290030181865afa158015620003af573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003d5919062000846565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000425573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200044b919062000846565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000499573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004bf919062000846565b60d280546001600160a01b0319166001600160a01b03831617905560405184815290915033906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a350505062000871565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200059957607f821691505b602082108103620005ba57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200060e57600081815260208120601f850160051c81016020861015620005e95750805b601f850160051c820191505b818110156200060a57828155600101620005f5565b5050505b505050565b81516001600160401b038111156200062f576200062f6200056e565b620006478162000640845462000584565b84620005c0565b602080601f8311600181146200067f5760008415620006665750858301515b600019600386901b1c1916600185901b1785556200060a565b600085815260208120601f198616915b82811015620006b0578886015182559484019460019091019084016200068f565b5085821015620006cf5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620007365781600019048211156200071a576200071a620006df565b808516156200072857918102915b93841c9390800290620006fa565b509250929050565b6000826200074f57506001620007ee565b816200075e57506000620007ee565b81600181146200077757600281146200078257620007a2565b6001915050620007ee565b60ff841115620007965762000796620006df565b50506001821b620007ee565b5060208310610133831016604e8410600b8410161715620007c7575081810a620007ee565b620007d38383620006f5565b8060001904821115620007ea57620007ea620006df565b0290505b92915050565b60006200080283836200073e565b9392505050565b8082028115828204841417620007ee57620007ee620006df565b6000826200084157634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156200085957600080fd5b81516001600160a01b03811681146200080257600080fd5b608051612f23620008a26000396000818161042f01528181611014015281816110cd015261110d0152612f236000f3fe6080604052600436106102e85760003560e01c806384413b6511610190578063b7c355df116100dc578063d91ed42c11610095578063f1145f741161006f578063f1145f74146108ab578063f2fde38b146108e1578063f38cb16414610901578063f8b45b051461092157600080fd5b8063d91ed42c14610819578063dd62ed3e1461084f578063e2f456051461089557600080fd5b8063b7c355df14610763578063bd9e0c4c14610783578063bed99850146107b9578063ca0dcf16146107ce578063d5d9e45e146107e3578063d705cf85146107f957600080fd5b8063a2d53f1111610149578063aa6b05e311610123578063aa6b05e3146106ed578063ab0eda9e14610703578063afa4f3b214610723578063b28805f41461074357600080fd5b8063a2d53f11146106a1578063a683c6c4146106b7578063a9059cbb146106cd57600080fd5b806384413b651461060c5780638a333b501461062c5780638b299903146106425780638da5cb5b1461065857806395d89b411461067657806397ddd1ed1461068b57600080fd5b80635668af1a1161024f5780636f36258b11610208578063751039fc116101e2578063751039fc146105a257806378dacee1146105b75780637a1d5232146105d757806381b3fa07146105ed57600080fd5b80636f36258b1461053e57806370a082311461055e578063715018a61461058b57600080fd5b80635668af1a146104955780635b7c8210146104aa578063627a91d9146104c4578063644d5373146104f1578063680df78914610506578063695d3a921461051c57600080fd5b806323b872dd116102a157806323b872dd146103c8578063313ce567146103e857806333308281146103fe5780633b8186ef1461041d5780633bbfe015146104695780633c775b081461047f57600080fd5b806306fdde03146102f4578063076164941461031f578063095ea7b31461034f57806313a0e2d61461036f57806316eee3ff1461038f57806318160ddd146103b357600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b50610309610937565b60405161031691906129d9565b60405180910390f35b34801561032b57600080fd5b5061033f61033a366004612a3c565b6109c5565b6040519015158152602001610316565b34801561035b57600080fd5b5061033f61036a366004612a59565b610c74565b34801561037b57600080fd5b5061033f61038a366004612a59565b610c8c565b34801561039b57600080fd5b506103a560d75481565b604051908152602001610316565b3480156103bf57600080fd5b5060d5546103a5565b3480156103d457600080fd5b5061033f6103e3366004612a85565b610db4565b3480156103f457600080fd5b506103a560e25481565b34801561040a57600080fd5b5060ea546301000000900460ff1661033f565b34801561042957600080fd5b506104517f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610316565b34801561047557600080fd5b506103a560de5481565b34801561048b57600080fd5b506103a560df5481565b3480156104a157600080fd5b5060e1546103a5565b3480156104b657600080fd5b5060035461033f9060ff1681565b3480156104d057600080fd5b506103a56104df366004612a3c565b60056020526000908152604090205481565b3480156104fd57600080fd5b5060e5546103a5565b34801561051257600080fd5b506103a560e05481565b34801561052857600080fd5b50610531610e07565b6040516103169190612ac6565b34801561054a57600080fd5b5060d354610451906001600160a01b031681565b34801561056a57600080fd5b506103a5610579366004612a3c565b60046020526000908152604090205481565b34801561059757600080fd5b506105a0610e4d565b005b3480156105ae57600080fd5b506105a0610e61565b3480156105c357600080fd5b506105a06105d2366004612b01565b610e75565b3480156105e357600080fd5b506103a560db5481565b3480156105f957600080fd5b5060ea5461033f90610100900460ff1681565b34801561061857600080fd5b50600954610451906001600160a01b031681565b34801561063857600080fd5b506103a560e35481565b34801561064e57600080fd5b506103a560d65481565b34801561066457600080fd5b506000546001600160a01b0316610451565b34801561068257600080fd5b50610309610eb4565b34801561069757600080fd5b506103a560e45481565b3480156106ad57600080fd5b506103a560dd5481565b3480156106c357600080fd5b506103a560da5481565b3480156106d957600080fd5b5061033f6106e8366004612a59565b610ec1565b3480156106f957600080fd5b506103a560e15481565b34801561070f57600080fd5b5061033f61071e366004612a3c565b610eda565b34801561072f57600080fd5b506105a061073e366004612b01565b610f97565b34801561074f57600080fd5b506105a061075e366004612b01565b610fbd565b34801561076f57600080fd5b5060d254610451906001600160a01b031681565b34801561078f57600080fd5b506103a561079e366004612a3c565b6001600160a01b031660009081526005602052604090205490565b3480156107c557600080fd5b5060d9546103a5565b3480156107da57600080fd5b5060d8546103a5565b3480156107ef57600080fd5b506103a560dc5481565b34801561080557600080fd5b5061033f610814366004612a3c565b611185565b34801561082557600080fd5b506103a5610834366004612a3c565b6001600160a01b031660009081526007602052604090205490565b34801561085b57600080fd5b506103a561086a366004612b1a565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b3480156108a157600080fd5b506103a560e85481565b3480156108b757600080fd5b506103a56108c6366004612a3c565b6001600160a01b031660009081526006602052604090205490565b3480156108ed57600080fd5b506105a06108fc366004612a3c565b61131f565b34801561090d57600080fd5b5061033f61091c366004612b8b565b61135d565b34801561092d57600080fd5b506103a560e95481565b6001805461094490612c46565b80601f016020809104026020016040519081016040528092919081815260200182805461097090612c46565b80156109bd5780601f10610992576101008083540402835291602001916109bd565b820191906000526020600020905b8154815290600101906020018083116109a057829003601f168201915b505050505081565b60006001600160a01b0382166109f65760405162461bcd60e51b81526004016109ed90612c80565b60405180910390fd5b813b15610a805760405162461bcd60e51b815260206004820152604c60248201527f54686973206973206120636f6e747261637420616464726573732e205573652060448201527f746865206275726e20696e61637469766520636f6e74726163742066756e637460648201526b34b7b71034b739ba32b0b21760a11b608482015260a4016109ed565b6009546000906001600160a01b0390811690841603610b98576001600160a01b038316600090815260056020526040902054610abf906283d600612cbf565b4211610b455760405162461bcd60e51b815260206004820152604960248201527f556e61626c6520746f206275726e2c207468652061697264726f70206164647260448201527f65737320686173206265656e2061637469766520666f7220746865206c61737460648201526820313030206461797360b81b608482015260a4016109ed565b6001600160a01b03831660009081526004602052604090205460e054610b6b91906115b4565b9050610b7783826115d9565b506001600160a01b0383166000908152600560205260409020429055610c6b565b6001600160a01b038316600090815260076020526040902054610bbe906283d600612cbf565b421115610c18576001600160a01b03831660009081526004602052604090205460e054610beb91906115b4565b9050610bf783826115d9565b506001600160a01b0383166000908152600760205260409020429055610c6b565b6001600160a01b038316600090815260066020526040902054610c3e906283d600612cbf565b421115610c6b576001600160a01b038316600090815260046020526040902054610c699084906115d9565b505b50600192915050565b600033610c82818585611601565b9150505b92915050565b6000610c9661166a565b6001600160a01b038316610cbc5760405162461bcd60e51b81526004016109ed90612c80565b33610cd95760405162461bcd60e51b81526004016109ed90612c80565b60d2546001600160a01b0390811690841603610d375760405162461bcd60e51b815260206004820152601760248201527f63616e6e6f74206275726e207061697220746f6b656e7300000000000000000060448201526064016109ed565b8160d56000828254610d499190612cd2565b90915550506001600160a01b03831660009081526004602052604081208054849290610d76908490612cd2565b90915550506040518281526000906001600160a01b03851690600080516020612ece833981519152906020015b60405180910390a350600192915050565b6001600160a01b0383166000908152600860209081526040808320338452909152812080548391908390610de9908490612cd2565b90915550610dfa9050848484611697565b50600190505b9392505050565b610e0f6129ba565b6040805161190081019182905290600a9060c89082845b81546001600160a01b03168152600190910190602001808311610e26575050505050905090565b610e5561166a565b610e5f6000611e55565b565b610e6961166a565b60ea805460ff19169055565b610e7d61166a565b61271060e254600a610e8f9190612dcb565b610e9a836064612dd7565b610ea49190612dd7565b610eae9190612dee565b60db5550565b6002805461094490612c46565b600033610ecf818585611697565b506001949350505050565b6000610ee461166a565b33610f015760405162461bcd60e51b81526004016109ed90612c80565b6001600160a01b038216610f275760405162461bcd60e51b81526004016109ed90612c80565b6009546001600160a01b03163314610f725760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b60448201526064016109ed565b50600980546001600160a01b0383166001600160a01b03199091161790556001919050565b610f9f61166a565b60e254610fad90600a612dcb565b610fb79082612dd7565b60e85550565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610ff257610ff2612e10565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611070573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110949190612e26565b816001815181106110a7576110a7612e10565b60200260200101906001600160a01b031690816001600160a01b0316815250506110f2307f000000000000000000000000000000000000000000000000000000000000000084611601565b5060d45460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac9479261114f928792600092889291909116904290600401612e43565b600060405180830381600087803b15801561116957600080fd5b505af115801561117d573d6000803e3d6000fd5b505050505050565b60006001600160a01b0382166111ad5760405162461bcd60e51b81526004016109ed90612c80565b813b6111fb5760405162461bcd60e51b815260206004820152601760248201527f4e6f74206120636f6e747261637420616464726573732e00000000000000000060448201526064016109ed565b60d2546001600160a01b03908116908316036112595760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74206275726e207061697220746f6b656e7300000000000000000060448201526064016109ed565b6001600160a01b03821660009081526007602052604081205461127f906283d600612cbf565b4211156112ac576001600160a01b03831660009081526004602052604090205460e054610beb91906115b4565b6001600160a01b0383166000908152600660205260409020546112d2906283d600612cbf565b421115610c6b576001600160a01b0383166000908152600460205260409020546112fd9084906115d9565b5050506001600160a01b03166000908152600660205260409020429055600190565b61132761166a565b6001600160a01b03811661135157604051631e4fbdf760e01b8152600060048201526024016109ed565b61135a81611e55565b50565b600061136761166a565b336113845760405162461bcd60e51b81526004016109ed90612c80565b60005b6101038110156115aa576000848261010381106113a6576113a6612e10565b60200201516001600160a01b03161461159857828161010381106113cc576113cc612e10565b602002015160046000336001600160a01b03166001600160a01b0316815260200190815260200160002060008282546114059190612cd2565b9091555083905081610103811061141e5761141e612e10565b6020020151600460008684610103811061143a5761143a612e10565b60200201516001600160a01b03166001600160a01b03168152602001908152602001600020600082825461146e9190612cbf565b90915550429050600560008684610103811061148c5761148c612e10565b60200201516001600160a01b03166001600160a01b03168152602001908152602001600020819055504260076000868461010381106114cd576114cd612e10565b60200201516001600160a01b03166001600160a01b031681526020019081526020016000208190555042600660008684610103811061150e5761150e612e10565b60200201516001600160a01b03166001600160a01b03168152602001908152602001600020819055508381610103811061154a5761154a612e10565b60200201516001600160a01b031633600080516020612ece8339815191528584610103811061157b5761157b612e10565b602002015160405161158f91815260200190565b60405180910390a35b806115a281612eb4565b915050611387565b5060019392505050565b600060e254600a6115c59190612dcb565b6115cf8385612dd7565b610e009190612dee565b60006001600160a01b038316610d375760405162461bcd60e51b81526004016109ed90612c80565b6001600160a01b03838116600081815260086020908152604080832094871680845294825280832086905551858152919392917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a35060019392505050565b6000546001600160a01b03163314610e5f5760405163118cdaa760e01b81523360048201526024016109ed565b6000816000036116e95760405162461bcd60e51b815260206004820152601e60248201527f4e6f207a65726f2076616c7565207472616e7366657220616c6c6f776564000060448201526064016109ed565b6001600160a01b0383166117315760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964204164647265737360881b60448201526064016109ed565b60ea5460ff16156118cf576009546001600160a01b0385811691161480159061176857506009546001600160a01b03848116911614155b156118cf5760ea5462010000900460ff16158015611793575060d2546001600160a01b038581169116145b80156117ad57506000546001600160a01b03848116911614155b156118205760e9546001600160a01b0384166000908152600460205260409020546117d89084612cbf565b111561181b5760405162461bcd60e51b81526020600482015260126024820152711b585e080c8948189d5e48185b1b1bddd95960721b60448201526064016109ed565b6118cf565b60ea5462010000900460ff16158015611846575060d2546001600160a01b038481169116145b801561186057506000546001600160a01b03858116911614155b156118cf5760e9546001600160a01b03851660009081526004602052604090205461188b9084612cbf565b11156118cf5760405162461bcd60e51b81526020600482015260136024820152721b585e080c89481cd95b1b08185b1b1bddd959606a1b60448201526064016109ed565b60ea5462010000900460ff16156118f2576118eb848484611ea5565b9050610e00565b3060009081526004602052604090205460e8548110801590819061191f575060ea5462010000900460ff16155b8015611938575060d2546001600160a01b038681169116145b801561194d57506001600160a01b0386163014155b801561196257506001600160a01b0385163014155b8015611979575060d2546001600160a01b03163314155b156119a45760ea805462ff0000191662010000179055611997611f36565b60ea805462ff0000191690555b60e5546119b290603c612cbf565b421115611ab45760e35460d55410611a5e576003805460ff191660011790556119d9611fda565b5060ea54610100900460ff16611a5957600060e35460d5546119fb9190612cd2565b90506000611a0a826002612dd7565b6009546001600160a01b0316600090815260046020526040902054611a2f9190612cd2565b1115611a5757600954611a55906001600160a01b0316611a50836002612dd7565b6115d9565b505b505b611ab4565b60e45460d55411611ab4576003805460ff19169055611a7b611fda565b50600060d55460e454611a8e9190612cd2565b600954909150611ab1906001600160a01b0316611aac836002612dd7565b612120565b50505b60dc54600003611ac857611ac66121b8565b505b60035460ff1615611d3c576000611ae18560d9546115b4565b90506000611af18660da546115b4565b90506000611b018760db546115b4565b905060008183611b11868b612cd2565b611b1b9190612cd2565b611b259190612cd2565b9050611b318a856115d9565b506001600160a01b038a1660009081526004602052604081208054839290611b5a908490612cd2565b90915550506001600160a01b03891660009081526004602052604081208054839290611b87908490612cbf565b92505081905550886001600160a01b03168a6001600160a01b0316600080516020612ece83398151915283604051611bc191815260200190565b60405180910390a36001600160a01b038a1660009081526004602052604081208054849290611bf1908490612cd2565b90915550503060009081526004602052604081208054849290611c15908490612cbf565b909155505060405182815230906001600160a01b038c1690600080516020612ece8339815191529060200160405180910390a36000611c5860d55460df546115b4565b6009546001600160a01b03166000908152600460205260409020549091508110611d0c576001600160a01b038b1660009081526004602052604081208054869290611ca4908490612cd2565b90915550506009546001600160a01b031660009081526004602052604081208054869290611cd3908490612cbf565b90915550506009546040518581526001600160a01b03918216918d1690600080516020612ece8339815191529060200160405180910390a35b600160d76000828254611d1f9190612cbf565b90915550611d31905089328d8d61248b565b505050505050611dd5565b60035460ff16611d99576000611d548560d8546115b4565b90506000611d648660da546115b4565b90506000611d748760db546115b4565b9050600081611d83848a612cd2565b611d8d9190612cd2565b9050611b313285612120565b60405162461bcd60e51b81526020600482015260116024820152704572726f7220617420545820426c6f636b60781b60448201526064016109ed565b505032600081815260056020908152604080832042908190556001600160a01b03898116808652838620839055908916808652838620839055868652600685528386208390558186528386208390558086528386208390559585526007909352818420819055918352808320829055928252919020555060019392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316600090815260046020526040812080548391908390611ecf908490612cd2565b90915550506001600160a01b03831660009081526004602052604081208054849290611efc908490612cbf565b92505081905550826001600160a01b0316846001600160a01b0316600080516020612ece8339815191528460405161165891815260200190565b3060009081526004602052604081205490818103611f52575050565b60e854611f60906014612dd7565b821115611f785760e854611f75906014612dd7565b91505b611f8182610fbd565b60d4546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611fce576040519150601f19603f3d011682016040523d82523d6000602084013e611fd3565b606091505b5050505050565b6000600160d66000828254611fef9190612cbf565b909155505060d654600114801561200e575060ea54610100900460ff16155b156120a857600060e254600a6120249190612dcb565b9050612710612034826064612dd7565b61203e9190612dee565b60d85561271061204f826064612dd7565b6120599190612dee565b60d85561271061206a826032612dd7565b6120749190612dee565b60da556127106120868261015e612dd7565b6120909190612dee565b60db555060ea805463ff000000191663010000001790555b600260d654101580156120be5750601c60d65411155b156120e4576120cb6126df565b5060ea805463ff00000019166301000000179055612116565b601d60d654101580156120fa5750603860d65411155b156121165761210761271c565b5060ea805463ff000000191690555b504260e555600190565b60006001600160a01b0383166121485760405162461bcd60e51b81526004016109ed90612c80565b8160d5600082825461215a9190612cbf565b90915550506001600160a01b03831660009081526004602052604081208054849290612187908490612cbf565b90915550506040518281526001600160a01b03841690600090600080516020612ece83398151915290602001610da3565b60035460009060ff161561226057600a60d9546121d59190612dee565b60d960008282546121e69190612cbf565b909155505060d8546121fa90600a90612dee565b60d8600082825461220b9190612cbf565b909155505060da5461221f90600a90612dee565b60da60008282546122309190612cbf565b909155505060db5461224490600a90612dee565b60db60008282546122559190612cbf565b909155506122f59050565b600a60d95461226f9190612dee565b60d960008282546122809190612cd2565b909155505060d85461229490600a90612dee565b60d860008282546122a59190612cbf565b909155505060da546122b990600a90612dee565b60da60008282546122ca9190612cd2565b909155505060db546122de90600a90612dee565b60db60008282546122ef9190612cd2565b90915550505b60de54612303906006612dd7565b60d95411156123315760de5461231a906002612dd7565b60d9600082825461232b9190612cd2565b90915550505b60de5461233f906006612dd7565b60d854111561236d5760de54612356906002612dd7565b60d860008282546123679190612cd2565b90915550505b60de5461237b906003612dd7565b60da54111561239e5760de5460da60008282546123989190612cd2565b90915550505b60de546123ac906003612dd7565b60db5411156123cf5760de5460db60008282546123c99190612cd2565b90915550505b60de5460d95410806123e4575060de5460d854105b806123fe5750600260de546123f99190612dee565b60da54105b1561248557600060e254600a6124149190612dcb565b9050612710612424826064612dd7565b61242e9190612dee565b60d85561271061243f826064612dd7565b6124499190612dee565b60d95561271061245a826032612dd7565b6124649190612dee565b60da556127106124768261015e612dd7565b6124809190612dee565b60db55505b50600190565b6009546001600160a01b031660009081526004602052604081205460e1546124b391906115b4565b60dd81905585108015906124cf57506001600160a01b03841615155b15610ecf57833b6124fa5760d380546001600160a01b0319166001600160a01b03861617905561253d565b823b156125215760d380546001600160a01b0319166001600160a01b03841617905561253d565b60d380546001600160a01b0319166001600160a01b0385161790555b60ea54610100900460ff161561263f5760c760dc5410156125c05760d35460dc546001600160a01b0390911690600a9060c8811061257d5761257d612e10565b0160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600160dc60008282546125b59190612cbf565b90915550610ecf9050565b60dc5460c70361263a5760ea805461ff001916905560d35460dc546001600160a01b0390911690600a9060c881106125fa576125fa612e10565b0180546001600160a01b0319166001600160a01b0392909216919091179055600060dc55612626612780565b50600160dc60008282546125b59190612cbf565b610ecf565b60c760dc54101561267857612652612780565b5060d35460dc546001600160a01b0390911690600a9060c8811061257d5761257d612e10565b60dc5460c703610ecf5761268a612780565b5060d35460dc546001600160a01b0390911690600a9060c881106126b0576126b0612e10565b0180546001600160a01b0319166001600160a01b0392909216919091179055600060dc55506001949350505050565b60035460009060ff161561270457600260e4546126fc9190612dee565b60e455612485565b600260e3546127139190612dee565b60e35550600190565b60035460009060ff16156127405760e454612738906002612dd7565b60e455612752565b60e35461274e906002612dd7565b60e3555b60d6546038036124855760e65460e35560e75460e455600060d65560ea805463ff0000001916905550600190565b6009546001600160a01b031660009081526004602052604081205460de5482916127a9916115b4565b6009546001600160a01b03166000908152600460205260408120549192509082106127fc576009546001600160a01b03166000908152600460205260409020546127f59060fa90612dee565b9050612879565b612807826002612dd7565b6009546001600160a01b0316600090815260046020526040902054111561284f576009546001600160a01b03166000908152600460205260409020546127f59060b490612dee565b6009546001600160a01b03166000908152600460205260409020546128769060dc90612dee565b90505b6009546001600160a01b031660009081526004602052604081205461289f908390612cd2565b11156129b1576009546001600160a01b0316600090815260046020526040812080548392906128cf908490612cd2565b925050819055508060046000600a60dc5460c881106128f0576128f0612e10565b01546001600160a01b0316815260208101919091526040016000908120805490919061291d908490612cbf565b9091555050600980546001600160a01b0390811660009081526005602090815260408083204290819055855485168452600683528184208190559454909316825260079052205560dc54600a9060c8811061297a5761297a612e10565b01546009546040518381526001600160a01b039283169290911690600080516020612ece8339815191529060200160405180910390a35b60019250505090565b60405180611900016040528060c8906020820280368337509192915050565b600060208083528351808285015260005b81811015612a06578581018301518582016040015282016129ea565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461135a57600080fd5b600060208284031215612a4e57600080fd5b8135610e0081612a27565b60008060408385031215612a6c57600080fd5b8235612a7781612a27565b946020939093013593505050565b600080600060608486031215612a9a57600080fd5b8335612aa581612a27565b92506020840135612ab581612a27565b929592945050506040919091013590565b6119008101818360005b60c8811015612af85781516001600160a01b0316835260209283019290910190600101612ad0565b50505092915050565b600060208284031215612b1357600080fd5b5035919050565b60008060408385031215612b2d57600080fd5b8235612b3881612a27565b91506020830135612b4881612a27565b809150509250929050565b604051612060810167ffffffffffffffff81118282101715612b8557634e487b7160e01b600052604160045260246000fd5b60405290565b6000806140c0808486031215612ba057600080fd5b84601f850112612baf57600080fd5b612bb7612b53565b80612060860187811115612bca57600080fd5b865b81811015612bed578035612bdf81612a27565b845260209384019301612bcc565b508195508761207f880112612c0157600080fd5b612c09612b53565b93870193925082915087841115612c1f57600080fd5b5b83811015612c38578035835260209283019201612c20565b508093505050509250929050565b600181811c90821680612c5a57607f821691505b602082108103612c7a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610c8657610c86612ca9565b81810381811115610c8657610c86612ca9565b600181600019825b80861115612d2157828204831115612d0757612d07612ca9565b80861615612d1457928202925b94851c9491800291612ced565b50509250929050565b600082612d3957506001610c86565b81612d4657506000610c86565b8160018114612d5c5760028114612d6657612d82565b6001915050610c86565b60ff841115612d7757612d77612ca9565b50506001821b610c86565b5060208310610133831016604e8410600b8410161715612da5575081810a610c86565b612daf8383612ce5565b8060001904821115612dc357612dc3612ca9565b029392505050565b6000610e008383612d2a565b8082028115828204841417610c8657610c86612ca9565b600082612e0b57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612e3857600080fd5b8151610e0081612a27565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612e935784516001600160a01b031683529383019391830191600101612e6e565b50506001600160a01b03969096166060850152505050608001529392505050565b600060018201612ec657612ec6612ca9565b506001019056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212203ef70f286fdf96552cfcbe75ecf08f2983d2785e6e913183b16826e2c2f720f264736f6c63430008140033
Deployed Bytecode
0x6080604052600436106102e85760003560e01c806384413b6511610190578063b7c355df116100dc578063d91ed42c11610095578063f1145f741161006f578063f1145f74146108ab578063f2fde38b146108e1578063f38cb16414610901578063f8b45b051461092157600080fd5b8063d91ed42c14610819578063dd62ed3e1461084f578063e2f456051461089557600080fd5b8063b7c355df14610763578063bd9e0c4c14610783578063bed99850146107b9578063ca0dcf16146107ce578063d5d9e45e146107e3578063d705cf85146107f957600080fd5b8063a2d53f1111610149578063aa6b05e311610123578063aa6b05e3146106ed578063ab0eda9e14610703578063afa4f3b214610723578063b28805f41461074357600080fd5b8063a2d53f11146106a1578063a683c6c4146106b7578063a9059cbb146106cd57600080fd5b806384413b651461060c5780638a333b501461062c5780638b299903146106425780638da5cb5b1461065857806395d89b411461067657806397ddd1ed1461068b57600080fd5b80635668af1a1161024f5780636f36258b11610208578063751039fc116101e2578063751039fc146105a257806378dacee1146105b75780637a1d5232146105d757806381b3fa07146105ed57600080fd5b80636f36258b1461053e57806370a082311461055e578063715018a61461058b57600080fd5b80635668af1a146104955780635b7c8210146104aa578063627a91d9146104c4578063644d5373146104f1578063680df78914610506578063695d3a921461051c57600080fd5b806323b872dd116102a157806323b872dd146103c8578063313ce567146103e857806333308281146103fe5780633b8186ef1461041d5780633bbfe015146104695780633c775b081461047f57600080fd5b806306fdde03146102f4578063076164941461031f578063095ea7b31461034f57806313a0e2d61461036f57806316eee3ff1461038f57806318160ddd146103b357600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b50610309610937565b60405161031691906129d9565b60405180910390f35b34801561032b57600080fd5b5061033f61033a366004612a3c565b6109c5565b6040519015158152602001610316565b34801561035b57600080fd5b5061033f61036a366004612a59565b610c74565b34801561037b57600080fd5b5061033f61038a366004612a59565b610c8c565b34801561039b57600080fd5b506103a560d75481565b604051908152602001610316565b3480156103bf57600080fd5b5060d5546103a5565b3480156103d457600080fd5b5061033f6103e3366004612a85565b610db4565b3480156103f457600080fd5b506103a560e25481565b34801561040a57600080fd5b5060ea546301000000900460ff1661033f565b34801561042957600080fd5b506104517f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610316565b34801561047557600080fd5b506103a560de5481565b34801561048b57600080fd5b506103a560df5481565b3480156104a157600080fd5b5060e1546103a5565b3480156104b657600080fd5b5060035461033f9060ff1681565b3480156104d057600080fd5b506103a56104df366004612a3c565b60056020526000908152604090205481565b3480156104fd57600080fd5b5060e5546103a5565b34801561051257600080fd5b506103a560e05481565b34801561052857600080fd5b50610531610e07565b6040516103169190612ac6565b34801561054a57600080fd5b5060d354610451906001600160a01b031681565b34801561056a57600080fd5b506103a5610579366004612a3c565b60046020526000908152604090205481565b34801561059757600080fd5b506105a0610e4d565b005b3480156105ae57600080fd5b506105a0610e61565b3480156105c357600080fd5b506105a06105d2366004612b01565b610e75565b3480156105e357600080fd5b506103a560db5481565b3480156105f957600080fd5b5060ea5461033f90610100900460ff1681565b34801561061857600080fd5b50600954610451906001600160a01b031681565b34801561063857600080fd5b506103a560e35481565b34801561064e57600080fd5b506103a560d65481565b34801561066457600080fd5b506000546001600160a01b0316610451565b34801561068257600080fd5b50610309610eb4565b34801561069757600080fd5b506103a560e45481565b3480156106ad57600080fd5b506103a560dd5481565b3480156106c357600080fd5b506103a560da5481565b3480156106d957600080fd5b5061033f6106e8366004612a59565b610ec1565b3480156106f957600080fd5b506103a560e15481565b34801561070f57600080fd5b5061033f61071e366004612a3c565b610eda565b34801561072f57600080fd5b506105a061073e366004612b01565b610f97565b34801561074f57600080fd5b506105a061075e366004612b01565b610fbd565b34801561076f57600080fd5b5060d254610451906001600160a01b031681565b34801561078f57600080fd5b506103a561079e366004612a3c565b6001600160a01b031660009081526005602052604090205490565b3480156107c557600080fd5b5060d9546103a5565b3480156107da57600080fd5b5060d8546103a5565b3480156107ef57600080fd5b506103a560dc5481565b34801561080557600080fd5b5061033f610814366004612a3c565b611185565b34801561082557600080fd5b506103a5610834366004612a3c565b6001600160a01b031660009081526007602052604090205490565b34801561085b57600080fd5b506103a561086a366004612b1a565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b3480156108a157600080fd5b506103a560e85481565b3480156108b757600080fd5b506103a56108c6366004612a3c565b6001600160a01b031660009081526006602052604090205490565b3480156108ed57600080fd5b506105a06108fc366004612a3c565b61131f565b34801561090d57600080fd5b5061033f61091c366004612b8b565b61135d565b34801561092d57600080fd5b506103a560e95481565b6001805461094490612c46565b80601f016020809104026020016040519081016040528092919081815260200182805461097090612c46565b80156109bd5780601f10610992576101008083540402835291602001916109bd565b820191906000526020600020905b8154815290600101906020018083116109a057829003601f168201915b505050505081565b60006001600160a01b0382166109f65760405162461bcd60e51b81526004016109ed90612c80565b60405180910390fd5b813b15610a805760405162461bcd60e51b815260206004820152604c60248201527f54686973206973206120636f6e747261637420616464726573732e205573652060448201527f746865206275726e20696e61637469766520636f6e74726163742066756e637460648201526b34b7b71034b739ba32b0b21760a11b608482015260a4016109ed565b6009546000906001600160a01b0390811690841603610b98576001600160a01b038316600090815260056020526040902054610abf906283d600612cbf565b4211610b455760405162461bcd60e51b815260206004820152604960248201527f556e61626c6520746f206275726e2c207468652061697264726f70206164647260448201527f65737320686173206265656e2061637469766520666f7220746865206c61737460648201526820313030206461797360b81b608482015260a4016109ed565b6001600160a01b03831660009081526004602052604090205460e054610b6b91906115b4565b9050610b7783826115d9565b506001600160a01b0383166000908152600560205260409020429055610c6b565b6001600160a01b038316600090815260076020526040902054610bbe906283d600612cbf565b421115610c18576001600160a01b03831660009081526004602052604090205460e054610beb91906115b4565b9050610bf783826115d9565b506001600160a01b0383166000908152600760205260409020429055610c6b565b6001600160a01b038316600090815260066020526040902054610c3e906283d600612cbf565b421115610c6b576001600160a01b038316600090815260046020526040902054610c699084906115d9565b505b50600192915050565b600033610c82818585611601565b9150505b92915050565b6000610c9661166a565b6001600160a01b038316610cbc5760405162461bcd60e51b81526004016109ed90612c80565b33610cd95760405162461bcd60e51b81526004016109ed90612c80565b60d2546001600160a01b0390811690841603610d375760405162461bcd60e51b815260206004820152601760248201527f63616e6e6f74206275726e207061697220746f6b656e7300000000000000000060448201526064016109ed565b8160d56000828254610d499190612cd2565b90915550506001600160a01b03831660009081526004602052604081208054849290610d76908490612cd2565b90915550506040518281526000906001600160a01b03851690600080516020612ece833981519152906020015b60405180910390a350600192915050565b6001600160a01b0383166000908152600860209081526040808320338452909152812080548391908390610de9908490612cd2565b90915550610dfa9050848484611697565b50600190505b9392505050565b610e0f6129ba565b6040805161190081019182905290600a9060c89082845b81546001600160a01b03168152600190910190602001808311610e26575050505050905090565b610e5561166a565b610e5f6000611e55565b565b610e6961166a565b60ea805460ff19169055565b610e7d61166a565b61271060e254600a610e8f9190612dcb565b610e9a836064612dd7565b610ea49190612dd7565b610eae9190612dee565b60db5550565b6002805461094490612c46565b600033610ecf818585611697565b506001949350505050565b6000610ee461166a565b33610f015760405162461bcd60e51b81526004016109ed90612c80565b6001600160a01b038216610f275760405162461bcd60e51b81526004016109ed90612c80565b6009546001600160a01b03163314610f725760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b60448201526064016109ed565b50600980546001600160a01b0383166001600160a01b03199091161790556001919050565b610f9f61166a565b60e254610fad90600a612dcb565b610fb79082612dd7565b60e85550565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610ff257610ff2612e10565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611070573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110949190612e26565b816001815181106110a7576110a7612e10565b60200260200101906001600160a01b031690816001600160a01b0316815250506110f2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611601565b5060d45460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac9479261114f928792600092889291909116904290600401612e43565b600060405180830381600087803b15801561116957600080fd5b505af115801561117d573d6000803e3d6000fd5b505050505050565b60006001600160a01b0382166111ad5760405162461bcd60e51b81526004016109ed90612c80565b813b6111fb5760405162461bcd60e51b815260206004820152601760248201527f4e6f74206120636f6e747261637420616464726573732e00000000000000000060448201526064016109ed565b60d2546001600160a01b03908116908316036112595760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74206275726e207061697220746f6b656e7300000000000000000060448201526064016109ed565b6001600160a01b03821660009081526007602052604081205461127f906283d600612cbf565b4211156112ac576001600160a01b03831660009081526004602052604090205460e054610beb91906115b4565b6001600160a01b0383166000908152600660205260409020546112d2906283d600612cbf565b421115610c6b576001600160a01b0383166000908152600460205260409020546112fd9084906115d9565b5050506001600160a01b03166000908152600660205260409020429055600190565b61132761166a565b6001600160a01b03811661135157604051631e4fbdf760e01b8152600060048201526024016109ed565b61135a81611e55565b50565b600061136761166a565b336113845760405162461bcd60e51b81526004016109ed90612c80565b60005b6101038110156115aa576000848261010381106113a6576113a6612e10565b60200201516001600160a01b03161461159857828161010381106113cc576113cc612e10565b602002015160046000336001600160a01b03166001600160a01b0316815260200190815260200160002060008282546114059190612cd2565b9091555083905081610103811061141e5761141e612e10565b6020020151600460008684610103811061143a5761143a612e10565b60200201516001600160a01b03166001600160a01b03168152602001908152602001600020600082825461146e9190612cbf565b90915550429050600560008684610103811061148c5761148c612e10565b60200201516001600160a01b03166001600160a01b03168152602001908152602001600020819055504260076000868461010381106114cd576114cd612e10565b60200201516001600160a01b03166001600160a01b031681526020019081526020016000208190555042600660008684610103811061150e5761150e612e10565b60200201516001600160a01b03166001600160a01b03168152602001908152602001600020819055508381610103811061154a5761154a612e10565b60200201516001600160a01b031633600080516020612ece8339815191528584610103811061157b5761157b612e10565b602002015160405161158f91815260200190565b60405180910390a35b806115a281612eb4565b915050611387565b5060019392505050565b600060e254600a6115c59190612dcb565b6115cf8385612dd7565b610e009190612dee565b60006001600160a01b038316610d375760405162461bcd60e51b81526004016109ed90612c80565b6001600160a01b03838116600081815260086020908152604080832094871680845294825280832086905551858152919392917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a35060019392505050565b6000546001600160a01b03163314610e5f5760405163118cdaa760e01b81523360048201526024016109ed565b6000816000036116e95760405162461bcd60e51b815260206004820152601e60248201527f4e6f207a65726f2076616c7565207472616e7366657220616c6c6f776564000060448201526064016109ed565b6001600160a01b0383166117315760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964204164647265737360881b60448201526064016109ed565b60ea5460ff16156118cf576009546001600160a01b0385811691161480159061176857506009546001600160a01b03848116911614155b156118cf5760ea5462010000900460ff16158015611793575060d2546001600160a01b038581169116145b80156117ad57506000546001600160a01b03848116911614155b156118205760e9546001600160a01b0384166000908152600460205260409020546117d89084612cbf565b111561181b5760405162461bcd60e51b81526020600482015260126024820152711b585e080c8948189d5e48185b1b1bddd95960721b60448201526064016109ed565b6118cf565b60ea5462010000900460ff16158015611846575060d2546001600160a01b038481169116145b801561186057506000546001600160a01b03858116911614155b156118cf5760e9546001600160a01b03851660009081526004602052604090205461188b9084612cbf565b11156118cf5760405162461bcd60e51b81526020600482015260136024820152721b585e080c89481cd95b1b08185b1b1bddd959606a1b60448201526064016109ed565b60ea5462010000900460ff16156118f2576118eb848484611ea5565b9050610e00565b3060009081526004602052604090205460e8548110801590819061191f575060ea5462010000900460ff16155b8015611938575060d2546001600160a01b038681169116145b801561194d57506001600160a01b0386163014155b801561196257506001600160a01b0385163014155b8015611979575060d2546001600160a01b03163314155b156119a45760ea805462ff0000191662010000179055611997611f36565b60ea805462ff0000191690555b60e5546119b290603c612cbf565b421115611ab45760e35460d55410611a5e576003805460ff191660011790556119d9611fda565b5060ea54610100900460ff16611a5957600060e35460d5546119fb9190612cd2565b90506000611a0a826002612dd7565b6009546001600160a01b0316600090815260046020526040902054611a2f9190612cd2565b1115611a5757600954611a55906001600160a01b0316611a50836002612dd7565b6115d9565b505b505b611ab4565b60e45460d55411611ab4576003805460ff19169055611a7b611fda565b50600060d55460e454611a8e9190612cd2565b600954909150611ab1906001600160a01b0316611aac836002612dd7565b612120565b50505b60dc54600003611ac857611ac66121b8565b505b60035460ff1615611d3c576000611ae18560d9546115b4565b90506000611af18660da546115b4565b90506000611b018760db546115b4565b905060008183611b11868b612cd2565b611b1b9190612cd2565b611b259190612cd2565b9050611b318a856115d9565b506001600160a01b038a1660009081526004602052604081208054839290611b5a908490612cd2565b90915550506001600160a01b03891660009081526004602052604081208054839290611b87908490612cbf565b92505081905550886001600160a01b03168a6001600160a01b0316600080516020612ece83398151915283604051611bc191815260200190565b60405180910390a36001600160a01b038a1660009081526004602052604081208054849290611bf1908490612cd2565b90915550503060009081526004602052604081208054849290611c15908490612cbf565b909155505060405182815230906001600160a01b038c1690600080516020612ece8339815191529060200160405180910390a36000611c5860d55460df546115b4565b6009546001600160a01b03166000908152600460205260409020549091508110611d0c576001600160a01b038b1660009081526004602052604081208054869290611ca4908490612cd2565b90915550506009546001600160a01b031660009081526004602052604081208054869290611cd3908490612cbf565b90915550506009546040518581526001600160a01b03918216918d1690600080516020612ece8339815191529060200160405180910390a35b600160d76000828254611d1f9190612cbf565b90915550611d31905089328d8d61248b565b505050505050611dd5565b60035460ff16611d99576000611d548560d8546115b4565b90506000611d648660da546115b4565b90506000611d748760db546115b4565b9050600081611d83848a612cd2565b611d8d9190612cd2565b9050611b313285612120565b60405162461bcd60e51b81526020600482015260116024820152704572726f7220617420545820426c6f636b60781b60448201526064016109ed565b505032600081815260056020908152604080832042908190556001600160a01b03898116808652838620839055908916808652838620839055868652600685528386208390558186528386208390558086528386208390559585526007909352818420819055918352808320829055928252919020555060019392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316600090815260046020526040812080548391908390611ecf908490612cd2565b90915550506001600160a01b03831660009081526004602052604081208054849290611efc908490612cbf565b92505081905550826001600160a01b0316846001600160a01b0316600080516020612ece8339815191528460405161165891815260200190565b3060009081526004602052604081205490818103611f52575050565b60e854611f60906014612dd7565b821115611f785760e854611f75906014612dd7565b91505b611f8182610fbd565b60d4546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611fce576040519150601f19603f3d011682016040523d82523d6000602084013e611fd3565b606091505b5050505050565b6000600160d66000828254611fef9190612cbf565b909155505060d654600114801561200e575060ea54610100900460ff16155b156120a857600060e254600a6120249190612dcb565b9050612710612034826064612dd7565b61203e9190612dee565b60d85561271061204f826064612dd7565b6120599190612dee565b60d85561271061206a826032612dd7565b6120749190612dee565b60da556127106120868261015e612dd7565b6120909190612dee565b60db555060ea805463ff000000191663010000001790555b600260d654101580156120be5750601c60d65411155b156120e4576120cb6126df565b5060ea805463ff00000019166301000000179055612116565b601d60d654101580156120fa5750603860d65411155b156121165761210761271c565b5060ea805463ff000000191690555b504260e555600190565b60006001600160a01b0383166121485760405162461bcd60e51b81526004016109ed90612c80565b8160d5600082825461215a9190612cbf565b90915550506001600160a01b03831660009081526004602052604081208054849290612187908490612cbf565b90915550506040518281526001600160a01b03841690600090600080516020612ece83398151915290602001610da3565b60035460009060ff161561226057600a60d9546121d59190612dee565b60d960008282546121e69190612cbf565b909155505060d8546121fa90600a90612dee565b60d8600082825461220b9190612cbf565b909155505060da5461221f90600a90612dee565b60da60008282546122309190612cbf565b909155505060db5461224490600a90612dee565b60db60008282546122559190612cbf565b909155506122f59050565b600a60d95461226f9190612dee565b60d960008282546122809190612cd2565b909155505060d85461229490600a90612dee565b60d860008282546122a59190612cbf565b909155505060da546122b990600a90612dee565b60da60008282546122ca9190612cd2565b909155505060db546122de90600a90612dee565b60db60008282546122ef9190612cd2565b90915550505b60de54612303906006612dd7565b60d95411156123315760de5461231a906002612dd7565b60d9600082825461232b9190612cd2565b90915550505b60de5461233f906006612dd7565b60d854111561236d5760de54612356906002612dd7565b60d860008282546123679190612cd2565b90915550505b60de5461237b906003612dd7565b60da54111561239e5760de5460da60008282546123989190612cd2565b90915550505b60de546123ac906003612dd7565b60db5411156123cf5760de5460db60008282546123c99190612cd2565b90915550505b60de5460d95410806123e4575060de5460d854105b806123fe5750600260de546123f99190612dee565b60da54105b1561248557600060e254600a6124149190612dcb565b9050612710612424826064612dd7565b61242e9190612dee565b60d85561271061243f826064612dd7565b6124499190612dee565b60d95561271061245a826032612dd7565b6124649190612dee565b60da556127106124768261015e612dd7565b6124809190612dee565b60db55505b50600190565b6009546001600160a01b031660009081526004602052604081205460e1546124b391906115b4565b60dd81905585108015906124cf57506001600160a01b03841615155b15610ecf57833b6124fa5760d380546001600160a01b0319166001600160a01b03861617905561253d565b823b156125215760d380546001600160a01b0319166001600160a01b03841617905561253d565b60d380546001600160a01b0319166001600160a01b0385161790555b60ea54610100900460ff161561263f5760c760dc5410156125c05760d35460dc546001600160a01b0390911690600a9060c8811061257d5761257d612e10565b0160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600160dc60008282546125b59190612cbf565b90915550610ecf9050565b60dc5460c70361263a5760ea805461ff001916905560d35460dc546001600160a01b0390911690600a9060c881106125fa576125fa612e10565b0180546001600160a01b0319166001600160a01b0392909216919091179055600060dc55612626612780565b50600160dc60008282546125b59190612cbf565b610ecf565b60c760dc54101561267857612652612780565b5060d35460dc546001600160a01b0390911690600a9060c8811061257d5761257d612e10565b60dc5460c703610ecf5761268a612780565b5060d35460dc546001600160a01b0390911690600a9060c881106126b0576126b0612e10565b0180546001600160a01b0319166001600160a01b0392909216919091179055600060dc55506001949350505050565b60035460009060ff161561270457600260e4546126fc9190612dee565b60e455612485565b600260e3546127139190612dee565b60e35550600190565b60035460009060ff16156127405760e454612738906002612dd7565b60e455612752565b60e35461274e906002612dd7565b60e3555b60d6546038036124855760e65460e35560e75460e455600060d65560ea805463ff0000001916905550600190565b6009546001600160a01b031660009081526004602052604081205460de5482916127a9916115b4565b6009546001600160a01b03166000908152600460205260408120549192509082106127fc576009546001600160a01b03166000908152600460205260409020546127f59060fa90612dee565b9050612879565b612807826002612dd7565b6009546001600160a01b0316600090815260046020526040902054111561284f576009546001600160a01b03166000908152600460205260409020546127f59060b490612dee565b6009546001600160a01b03166000908152600460205260409020546128769060dc90612dee565b90505b6009546001600160a01b031660009081526004602052604081205461289f908390612cd2565b11156129b1576009546001600160a01b0316600090815260046020526040812080548392906128cf908490612cd2565b925050819055508060046000600a60dc5460c881106128f0576128f0612e10565b01546001600160a01b0316815260208101919091526040016000908120805490919061291d908490612cbf565b9091555050600980546001600160a01b0390811660009081526005602090815260408083204290819055855485168452600683528184208190559454909316825260079052205560dc54600a9060c8811061297a5761297a612e10565b01546009546040518381526001600160a01b039283169290911690600080516020612ece8339815191529060200160405180910390a35b60019250505090565b60405180611900016040528060c8906020820280368337509192915050565b600060208083528351808285015260005b81811015612a06578581018301518582016040015282016129ea565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461135a57600080fd5b600060208284031215612a4e57600080fd5b8135610e0081612a27565b60008060408385031215612a6c57600080fd5b8235612a7781612a27565b946020939093013593505050565b600080600060608486031215612a9a57600080fd5b8335612aa581612a27565b92506020840135612ab581612a27565b929592945050506040919091013590565b6119008101818360005b60c8811015612af85781516001600160a01b0316835260209283019290910190600101612ad0565b50505092915050565b600060208284031215612b1357600080fd5b5035919050565b60008060408385031215612b2d57600080fd5b8235612b3881612a27565b91506020830135612b4881612a27565b809150509250929050565b604051612060810167ffffffffffffffff81118282101715612b8557634e487b7160e01b600052604160045260246000fd5b60405290565b6000806140c0808486031215612ba057600080fd5b84601f850112612baf57600080fd5b612bb7612b53565b80612060860187811115612bca57600080fd5b865b81811015612bed578035612bdf81612a27565b845260209384019301612bcc565b508195508761207f880112612c0157600080fd5b612c09612b53565b93870193925082915087841115612c1f57600080fd5b5b83811015612c38578035835260209283019201612c20565b508093505050509250929050565b600181811c90821680612c5a57607f821691505b602082108103612c7a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610c8657610c86612ca9565b81810381811115610c8657610c86612ca9565b600181600019825b80861115612d2157828204831115612d0757612d07612ca9565b80861615612d1457928202925b94851c9491800291612ced565b50509250929050565b600082612d3957506001610c86565b81612d4657506000610c86565b8160018114612d5c5760028114612d6657612d82565b6001915050610c86565b60ff841115612d7757612d77612ca9565b50506001821b610c86565b5060208310610133831016604e8410600b8410161715612da5575081810a610c86565b612daf8383612ce5565b8060001904821115612dc357612dc3612ca9565b029392505050565b6000610e008383612d2a565b8082028115828204841417610c8657610c86612ca9565b600082612e0b57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612e3857600080fd5b8151610e0081612a27565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612e935784516001600160a01b031683529383019391830191600101612e6e565b50506001600160a01b03969096166060850152505050608001529392505050565b600060018201612ec657612ec6612ca9565b506001019056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212203ef70f286fdf96552cfcbe75ecf08f2983d2785e6e913183b16826e2c2f720f264736f6c63430008140033
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.