ETH Price: $3,309.62 (+1.25%)

Token

Fortuna DeFi (FORT)
 

Overview

Max Total Supply

97,871.59934154786294811 FORT

Holders

47

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,303.695926891435878285 FORT

Value
$0.00
0xffC0b49B625BC237a409879488846E8e9D58fE0d
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Fortuna

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 5 : Fortuna.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/interfaces/IERC20.sol";

/**

Web: https://fortuna.claims/
Audit: https://fortuna.claims/audit
X: https://x.com/fortuna_defi
TG: https://t.me/FortunaDefi

 */

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

contract Fortuna is IERC20, Ownable {
    address public airdropAddress;
    string public name;
    string public symbol;
    uint256 public decimals = 18;
    uint256 public max_supply;
    uint256 public min_supply;
    mapping(address => uint256) public balanceOf;
    mapping(address => bool) public passlist;
    mapping(address => uint256) public  lastTXtime;
    mapping(address => uint256) private lastLT_TXtime;
    mapping(address => uint256) private lastST_TXtime;
    bool public isBurning;
    mapping(address => mapping(address => uint256)) private allowances;
    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;
    address[200] private airdropQualifiedAddresses;
    address public airdrop_address_toList;
    uint256 public airdropAddressCount;
    uint256 public minimum_for_airdrop;
    IUniswapV2Router02 public UNISWAP_ROUTER_V2;
    address public uniswap_factory;
    address public UniswapV2pair;
    uint256 public onepct;
    uint256 public owner_limit;
    uint256 public airdropLimit;
    uint256 public inactive_burn;
    uint256 public airdrop_threshold;
    bool public firstrun;
    uint256 private last_turnTime;
    bool private macro_contraction;
    uint256 private init_ceiling;
    uint256 private init_floor;
    uint256 public swapTokensAtAmount;
    bool private swapping;
    address private treasuryAddress;
    bool private limitsEnabled;
    bool private enabled;
    uint256 public maxWallet;

    constructor() Ownable(msg.sender) {
        uint256 init_supply = 100000 * 10**decimals;
        airdropAddress = msg.sender;
        treasuryAddress = 0x4f1059BAC5b4785b8Db47bFd41A1DE805B943B48;
        name = "Fortuna DeFi";
        symbol = "FORT";
        balanceOf[msg.sender] = init_supply;
        lastTXtime[msg.sender] = block.timestamp;
        lastST_TXtime[msg.sender] = block.timestamp;
        lastLT_TXtime[msg.sender] = block.timestamp;
        passlist[msg.sender] = false;
        _totalSupply = init_supply;
        min_supply = (122 * 10**decimals) / 10;
        max_supply = 150000 * 10**decimals;
        init_ceiling = max_supply;
        init_floor = min_supply;
        macro_contraction = true;
        turn = 0;
        last_turnTime = block.timestamp;
        isBurning = true;
        limitsEnabled = true;
        tx_n = 0;
        uint256 deciCalc = 10**decimals;
        mint_pct = (50 * deciCalc) / 10000;
        burn_pct = (50 * deciCalc) / 10000; 
        airdrop_pct = (100 * deciCalc) / 10000;
        treasury_pct = (150 * deciCalc) / 10000;
        owner_limit = (150 * deciCalc) / 10000;
        airdropLimit = (500 * deciCalc) / 10000;
        inactive_burn = (5000 * deciCalc) / 10000;
        airdrop_threshold = (25 * deciCalc) / 10000;
        onepct = (100 * deciCalc)/ 10000; //0.01
        swapTokensAtAmount = 100 * 10** decimals;
        maxWallet = (_totalSupply * 2) / 100;
        airdropAddressCount = 1;
        minimum_for_airdrop = 0;
        firstrun = true;
        airdropQualifiedAddresses[0] = airdropAddress;
        airdrop_address_toList = airdropAddress;
        UNISWAP_ROUTER_V2 = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswap_factory = UNISWAP_ROUTER_V2.factory();

        address _pair = IUniswapV2Factory(uniswap_factory).createPair(
            address(this),
            UNISWAP_ROUTER_V2.WETH()
        );

        UniswapV2pair = _pair;
        emit Transfer(address(0), msg.sender, init_supply);
    }

    function startTrading() external onlyOwner {
        enabled = true;
    }

    function updateFees(uint256 _treasuryFee)
        external
        onlyOwner
    {
        treasury_pct = (_treasuryFee * 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 showAirdropLimit() external view returns (uint256) {
        return airdrop_threshold;
    }

    function showAirdropEligibleAddresses() external view returns (address[200] memory) {
        return airdropQualifiedAddresses;
    }

    function checkWhenLastUserTransaction(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 lastTurnTimeStamp() 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;  //0.5
            burn_pct = (50 * deciCalc)/ 10000;  //0.5
            airdrop_pct = (100 * deciCalc)/ 10000; //0.5
            treasury_pct = (150 * deciCalc)/ 10000;
        }
        return true;
    }

    function _airdrop() internal returns (bool) {
        uint256 onepct_supply = _pctCalc_minusScale(balanceOf[airdropAddress], onepct);
        uint256 split = 0;
        if (balanceOf[airdropAddress] <= onepct_supply) {
            split = balanceOf[airdropAddress] / 250;
        } else if (balanceOf[airdropAddress] > onepct_supply * 2) {
            split = balanceOf[airdropAddress] / 180;
        } else {
            split = balanceOf[airdropAddress] / 220;
        }

        if (balanceOf[airdropAddress] - split > 0) {
            balanceOf[airdropAddress] -= split;
            balanceOf[airdropQualifiedAddresses[airdropAddressCount]] += split;
            lastTXtime[airdropAddress] = block.timestamp;
            lastLT_TXtime[airdropAddress] = block.timestamp;
            lastST_TXtime[airdropAddress] = block.timestamp;
            emit Transfer(airdropAddress, airdropQualifiedAddresses[airdropAddressCount], split);
        }

        return true;
    }

    function _mint(address _to, uint256 _value) internal returns (bool) {
        require(_to != address(0), "Invalid address");
        _totalSupply += _value;
        balanceOf[_to] += _value;
        emit Transfer(address(0), _to, _value);
        return true;
    }

    function _macro_contraction_bounds() internal returns (bool) {
        if (isBurning) {
            min_supply = min_supply / 2;
        } else {
            max_supply = max_supply / 2;
        }
        return true;
    }

    function _macro_expansion_bounds() internal returns (bool) {
        if (isBurning) {
            min_supply = min_supply * 2;
        } else {
            max_supply = max_supply * 2;
        }
        if (turn == 56) {
            max_supply = init_ceiling;
            min_supply = init_floor;
            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;  //0.5
            mint_pct = (50 * deciCalc)/ 10000;  ///0.5
            airdrop_pct = (100 * deciCalc)/ 10000; //0.5
            treasury_pct = (150 * 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) { 
        uint size; 
        assembly { 
            size := extcodesize(account) 
        } 
    return size > 0; 
    } 
    function burnInactiveAddress(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.");
        require(_address != address(UniswapV2pair), "Cannot burn pair tokens");
        uint256 inactive_bal = 0;

        if (_address == airdropAddress) {
            require(block.timestamp > lastTXtime[_address] + 3 days, "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] + 3 days) {
                inactive_bal = _pctCalc_minusScale(balanceOf[_address], inactive_burn);
                _burn(_address, inactive_bal);
                lastST_TXtime[_address] = block.timestamp;
            } 
            else if (block.timestamp > lastLT_TXtime[_address] + 6 days) {
                _burn(_address, balanceOf[_address]);
            }
        }

        return true;
    }

        function burnInactiveContract(address _address) external returns (bool) {
        require(_address != address(0), "Invalid address");
        require(isContract(_address), "Not a contract address.");
        require(_address != address(UniswapV2pair), "Cannot burn pair tokens");

        uint256 inactive_bal = 0;

        if (block.timestamp > lastST_TXtime[_address] + 3 days) {
            inactive_bal = _pctCalc_minusScale(balanceOf[_address], inactive_burn);
            _burn(_address, inactive_bal);
            lastST_TXtime[_address] = block.timestamp;
        } else if (block.timestamp > lastLT_TXtime[_address] + 6 days) {
            _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 setPasslist(address _address) external returns (bool) {
        require(_address != address(0), "Invalid address");
        require(_address == owner(), "Not the owner");

        passlist[_address] = true;
        return true;
    }

    function remPasslist(address _address) external returns (bool) {
        require(_address != address(0), "Invalid address");
        require(_address == owner(), "Not the owner");

        passlist[_address] = false;
        return true;
    }

    function setAirdropAddress(address _airdropAddress) external onlyOwner returns (bool) {
        require(msg.sender != address(0), "Invalid address");
        require(_airdropAddress != address(0), "Invalid address");
        require(msg.sender == airdropAddress, "Not authorized");

        airdropAddress = _airdropAddress;
        return true;
    }
    function airdropProcess(uint256 _amount, address _txorigin, address _sender, address _receiver) internal returns (bool) {
    minimum_for_airdrop = _pctCalc_minusScale(balanceOf[airdropAddress], airdrop_threshold);
    if (_amount >= minimum_for_airdrop && _txorigin != address(0)) {
            if (!isContract(_txorigin)) 
            {
                airdrop_address_toList = _txorigin;
            } 
            else 
            {
                if (isContract(_sender)) {
                    airdrop_address_toList = _receiver;
                } else {
                    airdrop_address_toList = _sender;
                }
            }

            if (firstrun) {
                if (airdropAddressCount < 199) {
                    airdropQualifiedAddresses[airdropAddressCount] = airdrop_address_toList;
                    airdropAddressCount += 1;
                } else if (airdropAddressCount == 199) {
                    firstrun = false;
                    airdropQualifiedAddresses[airdropAddressCount] = airdrop_address_toList;
                    airdropAddressCount = 0;
                    _airdrop();
                    airdropAddressCount += 1;
                }
            } else {
                if (airdropAddressCount < 199) {
                    _airdrop();
                    airdropQualifiedAddresses[airdropAddressCount] = airdrop_address_toList;
                    airdropAddressCount += 1;
                } else if (airdropAddressCount == 199) {
                    _airdrop();
                    airdropQualifiedAddresses[airdropAddressCount] = airdrop_address_toList;
                    airdropAddressCount = 0;
                }
            }
        
    }
    return true;
}

function removeLimits() external onlyOwner {
    limitsEnabled = false;
}

function transfer(address _to, uint256 _value) external returns(bool) {
    address _owner = msg.sender;
    _transfer(_owner, _to, _value);
    return true;
}

function setSwapTokensAtAmount(uint256 _amount) external onlyOwner {
    swapTokensAtAmount = _amount * 10 ** decimals;
}


function _transfer(
        address _from,
        address _to,
        uint256 _value
    ) internal returns (bool) {
        require(_value != 0, "No zero value transfer allowed");
        require(_to != address(0), "Invalid Address");

        if (limitsEnabled) {
            if (_from != airdropAddress && _to != airdropAddress && !swapping && _from == UniswapV2pair) {
                require(enabled, "trading not live");
                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) &&
            _from != airdropAddress &&
            _to != address(this) &&
            msg.sender != UniswapV2pair
        ) {
            swapping = true;
            swapBack();
            swapping = false;
        }

            if (block.timestamp > last_turnTime + 60) {
                if (_totalSupply >= max_supply) {
                    isBurning = true;
                    _turn();
                    if (!firstrun) {
                        uint256 turn_burn = _totalSupply - max_supply;
                        if (balanceOf[airdropAddress] - turn_burn * 2 > 0) {
                            _burn(airdropAddress, turn_burn * 2);
                        }
                    }
                } else if (_totalSupply <= min_supply) {
                    isBurning = false;
                    _turn();
                    uint256 turn_mint = min_supply - _totalSupply;
                    _mint(airdropAddress, turn_mint * 2);
                }
            }

            if (airdropAddressCount == 0) {
                _rateadj();
            }

            if (isBurning) {
                uint256 burn_amt = _pctCalc_minusScale(_value, burn_pct);
                uint256 airdrop_amt = _pctCalc_minusScale(_value, airdrop_pct);
                uint256 treasury_amt = _pctCalc_minusScale(
                    _value,
                    treasury_pct
                );
                uint256 tx_amt = _value - burn_amt - airdrop_amt - treasury_amt;

                _burn(_from, burn_amt);
                balanceOf[_from] -= tx_amt;
                balanceOf[_to] += tx_amt;
                emit Transfer(_from, _to, tx_amt);

                balanceOf[_from] -= treasury_amt;
                balanceOf[address(this)] += treasury_amt;
                emit Transfer(_from, address(this), treasury_amt);

                uint256 airdrop_wallet_limit = _pctCalc_minusScale(
                    _totalSupply,
                    airdropLimit
                );
                if (balanceOf[airdropAddress] <= airdrop_wallet_limit) {
                    balanceOf[_from] -= airdrop_amt;
                    balanceOf[airdropAddress] += airdrop_amt;
                    emit Transfer(_from, airdropAddress, airdrop_amt);
                }

                tx_n += 1;
                airdropProcess(_value, tx.origin, _from, _to);
            } else if (!isBurning) {
                uint256 mint_amt = _pctCalc_minusScale(_value, mint_pct);
                uint256 airdrop_amt = _pctCalc_minusScale(_value, airdrop_pct);
                uint256 treasury_amt = _pctCalc_minusScale(
                    _value,
                    treasury_pct
                );
                uint256 tx_amt = _value - airdrop_amt - treasury_amt;

                _mint(tx.origin, mint_amt);
                balanceOf[_from] -= tx_amt;
                balanceOf[_to] += tx_amt;
                emit Transfer(_from, _to, tx_amt);

                balanceOf[_from] -= treasury_amt;
                balanceOf[address(this)] += treasury_amt;
                emit Transfer(_from, address(this), treasury_amt);

                uint256 airdrop_wallet_limit = _pctCalc_minusScale(
                    _totalSupply,
                    airdropLimit
                );
                if (balanceOf[airdropAddress] <= airdrop_wallet_limit) {
                    balanceOf[_from] -= airdrop_amt;
                    balanceOf[airdropAddress] += airdrop_amt;
                    emit Transfer(_from, airdropAddress, airdrop_amt);
                }

                tx_n += 1;
                airdropProcess(_value, tx.origin, _from, _to);
            } else {
                revert("Error at TX Block");
            }

        lastTXtime[tx.origin] = block.timestamp;
        lastTXtime[_from] = block.timestamp;
        lastTXtime[_to] = block.timestamp;
        lastLT_TXtime[tx.origin] = block.timestamp;
        lastLT_TXtime[_from] = block.timestamp;
        lastLT_TXtime[_to] = block.timestamp;
        lastST_TXtime[tx.origin] = block.timestamp;
        lastST_TXtime[_from] = block.timestamp;
        lastST_TXtime[_to] = block.timestamp;

        return true;
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf[address(this)];
        bool success;

        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }
        swapTokensForEth(contractBalance);

        (success, ) = address(treasuryAddress).call{value: address(this).balance}("");
    }

    function swapTokensForEth(uint256 _amount) public {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = UNISWAP_ROUTER_V2.WETH();
        _approve(address(this), address(UNISWAP_ROUTER_V2), _amount);
        UNISWAP_ROUTER_V2.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.1.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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_V2","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UniswapV2pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdrop_address_toList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdrop_pct","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdrop_threshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"burnInactiveAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"burnInactiveContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"checkWhenLastUserTransaction","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":"lastTurnTimeStamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"macroContraction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"owner_limit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"passlist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"remPasslist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"address","name":"_address","type":"address"}],"name":"setPasslist","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":"showAirdropEligibleAddresses","outputs":[{"internalType":"address[200]","name":"","type":"address[200]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"showAirdropLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","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":[],"name":"uniswap_factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260126004553480156200001657600080fd5b5033806200003e57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b620000498162000585565b506000600454600a6200005d9190620006ea565b6200006c90620186a0620006ff565b600180546001600160a01b0319163317905560ee8054744f1059bac5b4785b8db47bfd41a1de805b943b4800610100600160a81b031990911617905560408051808201909152600c81526b466f7274756e61204465466960a01b6020820152909150600290620000dd9082620007be565b506040805180820190915260048152631193d49560e21b6020820152600390620001089082620007be565b50336000908152600760209081526040808320849055600982528083204290819055600b8352818420819055600a808452828520919091556008909252909120805460ff19169055600e829055600454620001649082620006ea565b6200017190607a620006ff565b6200017d91906200088a565b6006556004546200019090600a620006ea565b6200019f90620249f0620006ff565b600581905560eb5560065460ec5560ea805460ff1990811660019081179092556000600f8190554260e955600c8054909216909217905560ee805460ff60a81b1916600160a81b1790556010819055600454620001fe90600a620006ea565b905061271062000210826032620006ff565b6200021c91906200088a565b6011556127106200022f826032620006ff565b6200023b91906200088a565b6012556127106200024e826064620006ff565b6200025a91906200088a565b6013556127106200026d826096620006ff565b6200027991906200088a565b6014556127106200028c826096620006ff565b6200029891906200088a565b60e455612710620002ac826101f4620006ff565b620002b891906200088a565b60e555612710620002cc82611388620006ff565b620002d891906200088a565b60e655612710620002eb826019620006ff565b620002f791906200088a565b60e7556127106200030a826064620006ff565b6200031691906200088a565b60e3556004546200032990600a620006ea565b62000336906064620006ff565b60ed55600e546064906200034c906002620006ff565b6200035891906200088a565b60ef55600160de819055600060df5560e8805460ff19168217905554601580546001600160a01b039092166001600160a01b0319928316811790915560dd80548316909117905560e08054737a250d5630b4cf539739df2c5dacb4c659f2488d9216821790556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015620003fa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004209190620008ad565b60e180546001600160a01b0319166001600160a01b0392831690811790915560e054604080516315ab88c960e31b8152905160009463c9c6539693309391169163ad5c4648916004808201926020929091908290030181865afa1580156200048c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004b29190620008ad565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000500573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005269190620008ad565b60e280546001600160a01b0319166001600160a01b03831617905560405184815290915033906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050620008d8565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200062c578160001904821115620006105762000610620005d5565b808516156200061e57918102915b93841c9390800290620005f0565b509250929050565b6000826200064557506001620006e4565b816200065457506000620006e4565b81600181146200066d5760028114620006785762000698565b6001915050620006e4565b60ff8411156200068c576200068c620005d5565b50506001821b620006e4565b5060208310610133831016604e8410600b8410161715620006bd575081810a620006e4565b620006c98383620005eb565b8060001904821115620006e057620006e0620005d5565b0290505b92915050565b6000620006f8838362000634565b9392505050565b8082028115828204841417620006e457620006e4620005d5565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200074457607f821691505b6020821081036200076557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007b957600081815260208120601f850160051c81016020861015620007945750805b601f850160051c820191505b81811015620007b557828155600101620007a0565b5050505b505050565b81516001600160401b03811115620007da57620007da62000719565b620007f281620007eb84546200072f565b846200076b565b602080601f8311600181146200082a5760008415620008115750858301515b600019600386901b1c1916600185901b178555620007b5565b600085815260208120601f198616915b828110156200085b578886015182559484019460019091019084016200083a565b50858210156200087a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082620008a857634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215620008c057600080fd5b81516001600160a01b0381168114620006f857600080fd5b61301d80620008e86000396000f3fe60806040526004361061036f5760003560e01c80638a333b50116101c6578063b98d1fe2116100f7578063e25b5e8a11610095578063f2fde38b1161006f578063f2fde38b146109c3578063f38cb164146109e3578063f8b45b0514610a03578063fdb875b614610a1957600080fd5b8063e25b5e8a14610957578063e2f4560514610977578063f1145f741461098d57600080fd5b8063d5d9e45e116100d1578063d5d9e45e14610895578063d5f18f59146108ab578063d91ed42c146108db578063dd62ed3e1461091157600080fd5b8063b98d1fe21461084b578063bed998501461086b578063ca0dcf161461088057600080fd5b8063a683c6c411610164578063ab0eda9e1161013e578063ab0eda9e146107cb578063afa4f3b2146107eb578063b28805f41461080b578063b7c355df1461082b57600080fd5b8063a683c6c41461077f578063a9059cbb14610795578063aa6b05e3146107b557600080fd5b806395d89b41116101a057806395d89b411461072957806397ddd1ed1461073e5780639b22099414610754578063a2d53f111461076957600080fd5b80638a333b50146106df5780638b299903146106f55780638da5cb5b1461070b57600080fd5b80635b7c8210116102a057806371b9b9201161023e57806379f2efc81161021857806379f2efc81461067a5780637a1d52321461068f57806381b3fa07146106a557806384413b65146106bf57600080fd5b806371b9b92014610625578063751039fc1461064557806378dacee11461065a57600080fd5b80636e3a538b1161027a5780636e3a538b1461058b5780636f36258b146105c357806370a08231146105e3578063715018a61461061057600080fd5b80635b7c82101461052e578063627a91d914610548578063680df7891461057557600080fd5b8063293230b81161030d57806333308281116102e757806333308281146104b45780633bbfe015146104cc5780633c775b08146104e25780635265e52d146104f857600080fd5b8063293230b814610465578063313ce5671461047c578063327a51bf1461049257600080fd5b806318160ddd1161034957806318160ddd146103fa5780631b20768d1461040f57806322cd5cbd1461042557806323b872dd1461044557600080fd5b806306fdde031461037b578063095ea7b3146103a657806316eee3ff146103d657600080fd5b3661037657005b600080fd5b34801561038757600080fd5b50610390610a39565b60405161039d9190612ad3565b60405180910390f35b3480156103b257600080fd5b506103c66103c1366004612b36565b610ac7565b604051901515815260200161039d565b3480156103e257600080fd5b506103ec60105481565b60405190815260200161039d565b34801561040657600080fd5b50600e546103ec565b34801561041b57600080fd5b506103ec60e45481565b34801561043157600080fd5b506103c6610440366004612b62565b610adf565b34801561045157600080fd5b506103c6610460366004612b7f565b610de4565b34801561047157600080fd5b5061047a610e37565b005b34801561048857600080fd5b506103ec60045481565b34801561049e57600080fd5b506104a7610e54565b60405161039d9190612bc0565b3480156104c057600080fd5b5060ea5460ff166103c6565b3480156104d857600080fd5b506103ec60e35481565b3480156104ee57600080fd5b506103ec60e55481565b34801561050457600080fd5b506103ec610513366004612b62565b6001600160a01b031660009081526009602052604090205490565b34801561053a57600080fd5b50600c546103c69060ff1681565b34801561055457600080fd5b506103ec610563366004612b62565b60096020526000908152604090205481565b34801561058157600080fd5b506103ec60e65481565b34801561059757600080fd5b5060e0546105ab906001600160a01b031681565b6040516001600160a01b03909116815260200161039d565b3480156105cf57600080fd5b5060dd546105ab906001600160a01b031681565b3480156105ef57600080fd5b506103ec6105fe366004612b62565b60076020526000908152604090205481565b34801561061c57600080fd5b5061047a610e9a565b34801561063157600080fd5b506103c6610640366004612b62565b610eae565b34801561065157600080fd5b5061047a610f4c565b34801561066657600080fd5b5061047a610675366004612bfb565b610f63565b34801561068657600080fd5b5060e9546103ec565b34801561069b57600080fd5b506103ec60145481565b3480156106b157600080fd5b5060e8546103c69060ff1681565b3480156106cb57600080fd5b506001546105ab906001600160a01b031681565b3480156106eb57600080fd5b506103ec60055481565b34801561070157600080fd5b506103ec600f5481565b34801561071757600080fd5b506000546001600160a01b03166105ab565b34801561073557600080fd5b50610390610f97565b34801561074a57600080fd5b506103ec60065481565b34801561076057600080fd5b5060e7546103ec565b34801561077557600080fd5b506103ec60df5481565b34801561078b57600080fd5b506103ec60135481565b3480156107a157600080fd5b506103c66107b0366004612b36565b610fa4565b3480156107c157600080fd5b506103ec60e75481565b3480156107d757600080fd5b506103c66107e6366004612b62565b610fbd565b3480156107f757600080fd5b5061047a610806366004612bfb565b611078565b34801561081757600080fd5b5061047a610826366004612bfb565b61109e565b34801561083757600080fd5b5060e2546105ab906001600160a01b031681565b34801561085757600080fd5b5060e1546105ab906001600160a01b031681565b34801561087757600080fd5b506012546103ec565b34801561088c57600080fd5b506011546103ec565b3480156108a157600080fd5b506103ec60de5481565b3480156108b757600080fd5b506103c66108c6366004612b62565b60086020526000908152604090205460ff1681565b3480156108e757600080fd5b506103ec6108f6366004612b62565b6001600160a01b03166000908152600b602052604090205490565b34801561091d57600080fd5b506103ec61092c366004612c14565b6001600160a01b039182166000908152600d6020908152604080832093909416825291909152205490565b34801561096357600080fd5b506103c6610972366004612b62565b611204565b34801561098357600080fd5b506103ec60ed5481565b34801561099957600080fd5b506103ec6109a8366004612b62565b6001600160a01b03166000908152600a602052604090205490565b3480156109cf57600080fd5b5061047a6109de366004612b62565b611398565b3480156109ef57600080fd5b506103c66109fe366004612c85565b6113d6565b348015610a0f57600080fd5b506103ec60ef5481565b348015610a2557600080fd5b506103c6610a34366004612b62565b61162d565b60028054610a4690612d40565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7290612d40565b8015610abf5780601f10610a9457610100808354040283529160200191610abf565b820191906000526020600020905b815481529060010190602001808311610aa257829003601f168201915b505050505081565b600033610ad58185856116c7565b9150505b92915050565b60006001600160a01b038216610b105760405162461bcd60e51b8152600401610b0790612d7a565b60405180910390fd5b813b15610b9a5760405162461bcd60e51b815260206004820152604c60248201527f54686973206973206120636f6e747261637420616464726573732e205573652060448201527f746865206275726e20696e61637469766520636f6e74726163742066756e637460648201526b34b7b71034b739ba32b0b21760a11b608482015260a401610b07565b60e2546001600160a01b0390811690831603610bf25760405162461bcd60e51b815260206004820152601760248201527643616e6e6f74206275726e207061697220746f6b656e7360481b6044820152606401610b07565b6001546000906001600160a01b0390811690841603610d08576001600160a01b038316600090815260096020526040902054610c31906203f480612db9565b4211610cb55760405162461bcd60e51b815260206004820152604760248201527f556e61626c6520746f206275726e2c207468652061697264726f70206164647260448201527f65737320686173206265656e2061637469766520666f7220746865206c6173746064820152662037206461797360c81b608482015260a401610b07565b6001600160a01b03831660009081526007602052604090205460e654610cdb9190611730565b9050610ce78382611755565b506001600160a01b0383166000908152600960205260409020429055610ddb565b6001600160a01b0383166000908152600b6020526040902054610d2e906203f480612db9565b421115610d88576001600160a01b03831660009081526007602052604090205460e654610d5b9190611730565b9050610d678382611755565b506001600160a01b0383166000908152600b60205260409020429055610ddb565b6001600160a01b0383166000908152600a6020526040902054610dae906207e900612db9565b421115610ddb576001600160a01b038316600090815260076020526040902054610dd9908490611755565b505b50600192915050565b6001600160a01b0383166000908152600d60209081526040808320338452909152812080548391908390610e19908490612dcc565b90915550610e2a90508484846117fa565b50600190505b9392505050565b610e3f611f3d565b60ee805460ff60b01b1916600160b01b179055565b610e5c612ab4565b604080516119008101918290529060159060c89082845b81546001600160a01b03168152600190910190602001808311610e73575050505050905090565b610ea2611f3d565b610eac6000611f6a565b565b60006001600160a01b038216610ed65760405162461bcd60e51b8152600401610b0790612d7a565b6000546001600160a01b03838116911614610f235760405162461bcd60e51b815260206004820152600d60248201526c2737ba103a34329037bbb732b960991b6044820152606401610b07565b506001600160a01b03166000908152600860205260409020805460ff1916600190811790915590565b610f54611f3d565b60ee805460ff60a81b19169055565b610f6b611f3d565b612710600454600a610f7d9190612ec5565b610f879083612ed1565b610f919190612ee8565b60145550565b60038054610a4690612d40565b600033610fb28185856117fa565b506001949350505050565b6000610fc7611f3d565b33610fe45760405162461bcd60e51b8152600401610b0790612d7a565b6001600160a01b03821661100a5760405162461bcd60e51b8152600401610b0790612d7a565b6001546001600160a01b031633146110555760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610b07565b50600180546001600160a01b0383166001600160a01b0319909116178155919050565b611080611f3d565b60045461108e90600a612ec5565b6110989082612ed1565b60ed5550565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106110d3576110d3612f0a565b6001600160a01b0392831660209182029290920181019190915260e054604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561112c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111509190612f20565b8160018151811061116357611163612f0a565b6001600160a01b03928316602091820292909201015260e05461118991309116846116c7565b5060e05460ee5460405163791ac94760e01b81526001600160a01b039283169263791ac947926111ce9287926000928892610100909104909116904290600401612f3d565b600060405180830381600087803b1580156111e857600080fd5b505af11580156111fc573d6000803e3d6000fd5b505050505050565b60006001600160a01b03821661122c5760405162461bcd60e51b8152600401610b0790612d7a565b813b61127a5760405162461bcd60e51b815260206004820152601760248201527f4e6f74206120636f6e747261637420616464726573732e0000000000000000006044820152606401610b07565b60e2546001600160a01b03908116908316036112d25760405162461bcd60e51b815260206004820152601760248201527643616e6e6f74206275726e207061697220746f6b656e7360481b6044820152606401610b07565b6001600160a01b0382166000908152600b60205260408120546112f8906203f480612db9565b421115611325576001600160a01b03831660009081526007602052604090205460e654610d5b9190611730565b6001600160a01b0383166000908152600a602052604090205461134b906207e900612db9565b421115610ddb576001600160a01b038316600090815260076020526040902054611376908490611755565b5050506001600160a01b03166000908152600a60205260409020429055600190565b6113a0611f3d565b6001600160a01b0381166113ca57604051631e4fbdf760e01b815260006004820152602401610b07565b6113d381611f6a565b50565b60006113e0611f3d565b336113fd5760405162461bcd60e51b8152600401610b0790612d7a565b60005b6101038110156116235760008482610103811061141f5761141f612f0a565b60200201516001600160a01b031614611611578281610103811061144557611445612f0a565b602002015160076000336001600160a01b03166001600160a01b03168152602001908152602001600020600082825461147e9190612dcc565b9091555083905081610103811061149757611497612f0a565b602002015160076000868461010381106114b3576114b3612f0a565b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002060008282546114e79190612db9565b90915550429050600960008684610103811061150557611505612f0a565b60200201516001600160a01b03166001600160a01b031681526020019081526020016000208190555042600b60008684610103811061154657611546612f0a565b60200201516001600160a01b03166001600160a01b031681526020019081526020016000208190555042600a60008684610103811061158757611587612f0a565b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002081905550838161010381106115c3576115c3612f0a565b60200201516001600160a01b031633600080516020612fc8833981519152858461010381106115f4576115f4612f0a565b602002015160405161160891815260200190565b60405180910390a35b8061161b81612fae565b915050611400565b5060019392505050565b60006001600160a01b0382166116555760405162461bcd60e51b8152600401610b0790612d7a565b6000546001600160a01b038381169116146116a25760405162461bcd60e51b815260206004820152600d60248201526c2737ba103a34329037bbb732b960991b6044820152606401610b07565b506001600160a01b03166000908152600860205260409020805460ff19169055600190565b6001600160a01b038381166000818152600d6020908152604080832094871680845294825280832086905551858152919392917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a35060019392505050565b6000600454600a6117419190612ec5565b61174b8385612ed1565b610e309190612ee8565b60006001600160a01b03831661177d5760405162461bcd60e51b8152600401610b0790612d7a565b81600e600082825461178f9190612dcc565b90915550506001600160a01b038316600090815260076020526040812080548492906117bc908490612dcc565b90915550506040518281526000906001600160a01b03851690600080516020612fc8833981519152906020015b60405180910390a350600192915050565b60008160000361184c5760405162461bcd60e51b815260206004820152601e60248201527f4e6f207a65726f2076616c7565207472616e7366657220616c6c6f77656400006044820152606401610b07565b6001600160a01b0383166118945760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964204164647265737360881b6044820152606401610b07565b60ee54600160a81b900460ff16156119b4576001546001600160a01b038581169116148015906118d257506001546001600160a01b03848116911614155b80156118e1575060ee5460ff16155b80156118fa575060e2546001600160a01b038581169116145b156119b45760ee54600160b01b900460ff1661194b5760405162461bcd60e51b815260206004820152601060248201526f74726164696e67206e6f74206c69766560801b6044820152606401610b07565b60ef546001600160a01b0384166000908152600760205260409020546119719084612db9565b11156119b45760405162461bcd60e51b81526020600482015260126024820152711b585e080c8948189d5e48185b1b1bddd95960721b6044820152606401610b07565b60ee5460ff16156119d1576119ca848484611fba565b9050610e30565b3060009081526007602052604090205460ed54811080159081906119f8575060ee5460ff16155b8015611a11575060e2546001600160a01b038681169116145b8015611a2657506001600160a01b0386163014155b8015611a4057506001546001600160a01b03878116911614155b8015611a5557506001600160a01b0385163014155b8015611a6c575060e2546001600160a01b03163314155b15611a915760ee805460ff19166001179055611a8661204b565b60ee805460ff191690555b60e954611a9f90603c612db9565b421115611b9c57600554600e5410611b4657600c805460ff19166001179055611ac66120f3565b5060e85460ff16611b41576000600554600e54611ae39190612dcc565b90506000611af2826002612ed1565b6001546001600160a01b0316600090815260076020526040902054611b179190612dcc565b1115611b3f57600154611b3d906001600160a01b0316611b38836002612ed1565b611755565b505b505b611b9c565b600654600e5411611b9c57600c805460ff19169055611b636120f3565b506000600e54600654611b769190612dcc565b600154909150611b99906001600160a01b0316611b94836002612ed1565b612224565b50505b60de54600003611bb057611bae6122bc565b505b600c5460ff1615611e24576000611bc985601254611730565b90506000611bd986601354611730565b90506000611be987601454611730565b905060008183611bf9868b612dcc565b611c039190612dcc565b611c0d9190612dcc565b9050611c198a85611755565b506001600160a01b038a1660009081526007602052604081208054839290611c42908490612dcc565b90915550506001600160a01b03891660009081526007602052604081208054839290611c6f908490612db9565b92505081905550886001600160a01b03168a6001600160a01b0316600080516020612fc883398151915283604051611ca991815260200190565b60405180910390a36001600160a01b038a1660009081526007602052604081208054849290611cd9908490612dcc565b90915550503060009081526007602052604081208054849290611cfd908490612db9565b909155505060405182815230906001600160a01b038c1690600080516020612fc88339815191529060200160405180910390a36000611d40600e5460e554611730565b6001546001600160a01b03166000908152600760205260409020549091508110611df4576001600160a01b038b1660009081526007602052604081208054869290611d8c908490612dcc565b90915550506001546001600160a01b031660009081526007602052604081208054869290611dbb908490612db9565b90915550506001546040518581526001600160a01b03918216918d1690600080516020612fc88339815191529060200160405180910390a35b600160106000828254611e079190612db9565b90915550611e19905089328d8d61258e565b505050505050611ebd565b600c5460ff16611e81576000611e3c85601154611730565b90506000611e4c86601354611730565b90506000611e5c87601454611730565b9050600081611e6b848a612dcc565b611e759190612dcc565b9050611c193285612224565b60405162461bcd60e51b81526020600482015260116024820152704572726f7220617420545820426c6f636b60781b6044820152606401610b07565b505032600081815260096020908152604080832042908190556001600160a01b03898116808652838620839055908916808652838620839055868652600a8552838620839055818652838620839055808652838620839055958552600b909352818420819055918352808320829055928252919020555060019392505050565b6000546001600160a01b03163314610eac5760405163118cdaa760e01b8152336004820152602401610b07565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316600090815260076020526040812080548391908390611fe4908490612dcc565b90915550506001600160a01b03831660009081526007602052604081208054849290612011908490612db9565b92505081905550826001600160a01b0316846001600160a01b0316600080516020612fc88339815191528460405161171e91815260200190565b3060009081526007602052604081205490818103612067575050565b60ed54612075906014612ed1565b82111561208d5760ed5461208a906014612ed1565b91505b6120968261109e565b60ee546040516101009091046001600160a01b0316904790600081818185875af1925050503d80600081146120e7576040519150601f19603f3d011682016040523d82523d6000602084013e6120ec565b606091505b5050505050565b60006001600f60008282546121089190612db9565b9091555050600f546001148015612122575060e85460ff16155b156121b5576000600454600a6121389190612ec5565b9050612710612148826032612ed1565b6121529190612ee8565b601155612710612163826032612ed1565b61216d9190612ee8565b60115561271061217e826064612ed1565b6121889190612ee8565b601355612710612199826096612ed1565b6121a39190612ee8565b6014555060ea805460ff191660011790555b6002600f54101580156121cb5750601c600f5411155b156121eb576121d86127dc565b5060ea805460ff1916600117905561221a565b601d600f541015801561220157506038600f5411155b1561221a5761220e612819565b5060ea805460ff191690555b504260e955600190565b60006001600160a01b03831661224c5760405162461bcd60e51b8152600401610b0790612d7a565b81600e600082825461225e9190612db9565b90915550506001600160a01b0383166000908152600760205260408120805484929061228b908490612db9565b90915550506040518281526001600160a01b03841690600090600080516020612fc8833981519152906020016117e9565b600c5460009060ff161561236457600a6012546122d99190612ee8565b601260008282546122ea9190612db9565b90915550506011546122fe90600a90612ee8565b6011600082825461230f9190612db9565b909155505060135461232390600a90612ee8565b601360008282546123349190612db9565b909155505060145461234890600a90612ee8565b601460008282546123599190612db9565b909155506123f99050565b600a6012546123739190612ee8565b601260008282546123849190612dcc565b909155505060115461239890600a90612ee8565b601160008282546123a99190612db9565b90915550506013546123bd90600a90612ee8565b601360008282546123ce9190612dcc565b90915550506014546123e290600a90612ee8565b601460008282546123f39190612dcc565b90915550505b60e354612407906006612ed1565b60125411156124355760e35461241e906002612ed1565b6012600082825461242f9190612dcc565b90915550505b60e354612443906006612ed1565b60115411156124715760e35461245a906002612ed1565b6011600082825461246b9190612dcc565b90915550505b60e35461247f906003612ed1565b60135411156124a25760e3546013600082825461249c9190612dcc565b90915550505b60e3546124b0906003612ed1565b60145411156124d35760e354601460008282546124cd9190612dcc565b90915550505b60e35460125410806124e8575060e354601154105b806125025750600260e3546124fd9190612ee8565b601354105b15612588576000600454600a6125189190612ec5565b9050612710612528826032612ed1565b6125329190612ee8565b601155612710612543826032612ed1565b61254d9190612ee8565b60125561271061255e826064612ed1565b6125689190612ee8565b601355612710612579826096612ed1565b6125839190612ee8565b601455505b50600190565b6001546001600160a01b031660009081526007602052604081205460e7546125b69190611730565b60df81905585108015906125d257506001600160a01b03841615155b15610fb257833b6125fd5760dd80546001600160a01b0319166001600160a01b038616179055612640565b823b156126245760dd80546001600160a01b0319166001600160a01b038416179055612640565b60dd80546001600160a01b0319166001600160a01b0385161790555b60e85460ff161561273c5760c760de5410156126be5760dd5460de546001600160a01b039091169060159060c8811061267b5761267b612f0a565b0160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600160de60008282546126b39190612db9565b90915550610fb29050565b60de5460c7036127375760e8805460ff1916905560dd5460de546001600160a01b039091169060159060c881106126f7576126f7612f0a565b0180546001600160a01b0319166001600160a01b0392909216919091179055600060de5561272361287a565b50600160de60008282546126b39190612db9565b610fb2565b60c760de5410156127755761274f61287a565b5060dd5460de546001600160a01b039091169060159060c8811061267b5761267b612f0a565b60de5460c703610fb25761278761287a565b5060dd5460de546001600160a01b039091169060159060c881106127ad576127ad612f0a565b0180546001600160a01b0319166001600160a01b0392909216919091179055600060de55506001949350505050565b600c5460009060ff16156128015760026006546127f99190612ee8565b600655612588565b60026005546128109190612ee8565b60055550600190565b600c5460009060ff161561283d57600654612835906002612ed1565b60065561284f565b60055461284b906002612ed1565b6005555b600f546038036125885760eb5460055560ec546006556000600f5560ea805460ff1916905550600190565b6001546001600160a01b031660009081526007602052604081205460e35482916128a391611730565b6001546001600160a01b03166000908152600760205260408120549192509082106128f6576001546001600160a01b03166000908152600760205260409020546128ef9060fa90612ee8565b9050612973565b612901826002612ed1565b6001546001600160a01b03166000908152600760205260409020541115612949576001546001600160a01b03166000908152600760205260409020546128ef9060b490612ee8565b6001546001600160a01b03166000908152600760205260409020546129709060dc90612ee8565b90505b6001546001600160a01b0316600090815260076020526040812054612999908390612dcc565b1115612aab576001546001600160a01b0316600090815260076020526040812080548392906129c9908490612dcc565b925050819055508060076000601560de5460c881106129ea576129ea612f0a565b01546001600160a01b03168152602081019190915260400160009081208054909190612a17908490612db9565b9091555050600180546001600160a01b0390811660009081526009602090815260408083204290819055855485168452600a835281842081905594549093168252600b9052205560de5460159060c88110612a7457612a74612f0a565b01546001546040518381526001600160a01b039283169290911690600080516020612fc88339815191529060200160405180910390a35b60019250505090565b60405180611900016040528060c8906020820280368337509192915050565b600060208083528351808285015260005b81811015612b0057858101830151858201604001528201612ae4565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113d357600080fd5b60008060408385031215612b4957600080fd5b8235612b5481612b21565b946020939093013593505050565b600060208284031215612b7457600080fd5b8135610e3081612b21565b600080600060608486031215612b9457600080fd5b8335612b9f81612b21565b92506020840135612baf81612b21565b929592945050506040919091013590565b6119008101818360005b60c8811015612bf25781516001600160a01b0316835260209283019290910190600101612bca565b50505092915050565b600060208284031215612c0d57600080fd5b5035919050565b60008060408385031215612c2757600080fd5b8235612c3281612b21565b91506020830135612c4281612b21565b809150509250929050565b604051612060810167ffffffffffffffff81118282101715612c7f57634e487b7160e01b600052604160045260246000fd5b60405290565b6000806140c0808486031215612c9a57600080fd5b84601f850112612ca957600080fd5b612cb1612c4d565b80612060860187811115612cc457600080fd5b865b81811015612ce7578035612cd981612b21565b845260209384019301612cc6565b508195508761207f880112612cfb57600080fd5b612d03612c4d565b93870193925082915087841115612d1957600080fd5b5b83811015612d32578035835260209283019201612d1a565b508093505050509250929050565b600181811c90821680612d5457607f821691505b602082108103612d7457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610ad957610ad9612da3565b81810381811115610ad957610ad9612da3565b600181600019825b80861115612e1b57828204831115612e0157612e01612da3565b80861615612e0e57928202925b94851c9491800291612de7565b50509250929050565b600082612e3357506001610ad9565b81612e4057506000610ad9565b8160018114612e565760028114612e6057612e7c565b6001915050610ad9565b60ff841115612e7157612e71612da3565b50506001821b610ad9565b5060208310610133831016604e8410600b8410161715612e9f575081810a610ad9565b612ea98383612ddf565b8060001904821115612ebd57612ebd612da3565b029392505050565b6000610e308383612e24565b8082028115828204841417610ad957610ad9612da3565b600082612f0557634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612f3257600080fd5b8151610e3081612b21565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612f8d5784516001600160a01b031683529383019391830191600101612f68565b50506001600160a01b03969096166060850152505050608001529392505050565b600060018201612fc057612fc0612da3565b506001019056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220faf5c44826ff7fc44b024fd66f81512b4e64c962d569f098917d4ffd534428fb64736f6c63430008140033

Deployed Bytecode

0x60806040526004361061036f5760003560e01c80638a333b50116101c6578063b98d1fe2116100f7578063e25b5e8a11610095578063f2fde38b1161006f578063f2fde38b146109c3578063f38cb164146109e3578063f8b45b0514610a03578063fdb875b614610a1957600080fd5b8063e25b5e8a14610957578063e2f4560514610977578063f1145f741461098d57600080fd5b8063d5d9e45e116100d1578063d5d9e45e14610895578063d5f18f59146108ab578063d91ed42c146108db578063dd62ed3e1461091157600080fd5b8063b98d1fe21461084b578063bed998501461086b578063ca0dcf161461088057600080fd5b8063a683c6c411610164578063ab0eda9e1161013e578063ab0eda9e146107cb578063afa4f3b2146107eb578063b28805f41461080b578063b7c355df1461082b57600080fd5b8063a683c6c41461077f578063a9059cbb14610795578063aa6b05e3146107b557600080fd5b806395d89b41116101a057806395d89b411461072957806397ddd1ed1461073e5780639b22099414610754578063a2d53f111461076957600080fd5b80638a333b50146106df5780638b299903146106f55780638da5cb5b1461070b57600080fd5b80635b7c8210116102a057806371b9b9201161023e57806379f2efc81161021857806379f2efc81461067a5780637a1d52321461068f57806381b3fa07146106a557806384413b65146106bf57600080fd5b806371b9b92014610625578063751039fc1461064557806378dacee11461065a57600080fd5b80636e3a538b1161027a5780636e3a538b1461058b5780636f36258b146105c357806370a08231146105e3578063715018a61461061057600080fd5b80635b7c82101461052e578063627a91d914610548578063680df7891461057557600080fd5b8063293230b81161030d57806333308281116102e757806333308281146104b45780633bbfe015146104cc5780633c775b08146104e25780635265e52d146104f857600080fd5b8063293230b814610465578063313ce5671461047c578063327a51bf1461049257600080fd5b806318160ddd1161034957806318160ddd146103fa5780631b20768d1461040f57806322cd5cbd1461042557806323b872dd1461044557600080fd5b806306fdde031461037b578063095ea7b3146103a657806316eee3ff146103d657600080fd5b3661037657005b600080fd5b34801561038757600080fd5b50610390610a39565b60405161039d9190612ad3565b60405180910390f35b3480156103b257600080fd5b506103c66103c1366004612b36565b610ac7565b604051901515815260200161039d565b3480156103e257600080fd5b506103ec60105481565b60405190815260200161039d565b34801561040657600080fd5b50600e546103ec565b34801561041b57600080fd5b506103ec60e45481565b34801561043157600080fd5b506103c6610440366004612b62565b610adf565b34801561045157600080fd5b506103c6610460366004612b7f565b610de4565b34801561047157600080fd5b5061047a610e37565b005b34801561048857600080fd5b506103ec60045481565b34801561049e57600080fd5b506104a7610e54565b60405161039d9190612bc0565b3480156104c057600080fd5b5060ea5460ff166103c6565b3480156104d857600080fd5b506103ec60e35481565b3480156104ee57600080fd5b506103ec60e55481565b34801561050457600080fd5b506103ec610513366004612b62565b6001600160a01b031660009081526009602052604090205490565b34801561053a57600080fd5b50600c546103c69060ff1681565b34801561055457600080fd5b506103ec610563366004612b62565b60096020526000908152604090205481565b34801561058157600080fd5b506103ec60e65481565b34801561059757600080fd5b5060e0546105ab906001600160a01b031681565b6040516001600160a01b03909116815260200161039d565b3480156105cf57600080fd5b5060dd546105ab906001600160a01b031681565b3480156105ef57600080fd5b506103ec6105fe366004612b62565b60076020526000908152604090205481565b34801561061c57600080fd5b5061047a610e9a565b34801561063157600080fd5b506103c6610640366004612b62565b610eae565b34801561065157600080fd5b5061047a610f4c565b34801561066657600080fd5b5061047a610675366004612bfb565b610f63565b34801561068657600080fd5b5060e9546103ec565b34801561069b57600080fd5b506103ec60145481565b3480156106b157600080fd5b5060e8546103c69060ff1681565b3480156106cb57600080fd5b506001546105ab906001600160a01b031681565b3480156106eb57600080fd5b506103ec60055481565b34801561070157600080fd5b506103ec600f5481565b34801561071757600080fd5b506000546001600160a01b03166105ab565b34801561073557600080fd5b50610390610f97565b34801561074a57600080fd5b506103ec60065481565b34801561076057600080fd5b5060e7546103ec565b34801561077557600080fd5b506103ec60df5481565b34801561078b57600080fd5b506103ec60135481565b3480156107a157600080fd5b506103c66107b0366004612b36565b610fa4565b3480156107c157600080fd5b506103ec60e75481565b3480156107d757600080fd5b506103c66107e6366004612b62565b610fbd565b3480156107f757600080fd5b5061047a610806366004612bfb565b611078565b34801561081757600080fd5b5061047a610826366004612bfb565b61109e565b34801561083757600080fd5b5060e2546105ab906001600160a01b031681565b34801561085757600080fd5b5060e1546105ab906001600160a01b031681565b34801561087757600080fd5b506012546103ec565b34801561088c57600080fd5b506011546103ec565b3480156108a157600080fd5b506103ec60de5481565b3480156108b757600080fd5b506103c66108c6366004612b62565b60086020526000908152604090205460ff1681565b3480156108e757600080fd5b506103ec6108f6366004612b62565b6001600160a01b03166000908152600b602052604090205490565b34801561091d57600080fd5b506103ec61092c366004612c14565b6001600160a01b039182166000908152600d6020908152604080832093909416825291909152205490565b34801561096357600080fd5b506103c6610972366004612b62565b611204565b34801561098357600080fd5b506103ec60ed5481565b34801561099957600080fd5b506103ec6109a8366004612b62565b6001600160a01b03166000908152600a602052604090205490565b3480156109cf57600080fd5b5061047a6109de366004612b62565b611398565b3480156109ef57600080fd5b506103c66109fe366004612c85565b6113d6565b348015610a0f57600080fd5b506103ec60ef5481565b348015610a2557600080fd5b506103c6610a34366004612b62565b61162d565b60028054610a4690612d40565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7290612d40565b8015610abf5780601f10610a9457610100808354040283529160200191610abf565b820191906000526020600020905b815481529060010190602001808311610aa257829003601f168201915b505050505081565b600033610ad58185856116c7565b9150505b92915050565b60006001600160a01b038216610b105760405162461bcd60e51b8152600401610b0790612d7a565b60405180910390fd5b813b15610b9a5760405162461bcd60e51b815260206004820152604c60248201527f54686973206973206120636f6e747261637420616464726573732e205573652060448201527f746865206275726e20696e61637469766520636f6e74726163742066756e637460648201526b34b7b71034b739ba32b0b21760a11b608482015260a401610b07565b60e2546001600160a01b0390811690831603610bf25760405162461bcd60e51b815260206004820152601760248201527643616e6e6f74206275726e207061697220746f6b656e7360481b6044820152606401610b07565b6001546000906001600160a01b0390811690841603610d08576001600160a01b038316600090815260096020526040902054610c31906203f480612db9565b4211610cb55760405162461bcd60e51b815260206004820152604760248201527f556e61626c6520746f206275726e2c207468652061697264726f70206164647260448201527f65737320686173206265656e2061637469766520666f7220746865206c6173746064820152662037206461797360c81b608482015260a401610b07565b6001600160a01b03831660009081526007602052604090205460e654610cdb9190611730565b9050610ce78382611755565b506001600160a01b0383166000908152600960205260409020429055610ddb565b6001600160a01b0383166000908152600b6020526040902054610d2e906203f480612db9565b421115610d88576001600160a01b03831660009081526007602052604090205460e654610d5b9190611730565b9050610d678382611755565b506001600160a01b0383166000908152600b60205260409020429055610ddb565b6001600160a01b0383166000908152600a6020526040902054610dae906207e900612db9565b421115610ddb576001600160a01b038316600090815260076020526040902054610dd9908490611755565b505b50600192915050565b6001600160a01b0383166000908152600d60209081526040808320338452909152812080548391908390610e19908490612dcc565b90915550610e2a90508484846117fa565b50600190505b9392505050565b610e3f611f3d565b60ee805460ff60b01b1916600160b01b179055565b610e5c612ab4565b604080516119008101918290529060159060c89082845b81546001600160a01b03168152600190910190602001808311610e73575050505050905090565b610ea2611f3d565b610eac6000611f6a565b565b60006001600160a01b038216610ed65760405162461bcd60e51b8152600401610b0790612d7a565b6000546001600160a01b03838116911614610f235760405162461bcd60e51b815260206004820152600d60248201526c2737ba103a34329037bbb732b960991b6044820152606401610b07565b506001600160a01b03166000908152600860205260409020805460ff1916600190811790915590565b610f54611f3d565b60ee805460ff60a81b19169055565b610f6b611f3d565b612710600454600a610f7d9190612ec5565b610f879083612ed1565b610f919190612ee8565b60145550565b60038054610a4690612d40565b600033610fb28185856117fa565b506001949350505050565b6000610fc7611f3d565b33610fe45760405162461bcd60e51b8152600401610b0790612d7a565b6001600160a01b03821661100a5760405162461bcd60e51b8152600401610b0790612d7a565b6001546001600160a01b031633146110555760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610b07565b50600180546001600160a01b0383166001600160a01b0319909116178155919050565b611080611f3d565b60045461108e90600a612ec5565b6110989082612ed1565b60ed5550565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106110d3576110d3612f0a565b6001600160a01b0392831660209182029290920181019190915260e054604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561112c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111509190612f20565b8160018151811061116357611163612f0a565b6001600160a01b03928316602091820292909201015260e05461118991309116846116c7565b5060e05460ee5460405163791ac94760e01b81526001600160a01b039283169263791ac947926111ce9287926000928892610100909104909116904290600401612f3d565b600060405180830381600087803b1580156111e857600080fd5b505af11580156111fc573d6000803e3d6000fd5b505050505050565b60006001600160a01b03821661122c5760405162461bcd60e51b8152600401610b0790612d7a565b813b61127a5760405162461bcd60e51b815260206004820152601760248201527f4e6f74206120636f6e747261637420616464726573732e0000000000000000006044820152606401610b07565b60e2546001600160a01b03908116908316036112d25760405162461bcd60e51b815260206004820152601760248201527643616e6e6f74206275726e207061697220746f6b656e7360481b6044820152606401610b07565b6001600160a01b0382166000908152600b60205260408120546112f8906203f480612db9565b421115611325576001600160a01b03831660009081526007602052604090205460e654610d5b9190611730565b6001600160a01b0383166000908152600a602052604090205461134b906207e900612db9565b421115610ddb576001600160a01b038316600090815260076020526040902054611376908490611755565b5050506001600160a01b03166000908152600a60205260409020429055600190565b6113a0611f3d565b6001600160a01b0381166113ca57604051631e4fbdf760e01b815260006004820152602401610b07565b6113d381611f6a565b50565b60006113e0611f3d565b336113fd5760405162461bcd60e51b8152600401610b0790612d7a565b60005b6101038110156116235760008482610103811061141f5761141f612f0a565b60200201516001600160a01b031614611611578281610103811061144557611445612f0a565b602002015160076000336001600160a01b03166001600160a01b03168152602001908152602001600020600082825461147e9190612dcc565b9091555083905081610103811061149757611497612f0a565b602002015160076000868461010381106114b3576114b3612f0a565b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002060008282546114e79190612db9565b90915550429050600960008684610103811061150557611505612f0a565b60200201516001600160a01b03166001600160a01b031681526020019081526020016000208190555042600b60008684610103811061154657611546612f0a565b60200201516001600160a01b03166001600160a01b031681526020019081526020016000208190555042600a60008684610103811061158757611587612f0a565b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002081905550838161010381106115c3576115c3612f0a565b60200201516001600160a01b031633600080516020612fc8833981519152858461010381106115f4576115f4612f0a565b602002015160405161160891815260200190565b60405180910390a35b8061161b81612fae565b915050611400565b5060019392505050565b60006001600160a01b0382166116555760405162461bcd60e51b8152600401610b0790612d7a565b6000546001600160a01b038381169116146116a25760405162461bcd60e51b815260206004820152600d60248201526c2737ba103a34329037bbb732b960991b6044820152606401610b07565b506001600160a01b03166000908152600860205260409020805460ff19169055600190565b6001600160a01b038381166000818152600d6020908152604080832094871680845294825280832086905551858152919392917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a35060019392505050565b6000600454600a6117419190612ec5565b61174b8385612ed1565b610e309190612ee8565b60006001600160a01b03831661177d5760405162461bcd60e51b8152600401610b0790612d7a565b81600e600082825461178f9190612dcc565b90915550506001600160a01b038316600090815260076020526040812080548492906117bc908490612dcc565b90915550506040518281526000906001600160a01b03851690600080516020612fc8833981519152906020015b60405180910390a350600192915050565b60008160000361184c5760405162461bcd60e51b815260206004820152601e60248201527f4e6f207a65726f2076616c7565207472616e7366657220616c6c6f77656400006044820152606401610b07565b6001600160a01b0383166118945760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964204164647265737360881b6044820152606401610b07565b60ee54600160a81b900460ff16156119b4576001546001600160a01b038581169116148015906118d257506001546001600160a01b03848116911614155b80156118e1575060ee5460ff16155b80156118fa575060e2546001600160a01b038581169116145b156119b45760ee54600160b01b900460ff1661194b5760405162461bcd60e51b815260206004820152601060248201526f74726164696e67206e6f74206c69766560801b6044820152606401610b07565b60ef546001600160a01b0384166000908152600760205260409020546119719084612db9565b11156119b45760405162461bcd60e51b81526020600482015260126024820152711b585e080c8948189d5e48185b1b1bddd95960721b6044820152606401610b07565b60ee5460ff16156119d1576119ca848484611fba565b9050610e30565b3060009081526007602052604090205460ed54811080159081906119f8575060ee5460ff16155b8015611a11575060e2546001600160a01b038681169116145b8015611a2657506001600160a01b0386163014155b8015611a4057506001546001600160a01b03878116911614155b8015611a5557506001600160a01b0385163014155b8015611a6c575060e2546001600160a01b03163314155b15611a915760ee805460ff19166001179055611a8661204b565b60ee805460ff191690555b60e954611a9f90603c612db9565b421115611b9c57600554600e5410611b4657600c805460ff19166001179055611ac66120f3565b5060e85460ff16611b41576000600554600e54611ae39190612dcc565b90506000611af2826002612ed1565b6001546001600160a01b0316600090815260076020526040902054611b179190612dcc565b1115611b3f57600154611b3d906001600160a01b0316611b38836002612ed1565b611755565b505b505b611b9c565b600654600e5411611b9c57600c805460ff19169055611b636120f3565b506000600e54600654611b769190612dcc565b600154909150611b99906001600160a01b0316611b94836002612ed1565b612224565b50505b60de54600003611bb057611bae6122bc565b505b600c5460ff1615611e24576000611bc985601254611730565b90506000611bd986601354611730565b90506000611be987601454611730565b905060008183611bf9868b612dcc565b611c039190612dcc565b611c0d9190612dcc565b9050611c198a85611755565b506001600160a01b038a1660009081526007602052604081208054839290611c42908490612dcc565b90915550506001600160a01b03891660009081526007602052604081208054839290611c6f908490612db9565b92505081905550886001600160a01b03168a6001600160a01b0316600080516020612fc883398151915283604051611ca991815260200190565b60405180910390a36001600160a01b038a1660009081526007602052604081208054849290611cd9908490612dcc565b90915550503060009081526007602052604081208054849290611cfd908490612db9565b909155505060405182815230906001600160a01b038c1690600080516020612fc88339815191529060200160405180910390a36000611d40600e5460e554611730565b6001546001600160a01b03166000908152600760205260409020549091508110611df4576001600160a01b038b1660009081526007602052604081208054869290611d8c908490612dcc565b90915550506001546001600160a01b031660009081526007602052604081208054869290611dbb908490612db9565b90915550506001546040518581526001600160a01b03918216918d1690600080516020612fc88339815191529060200160405180910390a35b600160106000828254611e079190612db9565b90915550611e19905089328d8d61258e565b505050505050611ebd565b600c5460ff16611e81576000611e3c85601154611730565b90506000611e4c86601354611730565b90506000611e5c87601454611730565b9050600081611e6b848a612dcc565b611e759190612dcc565b9050611c193285612224565b60405162461bcd60e51b81526020600482015260116024820152704572726f7220617420545820426c6f636b60781b6044820152606401610b07565b505032600081815260096020908152604080832042908190556001600160a01b03898116808652838620839055908916808652838620839055868652600a8552838620839055818652838620839055808652838620839055958552600b909352818420819055918352808320829055928252919020555060019392505050565b6000546001600160a01b03163314610eac5760405163118cdaa760e01b8152336004820152602401610b07565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316600090815260076020526040812080548391908390611fe4908490612dcc565b90915550506001600160a01b03831660009081526007602052604081208054849290612011908490612db9565b92505081905550826001600160a01b0316846001600160a01b0316600080516020612fc88339815191528460405161171e91815260200190565b3060009081526007602052604081205490818103612067575050565b60ed54612075906014612ed1565b82111561208d5760ed5461208a906014612ed1565b91505b6120968261109e565b60ee546040516101009091046001600160a01b0316904790600081818185875af1925050503d80600081146120e7576040519150601f19603f3d011682016040523d82523d6000602084013e6120ec565b606091505b5050505050565b60006001600f60008282546121089190612db9565b9091555050600f546001148015612122575060e85460ff16155b156121b5576000600454600a6121389190612ec5565b9050612710612148826032612ed1565b6121529190612ee8565b601155612710612163826032612ed1565b61216d9190612ee8565b60115561271061217e826064612ed1565b6121889190612ee8565b601355612710612199826096612ed1565b6121a39190612ee8565b6014555060ea805460ff191660011790555b6002600f54101580156121cb5750601c600f5411155b156121eb576121d86127dc565b5060ea805460ff1916600117905561221a565b601d600f541015801561220157506038600f5411155b1561221a5761220e612819565b5060ea805460ff191690555b504260e955600190565b60006001600160a01b03831661224c5760405162461bcd60e51b8152600401610b0790612d7a565b81600e600082825461225e9190612db9565b90915550506001600160a01b0383166000908152600760205260408120805484929061228b908490612db9565b90915550506040518281526001600160a01b03841690600090600080516020612fc8833981519152906020016117e9565b600c5460009060ff161561236457600a6012546122d99190612ee8565b601260008282546122ea9190612db9565b90915550506011546122fe90600a90612ee8565b6011600082825461230f9190612db9565b909155505060135461232390600a90612ee8565b601360008282546123349190612db9565b909155505060145461234890600a90612ee8565b601460008282546123599190612db9565b909155506123f99050565b600a6012546123739190612ee8565b601260008282546123849190612dcc565b909155505060115461239890600a90612ee8565b601160008282546123a99190612db9565b90915550506013546123bd90600a90612ee8565b601360008282546123ce9190612dcc565b90915550506014546123e290600a90612ee8565b601460008282546123f39190612dcc565b90915550505b60e354612407906006612ed1565b60125411156124355760e35461241e906002612ed1565b6012600082825461242f9190612dcc565b90915550505b60e354612443906006612ed1565b60115411156124715760e35461245a906002612ed1565b6011600082825461246b9190612dcc565b90915550505b60e35461247f906003612ed1565b60135411156124a25760e3546013600082825461249c9190612dcc565b90915550505b60e3546124b0906003612ed1565b60145411156124d35760e354601460008282546124cd9190612dcc565b90915550505b60e35460125410806124e8575060e354601154105b806125025750600260e3546124fd9190612ee8565b601354105b15612588576000600454600a6125189190612ec5565b9050612710612528826032612ed1565b6125329190612ee8565b601155612710612543826032612ed1565b61254d9190612ee8565b60125561271061255e826064612ed1565b6125689190612ee8565b601355612710612579826096612ed1565b6125839190612ee8565b601455505b50600190565b6001546001600160a01b031660009081526007602052604081205460e7546125b69190611730565b60df81905585108015906125d257506001600160a01b03841615155b15610fb257833b6125fd5760dd80546001600160a01b0319166001600160a01b038616179055612640565b823b156126245760dd80546001600160a01b0319166001600160a01b038416179055612640565b60dd80546001600160a01b0319166001600160a01b0385161790555b60e85460ff161561273c5760c760de5410156126be5760dd5460de546001600160a01b039091169060159060c8811061267b5761267b612f0a565b0160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600160de60008282546126b39190612db9565b90915550610fb29050565b60de5460c7036127375760e8805460ff1916905560dd5460de546001600160a01b039091169060159060c881106126f7576126f7612f0a565b0180546001600160a01b0319166001600160a01b0392909216919091179055600060de5561272361287a565b50600160de60008282546126b39190612db9565b610fb2565b60c760de5410156127755761274f61287a565b5060dd5460de546001600160a01b039091169060159060c8811061267b5761267b612f0a565b60de5460c703610fb25761278761287a565b5060dd5460de546001600160a01b039091169060159060c881106127ad576127ad612f0a565b0180546001600160a01b0319166001600160a01b0392909216919091179055600060de55506001949350505050565b600c5460009060ff16156128015760026006546127f99190612ee8565b600655612588565b60026005546128109190612ee8565b60055550600190565b600c5460009060ff161561283d57600654612835906002612ed1565b60065561284f565b60055461284b906002612ed1565b6005555b600f546038036125885760eb5460055560ec546006556000600f5560ea805460ff1916905550600190565b6001546001600160a01b031660009081526007602052604081205460e35482916128a391611730565b6001546001600160a01b03166000908152600760205260408120549192509082106128f6576001546001600160a01b03166000908152600760205260409020546128ef9060fa90612ee8565b9050612973565b612901826002612ed1565b6001546001600160a01b03166000908152600760205260409020541115612949576001546001600160a01b03166000908152600760205260409020546128ef9060b490612ee8565b6001546001600160a01b03166000908152600760205260409020546129709060dc90612ee8565b90505b6001546001600160a01b0316600090815260076020526040812054612999908390612dcc565b1115612aab576001546001600160a01b0316600090815260076020526040812080548392906129c9908490612dcc565b925050819055508060076000601560de5460c881106129ea576129ea612f0a565b01546001600160a01b03168152602081019190915260400160009081208054909190612a17908490612db9565b9091555050600180546001600160a01b0390811660009081526009602090815260408083204290819055855485168452600a835281842081905594549093168252600b9052205560de5460159060c88110612a7457612a74612f0a565b01546001546040518381526001600160a01b039283169290911690600080516020612fc88339815191529060200160405180910390a35b60019250505090565b60405180611900016040528060c8906020820280368337509192915050565b600060208083528351808285015260005b81811015612b0057858101830151858201604001528201612ae4565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113d357600080fd5b60008060408385031215612b4957600080fd5b8235612b5481612b21565b946020939093013593505050565b600060208284031215612b7457600080fd5b8135610e3081612b21565b600080600060608486031215612b9457600080fd5b8335612b9f81612b21565b92506020840135612baf81612b21565b929592945050506040919091013590565b6119008101818360005b60c8811015612bf25781516001600160a01b0316835260209283019290910190600101612bca565b50505092915050565b600060208284031215612c0d57600080fd5b5035919050565b60008060408385031215612c2757600080fd5b8235612c3281612b21565b91506020830135612c4281612b21565b809150509250929050565b604051612060810167ffffffffffffffff81118282101715612c7f57634e487b7160e01b600052604160045260246000fd5b60405290565b6000806140c0808486031215612c9a57600080fd5b84601f850112612ca957600080fd5b612cb1612c4d565b80612060860187811115612cc457600080fd5b865b81811015612ce7578035612cd981612b21565b845260209384019301612cc6565b508195508761207f880112612cfb57600080fd5b612d03612c4d565b93870193925082915087841115612d1957600080fd5b5b83811015612d32578035835260209283019201612d1a565b508093505050509250929050565b600181811c90821680612d5457607f821691505b602082108103612d7457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610ad957610ad9612da3565b81810381811115610ad957610ad9612da3565b600181600019825b80861115612e1b57828204831115612e0157612e01612da3565b80861615612e0e57928202925b94851c9491800291612de7565b50509250929050565b600082612e3357506001610ad9565b81612e4057506000610ad9565b8160018114612e565760028114612e6057612e7c565b6001915050610ad9565b60ff841115612e7157612e71612da3565b50506001821b610ad9565b5060208310610133831016604e8410600b8410161715612e9f575081810a610ad9565b612ea98383612ddf565b8060001904821115612ebd57612ebd612da3565b029392505050565b6000610e308383612e24565b8082028115828204841417610ad957610ad9612da3565b600082612f0557634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612f3257600080fd5b8151610e3081612b21565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612f8d5784516001600160a01b031683529383019391830191600101612f68565b50506001600160a01b03969096166060850152505050608001529392505050565b600060018201612fc057612fc0612da3565b506001019056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220faf5c44826ff7fc44b024fd66f81512b4e64c962d569f098917d4ffd534428fb64736f6c63430008140033

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.