ETH Price: $2,307.10 (-0.49%)

Token

Algo Based Currency (ABC)
 

Overview

Max Total Supply

61,126.87479564 ABC

Holders

194

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xf529c0f5...a79Bc74F4
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
ABC

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 5 : AlgoBasedCurrency.sol
/**
 *Submitted for verification at Etherscan.io on 2024-08-16
 */

/*
    TG: https://t.me/AlgoErc
    X: https://x.com/AlgoErc
    Web: https://abcurrency.xyz/
*/

// 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 ABC is IERC20, Ownable {

    IUniswapV2Router02 public immutable UNISWAP_ROUTER = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
    string public name = "Algo Based Currency";
    string public symbol = "ABC";
    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 eligibleAirdropRecipients;
    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 addressCountForAirdrop;
    uint256 public minimum_for_airdrop;
    uint256 public onepct;
    uint256 public airdropThreshold;
    uint256 public inactive_burn;
    uint256 public airdrop_threshold;
    uint256 public decimals = 9;
    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 isLimitActive;
    bool public firstrun;
    bool private swapping;
    bool private macro_contraction;

    constructor() Ownable(msg.sender) {
        uint256 init_supply = 66666 * 10**decimals;
        min_supply = 6666 * 10**decimals;
        max_supply = 99999 * 10**decimals;

        airdropAddress = msg.sender;
        treasuryAddress = 0xbB3293AB6445fAE2598f5840A343b7AfAC61166c;
        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;
        isLimitActive = true;
        tx_n = 0;
        uint256 deciCalc = 10**decimals;

        // 0.5% burning, minting
        mint_pct = (50 * deciCalc) / 10000;
        burn_pct = (50 * deciCalc) / 10000;      
        airdrop_pct = (100 * deciCalc) / 10000;   // 1% for airdrops
        treasury_pct = (350 * deciCalc) / 10000; // 3.5% fee
        airdropThreshold = (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;

        addressCountForAirdrop = 1;
        minimum_for_airdrop = 0;
        firstrun = true;
        eligibleAirdropRecipients[0] = airdropAddress;
        airdrop_address_toList = airdropAddress;

        address _pair = IUniswapV2Factory(UNISWAP_ROUTER.factory()).createPair(
            address(this),
            UNISWAP_ROUTER.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 eligibleAirdropRecipients;
    }

    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 = (50 * deciCalc) / 10000;
            burn_pct = (50 * deciCalc) / 10000;
            airdrop_pct = (100 * 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[eligibleAirdropRecipients[addressCountForAirdrop]] += split;
            lastTXtime[airdropAddress] = block.timestamp;
            lastLT_TXtime[airdropAddress] = block.timestamp;
            lastST_TXtime[airdropAddress] = block.timestamp;
            emit Transfer(
                airdropAddress,
                eligibleAirdropRecipients[addressCountForAirdrop],
                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 = (50 * deciCalc) / 10000;
            mint_pct = (50 * deciCalc) / 10000;
            airdrop_pct = (100 * 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] + 259200,
                "Unable to burn, the airdrop address has been active for the last 7 days"
            );
            inactive_bal = _pctCalc_minusScale(
                balanceOf[_address],
                inactive_burn
            );
            _burn(_address, inactive_bal);
            lastTXtime[_address] = block.timestamp;
        } else {
            if (block.timestamp > lastST_TXtime[_address] + 259200) {
                inactive_bal = _pctCalc_minusScale(
                    balanceOf[_address],
                    inactive_burn
                );
                _burn(_address, inactive_bal);
                lastST_TXtime[_address] = block.timestamp;
            } else if (block.timestamp > lastLT_TXtime[_address] + 518400) {
                _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 != UniswapV2pair, "Cannot burn from LP address");
        require(
            _address != address(UNISWAP_ROUTER),
            "Cannot burn from Router address"
        );
        uint256 inactive_bal = 0;

        if (block.timestamp > lastST_TXtime[_address] + 259200) {
            inactive_bal = _pctCalc_minusScale(
                balanceOf[_address],
                inactive_burn
            );
            _burn(_address, inactive_bal);
            lastST_TXtime[_address] = block.timestamp;
        } else if (block.timestamp > lastLT_TXtime[_address] + 518400) {
            _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 (addressCountForAirdrop < 199) {
                    eligibleAirdropRecipients[
                        addressCountForAirdrop
                    ] = airdrop_address_toList;
                    addressCountForAirdrop += 1;
                } else if (addressCountForAirdrop == 199) {
                    firstrun = false;
                    eligibleAirdropRecipients[
                        addressCountForAirdrop
                    ] = airdrop_address_toList;
                    addressCountForAirdrop = 0;
                    _airdrop();
                    addressCountForAirdrop += 1;
                }
            } else {
                if (addressCountForAirdrop < 199) {
                    _airdrop();
                    eligibleAirdropRecipients[
                        addressCountForAirdrop
                    ] = airdrop_address_toList;
                    addressCountForAirdrop += 1;
                } else if (addressCountForAirdrop == 199) {
                    _airdrop();
                    eligibleAirdropRecipients[
                        addressCountForAirdrop
                    ] = airdrop_address_toList;
                    addressCountForAirdrop = 0;
                }
            }
        }
        return true;
    }

    function removeLimits() external onlyOwner {
        isLimitActive = 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 (isLimitActive) {
        if (_from != airdropAddress && _to != airdropAddress) {
            if (!swapping && _from == UniswapV2pair && _to != owner()) {
                require(
                    _value + balanceOf[_to] <= maxWallet,
                    "max 2% buy 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 (addressCountForAirdrop == 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,
                    airdropThreshold
                );
                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,
                    airdropThreshold
                );
                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_ROUTER.WETH();
        _approve(address(this), address(UNISWAP_ROUTER), _amount);
        UNISWAP_ROUTER.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 {}
}

File 2 of 5 : Ownable.sol
// 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);
    }
}

File 3 of 5 : IERC20.sol
// 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";

File 4 of 5 : 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);
}

File 5 of 5 : Context.sol
// 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;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"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_ROUTER","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":"addressCountForAirdrop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropThreshold","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"}]

