ETH Price: $3,394.13 (+6.34%)
Gas: 28 Gwei

Token

Juno Moneta (Juno)
 

Overview

Max Total Supply

31,004.630334758 Juno

Holders

1,580

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.58864314 Juno

Value
$0.00
0x9fe897d1755d123c596c9e2f7135192914285706
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:
Juno

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 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 2 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 3 of 5 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}

File 4 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;
    }
}

File 5 of 5 : Juno.sol
/**
 *Submitted for verification at Etherscan.io on 2023-11-27
*/

/*

    Website: https://juno.cash/
    Tg: https://t.me/JunoMonetaErc
    X: twitter.com/JunoMonetaErc

*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/interfaces/IERC20.sol";

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

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        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 Juno is IERC20, Ownable {
    address public airdropAddress;
    string public name;
    string public symbol;
    uint256 public decimals;
    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;
    address public uniswap_factory;
    address pair;
    uint256 public onepct;
    uint256 public owner_limit;
    uint256 public airdrop_limit;
    uint256 public inactive_burn;
    uint256 public airdrop_threshold;
    bool public firstrun;
    uint256 private last_turnTime;
    bool public botThrottling;
    bool private macro_contraction;
    uint256 private init_ceiling;
    uint256 private init_floor;
    uint256 public swapTokensAtAmount;
    bool private swapping;
    address private treasuryAddr;
    bool private limitsEnabled;

    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _decimals,
        uint256 _supply,
        uint256 _min_supply,
        uint256 _max_supply
    ) Ownable(msg.sender) {
        uint256 init_supply = _supply * 10**_decimals;
        airdropAddress = msg.sender;
        treasuryAddr = msg.sender;
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
        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 = _min_supply * 10**_decimals;
        max_supply = _max_supply * 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 = (85 * deciCalc) / 10000; //0.0085
        treasury_pct = (200 * deciCalc) / 10000;
        owner_limit = (150 * deciCalc) / 10000; //0.015
        airdrop_limit = (500 * deciCalc) / 10000; // 0.05
        inactive_burn = (5000 * deciCalc) / 10000; //0.5
        airdrop_threshold = (25 * deciCalc) / 10000; //0.0025
        onepct = (100 * deciCalc)/ 10000; //0.01
        swapTokensAtAmount = 200 * 10** _decimals;

        airdropAddressCount = 1;
        minimum_for_airdrop = 0;
        firstrun = true;
        botThrottling = true;
        airdropQualifiedAddresses[0] = airdropAddress;
        airdrop_address_toList = airdropAddress;
        uniswap_router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswap_factory = uniswap_router.factory();

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

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

    function updateFees(uint256 _treasuryFee, uint256 _airdropFees) external onlyOwner {
        treasury_pct = _treasuryFee;
        airdrop_pct = _airdropFees;
    }

    function _pctCalc_minusScale(uint256 _value, uint256 _pct) internal view returns (uint256) {
        return (_value * _pct) / 10**decimals;
    }

    function totalSupply() external view virtual returns (uint256) {
        return _totalSupply;
    }

    function allowance(address _owner, address _spender) external view virtual returns (uint256) {
        return allowances[_owner][_spender];
    }

    function burnRate() external view returns (uint256) {
        return burn_pct;
    }

    function mintRate() external view returns (uint256) {
        return mint_pct;
    }

    function showAirdropThreshold() external view returns (uint256) {
        return airdrop_threshold;
    }

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

    function checkWhenLast_USER_Transaction(address _address) external view returns (uint256) {
        return lastTXtime[_address];
    }

    function LAST_TX_LONGTERM_BURN_COUNTER(address _address) external view returns (uint256) {
        return lastLT_TXtime[_address];
    }

    function LAST_TX_SHORTERM_BURN_COUNTER(address _address) external view returns (uint256) {
        return lastST_TXtime[_address];
    }

    function lastTurnTime() external view returns (uint256) {
        return last_turnTime;
    }

    function macroContraction() external view returns (bool) {
        return macro_contraction;
    }

    function _rateadj() internal returns (bool) {
        if (isBurning) {
            burn_pct += burn_pct / 10;
            mint_pct += mint_pct / 10;
            airdrop_pct += airdrop_pct / 10;
            treasury_pct += treasury_pct / 10;
        } else {
            burn_pct -= burn_pct / 10;
            mint_pct += mint_pct / 10;
            airdrop_pct -= airdrop_pct / 10;
            treasury_pct -= treasury_pct / 10;
        }

        if (burn_pct > onepct * 6) {
            burn_pct -= onepct * 2;
        }

        if (mint_pct > onepct * 6) {
            mint_pct -= onepct * 2;
        }

        if (airdrop_pct > onepct * 3) {
            airdrop_pct -= onepct;
        }

        if (treasury_pct > onepct * 3) {
            treasury_pct -= onepct;
        }

        if (burn_pct < onepct || mint_pct < onepct || airdrop_pct < onepct / 2) {
            uint256 deciCalc = 10**decimals;
            mint_pct = (50 * deciCalc)/ 10000;  //0.0125
            burn_pct = (50 * deciCalc)/ 10000; //0.0125
            airdrop_pct = (85 * deciCalc)/ 10000; //0.0085
            treasury_pct = (200 * 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.0125
            mint_pct = (50 * deciCalc)/ 10000;  //0.0125
            airdrop_pct = (85 * deciCalc)/ 10000; //0.0085
            treasury_pct = (200 * 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 burn_Inactive_Address(address _address) external returns (bool) {
        require(_address != address(0), "Invalid address");
        require(!isContract(_address), "This is a contract address. Use the burn inactive contract function instead.");
        uint256 inactive_bal = 0;

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

        return true;
    }

        function burn_Inactive_Contract(address _address) external returns (bool) {
        require(_address != address(0), "Invalid address");
        require(isContract(_address), "Not a contract address.");
        require(_address != uniswap_factory, "Invalid contract address");
        require(_address != address(uniswap_router), "Invalid contract address");

        uint256 inactive_bal = 0;

        if (block.timestamp > lastST_TXtime[_address] + 604800) {
            inactive_bal = _pctCalc_minusScale(balanceOf[_address], inactive_burn);
            _burn(_address, inactive_bal);
            lastST_TXtime[_address] = block.timestamp;
        } else if (block.timestamp > lastLT_TXtime[_address] + 1209600) {
            _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 manager_burn(address _to, uint256 _value) external onlyOwner returns (bool) {
        require(_to != address(0), "Invalid address");
        require(msg.sender != address(0), "Invalid address");

        _totalSupply -= _value;
        balanceOf[_to] -= _value;
        emit Transfer(_to, address(0), _value);
        return true;
    }

    function manager_bot_throttlng() external onlyOwner returns (bool) {
        require(msg.sender != address(0), "Invalid address");

        botThrottling = 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 setUniswapRouter(IUniswapV2Router02 _uniswapRouter) external onlyOwner returns (bool) {
        require(msg.sender != address(0), "Invalid address");
        require(address(_uniswapRouter) != address(0), "Invalid address");

        uniswap_router = _uniswapRouter;
        return true;
    }

    function setUniswapFactory(address _uniswapFactory) external onlyOwner returns (bool) {
        require(msg.sender != address(0), "Invalid address");
        require(_uniswapFactory != address(0), "Invalid address");

        uniswap_factory = _uniswapFactory;
        return true;
    }

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

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

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

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

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


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

        if(limitsEnabled) {
            if(_from != airdropAddress && _to != airdropAddress) {
            if(!swapping && _from == pair && _to != owner()) {
                require(_value + balanceOf[_to] <= 2000 * 10 ** decimals,"max 2% buy allowed");
            } else if(!swapping && _to == pair && _from != owner()) {
                require(_value + balanceOf[_from] <= 2000 * 10 ** decimals,"max 2% sell allowed");
            }
            }
        }

        if (swapping) {
            return _normalTransfer(_from, _to, _value);
        }

        uint256 contractTokenBalance = balanceOf[address(this)];
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if(canSwap && !swapping && _to == pair && _from != address(this) && _to != address(this) && msg.sender != pair) {
            swapping = true;
            swapTokensForEth(swapTokensAtAmount);
            swapping = false;
        }

        if (
            (_from == uniswap_factory && _to == address(uniswap_router)) ||
            (_from == address(uniswap_router)  && _to == uniswap_factory) ||
            (passlist[_from])
        ) {
            _normalTransfer(_from, _to, _value);
        } else {
            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);

                uint256 ownerlimit = _pctCalc_minusScale(_totalSupply, owner_limit);
                if (balanceOf[address(this)] <= ownerlimit) {
                    balanceOf[_from] -= treasury_amt;
                    balanceOf[address(this)] += treasury_amt;
                    emit Transfer(_from, address(this), treasury_amt);
                }

                uint256 airdrop_wallet_limit = _pctCalc_minusScale(_totalSupply, airdrop_limit);
                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);

                uint256 ownerlimit = _pctCalc_minusScale(_totalSupply, owner_limit);
                if (balanceOf[address(this)] <= ownerlimit) {
                    balanceOf[_from] -= treasury_amt;
                    balanceOf[address(this)] += treasury_amt;
                    emit Transfer(_from, address(this), treasury_amt);
                }

                uint256 airdrop_wallet_limit = _pctCalc_minusScale(_totalSupply, airdrop_limit);
                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 swapTokensForEth(uint256 _amount) public {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswap_router.WETH();
        _approve(address(this), address(uniswap_router), _amount);
        uniswap_router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _amount,
            0,
            path,
            treasuryAddr,
            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 {}
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_decimals","type":"uint256"},{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"uint256","name":"_min_supply","type":"uint256"},{"internalType":"uint256","name":"_max_supply","type":"uint256"}],"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":"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":"airdrop_address_toList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdrop_limit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdrop_pct","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdrop_threshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"botThrottling","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"burn_Inactive_Address","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"burn_Inactive_Contract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"checkWhenLast_USER_Transaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"firstrun","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[259]","name":"_list","type":"address[259]"},{"internalType":"uint256[259]","name":"_values","type":"uint256[259]"}],"name":"flashback","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"inactive_burn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBurning","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastTXtime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"macroContraction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manager_bot_throttlng","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"manager_burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"_uniswapFactory","type":"address"}],"name":"setUniswapFactory","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IUniswapV2Router02","name":"_uniswapRouter","type":"address"}],"name":"setUniswapRouter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"showAirdropThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"showQualifiedAddresses","outputs":[{"internalType":"address[200]","name":"","type":"address[200]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"swapTokensForEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury_pct","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"turn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tx_n","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswap_factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswap_router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_airdropFees","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b5060405162003c4138038062003c4183398101604081905262000034916200063e565b33806200005b57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b620000668162000529565b5060006200007685600a620007e2565b620000829085620007f7565b60018054336001600160a01b0319909116811790915560ee8054610100600160a81b03191661010090920291909117905590506002620000c38882620008a0565b506003620000d28782620008a0565b506004859055336000908152600760209081526040808320849055600982528083204290819055600b8352818420819055600a808452828520919091556008909252909120805460ff19169055600e82905562000131908690620007e2565b6200013d9084620007f7565b6006556200014d85600a620007e2565b620001599083620007f7565b600581905560eb5560065460ec5560ea805461ff0019166101001790556000600f8190554260e955600c805460ff1916600117905560ee805460ff60a81b1916600160a81b1790556010819055620001b386600a620007e2565b9050612710620001c5826032620007f7565b620001d191906200096c565b601155612710620001e4826032620007f7565b620001f091906200096c565b60125561271062000203826055620007f7565b6200020f91906200096c565b601355612710620002228260c8620007f7565b6200022e91906200096c565b60145561271062000241826096620007f7565b6200024d91906200096c565b60e45561271062000261826101f4620007f7565b6200026d91906200096c565b60e5556127106200028182611388620007f7565b6200028d91906200096c565b60e655612710620002a0826019620007f7565b620002ac91906200096c565b60e755612710620002bf826064620007f7565b620002cb91906200096c565b60e355620002db86600a620007e2565b620002e89060c8620007f7565b60ed55600160de819055600060df5560e8805460ff19908116831790915560ea80549091168217905554601580546001600160a01b039092166001600160a01b0319928316811790915560dd80548316909117905560e08054737a250d5630b4cf539739df2c5dacb4c659f2488d9216821790556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000398573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003be91906200098f565b60e180546001600160a01b0319166001600160a01b0392831690811790915560e054604080516315ab88c960e31b8152905160009463c9c6539693309391169163ad5c4648916004808201926020929091908290030181865afa1580156200042a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200045091906200098f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200049e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004c491906200098f565b60e280546001600160a01b0319166001600160a01b03831617905560405184815290915033906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050505050505050620009ba565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620005a157600080fd5b81516001600160401b0380821115620005be57620005be62000579565b604051601f8301601f19908116603f01168101908282118183101715620005e957620005e962000579565b816040528381526020925086838588010111156200060657600080fd5b600091505b838210156200062a57858201830151818301840152908201906200060b565b600093810190920192909252949350505050565b60008060008060008060c087890312156200065857600080fd5b86516001600160401b03808211156200067057600080fd5b6200067e8a838b016200058f565b975060208901519150808211156200069557600080fd5b50620006a489828a016200058f565b95505060408701519350606087015192506080870151915060a087015190509295509295509295565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000724578160001904821115620007085762000708620006cd565b808516156200071657918102915b93841c9390800290620006e8565b509250929050565b6000826200073d57506001620007dc565b816200074c57506000620007dc565b8160018114620007655760028114620007705762000790565b6001915050620007dc565b60ff841115620007845762000784620006cd565b50506001821b620007dc565b5060208310610133831016604e8410600b8410161715620007b5575081810a620007dc565b620007c18383620006e3565b8060001904821115620007d857620007d8620006cd565b0290505b92915050565b6000620007f083836200072c565b9392505050565b8082028115828204841417620007dc57620007dc620006cd565b600181811c908216806200082657607f821691505b6020821081036200084757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200089b57600081815260208120601f850160051c81016020861015620008765750805b601f850160051c820191505b81811015620008975782815560010162000882565b5050505b505050565b81516001600160401b03811115620008bc57620008bc62000579565b620008d481620008cd845462000811565b846200084d565b602080601f8311600181146200090c5760008415620008f35750858301515b600019600386901b1c1916600185901b17855562000897565b600085815260208120601f198616915b828110156200093d578886015182559484019460019091019084016200091c565b50858210156200095c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000826200098a57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215620009a257600080fd5b81516001600160a01b0381168114620007f057600080fd5b61327780620009ca6000396000f3fe6080604052600436106103855760003560e01c80638a333b50116101d1578063bd9e0c4c11610102578063d91ed42c116100a0578063f1145f741161006f578063f1145f7414610a02578063f2fde38b14610a38578063f38cb16414610a58578063fdb875b614610a7857600080fd5b8063d91ed42c14610950578063dd62ed3e14610986578063e04b677f146109cc578063e2f45605146109ec57600080fd5b8063ca0dcf16116100dc578063ca0dcf16146108d5578063d5d9e45e146108ea578063d5f18f5914610900578063d705cf851461093057600080fd5b8063bd9e0c4c1461086a578063bea9849e146108a0578063bed99850146108c057600080fd5b8063a683c6c41161016f578063ab0eda9e11610149578063ab0eda9e146107ea578063afa4f3b21461080a578063b28805f41461082a578063b98d1fe21461084a57600080fd5b8063a683c6c41461079e578063a9059cbb146107b4578063aa6b05e3146107d457600080fd5b80639052be61116101ab5780639052be611461073d57806395d89b411461075d57806397ddd1ed14610772578063a2d53f111461078857600080fd5b80638a333b50146106f35780638b299903146107095780638da5cb5b1461071f57600080fd5b8063627a91d9116102b657806370a08231116102545780637a1d5232116102235780637a1d52321461068957806381b3fa071461069f57806384413b65146106b957806387678f8b146106d957600080fd5b806370a0823114610612578063715018a61461063f57806371b9b92014610654578063751039fc1461067457600080fd5b8063680df78911610290578063680df78914610580578063695d3a92146105965780636db79437146105b85780636f36258b146105da57600080fd5b8063627a91d914610528578063632e6cdf14610555578063644d53731461056b57600080fd5b806323b872dd116103235780633bbfe015116102fd5780633bbfe015146104ce5780635668af1a146104e45780635b7c8210146104f957806361c03d071461051357600080fd5b806323b872dd1461047b578063313ce5671461049b57806333308281146104b157600080fd5b806313a0e2d61161035f57806313a0e2d61461040c57806316eee3ff1461042c57806318160ddd146104505780631b20768d1461046557600080fd5b806306fdde031461039157806307616494146103bc578063095ea7b3146103ec57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610a98565b6040516103b39190612d0b565b60405180910390f35b3480156103c857600080fd5b506103dc6103d7366004612d6e565b610b26565b60405190151581526020016103b3565b3480156103f857600080fd5b506103dc610407366004612d8b565b610dd3565b34801561041857600080fd5b506103dc610427366004612d8b565b610deb565b34801561043857600080fd5b5061044260105481565b6040519081526020016103b3565b34801561045c57600080fd5b50600e54610442565b34801561047157600080fd5b5061044260e45481565b34801561048757600080fd5b506103dc610496366004612db7565b610eb5565b3480156104a757600080fd5b5061044260045481565b3480156104bd57600080fd5b5060ea54610100900460ff166103dc565b3480156104da57600080fd5b5061044260e35481565b3480156104f057600080fd5b5060e754610442565b34801561050557600080fd5b50600c546103dc9060ff1681565b34801561051f57600080fd5b506103dc610f08565b34801561053457600080fd5b50610442610543366004612d6e565b60096020526000908152604090205481565b34801561056157600080fd5b5061044260e55481565b34801561057757600080fd5b5060e954610442565b34801561058c57600080fd5b5061044260e65481565b3480156105a257600080fd5b506105ab610f3f565b6040516103b39190612df8565b3480156105c457600080fd5b506105d86105d3366004612e33565b610f85565b005b3480156105e657600080fd5b5060dd546105fa906001600160a01b031681565b6040516001600160a01b0390911681526020016103b3565b34801561061e57600080fd5b5061044261062d366004612d6e565b60076020526000908152604090205481565b34801561064b57600080fd5b506105d8610f98565b34801561066057600080fd5b506103dc61066f366004612d6e565b610fac565b34801561068057600080fd5b506105d861104a565b34801561069557600080fd5b5061044260145481565b3480156106ab57600080fd5b5060e8546103dc9060ff1681565b3480156106c557600080fd5b506001546105fa906001600160a01b031681565b3480156106e557600080fd5b5060ea546103dc9060ff1681565b3480156106ff57600080fd5b5061044260055481565b34801561071557600080fd5b50610442600f5481565b34801561072b57600080fd5b506000546001600160a01b03166105fa565b34801561074957600080fd5b5060e0546105fa906001600160a01b031681565b34801561076957600080fd5b506103a6611061565b34801561077e57600080fd5b5061044260065481565b34801561079457600080fd5b5061044260df5481565b3480156107aa57600080fd5b5061044260135481565b3480156107c057600080fd5b506103dc6107cf366004612d8b565b61106e565b3480156107e057600080fd5b5061044260e75481565b3480156107f657600080fd5b506103dc610805366004612d6e565b611087565b34801561081657600080fd5b506105d8610825366004612e55565b611142565b34801561083657600080fd5b506105d8610845366004612e55565b611168565b34801561085657600080fd5b5060e1546105fa906001600160a01b031681565b34801561087657600080fd5b50610442610885366004612d6e565b6001600160a01b031660009081526009602052604090205490565b3480156108ac57600080fd5b506103dc6108bb366004612d6e565b6112ce565b3480156108cc57600080fd5b50601254610442565b3480156108e157600080fd5b50601154610442565b3480156108f657600080fd5b5061044260de5481565b34801561090c57600080fd5b506103dc61091b366004612d6e565b60086020526000908152604090205460ff1681565b34801561093c57600080fd5b506103dc61094b366004612d6e565b611340565b34801561095c57600080fd5b5061044261096b366004612d6e565b6001600160a01b03166000908152600b602052604090205490565b34801561099257600080fd5b506104426109a1366004612e6e565b6001600160a01b039182166000908152600d6020908152604080832093909416825291909152205490565b3480156109d857600080fd5b506103dc6109e7366004612d6e565b61152e565b3480156109f857600080fd5b5061044260ed5481565b348015610a0e57600080fd5b50610442610a1d366004612d6e565b6001600160a01b03166000908152600a602052604090205490565b348015610a4457600080fd5b506105d8610a53366004612d6e565b6115a0565b348015610a6457600080fd5b506103dc610a73366004612edf565b6115de565b348015610a8457600080fd5b506103dc610a93366004612d6e565b611835565b60028054610aa590612f9a565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad190612f9a565b8015610b1e5780601f10610af357610100808354040283529160200191610b1e565b820191906000526020600020905b815481529060010190602001808311610b0157829003601f168201915b505050505081565b60006001600160a01b038216610b575760405162461bcd60e51b8152600401610b4e90612fd4565b60405180910390fd5b813b15610be15760405162461bcd60e51b815260206004820152604c60248201527f54686973206973206120636f6e747261637420616464726573732e205573652060448201527f746865206275726e20696e61637469766520636f6e74726163742066756e637460648201526b34b7b71034b739ba32b0b21760a11b608482015260a401610b4e565b6001546000906001600160a01b0390811690841603610cf7576001600160a01b038316600090815260096020526040902054610c209062093a80613013565b4211610ca45760405162461bcd60e51b815260206004820152604760248201527f556e61626c6520746f206275726e2c207468652061697264726f70206164647260448201527f65737320686173206265656e2061637469766520666f7220746865206c6173746064820152662037206461797360c81b608482015260a401610b4e565b6001600160a01b03831660009081526007602052604090205460e654610cca91906118cf565b9050610cd683826118f4565b506001600160a01b0383166000908152600960205260409020429055610dca565b6001600160a01b0383166000908152600b6020526040902054610d1d9062093a80613013565b421115610d77576001600160a01b03831660009081526007602052604090205460e654610d4a91906118cf565b9050610d5683826118f4565b506001600160a01b0383166000908152600b60205260409020429055610dca565b6001600160a01b0383166000908152600a6020526040902054610d9d9062127500613013565b421115610dca576001600160a01b038316600090815260076020526040902054610dc89084906118f4565b505b50600192915050565b600033610de181858561191c565b9150505b92915050565b6000610df5611985565b6001600160a01b038316610e1b5760405162461bcd60e51b8152600401610b4e90612fd4565b33610e385760405162461bcd60e51b8152600401610b4e90612fd4565b81600e6000828254610e4a9190613026565b90915550506001600160a01b03831660009081526007602052604081208054849290610e77908490613026565b90915550506040518281526000906001600160a01b03851690600080516020613222833981519152906020015b60405180910390a350600192915050565b6001600160a01b0383166000908152600d60209081526040808320338452909152812080548391908390610eea908490613026565b90915550610efb90508484846119b2565b50600190505b9392505050565b6000610f12611985565b33610f2f5760405162461bcd60e51b8152600401610b4e90612fd4565b5060ea805460ff19169055600190565b610f47612cec565b604080516119008101918290529060159060c89082845b81546001600160a01b03168152600190910190602001808311610f5e575050505050905090565b610f8d611985565b601491909155601355565b610fa0611985565b610faa6000612244565b565b60006001600160a01b038216610fd45760405162461bcd60e51b8152600401610b4e90612fd4565b6000546001600160a01b038381169116146110215760405162461bcd60e51b815260206004820152600d60248201526c2737ba103a34329037bbb732b960991b6044820152606401610b4e565b506001600160a01b03166000908152600860205260409020805460ff1916600190811790915590565b611052611985565b60ee805460ff60a81b19169055565b60038054610aa590612f9a565b60003361107c8185856119b2565b506001949350505050565b6000611091611985565b336110ae5760405162461bcd60e51b8152600401610b4e90612fd4565b6001600160a01b0382166110d45760405162461bcd60e51b8152600401610b4e90612fd4565b6001546001600160a01b0316331461111f5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610b4e565b50600180546001600160a01b0383166001600160a01b0319909116178155919050565b61114a611985565b60045461115890600a61311f565b611162908261312b565b60ed5550565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061119d5761119d613142565b6001600160a01b0392831660209182029290920181019190915260e054604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156111f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121a9190613158565b8160018151811061122d5761122d613142565b6001600160a01b03928316602091820292909201015260e054611253913091168461191c565b5060e05460ee5460405163791ac94760e01b81526001600160a01b039283169263791ac947926112989287926000928892610100909104909116904290600401613175565b600060405180830381600087803b1580156112b257600080fd5b505af11580156112c6573d6000803e3d6000fd5b505050505050565b60006112d8611985565b336112f55760405162461bcd60e51b8152600401610b4e90612fd4565b6001600160a01b03821661131b5760405162461bcd60e51b8152600401610b4e90612fd4565b5060e080546001600160a01b0383166001600160a01b03199091161790556001919050565b60006001600160a01b0382166113685760405162461bcd60e51b8152600401610b4e90612fd4565b813b6113b65760405162461bcd60e51b815260206004820152601760248201527f4e6f74206120636f6e747261637420616464726573732e0000000000000000006044820152606401610b4e565b60e1546001600160a01b039081169083160361140f5760405162461bcd60e51b8152602060048201526018602482015277496e76616c696420636f6e7472616374206164647265737360401b6044820152606401610b4e565b60e0546001600160a01b03908116908316036114685760405162461bcd60e51b8152602060048201526018602482015277496e76616c696420636f6e7472616374206164647265737360401b6044820152606401610b4e565b6001600160a01b0382166000908152600b602052604081205461148e9062093a80613013565b4211156114bb576001600160a01b03831660009081526007602052604090205460e654610d4a91906118cf565b6001600160a01b0383166000908152600a60205260409020546114e19062127500613013565b421115610dca576001600160a01b03831660009081526007602052604090205461150c9084906118f4565b5050506001600160a01b03166000908152600a60205260409020429055600190565b6000611538611985565b336115555760405162461bcd60e51b8152600401610b4e90612fd4565b6001600160a01b03821661157b5760405162461bcd60e51b8152600401610b4e90612fd4565b5060e180546001600160a01b0383166001600160a01b03199091161790556001919050565b6115a8611985565b6001600160a01b0381166115d257604051631e4fbdf760e01b815260006004820152602401610b4e565b6115db81612244565b50565b60006115e8611985565b336116055760405162461bcd60e51b8152600401610b4e90612fd4565b60005b61010381101561182b5760008482610103811061162757611627613142565b60200201516001600160a01b031614611819578281610103811061164d5761164d613142565b602002015160076000336001600160a01b03166001600160a01b0316815260200190815260200160002060008282546116869190613026565b9091555083905081610103811061169f5761169f613142565b602002015160076000868461010381106116bb576116bb613142565b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002060008282546116ef9190613013565b90915550429050600960008684610103811061170d5761170d613142565b60200201516001600160a01b03166001600160a01b031681526020019081526020016000208190555042600b60008684610103811061174e5761174e613142565b60200201516001600160a01b03166001600160a01b031681526020019081526020016000208190555042600a60008684610103811061178f5761178f613142565b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002081905550838161010381106117cb576117cb613142565b60200201516001600160a01b031633600080516020613222833981519152858461010381106117fc576117fc613142565b602002015160405161181091815260200190565b60405180910390a35b80611823816131e6565b915050611608565b5060019392505050565b60006001600160a01b03821661185d5760405162461bcd60e51b8152600401610b4e90612fd4565b6000546001600160a01b038381169116146118aa5760405162461bcd60e51b815260206004820152600d60248201526c2737ba103a34329037bbb732b960991b6044820152606401610b4e565b506001600160a01b03166000908152600860205260409020805460ff19169055600190565b6000600454600a6118e0919061311f565b6118ea838561312b565b610f0191906131ff565b60006001600160a01b038316610e385760405162461bcd60e51b8152600401610b4e90612fd4565b6001600160a01b038381166000818152600d6020908152604080832094871680845294825280832086905551858152919392917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a35060019392505050565b6000546001600160a01b03163314610faa5760405163118cdaa760e01b8152336004820152602401610b4e565b600081600003611a045760405162461bcd60e51b815260206004820152601e60248201527f4e6f207a65726f2076616c7565207472616e7366657220616c6c6f77656400006044820152606401610b4e565b6001600160a01b038316611a4c5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964204164647265737360881b6044820152606401610b4e565b60ee54600160a81b900460ff1615611c13576001546001600160a01b03858116911614801590611a8a57506001546001600160a01b03848116911614155b15611c135760ee5460ff16158015611aaf575060e2546001600160a01b038581169116145b8015611ac957506000546001600160a01b03848116911614155b15611b5357600454611adc90600a61311f565b611ae8906107d061312b565b6001600160a01b038416600090815260076020526040902054611b0b9084613013565b1115611b4e5760405162461bcd60e51b81526020600482015260126024820152711b585e080c8948189d5e48185b1b1bddd95960721b6044820152606401610b4e565b611c13565b60ee5460ff16158015611b73575060e2546001600160a01b038481169116145b8015611b8d57506000546001600160a01b03858116911614155b15611c1357600454611ba090600a61311f565b611bac906107d061312b565b6001600160a01b038516600090815260076020526040902054611bcf9084613013565b1115611c135760405162461bcd60e51b81526020600482015260136024820152721b585e080c89481cd95b1b08185b1b1bddd959606a1b6044820152606401610b4e565b60ee5460ff1615611c3057611c29848484612294565b9050610f01565b3060009081526007602052604090205460ed5481108015908190611c57575060ee5460ff16155b8015611c70575060e2546001600160a01b038681169116145b8015611c8557506001600160a01b0386163014155b8015611c9a57506001600160a01b0385163014155b8015611cb1575060e2546001600160a01b03163314155b15611cda5760ee805460ff1916600117905560ed54611ccf90611168565b60ee805460ff191690555b60e1546001600160a01b038781169116148015611d04575060e0546001600160a01b038681169116145b80611d34575060e0546001600160a01b038781169116148015611d34575060e1546001600160a01b038681169116145b80611d5757506001600160a01b03861660009081526008602052604090205460ff165b15611d6d57611d67868686612294565b506121c4565b60e954611d7b90603c613013565b421115611e7857600554600e5410611e2257600c805460ff19166001179055611da2612325565b5060e85460ff16611e1d576000600554600e54611dbf9190613026565b90506000611dce82600261312b565b6001546001600160a01b0316600090815260076020526040902054611df39190613026565b1115611e1b57600154611e19906001600160a01b0316611e1483600261312b565b6118f4565b505b505b611e78565b600654600e5411611e7857600c805460ff19169055611e3f612325565b506000600e54600654611e529190613026565b600154909150611e75906001600160a01b0316611e7083600261312b565b61245b565b50505b60de54600003611e8c57611e8a6124f3565b505b600c5460ff161561212b576000611ea5856012546118cf565b90506000611eb5866013546118cf565b90506000611ec5876014546118cf565b905060008183611ed5868b613026565b611edf9190613026565b611ee99190613026565b9050611ef58a856118f4565b506001600160a01b038a1660009081526007602052604081208054839290611f1e908490613026565b90915550506001600160a01b03891660009081526007602052604081208054839290611f4b908490613013565b92505081905550886001600160a01b03168a6001600160a01b031660008051602061322283398151915283604051611f8591815260200190565b60405180910390a36000611f9d600e5460e4546118cf565b306000908152600760205260409020549091508110612036576001600160a01b038b1660009081526007602052604081208054859290611fde908490613026565b90915550503060009081526007602052604081208054859290612002908490613013565b909155505060405183815230906001600160a01b038d16906000805160206132228339815191529060200160405180910390a35b6000612046600e5460e5546118cf565b6001546001600160a01b031660009081526007602052604090205490915081106120fa576001600160a01b038c1660009081526007602052604081208054879290612092908490613026565b90915550506001546001600160a01b0316600090815260076020526040812080548792906120c1908490613013565b90915550506001546040518681526001600160a01b03918216918e16906000805160206132228339815191529060200160405180910390a35b60016010600082825461210d9190613013565b9091555061211f90508a328e8e6127c5565b505050505050506121c4565b600c5460ff16612188576000612143856011546118cf565b90506000612153866013546118cf565b90506000612163876014546118cf565b9050600081612172848a613026565b61217c9190613026565b9050611ef5328561245b565b60405162461bcd60e51b81526020600482015260116024820152704572726f7220617420545820426c6f636b60781b6044820152606401610b4e565b505032600081815260096020908152604080832042908190556001600160a01b03898116808652838620839055908916808652838620839055868652600a8552838620839055818652838620839055808652838620839055958552600b909352818420819055918352808320829055928252919020555060019392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166000908152600760205260408120805483919083906122be908490613026565b90915550506001600160a01b038316600090815260076020526040812080548492906122eb908490613013565b92505081905550826001600160a01b0316846001600160a01b03166000805160206132228339815191528460405161197391815260200190565b60006001600f600082825461233a9190613013565b9091555050600f546001148015612354575060e85460ff16155b156123e9576000600454600a61236a919061311f565b905061271061237a82603261312b565b61238491906131ff565b60115561271061239582603261312b565b61239f91906131ff565b6011556127106123b082605561312b565b6123ba91906131ff565b6013556127106123cb8260c861312b565b6123d591906131ff565b6014555060ea805461ff0019166101001790555b6002600f54101580156123ff5750601c600f5411155b156124215761240c612a13565b5060ea805461ff001916610100179055612451565b601d600f541015801561243757506038600f5411155b1561245157612444612a50565b5060ea805461ff00191690555b504260e955600190565b60006001600160a01b0383166124835760405162461bcd60e51b8152600401610b4e90612fd4565b81600e60008282546124959190613013565b90915550506001600160a01b038316600090815260076020526040812080548492906124c2908490613013565b90915550506040518281526001600160a01b0384169060009060008051602061322283398151915290602001610ea4565b600c5460009060ff161561259b57600a60125461251091906131ff565b601260008282546125219190613013565b909155505060115461253590600a906131ff565b601160008282546125469190613013565b909155505060135461255a90600a906131ff565b6013600082825461256b9190613013565b909155505060145461257f90600a906131ff565b601460008282546125909190613013565b909155506126309050565b600a6012546125aa91906131ff565b601260008282546125bb9190613026565b90915550506011546125cf90600a906131ff565b601160008282546125e09190613013565b90915550506013546125f490600a906131ff565b601360008282546126059190613026565b909155505060145461261990600a906131ff565b6014600082825461262a9190613026565b90915550505b60e35461263e90600661312b565b601254111561266c5760e35461265590600261312b565b601260008282546126669190613026565b90915550505b60e35461267a90600661312b565b60115411156126a85760e35461269190600261312b565b601160008282546126a29190613026565b90915550505b60e3546126b690600361312b565b60135411156126d95760e354601360008282546126d39190613026565b90915550505b60e3546126e790600361312b565b601454111561270a5760e354601460008282546127049190613026565b90915550505b60e354601254108061271f575060e354601154105b806127395750600260e35461273491906131ff565b601354105b156127bf576000600454600a61274f919061311f565b905061271061275f82603261312b565b61276991906131ff565b60115561271061277a82603261312b565b61278491906131ff565b60125561271061279582605561312b565b61279f91906131ff565b6013556127106127b08260c861312b565b6127ba91906131ff565b601455505b50600190565b6001546001600160a01b031660009081526007602052604081205460e7546127ed91906118cf565b60df819055851080159061280957506001600160a01b03841615155b1561107c57833b6128345760dd80546001600160a01b0319166001600160a01b038616179055612877565b823b1561285b5760dd80546001600160a01b0319166001600160a01b038416179055612877565b60dd80546001600160a01b0319166001600160a01b0385161790555b60e85460ff16156129735760c760de5410156128f55760dd5460de546001600160a01b039091169060159060c881106128b2576128b2613142565b0160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600160de60008282546128ea9190613013565b9091555061107c9050565b60de5460c70361296e5760e8805460ff1916905560dd5460de546001600160a01b039091169060159060c8811061292e5761292e613142565b0180546001600160a01b0319166001600160a01b0392909216919091179055600060de5561295a612ab2565b50600160de60008282546128ea9190613013565b61107c565b60c760de5410156129ac57612986612ab2565b5060dd5460de546001600160a01b039091169060159060c881106128b2576128b2613142565b60de5460c70361107c576129be612ab2565b5060dd5460de546001600160a01b039091169060159060c881106129e4576129e4613142565b0180546001600160a01b0319166001600160a01b0392909216919091179055600060de55506001949350505050565b600c5460009060ff1615612a38576002600654612a3091906131ff565b6006556127bf565b6002600554612a4791906131ff565b60055550600190565b600c5460009060ff1615612a7457600654612a6c90600261312b565b600655612a86565b600554612a8290600261312b565b6005555b600f546038036127bf5760eb5460055560ec546006556000600f5560ea805461ff001916905550600190565b6001546001600160a01b031660009081526007602052604081205460e3548291612adb916118cf565b6001546001600160a01b0316600090815260076020526040812054919250908210612b2e576001546001600160a01b0316600090815260076020526040902054612b279060fa906131ff565b9050612bab565b612b3982600261312b565b6001546001600160a01b03166000908152600760205260409020541115612b81576001546001600160a01b0316600090815260076020526040902054612b279060b4906131ff565b6001546001600160a01b0316600090815260076020526040902054612ba89060dc906131ff565b90505b6001546001600160a01b0316600090815260076020526040812054612bd1908390613026565b1115612ce3576001546001600160a01b031660009081526007602052604081208054839290612c01908490613026565b925050819055508060076000601560de5460c88110612c2257612c22613142565b01546001600160a01b03168152602081019190915260400160009081208054909190612c4f908490613013565b9091555050600180546001600160a01b0390811660009081526009602090815260408083204290819055855485168452600a835281842081905594549093168252600b9052205560de5460159060c88110612cac57612cac613142565b01546001546040518381526001600160a01b0392831692909116906000805160206132228339815191529060200160405180910390a35b60019250505090565b60405180611900016040528060c8906020820280368337509192915050565b600060208083528351808285015260005b81811015612d3857858101830151858201604001528201612d1c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146115db57600080fd5b600060208284031215612d8057600080fd5b8135610f0181612d59565b60008060408385031215612d9e57600080fd5b8235612da981612d59565b946020939093013593505050565b600080600060608486031215612dcc57600080fd5b8335612dd781612d59565b92506020840135612de781612d59565b929592945050506040919091013590565b6119008101818360005b60c8811015612e2a5781516001600160a01b0316835260209283019290910190600101612e02565b50505092915050565b60008060408385031215612e4657600080fd5b50508035926020909101359150565b600060208284031215612e6757600080fd5b5035919050565b60008060408385031215612e8157600080fd5b8235612e8c81612d59565b91506020830135612e9c81612d59565b809150509250929050565b604051612060810167ffffffffffffffff81118282101715612ed957634e487b7160e01b600052604160045260246000fd5b60405290565b6000806140c0808486031215612ef457600080fd5b84601f850112612f0357600080fd5b612f0b612ea7565b80612060860187811115612f1e57600080fd5b865b81811015612f41578035612f3381612d59565b845260209384019301612f20565b508195508761207f880112612f5557600080fd5b612f5d612ea7565b93870193925082915087841115612f7357600080fd5b5b83811015612f8c578035835260209283019201612f74565b508093505050509250929050565b600181811c90821680612fae57607f821691505b602082108103612fce57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610de557610de5612ffd565b81810381811115610de557610de5612ffd565b600181600019825b808611156130755782820483111561305b5761305b612ffd565b8086161561306857928202925b94851c9491800291613041565b50509250929050565b60008261308d57506001610de5565b8161309a57506000610de5565b81600181146130b057600281146130ba576130d6565b6001915050610de5565b60ff8411156130cb576130cb612ffd565b50506001821b610de5565b5060208310610133831016604e8410600b84101617156130f9575081810a610de5565b6131038383613039565b806000190482111561311757613117612ffd565b029392505050565b6000610f01838361307e565b8082028115828204841417610de557610de5612ffd565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561316a57600080fd5b8151610f0181612d59565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156131c55784516001600160a01b0316835293830193918301916001016131a0565b50506001600160a01b03969096166060850152505050608001529392505050565b6000600182016131f8576131f8612ffd565b5060010190565b60008261321c57634e487b7160e01b600052601260045260246000fd5b50049056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122093c0ad8530466132f9642dbac044ee10c8d43d637eab9a87265ab8503b856c5464736f6c6343000814003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000186a000000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000030d40000000000000000000000000000000000000000000000000000000000000000b4a756e6f204d6f6e65746100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044a756e6f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103855760003560e01c80638a333b50116101d1578063bd9e0c4c11610102578063d91ed42c116100a0578063f1145f741161006f578063f1145f7414610a02578063f2fde38b14610a38578063f38cb16414610a58578063fdb875b614610a7857600080fd5b8063d91ed42c14610950578063dd62ed3e14610986578063e04b677f146109cc578063e2f45605146109ec57600080fd5b8063ca0dcf16116100dc578063ca0dcf16146108d5578063d5d9e45e146108ea578063d5f18f5914610900578063d705cf851461093057600080fd5b8063bd9e0c4c1461086a578063bea9849e146108a0578063bed99850146108c057600080fd5b8063a683c6c41161016f578063ab0eda9e11610149578063ab0eda9e146107ea578063afa4f3b21461080a578063b28805f41461082a578063b98d1fe21461084a57600080fd5b8063a683c6c41461079e578063a9059cbb146107b4578063aa6b05e3146107d457600080fd5b80639052be61116101ab5780639052be611461073d57806395d89b411461075d57806397ddd1ed14610772578063a2d53f111461078857600080fd5b80638a333b50146106f35780638b299903146107095780638da5cb5b1461071f57600080fd5b8063627a91d9116102b657806370a08231116102545780637a1d5232116102235780637a1d52321461068957806381b3fa071461069f57806384413b65146106b957806387678f8b146106d957600080fd5b806370a0823114610612578063715018a61461063f57806371b9b92014610654578063751039fc1461067457600080fd5b8063680df78911610290578063680df78914610580578063695d3a92146105965780636db79437146105b85780636f36258b146105da57600080fd5b8063627a91d914610528578063632e6cdf14610555578063644d53731461056b57600080fd5b806323b872dd116103235780633bbfe015116102fd5780633bbfe015146104ce5780635668af1a146104e45780635b7c8210146104f957806361c03d071461051357600080fd5b806323b872dd1461047b578063313ce5671461049b57806333308281146104b157600080fd5b806313a0e2d61161035f57806313a0e2d61461040c57806316eee3ff1461042c57806318160ddd146104505780631b20768d1461046557600080fd5b806306fdde031461039157806307616494146103bc578063095ea7b3146103ec57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610a98565b6040516103b39190612d0b565b60405180910390f35b3480156103c857600080fd5b506103dc6103d7366004612d6e565b610b26565b60405190151581526020016103b3565b3480156103f857600080fd5b506103dc610407366004612d8b565b610dd3565b34801561041857600080fd5b506103dc610427366004612d8b565b610deb565b34801561043857600080fd5b5061044260105481565b6040519081526020016103b3565b34801561045c57600080fd5b50600e54610442565b34801561047157600080fd5b5061044260e45481565b34801561048757600080fd5b506103dc610496366004612db7565b610eb5565b3480156104a757600080fd5b5061044260045481565b3480156104bd57600080fd5b5060ea54610100900460ff166103dc565b3480156104da57600080fd5b5061044260e35481565b3480156104f057600080fd5b5060e754610442565b34801561050557600080fd5b50600c546103dc9060ff1681565b34801561051f57600080fd5b506103dc610f08565b34801561053457600080fd5b50610442610543366004612d6e565b60096020526000908152604090205481565b34801561056157600080fd5b5061044260e55481565b34801561057757600080fd5b5060e954610442565b34801561058c57600080fd5b5061044260e65481565b3480156105a257600080fd5b506105ab610f3f565b6040516103b39190612df8565b3480156105c457600080fd5b506105d86105d3366004612e33565b610f85565b005b3480156105e657600080fd5b5060dd546105fa906001600160a01b031681565b6040516001600160a01b0390911681526020016103b3565b34801561061e57600080fd5b5061044261062d366004612d6e565b60076020526000908152604090205481565b34801561064b57600080fd5b506105d8610f98565b34801561066057600080fd5b506103dc61066f366004612d6e565b610fac565b34801561068057600080fd5b506105d861104a565b34801561069557600080fd5b5061044260145481565b3480156106ab57600080fd5b5060e8546103dc9060ff1681565b3480156106c557600080fd5b506001546105fa906001600160a01b031681565b3480156106e557600080fd5b5060ea546103dc9060ff1681565b3480156106ff57600080fd5b5061044260055481565b34801561071557600080fd5b50610442600f5481565b34801561072b57600080fd5b506000546001600160a01b03166105fa565b34801561074957600080fd5b5060e0546105fa906001600160a01b031681565b34801561076957600080fd5b506103a6611061565b34801561077e57600080fd5b5061044260065481565b34801561079457600080fd5b5061044260df5481565b3480156107aa57600080fd5b5061044260135481565b3480156107c057600080fd5b506103dc6107cf366004612d8b565b61106e565b3480156107e057600080fd5b5061044260e75481565b3480156107f657600080fd5b506103dc610805366004612d6e565b611087565b34801561081657600080fd5b506105d8610825366004612e55565b611142565b34801561083657600080fd5b506105d8610845366004612e55565b611168565b34801561085657600080fd5b5060e1546105fa906001600160a01b031681565b34801561087657600080fd5b50610442610885366004612d6e565b6001600160a01b031660009081526009602052604090205490565b3480156108ac57600080fd5b506103dc6108bb366004612d6e565b6112ce565b3480156108cc57600080fd5b50601254610442565b3480156108e157600080fd5b50601154610442565b3480156108f657600080fd5b5061044260de5481565b34801561090c57600080fd5b506103dc61091b366004612d6e565b60086020526000908152604090205460ff1681565b34801561093c57600080fd5b506103dc61094b366004612d6e565b611340565b34801561095c57600080fd5b5061044261096b366004612d6e565b6001600160a01b03166000908152600b602052604090205490565b34801561099257600080fd5b506104426109a1366004612e6e565b6001600160a01b039182166000908152600d6020908152604080832093909416825291909152205490565b3480156109d857600080fd5b506103dc6109e7366004612d6e565b61152e565b3480156109f857600080fd5b5061044260ed5481565b348015610a0e57600080fd5b50610442610a1d366004612d6e565b6001600160a01b03166000908152600a602052604090205490565b348015610a4457600080fd5b506105d8610a53366004612d6e565b6115a0565b348015610a6457600080fd5b506103dc610a73366004612edf565b6115de565b348015610a8457600080fd5b506103dc610a93366004612d6e565b611835565b60028054610aa590612f9a565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad190612f9a565b8015610b1e5780601f10610af357610100808354040283529160200191610b1e565b820191906000526020600020905b815481529060010190602001808311610b0157829003601f168201915b505050505081565b60006001600160a01b038216610b575760405162461bcd60e51b8152600401610b4e90612fd4565b60405180910390fd5b813b15610be15760405162461bcd60e51b815260206004820152604c60248201527f54686973206973206120636f6e747261637420616464726573732e205573652060448201527f746865206275726e20696e61637469766520636f6e74726163742066756e637460648201526b34b7b71034b739ba32b0b21760a11b608482015260a401610b4e565b6001546000906001600160a01b0390811690841603610cf7576001600160a01b038316600090815260096020526040902054610c209062093a80613013565b4211610ca45760405162461bcd60e51b815260206004820152604760248201527f556e61626c6520746f206275726e2c207468652061697264726f70206164647260448201527f65737320686173206265656e2061637469766520666f7220746865206c6173746064820152662037206461797360c81b608482015260a401610b4e565b6001600160a01b03831660009081526007602052604090205460e654610cca91906118cf565b9050610cd683826118f4565b506001600160a01b0383166000908152600960205260409020429055610dca565b6001600160a01b0383166000908152600b6020526040902054610d1d9062093a80613013565b421115610d77576001600160a01b03831660009081526007602052604090205460e654610d4a91906118cf565b9050610d5683826118f4565b506001600160a01b0383166000908152600b60205260409020429055610dca565b6001600160a01b0383166000908152600a6020526040902054610d9d9062127500613013565b421115610dca576001600160a01b038316600090815260076020526040902054610dc89084906118f4565b505b50600192915050565b600033610de181858561191c565b9150505b92915050565b6000610df5611985565b6001600160a01b038316610e1b5760405162461bcd60e51b8152600401610b4e90612fd4565b33610e385760405162461bcd60e51b8152600401610b4e90612fd4565b81600e6000828254610e4a9190613026565b90915550506001600160a01b03831660009081526007602052604081208054849290610e77908490613026565b90915550506040518281526000906001600160a01b03851690600080516020613222833981519152906020015b60405180910390a350600192915050565b6001600160a01b0383166000908152600d60209081526040808320338452909152812080548391908390610eea908490613026565b90915550610efb90508484846119b2565b50600190505b9392505050565b6000610f12611985565b33610f2f5760405162461bcd60e51b8152600401610b4e90612fd4565b5060ea805460ff19169055600190565b610f47612cec565b604080516119008101918290529060159060c89082845b81546001600160a01b03168152600190910190602001808311610f5e575050505050905090565b610f8d611985565b601491909155601355565b610fa0611985565b610faa6000612244565b565b60006001600160a01b038216610fd45760405162461bcd60e51b8152600401610b4e90612fd4565b6000546001600160a01b038381169116146110215760405162461bcd60e51b815260206004820152600d60248201526c2737ba103a34329037bbb732b960991b6044820152606401610b4e565b506001600160a01b03166000908152600860205260409020805460ff1916600190811790915590565b611052611985565b60ee805460ff60a81b19169055565b60038054610aa590612f9a565b60003361107c8185856119b2565b506001949350505050565b6000611091611985565b336110ae5760405162461bcd60e51b8152600401610b4e90612fd4565b6001600160a01b0382166110d45760405162461bcd60e51b8152600401610b4e90612fd4565b6001546001600160a01b0316331461111f5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610b4e565b50600180546001600160a01b0383166001600160a01b0319909116178155919050565b61114a611985565b60045461115890600a61311f565b611162908261312b565b60ed5550565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061119d5761119d613142565b6001600160a01b0392831660209182029290920181019190915260e054604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156111f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121a9190613158565b8160018151811061122d5761122d613142565b6001600160a01b03928316602091820292909201015260e054611253913091168461191c565b5060e05460ee5460405163791ac94760e01b81526001600160a01b039283169263791ac947926112989287926000928892610100909104909116904290600401613175565b600060405180830381600087803b1580156112b257600080fd5b505af11580156112c6573d6000803e3d6000fd5b505050505050565b60006112d8611985565b336112f55760405162461bcd60e51b8152600401610b4e90612fd4565b6001600160a01b03821661131b5760405162461bcd60e51b8152600401610b4e90612fd4565b5060e080546001600160a01b0383166001600160a01b03199091161790556001919050565b60006001600160a01b0382166113685760405162461bcd60e51b8152600401610b4e90612fd4565b813b6113b65760405162461bcd60e51b815260206004820152601760248201527f4e6f74206120636f6e747261637420616464726573732e0000000000000000006044820152606401610b4e565b60e1546001600160a01b039081169083160361140f5760405162461bcd60e51b8152602060048201526018602482015277496e76616c696420636f6e7472616374206164647265737360401b6044820152606401610b4e565b60e0546001600160a01b03908116908316036114685760405162461bcd60e51b8152602060048201526018602482015277496e76616c696420636f6e7472616374206164647265737360401b6044820152606401610b4e565b6001600160a01b0382166000908152600b602052604081205461148e9062093a80613013565b4211156114bb576001600160a01b03831660009081526007602052604090205460e654610d4a91906118cf565b6001600160a01b0383166000908152600a60205260409020546114e19062127500613013565b421115610dca576001600160a01b03831660009081526007602052604090205461150c9084906118f4565b5050506001600160a01b03166000908152600a60205260409020429055600190565b6000611538611985565b336115555760405162461bcd60e51b8152600401610b4e90612fd4565b6001600160a01b03821661157b5760405162461bcd60e51b8152600401610b4e90612fd4565b5060e180546001600160a01b0383166001600160a01b03199091161790556001919050565b6115a8611985565b6001600160a01b0381166115d257604051631e4fbdf760e01b815260006004820152602401610b4e565b6115db81612244565b50565b60006115e8611985565b336116055760405162461bcd60e51b8152600401610b4e90612fd4565b60005b61010381101561182b5760008482610103811061162757611627613142565b60200201516001600160a01b031614611819578281610103811061164d5761164d613142565b602002015160076000336001600160a01b03166001600160a01b0316815260200190815260200160002060008282546116869190613026565b9091555083905081610103811061169f5761169f613142565b602002015160076000868461010381106116bb576116bb613142565b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002060008282546116ef9190613013565b90915550429050600960008684610103811061170d5761170d613142565b60200201516001600160a01b03166001600160a01b031681526020019081526020016000208190555042600b60008684610103811061174e5761174e613142565b60200201516001600160a01b03166001600160a01b031681526020019081526020016000208190555042600a60008684610103811061178f5761178f613142565b60200201516001600160a01b03166001600160a01b0316815260200190815260200160002081905550838161010381106117cb576117cb613142565b60200201516001600160a01b031633600080516020613222833981519152858461010381106117fc576117fc613142565b602002015160405161181091815260200190565b60405180910390a35b80611823816131e6565b915050611608565b5060019392505050565b60006001600160a01b03821661185d5760405162461bcd60e51b8152600401610b4e90612fd4565b6000546001600160a01b038381169116146118aa5760405162461bcd60e51b815260206004820152600d60248201526c2737ba103a34329037bbb732b960991b6044820152606401610b4e565b506001600160a01b03166000908152600860205260409020805460ff19169055600190565b6000600454600a6118e0919061311f565b6118ea838561312b565b610f0191906131ff565b60006001600160a01b038316610e385760405162461bcd60e51b8152600401610b4e90612fd4565b6001600160a01b038381166000818152600d6020908152604080832094871680845294825280832086905551858152919392917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a35060019392505050565b6000546001600160a01b03163314610faa5760405163118cdaa760e01b8152336004820152602401610b4e565b600081600003611a045760405162461bcd60e51b815260206004820152601e60248201527f4e6f207a65726f2076616c7565207472616e7366657220616c6c6f77656400006044820152606401610b4e565b6001600160a01b038316611a4c5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964204164647265737360881b6044820152606401610b4e565b60ee54600160a81b900460ff1615611c13576001546001600160a01b03858116911614801590611a8a57506001546001600160a01b03848116911614155b15611c135760ee5460ff16158015611aaf575060e2546001600160a01b038581169116145b8015611ac957506000546001600160a01b03848116911614155b15611b5357600454611adc90600a61311f565b611ae8906107d061312b565b6001600160a01b038416600090815260076020526040902054611b0b9084613013565b1115611b4e5760405162461bcd60e51b81526020600482015260126024820152711b585e080c8948189d5e48185b1b1bddd95960721b6044820152606401610b4e565b611c13565b60ee5460ff16158015611b73575060e2546001600160a01b038481169116145b8015611b8d57506000546001600160a01b03858116911614155b15611c1357600454611ba090600a61311f565b611bac906107d061312b565b6001600160a01b038516600090815260076020526040902054611bcf9084613013565b1115611c135760405162461bcd60e51b81526020600482015260136024820152721b585e080c89481cd95b1b08185b1b1bddd959606a1b6044820152606401610b4e565b60ee5460ff1615611c3057611c29848484612294565b9050610f01565b3060009081526007602052604090205460ed5481108015908190611c57575060ee5460ff16155b8015611c70575060e2546001600160a01b038681169116145b8015611c8557506001600160a01b0386163014155b8015611c9a57506001600160a01b0385163014155b8015611cb1575060e2546001600160a01b03163314155b15611cda5760ee805460ff1916600117905560ed54611ccf90611168565b60ee805460ff191690555b60e1546001600160a01b038781169116148015611d04575060e0546001600160a01b038681169116145b80611d34575060e0546001600160a01b038781169116148015611d34575060e1546001600160a01b038681169116145b80611d5757506001600160a01b03861660009081526008602052604090205460ff165b15611d6d57611d67868686612294565b506121c4565b60e954611d7b90603c613013565b421115611e7857600554600e5410611e2257600c805460ff19166001179055611da2612325565b5060e85460ff16611e1d576000600554600e54611dbf9190613026565b90506000611dce82600261312b565b6001546001600160a01b0316600090815260076020526040902054611df39190613026565b1115611e1b57600154611e19906001600160a01b0316611e1483600261312b565b6118f4565b505b505b611e78565b600654600e5411611e7857600c805460ff19169055611e3f612325565b506000600e54600654611e529190613026565b600154909150611e75906001600160a01b0316611e7083600261312b565b61245b565b50505b60de54600003611e8c57611e8a6124f3565b505b600c5460ff161561212b576000611ea5856012546118cf565b90506000611eb5866013546118cf565b90506000611ec5876014546118cf565b905060008183611ed5868b613026565b611edf9190613026565b611ee99190613026565b9050611ef58a856118f4565b506001600160a01b038a1660009081526007602052604081208054839290611f1e908490613026565b90915550506001600160a01b03891660009081526007602052604081208054839290611f4b908490613013565b92505081905550886001600160a01b03168a6001600160a01b031660008051602061322283398151915283604051611f8591815260200190565b60405180910390a36000611f9d600e5460e4546118cf565b306000908152600760205260409020549091508110612036576001600160a01b038b1660009081526007602052604081208054859290611fde908490613026565b90915550503060009081526007602052604081208054859290612002908490613013565b909155505060405183815230906001600160a01b038d16906000805160206132228339815191529060200160405180910390a35b6000612046600e5460e5546118cf565b6001546001600160a01b031660009081526007602052604090205490915081106120fa576001600160a01b038c1660009081526007602052604081208054879290612092908490613026565b90915550506001546001600160a01b0316600090815260076020526040812080548792906120c1908490613013565b90915550506001546040518681526001600160a01b03918216918e16906000805160206132228339815191529060200160405180910390a35b60016010600082825461210d9190613013565b9091555061211f90508a328e8e6127c5565b505050505050506121c4565b600c5460ff16612188576000612143856011546118cf565b90506000612153866013546118cf565b90506000612163876014546118cf565b9050600081612172848a613026565b61217c9190613026565b9050611ef5328561245b565b60405162461bcd60e51b81526020600482015260116024820152704572726f7220617420545820426c6f636b60781b6044820152606401610b4e565b505032600081815260096020908152604080832042908190556001600160a01b03898116808652838620839055908916808652838620839055868652600a8552838620839055818652838620839055808652838620839055958552600b909352818420819055918352808320829055928252919020555060019392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166000908152600760205260408120805483919083906122be908490613026565b90915550506001600160a01b038316600090815260076020526040812080548492906122eb908490613013565b92505081905550826001600160a01b0316846001600160a01b03166000805160206132228339815191528460405161197391815260200190565b60006001600f600082825461233a9190613013565b9091555050600f546001148015612354575060e85460ff16155b156123e9576000600454600a61236a919061311f565b905061271061237a82603261312b565b61238491906131ff565b60115561271061239582603261312b565b61239f91906131ff565b6011556127106123b082605561312b565b6123ba91906131ff565b6013556127106123cb8260c861312b565b6123d591906131ff565b6014555060ea805461ff0019166101001790555b6002600f54101580156123ff5750601c600f5411155b156124215761240c612a13565b5060ea805461ff001916610100179055612451565b601d600f541015801561243757506038600f5411155b1561245157612444612a50565b5060ea805461ff00191690555b504260e955600190565b60006001600160a01b0383166124835760405162461bcd60e51b8152600401610b4e90612fd4565b81600e60008282546124959190613013565b90915550506001600160a01b038316600090815260076020526040812080548492906124c2908490613013565b90915550506040518281526001600160a01b0384169060009060008051602061322283398151915290602001610ea4565b600c5460009060ff161561259b57600a60125461251091906131ff565b601260008282546125219190613013565b909155505060115461253590600a906131ff565b601160008282546125469190613013565b909155505060135461255a90600a906131ff565b6013600082825461256b9190613013565b909155505060145461257f90600a906131ff565b601460008282546125909190613013565b909155506126309050565b600a6012546125aa91906131ff565b601260008282546125bb9190613026565b90915550506011546125cf90600a906131ff565b601160008282546125e09190613013565b90915550506013546125f490600a906131ff565b601360008282546126059190613026565b909155505060145461261990600a906131ff565b6014600082825461262a9190613026565b90915550505b60e35461263e90600661312b565b601254111561266c5760e35461265590600261312b565b601260008282546126669190613026565b90915550505b60e35461267a90600661312b565b60115411156126a85760e35461269190600261312b565b601160008282546126a29190613026565b90915550505b60e3546126b690600361312b565b60135411156126d95760e354601360008282546126d39190613026565b90915550505b60e3546126e790600361312b565b601454111561270a5760e354601460008282546127049190613026565b90915550505b60e354601254108061271f575060e354601154105b806127395750600260e35461273491906131ff565b601354105b156127bf576000600454600a61274f919061311f565b905061271061275f82603261312b565b61276991906131ff565b60115561271061277a82603261312b565b61278491906131ff565b60125561271061279582605561312b565b61279f91906131ff565b6013556127106127b08260c861312b565b6127ba91906131ff565b601455505b50600190565b6001546001600160a01b031660009081526007602052604081205460e7546127ed91906118cf565b60df819055851080159061280957506001600160a01b03841615155b1561107c57833b6128345760dd80546001600160a01b0319166001600160a01b038616179055612877565b823b1561285b5760dd80546001600160a01b0319166001600160a01b038416179055612877565b60dd80546001600160a01b0319166001600160a01b0385161790555b60e85460ff16156129735760c760de5410156128f55760dd5460de546001600160a01b039091169060159060c881106128b2576128b2613142565b0160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600160de60008282546128ea9190613013565b9091555061107c9050565b60de5460c70361296e5760e8805460ff1916905560dd5460de546001600160a01b039091169060159060c8811061292e5761292e613142565b0180546001600160a01b0319166001600160a01b0392909216919091179055600060de5561295a612ab2565b50600160de60008282546128ea9190613013565b61107c565b60c760de5410156129ac57612986612ab2565b5060dd5460de546001600160a01b039091169060159060c881106128b2576128b2613142565b60de5460c70361107c576129be612ab2565b5060dd5460de546001600160a01b039091169060159060c881106129e4576129e4613142565b0180546001600160a01b0319166001600160a01b0392909216919091179055600060de55506001949350505050565b600c5460009060ff1615612a38576002600654612a3091906131ff565b6006556127bf565b6002600554612a4791906131ff565b60055550600190565b600c5460009060ff1615612a7457600654612a6c90600261312b565b600655612a86565b600554612a8290600261312b565b6005555b600f546038036127bf5760eb5460055560ec546006556000600f5560ea805461ff001916905550600190565b6001546001600160a01b031660009081526007602052604081205460e3548291612adb916118cf565b6001546001600160a01b0316600090815260076020526040812054919250908210612b2e576001546001600160a01b0316600090815260076020526040902054612b279060fa906131ff565b9050612bab565b612b3982600261312b565b6001546001600160a01b03166000908152600760205260409020541115612b81576001546001600160a01b0316600090815260076020526040902054612b279060b4906131ff565b6001546001600160a01b0316600090815260076020526040902054612ba89060dc906131ff565b90505b6001546001600160a01b0316600090815260076020526040812054612bd1908390613026565b1115612ce3576001546001600160a01b031660009081526007602052604081208054839290612c01908490613026565b925050819055508060076000601560de5460c88110612c2257612c22613142565b01546001600160a01b03168152602081019190915260400160009081208054909190612c4f908490613013565b9091555050600180546001600160a01b0390811660009081526009602090815260408083204290819055855485168452600a835281842081905594549093168252600b9052205560de5460159060c88110612cac57612cac613142565b01546001546040518381526001600160a01b0392831692909116906000805160206132228339815191529060200160405180910390a35b60019250505090565b60405180611900016040528060c8906020820280368337509192915050565b600060208083528351808285015260005b81811015612d3857858101830151858201604001528201612d1c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146115db57600080fd5b600060208284031215612d8057600080fd5b8135610f0181612d59565b60008060408385031215612d9e57600080fd5b8235612da981612d59565b946020939093013593505050565b600080600060608486031215612dcc57600080fd5b8335612dd781612d59565b92506020840135612de781612d59565b929592945050506040919091013590565b6119008101818360005b60c8811015612e2a5781516001600160a01b0316835260209283019290910190600101612e02565b50505092915050565b60008060408385031215612e4657600080fd5b50508035926020909101359150565b600060208284031215612e6757600080fd5b5035919050565b60008060408385031215612e8157600080fd5b8235612e8c81612d59565b91506020830135612e9c81612d59565b809150509250929050565b604051612060810167ffffffffffffffff81118282101715612ed957634e487b7160e01b600052604160045260246000fd5b60405290565b6000806140c0808486031215612ef457600080fd5b84601f850112612f0357600080fd5b612f0b612ea7565b80612060860187811115612f1e57600080fd5b865b81811015612f41578035612f3381612d59565b845260209384019301612f20565b508195508761207f880112612f5557600080fd5b612f5d612ea7565b93870193925082915087841115612f7357600080fd5b5b83811015612f8c578035835260209283019201612f74565b508093505050509250929050565b600181811c90821680612fae57607f821691505b602082108103612fce57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610de557610de5612ffd565b81810381811115610de557610de5612ffd565b600181600019825b808611156130755782820483111561305b5761305b612ffd565b8086161561306857928202925b94851c9491800291613041565b50509250929050565b60008261308d57506001610de5565b8161309a57506000610de5565b81600181146130b057600281146130ba576130d6565b6001915050610de5565b60ff8411156130cb576130cb612ffd565b50506001821b610de5565b5060208310610133831016604e8410600b84101617156130f9575081810a610de5565b6131038383613039565b806000190482111561311757613117612ffd565b029392505050565b6000610f01838361307e565b8082028115828204841417610de557610de5612ffd565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561316a57600080fd5b8151610f0181612d59565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156131c55784516001600160a01b0316835293830193918301916001016131a0565b50506001600160a01b03969096166060850152505050608001529392505050565b6000600182016131f8576131f8612ffd565b5060010190565b60008261321c57634e487b7160e01b600052601260045260246000fd5b50049056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122093c0ad8530466132f9642dbac044ee10c8d43d637eab9a87265ab8503b856c5464736f6c63430008140033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000186a000000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000030d40000000000000000000000000000000000000000000000000000000000000000b4a756e6f204d6f6e65746100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044a756e6f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Juno Moneta
Arg [1] : _symbol (string): Juno
Arg [2] : _decimals (uint256): 9
Arg [3] : _supply (uint256): 100000
Arg [4] : _min_supply (uint256): 10000
Arg [5] : _max_supply (uint256): 200000

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 00000000000000000000000000000000000000000000000000000000000186a0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [5] : 0000000000000000000000000000000000000000000000000000000000030d40
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [7] : 4a756e6f204d6f6e657461000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 4a756e6f00000000000000000000000000000000000000000000000000000000


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.