737a250d5630b4cf539739df2c5dacb4c659f2488d60805260e0604052601360a09081527f416c676f2042617365642043757272656e63790000000000000000000000000060c05260019062000056908262000622565b5060408051808201909152600381526241424360e81b602082015260029062000080908262000622565b50600960e2553480156200009357600080fd5b503380620000bb57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b620000c6816200052d565b50600060e254600a620000da919062000803565b620000e9906201046a62000818565b905060e254600a620000fc919062000803565b6200010a90611a0a62000818565b60e45560e2546200011d90600a62000803565b6200012c906201869f62000818565b60e390815560098054336001600160a01b0319918216811790925560d4805473bb3293ab6445fae2598f5840a343b7afac61166c92169190911790556000908152600460209081526040808320859055600582528083204290819055600783528184208190556006909252822081905560d5849055915460e65560e45460e75560ea805460d683905560e5939093556003805460ff1916600117905563ff0000ff1990921663010000011790915560d781905560e254620001ef90600a62000803565b90506127106200020182603262000818565b6200020d919062000832565b60d8556127106200022082603262000818565b6200022c919062000832565b60d9556127106200023f82606462000818565b6200024b919062000832565b60da556127106200025f8261015e62000818565b6200026b919062000832565b60db556127106200027f826101f462000818565b6200028b919062000832565b60df556127106200029f8261138862000818565b620002ab919062000832565b60e055612710620002be82601962000818565b620002ca919062000832565b60e155612710620002dd82606462000818565b620002e9919062000832565b60de5560d554612710906200030090600962000818565b6200030c919062000832565b60e85560d5546064906200032290600262000818565b6200032e919062000832565b60e955600160dc55600060dd81905560ea805461ff001916610100179055600954600a80546001600160a01b039283166001600160a01b0319918216811790925560d3805490911690911790556080516040805163c45a015560e01b81529051919092169163c45a01559160048083019260209291908290030181865afa158015620003be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003e4919062000855565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000434573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200045a919062000855565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620004a8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004ce919062000855565b60d280546001600160a01b0319166001600160a01b03831617905560405184815290915033906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a350505062000880565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005a857607f821691505b602082108103620005c957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200061d57600081815260208120601f850160051c81016020861015620005f85750805b601f850160051c820191505b81811015620006195782815560010162000604565b5050505b505050565b81516001600160401b038111156200063e576200063e6200057d565b62000656816200064f845462000593565b84620005cf565b602080601f8311600181146200068e5760008415620006755750858301515b600019600386901b1c1916600185901b17855562000619565b600085815260208120601f198616915b82811015620006bf578886015182559484019460019091019084016200069e565b5085821015620006de5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000745578160001904821115620007295762000729620006ee565b808516156200073757918102915b93841c939080029062000709565b509250929050565b6000826200075e57506001620007fd565b816200076d57506000620007fd565b81600181146200078657600281146200079157620007b1565b6001915050620007fd565b60ff841115620007a557620007a5620006ee565b50506001821b620007fd565b5060208310610133831016604e8410600b8410161715620007d6575081810a620007fd565b620007e2838362000704565b8060001904821115620007f957620007f9620006ee565b0290505b92915050565b60006200081183836200074d565b9392505050565b8082028115828204841417620007fd57620007fd620006ee565b6000826200085057634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156200086857600080fd5b81516001600160a01b03811681146200081157600080fd5b608051612eee620008b8600039600081816107cb01528181611012015281816110cb0152818161110b01526112590152612eee6000f3fe6080604052600436106102e85760003560e01c80638b29990311610190578063bed99850116100dc578063e2f4560511610095578063f2fde38b1161006f578063f2fde38b146108cb578063f38cb164146108eb578063f7c5df9a1461090b578063f8b45b051461092157600080fd5b8063e2f4560514610869578063e90386b51461087f578063f1145f741461089557600080fd5b8063bed998501461076f578063ca0dcf1614610784578063d705cf8514610799578063d8264920146107b9578063d91ed42c146107ed578063dd62ed3e1461082357600080fd5b8063a9059cbb11610149578063afa4f3b211610123578063afa4f3b2146106d9578063b28805f4146106f9578063b7c355df14610719578063bd9e0c4c1461073957600080fd5b8063a9059cbb14610683578063aa6b05e3146106a3578063ab0eda9e146106b957600080fd5b80638b299903146105f85780638da5cb5b1461060e57806395d89b411461062c57806397ddd1ed14610641578063a2d53f1114610657578063a683c6c41461066d57600080fd5b8063627a91d91161024f578063715018a6116102085780637a1d5232116101e25780637a1d52321461058d57806381b3fa07146105a357806384413b65146105c25780638a333b50146105e257600080fd5b8063715018a614610541578063751039fc1461055857806378dacee11461056d57600080fd5b8063627a91d914610462578063644d53731461048f578063680df789146104a4578063695d3a92146104ba5780636f36258b146104dc57806370a082311461051457600080fd5b806323b872dd116102a157806323b872dd146103c8578063313ce567146103e857806333308281146103fe5780633bbfe0151461041d5780635668af1a146104335780635b7c82101461044857600080fd5b806306fdde03146102f4578063076164941461031f578063095ea7b31461034f57806313a0e2d61461036f57806316eee3ff1461038f57806318160ddd146103b357600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b50610309610937565b60405161031691906129a4565b60405180910390f35b34801561032b57600080fd5b5061033f61033a366004612a07565b6109c5565b6040519015158152602001610316565b34801561035b57600080fd5b5061033f61036a366004612a24565b610c72565b34801561037b57600080fd5b5061033f61038a366004612a24565b610c8a565b34801561039b57600080fd5b506103a560d75481565b604051908152602001610316565b3480156103bf57600080fd5b5060d5546103a5565b3480156103d457600080fd5b5061033f6103e3366004612a50565b610db2565b3480156103f457600080fd5b506103a560e25481565b34801561040a57600080fd5b5060ea546301000000900460ff1661033f565b34801561042957600080fd5b506103a560de5481565b34801561043f57600080fd5b5060e1546103a5565b34801561045457600080fd5b5060035461033f9060ff1681565b34801561046e57600080fd5b506103a561047d366004612a07565b60056020526000908152604090205481565b34801561049b57600080fd5b5060e5546103a5565b3480156104b057600080fd5b506103a560e05481565b3480156104c657600080fd5b506104cf610e05565b6040516103169190612a91565b3480156104e857600080fd5b5060d3546104fc906001600160a01b031681565b6040516001600160a01b039091168152602001610316565b34801561052057600080fd5b506103a561052f366004612a07565b60046020526000908152604090205481565b34801561054d57600080fd5b50610556610e4b565b005b34801561056457600080fd5b50610556610e5f565b34801561057957600080fd5b50610556610588366004612acc565b610e73565b34801561059957600080fd5b506103a560db5481565b3480156105af57600080fd5b5060ea5461033f90610100900460ff1681565b3480156105ce57600080fd5b506009546104fc906001600160a01b031681565b3480156105ee57600080fd5b506103a560e35481565b34801561060457600080fd5b506103a560d65481565b34801561061a57600080fd5b506000546001600160a01b03166104fc565b34801561063857600080fd5b50610309610eb2565b34801561064d57600080fd5b506103a560e45481565b34801561066357600080fd5b506103a560dd5481565b34801561067957600080fd5b506103a560da5481565b34801561068f57600080fd5b5061033f61069e366004612a24565b610ebf565b3480156106af57600080fd5b506103a560e15481565b3480156106c557600080fd5b5061033f6106d4366004612a07565b610ed8565b3480156106e557600080fd5b506105566106f4366004612acc565b610f95565b34801561070557600080fd5b50610556610714366004612acc565b610fbb565b34801561072557600080fd5b5060d2546104fc906001600160a01b031681565b34801561074557600080fd5b506103a5610754366004612a07565b6001600160a01b031660009081526005602052604090205490565b34801561077b57600080fd5b5060d9546103a5565b34801561079057600080fd5b5060d8546103a5565b3480156107a557600080fd5b5061033f6107b4366004612a07565b611183565b3480156107c557600080fd5b506104fc7f000000000000000000000000000000000000000000000000000000000000000081565b3480156107f957600080fd5b506103a5610808366004612a07565b6001600160a01b031660009081526007602052604090205490565b34801561082f57600080fd5b506103a561083e366004612ae5565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b34801561087557600080fd5b506103a560e85481565b34801561088b57600080fd5b506103a560df5481565b3480156108a157600080fd5b506103a56108b0366004612a07565b6001600160a01b031660009081526006602052604090205490565b3480156108d757600080fd5b506105566108e6366004612a07565b61139e565b3480156108f757600080fd5b5061033f610906366004612b56565b6113dc565b34801561091757600080fd5b506103a560dc5481565b34801561092d57600080fd5b506103a560e95481565b6001805461094490612c11565b80601f016020809104026020016040519081016040528092919081815260200182805461097090612c11565b80156109bd5780601f10610992576101008083540402835291602001916109bd565b820191906000526020600020905b8154815290600101906020018083116109a057829003601f168201915b505050505081565b60006001600160a01b0382166109f65760405162461bcd60e51b81526004016109ed90612c4b565b60405180910390fd5b813b15610a805760405162461bcd60e51b815260206004820152604c60248201527f54686973206973206120636f6e747261637420616464726573732e205573652060448201527f746865206275726e20696e61637469766520636f6e74726163742066756e637460648201526b34b7b71034b739ba32b0b21760a11b608482015260a4016109ed565b6009546000906001600160a01b0390811690841603610b96576001600160a01b038316600090815260056020526040902054610abf906203f480612c8a565b4211610b435760405162461bcd60e51b815260206004820152604760248201527f556e61626c6520746f206275726e2c207468652061697264726f70206164647260448201527f65737320686173206265656e2061637469766520666f7220746865206c6173746064820152662037206461797360c81b608482015260a4016109ed565b6001600160a01b03831660009081526004602052604090205460e054610b699190611633565b9050610b758382611658565b506001600160a01b0383166000908152600560205260409020429055610c69565b6001600160a01b038316600090815260076020526040902054610bbc906203f480612c8a565b421115610c16576001600160a01b03831660009081526004602052604090205460e054610be99190611633565b9050610bf58382611658565b506001600160a01b0383166000908152600760205260409020429055610c69565b6001600160a01b038316600090815260066020526040902054610c3c906207e900612c8a565b421115610c69576001600160a01b038316600090815260046020526040902054610c67908490611658565b505b50600192915050565b600033610c80818585611680565b9150505b92915050565b6000610c946116e9565b6001600160a01b038316610cba5760405162461bcd60e51b81526004016109ed90612c4b565b33610cd75760405162461bcd60e51b81526004016109ed90612c4b565b60d2546001600160a01b0390811690841603610d355760405162461bcd60e51b815260206004820152601760248201527f63616e6e6f74206275726e207061697220746f6b656e7300000000000000000060448201526064016109ed565b8160d56000828254610d479190612c9d565b90915550506001600160a01b03831660009081526004602052604081208054849290610d74908490612c9d565b90915550506040518281526000906001600160a01b03851690600080516020612e99833981519152906020015b60405180910390a350600192915050565b6001600160a01b0383166000908152600860209081526040808320338452909152812080548391908390610de7908490612c9d565b90915550610df89050848484611716565b50600190505b9392505050565b610e0d612985565b6040805161190081019182905290600a9060c89082845b81546001600160a01b03168152600190910190602001808311610e24575050505050905090565b610e536116e9565b610e5d6000611e20565b565b610e676116e9565b60ea805460ff19169055565b610e7b6116e9565b61271060e254600a610e8d9190612d96565b610e98836064612da2565b610ea29190612da2565b610eac9190612db9565b60db5550565b6002805461094490612c11565b600033610ecd818585611716565b506001949350505050565b6000610ee26116e9565b33610eff5760405162461bcd60e51b81526004016109ed90612c4b565b6001600160a01b038216610f255760405162461bcd60e51b81526004016109ed90612c4b565b6009546001600160a01b03163314610f705760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b60448201526064016109ed565b50600980546001600160a01b0383166001600160a01b03199091161790556001919050565b610f9d6116e9565b60e254610fab90600a612d96565b610fb59082612da2565b60e85550565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610ff057610ff0612ddb565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561106e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110929190612df1565b816001815181106110a5576110a5612ddb565b60200260200101906001600160a01b031690816001600160a01b0316815250506110f0307f000000000000000000000000000000000000000000000000000000000000000084611680565b5060d45460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac9479261114d928792600092889291909116904290600401612e0e565b600060405180830381600087803b15801561116757600080fd5b505af115801561117b573d6000803e3d6000fd5b505050505050565b60006001600160a01b0382166111ab5760405162461bcd60e51b81526004016109ed90612c4b565b813b6111f95760405162461bcd60e51b815260206004820152601760248201527f4e6f74206120636f6e747261637420616464726573732e00000000000000000060448201526064016109ed565b60d2546001600160a01b03908116908316036112575760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f74206275726e2066726f6d204c502061646472657373000000000060448201526064016109ed565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036112d85760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74206275726e2066726f6d20526f7574657220616464726573730060448201526064016109ed565b6001600160a01b0382166000908152600760205260408120546112fe906203f480612c8a565b42111561132b576001600160a01b03831660009081526004602052604090205460e054610be99190611633565b6001600160a01b038316600090815260066020526040902054611351906207e900612c8a565b421115610c69576001600160a01b03831660009081526004602052604090205461137c908490611658565b5050506001600160a01b03166000908152600660205260409020429055600190565b6113a66116e9565b6001600160a01b0381166113d057604051631e4fbdf760e01b8152600060048201526024016109ed565b6113d981611e20565b50565b60006113e66116e9565b336114035760405162461bcd60e51b81526004016109ed90612c4b565b60005b6101038110156116295760008482610103811061142557611425612ddb565b60200201516001600160a01b031614611617578281610103811061144b5761144b612ddb565b602002015160046000336001600160a01b03166001600160a01b0316815260200190815260200160002060008282546114849190612c9d565b9091555083905081610103811061149d5761149d612ddb565b602002015160046000868461010381106114b9576114b9612ddb565b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002060008282546114ed9190612c8a565b90915550429050600560008684610103811061150b5761150b612ddb565b60200201516001600160a01b03166001600160a01b031681526020019081526020016000208190555042600760008684610103811061154c5761154c612ddb565b60200201516001600160a01b03166001600160a01b031681526020019081526020016000208190555042600660008684610103811061158d5761158d612ddb565b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002081905550838161010381106115c9576115c9612ddb565b60200201516001600160a01b031633600080516020612e99833981519152858461010381106115fa576115fa612ddb565b602002015160405161160e91815260200190565b60405180910390a35b8061162181612e7f565b915050611406565b5060019392505050565b600060e254600a6116449190612d96565b61164e8385612da2565b610dfe9190612db9565b60006001600160a01b038316610d355760405162461bcd60e51b81526004016109ed90612c4b565b6001600160a01b03838116600081815260086020908152604080832094871680845294825280832086905551858152919392917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a35060019392505050565b6000546001600160a01b03163314610e5d5760405163118cdaa760e01b81523360048201526024016109ed565b6000816000036117685760405162461bcd60e51b815260206004820152601e60248201527f4e6f207a65726f2076616c7565207472616e7366657220616c6c6f776564000060448201526064016109ed565b6001600160a01b0383166117b05760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964204164647265737360881b60448201526064016109ed565b60ea5460ff161561189a576009546001600160a01b038581169116148015906117e757506009546001600160a01b03848116911614155b1561189a5760ea5462010000900460ff16158015611812575060d2546001600160a01b038581169116145b801561182c57506000546001600160a01b03848116911614155b1561189a5760e9546001600160a01b0384166000908152600460205260409020546118579084612c8a565b111561189a5760405162461bcd60e51b81526020600482015260126024820152711b585e080c8948189d5e48185b1b1bddd95960721b60448201526064016109ed565b60ea5462010000900460ff16156118bd576118b6848484611e70565b9050610dfe565b3060009081526004602052604090205460e854811080159081906118ea575060ea5462010000900460ff16155b8015611903575060d2546001600160a01b038681169116145b801561191857506001600160a01b0386163014155b801561192d57506001600160a01b0385163014155b8015611944575060d2546001600160a01b03163314155b1561196f5760ea805462ff0000191662010000179055611962611f01565b60ea805462ff0000191690555b60e55461197d90603c612c8a565b421115611a7f5760e35460d55410611a29576003805460ff191660011790556119a4611fa5565b5060ea54610100900460ff16611a2457600060e35460d5546119c69190612c9d565b905060006119d5826002612da2565b6009546001600160a01b03166000908152600460205260409020546119fa9190612c9d565b1115611a2257600954611a20906001600160a01b0316611a1b836002612da2565b611658565b505b505b611a7f565b60e45460d55411611a7f576003805460ff19169055611a46611fa5565b50600060d55460e454611a599190612c9d565b600954909150611a7c906001600160a01b0316611a77836002612da2565b6120eb565b50505b60dc54600003611a9357611a91612183565b505b60035460ff1615611d07576000611aac8560d954611633565b90506000611abc8660da54611633565b90506000611acc8760db54611633565b905060008183611adc868b612c9d565b611ae69190612c9d565b611af09190612c9d565b9050611afc8a85611658565b506001600160a01b038a1660009081526004602052604081208054839290611b25908490612c9d565b90915550506001600160a01b03891660009081526004602052604081208054839290611b52908490612c8a565b92505081905550886001600160a01b03168a6001600160a01b0316600080516020612e9983398151915283604051611b8c91815260200190565b60405180910390a36001600160a01b038a1660009081526004602052604081208054849290611bbc908490612c9d565b90915550503060009081526004602052604081208054849290611be0908490612c8a565b909155505060405182815230906001600160a01b038c1690600080516020612e998339815191529060200160405180910390a36000611c2360d55460df54611633565b6009546001600160a01b03166000908152600460205260409020549091508110611cd7576001600160a01b038b1660009081526004602052604081208054869290611c6f908490612c9d565b90915550506009546001600160a01b031660009081526004602052604081208054869290611c9e908490612c8a565b90915550506009546040518581526001600160a01b03918216918d1690600080516020612e998339815191529060200160405180910390a35b600160d76000828254611cea9190612c8a565b90915550611cfc905089328d8d612456565b505050505050611da0565b60035460ff16611d64576000611d1f8560d854611633565b90506000611d2f8660da54611633565b90506000611d3f8760db54611633565b9050600081611d4e848a612c9d565b611d589190612c9d565b9050611afc32856120eb565b60405162461bcd60e51b81526020600482015260116024820152704572726f7220617420545820426c6f636b60781b60448201526064016109ed565b505032600081815260056020908152604080832042908190556001600160a01b03898116808652838620839055908916808652838620839055868652600685528386208390558186528386208390558086528386208390559585526007909352818420819055918352808320829055928252919020555060019392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316600090815260046020526040812080548391908390611e9a908490612c9d565b90915550506001600160a01b03831660009081526004602052604081208054849290611ec7908490612c8a565b92505081905550826001600160a01b0316846001600160a01b0316600080516020612e99833981519152846040516116d791815260200190565b3060009081526004602052604081205490818103611f1d575050565b60e854611f2b906014612da2565b821115611f435760e854611f40906014612da2565b91505b611f4c82610fbb565b60d4546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611f99576040519150601f19603f3d011682016040523d82523d6000602084013e611f9e565b606091505b5050505050565b6000600160d66000828254611fba9190612c8a565b909155505060d6546001148015611fd9575060ea54610100900460ff16155b1561207357600060e254600a611fef9190612d96565b9050612710611fff826032612da2565b6120099190612db9565b60d85561271061201a826032612da2565b6120249190612db9565b60d855612710612035826064612da2565b61203f9190612db9565b60da556127106120518261015e612da2565b61205b9190612db9565b60db555060ea805463ff000000191663010000001790555b600260d654101580156120895750601c60d65411155b156120af576120966126aa565b5060ea805463ff000000191663010000001790556120e1565b601d60d654101580156120c55750603860d65411155b156120e1576120d26126e7565b5060ea805463ff000000191690555b504260e555600190565b60006001600160a01b0383166121135760405162461bcd60e51b81526004016109ed90612c4b565b8160d560008282546121259190612c8a565b90915550506001600160a01b03831660009081526004602052604081208054849290612152908490612c8a565b90915550506040518281526001600160a01b03841690600090600080516020612e9983398151915290602001610da1565b60035460009060ff161561222b57600a60d9546121a09190612db9565b60d960008282546121b19190612c8a565b909155505060d8546121c590600a90612db9565b60d860008282546121d69190612c8a565b909155505060da546121ea90600a90612db9565b60da60008282546121fb9190612c8a565b909155505060db5461220f90600a90612db9565b60db60008282546122209190612c8a565b909155506122c09050565b600a60d95461223a9190612db9565b60d9600082825461224b9190612c9d565b909155505060d85461225f90600a90612db9565b60d860008282546122709190612c8a565b909155505060da5461228490600a90612db9565b60da60008282546122959190612c9d565b909155505060db546122a990600a90612db9565b60db60008282546122ba9190612c9d565b90915550505b60de546122ce906006612da2565b60d95411156122fc5760de546122e5906002612da2565b60d960008282546122f69190612c9d565b90915550505b60de5461230a906006612da2565b60d85411156123385760de54612321906002612da2565b60d860008282546123329190612c9d565b90915550505b60de54612346906003612da2565b60da5411156123695760de5460da60008282546123639190612c9d565b90915550505b60de54612377906003612da2565b60db54111561239a5760de5460db60008282546123949190612c9d565b90915550505b60de5460d95410806123af575060de5460d854105b806123c95750600260de546123c49190612db9565b60da54105b1561245057600060e254600a6123df9190612d96565b90506127106123ef826032612da2565b6123f99190612db9565b60d85561271061240a826032612da2565b6124149190612db9565b60d955612710612425826064612da2565b61242f9190612db9565b60da556127106124418261015e612da2565b61244b9190612db9565b60db55505b50600190565b6009546001600160a01b031660009081526004602052604081205460e15461247e9190611633565b60dd819055851080159061249a57506001600160a01b03841615155b15610ecd57833b6124c55760d380546001600160a01b0319166001600160a01b038616179055612508565b823b156124ec5760d380546001600160a01b0319166001600160a01b038416179055612508565b60d380546001600160a01b0319166001600160a01b0385161790555b60ea54610100900460ff161561260a5760c760dc54101561258b5760d35460dc546001600160a01b0390911690600a9060c8811061254857612548612ddb565b0160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600160dc60008282546125809190612c8a565b90915550610ecd9050565b60dc5460c7036126055760ea805461ff001916905560d35460dc546001600160a01b0390911690600a9060c881106125c5576125c5612ddb565b0180546001600160a01b0319166001600160a01b0392909216919091179055600060dc556125f161274b565b50600160dc60008282546125809190612c8a565b610ecd565b60c760dc5410156126435761261d61274b565b5060d35460dc546001600160a01b0390911690600a9060c8811061254857612548612ddb565b60dc5460c703610ecd5761265561274b565b5060d35460dc546001600160a01b0390911690600a9060c8811061267b5761267b612ddb565b0180546001600160a01b0319166001600160a01b0392909216919091179055600060dc55506001949350505050565b60035460009060ff16156126cf57600260e4546126c79190612db9565b60e455612450565b600260e3546126de9190612db9565b60e35550600190565b60035460009060ff161561270b5760e454612703906002612da2565b60e45561271d565b60e354612719906002612da2565b60e3555b60d6546038036124505760e65460e35560e75460e455600060d65560ea805463ff0000001916905550600190565b6009546001600160a01b031660009081526004602052604081205460de54829161277491611633565b6009546001600160a01b03166000908152600460205260408120549192509082106127c7576009546001600160a01b03166000908152600460205260409020546127c09060fa90612db9565b9050612844565b6127d2826002612da2565b6009546001600160a01b0316600090815260046020526040902054111561281a576009546001600160a01b03166000908152600460205260409020546127c09060b490612db9565b6009546001600160a01b03166000908152600460205260409020546128419060dc90612db9565b90505b6009546001600160a01b031660009081526004602052604081205461286a908390612c9d565b111561297c576009546001600160a01b03166000908152600460205260408120805483929061289a908490612c9d565b925050819055508060046000600a60dc5460c881106128bb576128bb612ddb565b01546001600160a01b031681526020810191909152604001600090812080549091906128e8908490612c8a565b9091555050600980546001600160a01b0390811660009081526005602090815260408083204290819055855485168452600683528184208190559454909316825260079052205560dc54600a9060c8811061294557612945612ddb565b01546009546040518381526001600160a01b039283169290911690600080516020612e998339815191529060200160405180910390a35b60019250505090565b60405180611900016040528060c8906020820280368337509192915050565b600060208083528351808285015260005b818110156129d1578581018301518582016040015282016129b5565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113d957600080fd5b600060208284031215612a1957600080fd5b8135610dfe816129f2565b60008060408385031215612a3757600080fd5b8235612a42816129f2565b946020939093013593505050565b600080600060608486031215612a6557600080fd5b8335612a70816129f2565b92506020840135612a80816129f2565b929592945050506040919091013590565b6119008101818360005b60c8811015612ac35781516001600160a01b0316835260209283019290910190600101612a9b565b50505092915050565b600060208284031215612ade57600080fd5b5035919050565b60008060408385031215612af857600080fd5b8235612b03816129f2565b91506020830135612b13816129f2565b809150509250929050565b604051612060810167ffffffffffffffff81118282101715612b5057634e487b7160e01b600052604160045260246000fd5b60405290565b6000806140c0808486031215612b6b57600080fd5b84601f850112612b7a57600080fd5b612b82612b1e565b80612060860187811115612b9557600080fd5b865b81811015612bb8578035612baa816129f2565b845260209384019301612b97565b508195508761207f880112612bcc57600080fd5b612bd4612b1e565b93870193925082915087841115612bea57600080fd5b5b83811015612c03578035835260209283019201612beb565b508093505050509250929050565b600181811c90821680612c2557607f821691505b602082108103612c4557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610c8457610c84612c74565b81810381811115610c8457610c84612c74565b600181600019825b80861115612cec57828204831115612cd257612cd2612c74565b80861615612cdf57928202925b94851c9491800291612cb8565b50509250929050565b600082612d0457506001610c84565b81612d1157506000610c84565b8160018114612d275760028114612d3157612d4d565b6001915050610c84565b60ff841115612d4257612d42612c74565b50506001821b610c84565b5060208310610133831016604e8410600b8410161715612d70575081810a610c84565b612d7a8383612cb0565b8060001904821115612d8e57612d8e612c74565b029392505050565b6000610dfe8383612cf5565b8082028115828204841417610c8457610c84612c74565b600082612dd657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612e0357600080fd5b8151610dfe816129f2565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612e5e5784516001600160a01b031683529383019391830191600101612e39565b50506001600160a01b03969096166060850152505050608001529392505050565b600060018201612e9157612e91612c74565b506001019056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220c8024b7a7cab6592cd380a192bd3fe32c8f8eae24a3abf7ff5d61ba12e5b1f0764736f6c63430008140033

Deployed Bytecode

0x6080604052600436106102e85760003560e01c80638b29990311610190578063bed99850116100dc578063e2f4560511610095578063f2fde38b1161006f578063f2fde38b146108cb578063f38cb164146108eb578063f7c5df9a1461090b578063f8b45b051461092157600080fd5b8063e2f4560514610869578063e90386b51461087f578063f1145f741461089557600080fd5b8063bed998501461076f578063ca0dcf1614610784578063d705cf8514610799578063d8264920146107b9578063d91ed42c146107ed578063dd62ed3e1461082357600080fd5b8063a9059cbb11610149578063afa4f3b211610123578063afa4f3b2146106d9578063b28805f4146106f9578063b7c355df14610719578063bd9e0c4c1461073957600080fd5b8063a9059cbb14610683578063aa6b05e3146106a3578063ab0eda9e146106b957600080fd5b80638b299903146105f85780638da5cb5b1461060e57806395d89b411461062c57806397ddd1ed14610641578063a2d53f1114610657578063a683c6c41461066d57600080fd5b8063627a91d91161024f578063715018a6116102085780637a1d5232116101e25780637a1d52321461058d57806381b3fa07146105a357806384413b65146105c25780638a333b50146105e257600080fd5b8063715018a614610541578063751039fc1461055857806378dacee11461056d57600080fd5b8063627a91d914610462578063644d53731461048f578063680df789146104a4578063695d3a92146104ba5780636f36258b146104dc57806370a082311461051457600080fd5b806323b872dd116102a157806323b872dd146103c8578063313ce567146103e857806333308281146103fe5780633bbfe0151461041d5780635668af1a146104335780635b7c82101461044857600080fd5b806306fdde03146102f4578063076164941461031f578063095ea7b31461034f57806313a0e2d61461036f57806316eee3ff1461038f57806318160ddd146103b357600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b50610309610937565b60405161031691906129a4565b60405180910390f35b34801561032b57600080fd5b5061033f61033a366004612a07565b6109c5565b6040519015158152602001610316565b34801561035b57600080fd5b5061033f61036a366004612a24565b610c72565b34801561037b57600080fd5b5061033f61038a366004612a24565b610c8a565b34801561039b57600080fd5b506103a560d75481565b604051908152602001610316565b3480156103bf57600080fd5b5060d5546103a5565b3480156103d457600080fd5b5061033f6103e3366004612a50565b610db2565b3480156103f457600080fd5b506103a560e25481565b34801561040a57600080fd5b5060ea546301000000900460ff1661033f565b34801561042957600080fd5b506103a560de5481565b34801561043f57600080fd5b5060e1546103a5565b34801561045457600080fd5b5060035461033f9060ff1681565b34801561046e57600080fd5b506103a561047d366004612a07565b60056020526000908152604090205481565b34801561049b57600080fd5b5060e5546103a5565b3480156104b057600080fd5b506103a560e05481565b3480156104c657600080fd5b506104cf610e05565b6040516103169190612a91565b3480156104e857600080fd5b5060d3546104fc906001600160a01b031681565b6040516001600160a01b039091168152602001610316565b34801561052057600080fd5b506103a561052f366004612a07565b60046020526000908152604090205481565b34801561054d57600080fd5b50610556610e4b565b005b34801561056457600080fd5b50610556610e5f565b34801561057957600080fd5b50610556610588366004612acc565b610e73565b34801561059957600080fd5b506103a560db5481565b3480156105af57600080fd5b5060ea5461033f90610100900460ff1681565b3480156105ce57600080fd5b506009546104fc906001600160a01b031681565b3480156105ee57600080fd5b506103a560e35481565b34801561060457600080fd5b506103a560d65481565b34801561061a57600080fd5b506000546001600160a01b03166104fc565b34801561063857600080fd5b50610309610eb2565b34801561064d57600080fd5b506103a560e45481565b34801561066357600080fd5b506103a560dd5481565b34801561067957600080fd5b506103a560da5481565b34801561068f57600080fd5b5061033f61069e366004612a24565b610ebf565b3480156106af57600080fd5b506103a560e15481565b3480156106c557600080fd5b5061033f6106d4366004612a07565b610ed8565b3480156106e557600080fd5b506105566106f4366004612acc565b610f95565b34801561070557600080fd5b50610556610714366004612acc565b610fbb565b34801561072557600080fd5b5060d2546104fc906001600160a01b031681565b34801561074557600080fd5b506103a5610754366004612a07565b6001600160a01b031660009081526005602052604090205490565b34801561077b57600080fd5b5060d9546103a5565b34801561079057600080fd5b5060d8546103a5565b3480156107a557600080fd5b5061033f6107b4366004612a07565b611183565b3480156107c557600080fd5b506104fc7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156107f957600080fd5b506103a5610808366004612a07565b6001600160a01b031660009081526007602052604090205490565b34801561082f57600080fd5b506103a561083e366004612ae5565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b34801561087557600080fd5b506103a560e85481565b34801561088b57600080fd5b506103a560df5481565b3480156108a157600080fd5b506103a56108b0366004612a07565b6001600160a01b031660009081526006602052604090205490565b3480156108d757600080fd5b506105566108e6366004612a07565b61139e565b3480156108f757600080fd5b5061033f610906366004612b56565b6113dc565b34801561091757600080fd5b506103a560dc5481565b34801561092d57600080fd5b506103a560e95481565b6001805461094490612c11565b80601f016020809104026020016040519081016040528092919081815260200182805461097090612c11565b80156109bd5780601f10610992576101008083540402835291602001916109bd565b820191906000526020600020905b8154815290600101906020018083116109a057829003601f168201915b505050505081565b60006001600160a01b0382166109f65760405162461bcd60e51b81526004016109ed90612c4b565b60405180910390fd5b813b15610a805760405162461bcd60e51b815260206004820152604c60248201527f54686973206973206120636f6e747261637420616464726573732e205573652060448201527f746865206275726e20696e61637469766520636f6e74726163742066756e637460648201526b34b7b71034b739ba32b0b21760a11b608482015260a4016109ed565b6009546000906001600160a01b0390811690841603610b96576001600160a01b038316600090815260056020526040902054610abf906203f480612c8a565b4211610b435760405162461bcd60e51b815260206004820152604760248201527f556e61626c6520746f206275726e2c207468652061697264726f70206164647260448201527f65737320686173206265656e2061637469766520666f7220746865206c6173746064820152662037206461797360c81b608482015260a4016109ed565b6001600160a01b03831660009081526004602052604090205460e054610b699190611633565b9050610b758382611658565b506001600160a01b0383166000908152600560205260409020429055610c69565b6001600160a01b038316600090815260076020526040902054610bbc906203f480612c8a565b421115610c16576001600160a01b03831660009081526004602052604090205460e054610be99190611633565b9050610bf58382611658565b506001600160a01b0383166000908152600760205260409020429055610c69565b6001600160a01b038316600090815260066020526040902054610c3c906207e900612c8a565b421115610c69576001600160a01b038316600090815260046020526040902054610c67908490611658565b505b50600192915050565b600033610c80818585611680565b9150505b92915050565b6000610c946116e9565b6001600160a01b038316610cba5760405162461bcd60e51b81526004016109ed90612c4b565b33610cd75760405162461bcd60e51b81526004016109ed90612c4b565b60d2546001600160a01b0390811690841603610d355760405162461bcd60e51b815260206004820152601760248201527f63616e6e6f74206275726e207061697220746f6b656e7300000000000000000060448201526064016109ed565b8160d56000828254610d479190612c9d565b90915550506001600160a01b03831660009081526004602052604081208054849290610d74908490612c9d565b90915550506040518281526000906001600160a01b03851690600080516020612e99833981519152906020015b60405180910390a350600192915050565b6001600160a01b0383166000908152600860209081526040808320338452909152812080548391908390610de7908490612c9d565b90915550610df89050848484611716565b50600190505b9392505050565b610e0d612985565b6040805161190081019182905290600a9060c89082845b81546001600160a01b03168152600190910190602001808311610e24575050505050905090565b610e536116e9565b610e5d6000611e20565b565b610e676116e9565b60ea805460ff19169055565b610e7b6116e9565b61271060e254600a610e8d9190612d96565b610e98836064612da2565b610ea29190612da2565b610eac9190612db9565b60db5550565b6002805461094490612c11565b600033610ecd818585611716565b506001949350505050565b6000610ee26116e9565b33610eff5760405162461bcd60e51b81526004016109ed90612c4b565b6001600160a01b038216610f255760405162461bcd60e51b81526004016109ed90612c4b565b6009546001600160a01b03163314610f705760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b60448201526064016109ed565b50600980546001600160a01b0383166001600160a01b03199091161790556001919050565b610f9d6116e9565b60e254610fab90600a612d96565b610fb59082612da2565b60e85550565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610ff057610ff0612ddb565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561106e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110929190612df1565b816001815181106110a5576110a5612ddb565b60200260200101906001600160a01b031690816001600160a01b0316815250506110f0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611680565b5060d45460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac9479261114d928792600092889291909116904290600401612e0e565b600060405180830381600087803b15801561116757600080fd5b505af115801561117b573d6000803e3d6000fd5b505050505050565b60006001600160a01b0382166111ab5760405162461bcd60e51b81526004016109ed90612c4b565b813b6111f95760405162461bcd60e51b815260206004820152601760248201527f4e6f74206120636f6e747261637420616464726573732e00000000000000000060448201526064016109ed565b60d2546001600160a01b03908116908316036112575760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f74206275726e2066726f6d204c502061646472657373000000000060448201526064016109ed565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b0316036112d85760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74206275726e2066726f6d20526f7574657220616464726573730060448201526064016109ed565b6001600160a01b0382166000908152600760205260408120546112fe906203f480612c8a565b42111561132b576001600160a01b03831660009081526004602052604090205460e054610be99190611633565b6001600160a01b038316600090815260066020526040902054611351906207e900612c8a565b421115610c69576001600160a01b03831660009081526004602052604090205461137c908490611658565b5050506001600160a01b03166000908152600660205260409020429055600190565b6113a66116e9565b6001600160a01b0381166113d057604051631e4fbdf760e01b8152600060048201526024016109ed565b6113d981611e20565b50565b60006113e66116e9565b336114035760405162461bcd60e51b81526004016109ed90612c4b565b60005b6101038110156116295760008482610103811061142557611425612ddb565b60200201516001600160a01b031614611617578281610103811061144b5761144b612ddb565b602002015160046000336001600160a01b03166001600160a01b0316815260200190815260200160002060008282546114849190612c9d565b9091555083905081610103811061149d5761149d612ddb565b602002015160046000868461010381106114b9576114b9612ddb565b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002060008282546114ed9190612c8a565b90915550429050600560008684610103811061150b5761150b612ddb565b60200201516001600160a01b03166001600160a01b031681526020019081526020016000208190555042600760008684610103811061154c5761154c612ddb565b60200201516001600160a01b03166001600160a01b031681526020019081526020016000208190555042600660008684610103811061158d5761158d612ddb565b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002081905550838161010381106115c9576115c9612ddb565b60200201516001600160a01b031633600080516020612e99833981519152858461010381106115fa576115fa612ddb565b602002015160405161160e91815260200190565b60405180910390a35b8061162181612e7f565b915050611406565b5060019392505050565b600060e254600a6116449190612d96565b61164e8385612da2565b610dfe9190612db9565b60006001600160a01b038316610d355760405162461bcd60e51b81526004016109ed90612c4b565b6001600160a01b03838116600081815260086020908152604080832094871680845294825280832086905551858152919392917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a35060019392505050565b6000546001600160a01b03163314610e5d5760405163118cdaa760e01b81523360048201526024016109ed565b6000816000036117685760405162461bcd60e51b815260206004820152601e60248201527f4e6f207a65726f2076616c7565207472616e7366657220616c6c6f776564000060448201526064016109ed565b6001600160a01b0383166117b05760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964204164647265737360881b60448201526064016109ed565b60ea5460ff161561189a576009546001600160a01b038581169116148015906117e757506009546001600160a01b03848116911614155b1561189a5760ea5462010000900460ff16158015611812575060d2546001600160a01b038581169116145b801561182c57506000546001600160a01b03848116911614155b1561189a5760e9546001600160a01b0384166000908152600460205260409020546118579084612c8a565b111561189a5760405162461bcd60e51b81526020600482015260126024820152711b585e080c8948189d5e48185b1b1bddd95960721b60448201526064016109ed565b60ea5462010000900460ff16156118bd576118b6848484611e70565b9050610dfe565b3060009081526004602052604090205460e854811080159081906118ea575060ea5462010000900460ff16155b8015611903575060d2546001600160a01b038681169116145b801561191857506001600160a01b0386163014155b801561192d57506001600160a01b0385163014155b8015611944575060d2546001600160a01b03163314155b1561196f5760ea805462ff0000191662010000179055611962611f01565b60ea805462ff0000191690555b60e55461197d90603c612c8a565b421115611a7f5760e35460d55410611a29576003805460ff191660011790556119a4611fa5565b5060ea54610100900460ff16611a2457600060e35460d5546119c69190612c9d565b905060006119d5826002612da2565b6009546001600160a01b03166000908152600460205260409020546119fa9190612c9d565b1115611a2257600954611a20906001600160a01b0316611a1b836002612da2565b611658565b505b505b611a7f565b60e45460d55411611a7f576003805460ff19169055611a46611fa5565b50600060d55460e454611a599190612c9d565b600954909150611a7c906001600160a01b0316611a77836002612da2565b6120eb565b50505b60dc54600003611a9357611a91612183565b505b60035460ff1615611d07576000611aac8560d954611633565b90506000611abc8660da54611633565b90506000611acc8760db54611633565b905060008183611adc868b612c9d565b611ae69190612c9d565b611af09190612c9d565b9050611afc8a85611658565b506001600160a01b038a1660009081526004602052604081208054839290611b25908490612c9d565b90915550506001600160a01b03891660009081526004602052604081208054839290611b52908490612c8a565b92505081905550886001600160a01b03168a6001600160a01b0316600080516020612e9983398151915283604051611b8c91815260200190565b60405180910390a36001600160a01b038a1660009081526004602052604081208054849290611bbc908490612c9d565b90915550503060009081526004602052604081208054849290611be0908490612c8a565b909155505060405182815230906001600160a01b038c1690600080516020612e998339815191529060200160405180910390a36000611c2360d55460df54611633565b6009546001600160a01b03166000908152600460205260409020549091508110611cd7576001600160a01b038b1660009081526004602052604081208054869290611c6f908490612c9d565b90915550506009546001600160a01b031660009081526004602052604081208054869290611c9e908490612c8a565b90915550506009546040518581526001600160a01b03918216918d1690600080516020612e998339815191529060200160405180910390a35b600160d76000828254611cea9190612c8a565b90915550611cfc905089328d8d612456565b505050505050611da0565b60035460ff16611d64576000611d1f8560d854611633565b90506000611d2f8660da54611633565b90506000611d3f8760db54611633565b9050600081611d4e848a612c9d565b611d589190612c9d565b9050611afc32856120eb565b60405162461bcd60e51b81526020600482015260116024820152704572726f7220617420545820426c6f636b60781b60448201526064016109ed565b505032600081815260056020908152604080832042908190556001600160a01b03898116808652838620839055908916808652838620839055868652600685528386208390558186528386208390558086528386208390559585526007909352818420819055918352808320829055928252919020555060019392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316600090815260046020526040812080548391908390611e9a908490612c9d565b90915550506001600160a01b03831660009081526004602052604081208054849290611ec7908490612c8a565b92505081905550826001600160a01b0316846001600160a01b0316600080516020612e99833981519152846040516116d791815260200190565b3060009081526004602052604081205490818103611f1d575050565b60e854611f2b906014612da2565b821115611f435760e854611f40906014612da2565b91505b611f4c82610fbb565b60d4546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611f99576040519150601f19603f3d011682016040523d82523d6000602084013e611f9e565b606091505b5050505050565b6000600160d66000828254611fba9190612c8a565b909155505060d6546001148015611fd9575060ea54610100900460ff16155b1561207357600060e254600a611fef9190612d96565b9050612710611fff826032612da2565b6120099190612db9565b60d85561271061201a826032612da2565b6120249190612db9565b60d855612710612035826064612da2565b61203f9190612db9565b60da556127106120518261015e612da2565b61205b9190612db9565b60db555060ea805463ff000000191663010000001790555b600260d654101580156120895750601c60d65411155b156120af576120966126aa565b5060ea805463ff000000191663010000001790556120e1565b601d60d654101580156120c55750603860d65411155b156120e1576120d26126e7565b5060ea805463ff000000191690555b504260e555600190565b60006001600160a01b0383166121135760405162461bcd60e51b81526004016109ed90612c4b565b8160d560008282546121259190612c8a565b90915550506001600160a01b03831660009081526004602052604081208054849290612152908490612c8a565b90915550506040518281526001600160a01b03841690600090600080516020612e9983398151915290602001610da1565b60035460009060ff161561222b57600a60d9546121a09190612db9565b60d960008282546121b19190612c8a565b909155505060d8546121c590600a90612db9565b60d860008282546121d69190612c8a565b909155505060da546121ea90600a90612db9565b60da60008282546121fb9190612c8a565b909155505060db5461220f90600a90612db9565b60db60008282546122209190612c8a565b909155506122c09050565b600a60d95461223a9190612db9565b60d9600082825461224b9190612c9d565b909155505060d85461225f90600a90612db9565b60d860008282546122709190612c8a565b909155505060da5461228490600a90612db9565b60da60008282546122959190612c9d565b909155505060db546122a990600a90612db9565b60db60008282546122ba9190612c9d565b90915550505b60de546122ce906006612da2565b60d95411156122fc5760de546122e5906002612da2565b60d960008282546122f69190612c9d565b90915550505b60de5461230a906006612da2565b60d85411156123385760de54612321906002612da2565b60d860008282546123329190612c9d565b90915550505b60de54612346906003612da2565b60da5411156123695760de5460da60008282546123639190612c9d565b90915550505b60de54612377906003612da2565b60db54111561239a5760de5460db60008282546123949190612c9d565b90915550505b60de5460d95410806123af575060de5460d854105b806123c95750600260de546123c49190612db9565b60da54105b1561245057600060e254600a6123df9190612d96565b90506127106123ef826032612da2565b6123f99190612db9565b60d85561271061240a826032612da2565b6124149190612db9565b60d955612710612425826064612da2565b61242f9190612db9565b60da556127106124418261015e612da2565b61244b9190612db9565b60db55505b50600190565b6009546001600160a01b031660009081526004602052604081205460e15461247e9190611633565b60dd819055851080159061249a57506001600160a01b03841615155b15610ecd57833b6124c55760d380546001600160a01b0319166001600160a01b038616179055612508565b823b156124ec5760d380546001600160a01b0319166001600160a01b038416179055612508565b60d380546001600160a01b0319166001600160a01b0385161790555b60ea54610100900460ff161561260a5760c760dc54101561258b5760d35460dc546001600160a01b0390911690600a9060c8811061254857612548612ddb565b0160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600160dc60008282546125809190612c8a565b90915550610ecd9050565b60dc5460c7036126055760ea805461ff001916905560d35460dc546001600160a01b0390911690600a9060c881106125c5576125c5612ddb565b0180546001600160a01b0319166001600160a01b0392909216919091179055600060dc556125f161274b565b50600160dc60008282546125809190612c8a565b610ecd565b60c760dc5410156126435761261d61274b565b5060d35460dc546001600160a01b0390911690600a9060c8811061254857612548612ddb565b60dc5460c703610ecd5761265561274b565b5060d35460dc546001600160a01b0390911690600a9060c8811061267b5761267b612ddb565b0180546001600160a01b0319166001600160a01b0392909216919091179055600060dc55506001949350505050565b60035460009060ff16156126cf57600260e4546126c79190612db9565b60e455612450565b600260e3546126de9190612db9565b60e35550600190565b60035460009060ff161561270b5760e454612703906002612da2565b60e45561271d565b60e354612719906002612da2565b60e3555b60d6546038036124505760e65460e35560e75460e455600060d65560ea805463ff0000001916905550600190565b6009546001600160a01b031660009081526004602052604081205460de54829161277491611633565b6009546001600160a01b03166000908152600460205260408120549192509082106127c7576009546001600160a01b03166000908152600460205260409020546127c09060fa90612db9565b9050612844565b6127d2826002612da2565b6009546001600160a01b0316600090815260046020526040902054111561281a576009546001600160a01b03166000908152600460205260409020546127c09060b490612db9565b6009546001600160a01b03166000908152600460205260409020546128419060dc90612db9565b90505b6009546001600160a01b031660009081526004602052604081205461286a908390612c9d565b111561297c576009546001600160a01b03166000908152600460205260408120805483929061289a908490612c9d565b925050819055508060046000600a60dc5460c881106128bb576128bb612ddb565b01546001600160a01b031681526020810191909152604001600090812080549091906128e8908490612c8a565b9091555050600980546001600160a01b0390811660009081526005602090815260408083204290819055855485168452600683528184208190559454909316825260079052205560dc54600a9060c8811061294557612945612ddb565b01546009546040518381526001600160a01b039283169290911690600080516020612e998339815191529060200160405180910390a35b60019250505090565b60405180611900016040528060c8906020820280368337509192915050565b600060208083528351808285015260005b818110156129d1578581018301518582016040015282016129b5565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113d957600080fd5b600060208284031215612a1957600080fd5b8135610dfe816129f2565b60008060408385031215612a3757600080fd5b8235612a42816129f2565b946020939093013593505050565b600080600060608486031215612a6557600080fd5b8335612a70816129f2565b92506020840135612a80816129f2565b929592945050506040919091013590565b6119008101818360005b60c8811015612ac35781516001600160a01b0316835260209283019290910190600101612a9b565b50505092915050565b600060208284031215612ade57600080fd5b5035919050565b60008060408385031215612af857600080fd5b8235612b03816129f2565b91506020830135612b13816129f2565b809150509250929050565b604051612060810167ffffffffffffffff81118282101715612b5057634e487b7160e01b600052604160045260246000fd5b60405290565b6000806140c0808486031215612b6b57600080fd5b84601f850112612b7a57600080fd5b612b82612b1e565b80612060860187811115612b9557600080fd5b865b81811015612bb8578035612baa816129f2565b845260209384019301612b97565b508195508761207f880112612bcc57600080fd5b612bd4612b1e565b93870193925082915087841115612bea57600080fd5b5b83811015612c03578035835260209283019201612beb565b508093505050509250929050565b600181811c90821680612c2557607f821691505b602082108103612c4557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610c8457610c84612c74565b81810381811115610c8457610c84612c74565b600181600019825b80861115612cec57828204831115612cd257612cd2612c74565b80861615612cdf57928202925b94851c9491800291612cb8565b50509250929050565b600082612d0457506001610c84565b81612d1157506000610c84565b8160018114612d275760028114612d3157612d4d565b6001915050610c84565b60ff841115612d4257612d42612c74565b50506001821b610c84565b5060208310610133831016604e8410600b8410161715612d70575081810a610c84565b612d7a8383612cb0565b8060001904821115612d8e57612d8e612c74565b029392505050565b6000610dfe8383612cf5565b8082028115828204841417610c8457610c84612c74565b600082612dd657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612e0357600080fd5b8151610dfe816129f2565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612e5e5784516001600160a01b031683529383019391830191600101612e39565b50506001600160a01b03969096166060850152505050608001529392505050565b600060018201612e9157612e91612c74565b506001019056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220c8024b7a7cab6592cd380a192bd3fe32c8f8eae24a3abf7ff5d61ba12e5b1f0764736f6c63430008140033

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.