ETH Price: $3,355.35 (+0.92%)

Token

InuFlation (HYPER)
 

Overview

Max Total Supply

1,000,000,000,000,000 HYPER

Holders

58

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
thicklatino.eth
Balance
7,831,513,200,335.952935749520206718 HYPER

Value
$0.00
0x6e866c11083cad42c937ae6c606957b989124127
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:
InuFlation

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : InuFlation.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.17;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";

contract InuFlation is Context, ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 private _uniswapV2Router;

    mapping (address => mapping (address => uint256)) private _allowances;

    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) private _isExcludedMaxTransactionAmount;

    bool public tradingOpen;
    bool private _swapping;
    bool public swapEnabled;

    uint256 private constant _totalSupply = 1e15 * (10**18);

    uint256 public maxBuyAmnt = _totalSupply.mul(13).div(1000);
    uint256 public maxSellAmnt = _totalSupply.mul(13).div(1000);
    uint256 public maxWalletAmnt = _totalSupply.mul(13).div(1000);

    uint256 public swapFee = 83; // 8.3%
    uint256 private _previousSwapFee = swapFee;

    uint256 private _tokensForSwapFee;
    uint256 private _swapTokensAtAmount = _totalSupply.mul(7).div(10000);

    address payable private swapFeeCollector;
    address private _uniswapV2Pair;
    address private DEAD = 0x000000000000000000000000000000000000dEaD;
    address private ZERO = 0x0000000000000000000000000000000000000000;
    
    constructor () ERC20("InuFlation", "HYPER") {
        _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(_uniswapV2Router), _totalSupply);
        _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        IERC20(_uniswapV2Pair).approve(address(_uniswapV2Router), type(uint).max);

        swapFeeCollector = payable(_msgSender());

        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[DEAD] = true;

        _isExcludedMaxTransactionAmount[owner()] = true;
        _isExcludedMaxTransactionAmount[address(this)] = true;
        _isExcludedMaxTransactionAmount[DEAD] = true;

        _mint(owner(), _totalSupply);
    }

    function _transfer(address from, address to, uint256 amount) internal override {
        require(from != ZERO, "HYPER: transfer from the zero address");
        require(to != ZERO, "HYPER: transfer to the zero address");
        require(amount > 0, "HYPER: Transfer amount must be greater than zero");

        bool takeFee = true;
        bool shouldSwap = false;
        if (from != owner() && to != owner() && to != ZERO && to != DEAD && !_swapping) {
            if(!tradingOpen) require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "HYPER: Trading is not allowed yet.");

            if (from == _uniswapV2Pair && to != address(_uniswapV2Router) && !_isExcludedMaxTransactionAmount[to]) {
                require(amount <= maxBuyAmnt, "HYPER: Transfer amount exceeds the maxBuyAmnt.");
                require(balanceOf(to) + amount <= maxWalletAmnt, "HYPER: Exceeds maximum wallet token amount.");
            }
            
            if (to == _uniswapV2Pair && from != address(_uniswapV2Router) && !_isExcludedMaxTransactionAmount[from]) {
                require(amount <= maxSellAmnt, "HYPER: Transfer amount exceeds the maxSellAmnt.");
                
                shouldSwap = true;
            }
        }

        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) takeFee = false;

        uint256 contractBalance = balanceOf(address(this));
        bool canSwap = (contractBalance > _swapTokensAtAmount) && shouldSwap;

        if (canSwap && swapEnabled && !_swapping && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            _swapping = true;
            _swapBack(contractBalance);
            _swapping = false;
        }

        _tokenTransfer(from, to, amount, takeFee);
    }

    function _swapBack(uint256 contractBalance) internal {
        if (contractBalance == 0 || _tokensForSwapFee == 0) return;

        if (contractBalance > _swapTokensAtAmount * 5) contractBalance = _swapTokensAtAmount * 5;

        _swapTokensForETH(contractBalance); 
        
        _tokensForSwapFee = 0;
    }

    function _swapTokensForETH(uint256 tokenAmount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            swapFeeCollector,
            block.timestamp
        );
    }

    function _removeSwapFee() internal {
        if (swapFee == 0) return;
        _previousSwapFee = swapFee;
        swapFee = 0;
    }
    
    function _restoreSwapFee() internal {
        swapFee = _previousSwapFee;
    }
        
    function _tokenTransfer(address from, address to, uint256 amount, bool takeFee) internal {
        if (!takeFee) _removeSwapFee();
        else amount = _takeSwapFees(from, amount);

        super._transfer(from, to, amount);
        
        if (!takeFee) _restoreSwapFee();
    }

    function _takeSwapFees(address from, uint256 amount) internal returns (uint256) {
        if (swapFee > 0) {
            uint256 fees = amount.mul(swapFee).div(1000);
            _tokensForSwapFee += fees * swapFee / swapFee;

            if (fees > 0) super._transfer(from, address(this), fees);

            amount -= fees;
        }

        return amount;
    }
    
    function openTrading() public onlyOwner {
        require(!tradingOpen,"HYPER: Trading is already open");
        _uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp);
        swapEnabled = true;
        tradingOpen = true;
    }

    function setBuyAmnt(uint256 _maxBuyAmnt) public onlyOwner {
        require(_maxBuyAmnt >= (totalSupply().mul(1).div(1000)), "HYPER: Max buy amount cannot be lower than 0.1% total supply.");
        maxBuyAmnt = _maxBuyAmnt;
    }

    function setSellAmnt(uint256 _maxSellAmnt) public onlyOwner {
        require(_maxSellAmnt >= (totalSupply().mul(1).div(1000)), "HYPER: Max sell amount cannot be lower than 0.1% total supply.");
        maxSellAmnt = _maxSellAmnt;
    }
    
    function setWalletAmnt(uint256 _maxWalletAmnt) public onlyOwner {
        require(_maxWalletAmnt >= (totalSupply().mul(1).div(100)), "HYPER: Max wallet amount cannot be lower than 1% total supply.");
        maxWalletAmnt = _maxWalletAmnt;
    }
    
    function setSwapTokensAtAmount(uint256 _swapAmountAmnt) public onlyOwner {
        require(_swapAmountAmnt >= (totalSupply().mul(1).div(100000)), "HYPER: Swap amount cannot be lower than 0.001% total supply.");
        require(_swapAmountAmnt <= (totalSupply().mul(5).div(1000)), "HYPER: Swap amount cannot be higher than 0.5% total supply.");
        _swapTokensAtAmount = _swapAmountAmnt;
    }

    function setSwapEnabled(bool onoff) public onlyOwner {
        swapEnabled = onoff;
    }

    function setSwapFeeCollector(address swapFeeCollectorAddy) public onlyOwner {
        require(swapFeeCollectorAddy != ZERO, "HYPER: swapFeeCollector address cannot be 0");
        swapFeeCollector = payable(swapFeeCollectorAddy);
        _isExcludedFromFees[swapFeeCollectorAddy] = true;
        _isExcludedMaxTransactionAmount[swapFeeCollectorAddy] = true;
    }

    function setExcludedFromFees(address[] memory accounts, bool isEx) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) _isExcludedFromFees[accounts[i]] = isEx;
    }
    
    function setExcludeFromMaxTransaction(address[] memory accounts, bool isEx) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) _isExcludedMaxTransactionAmount[accounts[i]] = isEx;
    }

    function rescueETH() public onlyOwner {
        bool success;
        (success,) = address(msg.sender).call{value: address(this).balance}("");
    }

    function rescueTokens(address tokenAddy) public onlyOwner {
        require(IERC20(tokenAddy).balanceOf(address(this)) > 0, "No tokens");
        uint amount = IERC20(tokenAddy).balanceOf(address(this));
        IERC20(tokenAddy).transfer(msg.sender, amount);
    }

    function disableLimits() public onlyOwner {
        maxBuyAmnt = _totalSupply;
        maxSellAmnt = _totalSupply;
        maxWalletAmnt = _totalSupply;
    }

    receive() external payable {}
    fallback() external payable {}

}

File 2 of 10 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 3 of 10 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 4 of 10 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 5 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, _allowances[owner][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 6 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../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.
 *
 * By default, the owner account will be the one that deploys the contract. 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;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _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 7 of 10 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 8 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @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;
    }
}

File 9 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 10 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` 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 amount
    ) external returns (bool);

    /**
     * @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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxBuyAmnt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmnt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmnt","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddy","type":"address"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuyAmnt","type":"uint256"}],"name":"setBuyAmnt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"setExcludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"setExcludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSellAmnt","type":"uint256"}],"name":"setSellAmnt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"swapFeeCollectorAddy","type":"address"}],"name":"setSwapFeeCollector","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_swapAmountAmnt","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmnt","type":"uint256"}],"name":"setWalletAmnt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052620000486103e862000034600d6d314dc6448d9338c15b0a00000000620004a260201b620012081790919060201c565b620004b960201b6200121b1790919060201c565b600b556200007b6103e862000034600d6d314dc6448d9338c15b0a00000000620004a260201b620012081790919060201c565b600c55620000ae6103e862000034600d6d314dc6448d9338c15b0a00000000620004a260201b620012081790919060201c565b600d556053600e55600e54600f55620000ec6127106200003460076d314dc6448d9338c15b0a00000000620004a260201b620012081790919060201c565b601155601480546001600160a01b031990811661dead179091556015805490911690553480156200011c57600080fd5b506040518060400160405280600a81526020016924b73aa33630ba34b7b760b11b81525060405180604001604052806005815260200164242ca822a960d91b81525081600390816200016f9190620007d7565b5060046200017e8282620007d7565b5050506200019b62000195620004c760201b60201c565b620004cb565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155620001e09030906d314dc6448d9338c15b0a000000006200051d565b600660009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000234573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025a9190620008a3565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002bd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e39190620008a3565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000331573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003579190620008a3565b601380546001600160a01b0319166001600160a01b0392831690811790915560065460405163095ea7b360e01b81529216600483015260001960248301529063095ea7b3906044016020604051808303816000875af1158015620003bf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003e59190620008d5565b50601280546001600160a01b03191633179055600580546001600160a01b039081166000908152600860209081526040808320805460ff19908116600190811790925530808652838620805483168417905560148054881687528487208054841685179055885488168752600990955283862080548316841790558552828520805482168317905592548516845292208054909116909117905590546200049c91166d314dc6448d9338c15b0a0000000062000649565b62000962565b6000620004b082846200090f565b90505b92915050565b6000620004b0828462000929565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316620005855760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620005e85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200057c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216620006a15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200057c565b8060026000828254620006b591906200094c565b90915550506001600160a01b03821660009081526020819052604081208054839290620006e49084906200094c565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200075e57607f821691505b6020821081036200077f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200072e57600081815260208120601f850160051c81016020861015620007ae5750805b601f850160051c820191505b81811015620007cf57828155600101620007ba565b505050505050565b81516001600160401b03811115620007f357620007f362000733565b6200080b8162000804845462000749565b8462000785565b602080601f8311600181146200084357600084156200082a5750858301515b600019600386901b1c1916600185901b178555620007cf565b600085815260208120601f198616915b82811015620008745788860151825594840194600190910190840162000853565b5085821015620008935787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620008b657600080fd5b81516001600160a01b0381168114620008ce57600080fd5b9392505050565b600060208284031215620008e857600080fd5b81518015158114620008ce57600080fd5b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620004b357620004b3620008f9565b6000826200094757634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620004b357620004b3620008f9565b6122b780620009726000396000f3fe6080604052600436106101ce5760003560e01c80638b56caa6116100f6578063afa4f3b21161008f578063f2fde38b11610061578063f2fde38b1461055d578063f5a6682f1461057d578063f928364c1461059d578063ffb54a99146105b257005b8063afa4f3b2146104c2578063c9567bf9146104e2578063dd62ed3e146104f7578063e01af92c1461053d57005b80639c61a177116100c85780639c61a1771461044c578063a457c2d71461046c578063a90599421461048c578063a9059cbb146104a257005b80638b56caa6146103d95780638da5cb5b146103f9578063959fa3351461042157806395d89b411461043757005b806338cb06061161016857806370a082311161013a57806370a082311461034e578063715018a6146103845780637fdaa34d1461039957806387f99ec6146103b957005b806338cb0606146102e257806339509351146102f857806354cf2aeb146103185780636ddd17131461032e57005b806318160ddd116101a157806318160ddd1461027257806320800a001461029157806323b872dd146102a6578063313ce567146102c657005b8062ae3bf8146101d757806306fdde03146101f7578063095ea7b314610222578063105222f91461025257005b366101d557005b005b3480156101e357600080fd5b506101d56101f2366004611e35565b6105cc565b34801561020357600080fd5b5061020c610787565b6040516102199190611e52565b60405180910390f35b34801561022e57600080fd5b5061024261023d366004611ea0565b610819565b6040519015158152602001610219565b34801561025e57600080fd5b506101d561026d366004611efb565b610833565b34801561027e57600080fd5b506002545b604051908152602001610219565b34801561029d57600080fd5b506101d56108c4565b3480156102b257600080fd5b506102426102c1366004611fd2565b61093b565b3480156102d257600080fd5b5060405160128152602001610219565b3480156102ee57600080fd5b50610283600b5481565b34801561030457600080fd5b50610242610313366004611ea0565b61095f565b34801561032457600080fd5b50610283600e5481565b34801561033a57600080fd5b50600a546102429062010000900460ff1681565b34801561035a57600080fd5b50610283610369366004611e35565b6001600160a01b031660009081526020819052604090205490565b34801561039057600080fd5b506101d561099e565b3480156103a557600080fd5b506101d56103b4366004612013565b6109d4565b3480156103c557600080fd5b506101d56103d4366004611e35565b610a98565b3480156103e557600080fd5b506101d56103f4366004612013565b610b87565b34801561040557600080fd5b506005546040516001600160a01b039091168152602001610219565b34801561042d57600080fd5b50610283600d5481565b34801561044357600080fd5b5061020c610c3e565b34801561045857600080fd5b506101d5610467366004612013565b610c4d565b34801561047857600080fd5b50610242610487366004611ea0565b610d05565b34801561049857600080fd5b50610283600c5481565b3480156104ae57600080fd5b506102426104bd366004611ea0565b610d97565b3480156104ce57600080fd5b506101d56104dd366004612013565b610da5565b3480156104ee57600080fd5b506101d5610ee7565b34801561050357600080fd5b5061028361051236600461202c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561054957600080fd5b506101d5610558366004612065565b61104e565b34801561056957600080fd5b506101d5610578366004611e35565b611094565b34801561058957600080fd5b506101d5610598366004611efb565b61112f565b3480156105a957600080fd5b506101d56111c0565b3480156105be57600080fd5b50600a546102429060ff1681565b6005546001600160a01b031633146105ff5760405162461bcd60e51b81526004016105f690612082565b60405180910390fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610646573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061066a91906120b7565b116106a35760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b60448201526064016105f6565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156106ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061070e91906120b7565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af115801561075e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061078291906120d0565b505050565b606060038054610796906120ed565b80601f01602080910402602001604051908101604052809291908181526020018280546107c2906120ed565b801561080f5780601f106107e45761010080835404028352916020019161080f565b820191906000526020600020905b8154815290600101906020018083116107f257829003601f168201915b5050505050905090565b600033610827818585611227565b60019150505b92915050565b6005546001600160a01b0316331461085d5760405162461bcd60e51b81526004016105f690612082565b60005b825181101561078257816008600085848151811061088057610880612121565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806108bc8161214d565b915050610860565b6005546001600160a01b031633146108ee5760405162461bcd60e51b81526004016105f690612082565b604051600090339047908381818185875af1925050503d8060008114610930576040519150601f19603f3d011682016040523d82523d6000602084013e610935565b606091505b50505050565b60003361094985828561134b565b6109548585856113d7565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906108279082908690610999908790612166565b611227565b6005546001600160a01b031633146109c85760405162461bcd60e51b81526004016105f690612082565b6109d26000611976565b565b6005546001600160a01b031633146109fe5760405162461bcd60e51b81526004016105f690612082565b610a1e6103e8610a186001610a1260025490565b90611208565b9061121b565b811015610a935760405162461bcd60e51b815260206004820152603d60248201527f48595045523a204d61782062757920616d6f756e742063616e6e6f742062652060448201527f6c6f776572207468616e20302e312520746f74616c20737570706c792e00000060648201526084016105f6565b600b55565b6005546001600160a01b03163314610ac25760405162461bcd60e51b81526004016105f690612082565b6015546001600160a01b0390811690821603610b345760405162461bcd60e51b815260206004820152602b60248201527f48595045523a2073776170466565436f6c6c6563746f7220616464726573732060448201526a063616e6e6f7420626520360ac1b60648201526084016105f6565b601280546001600160a01b039092166001600160a01b0319909216821790556000908152600860209081526040808320805460ff1990811660019081179092556009909352922080549091169091179055565b6005546001600160a01b03163314610bb15760405162461bcd60e51b81526004016105f690612082565b610bc46064610a186001610a1260025490565b811015610c395760405162461bcd60e51b815260206004820152603e60248201527f48595045523a204d61782077616c6c657420616d6f756e742063616e6e6f742060448201527f6265206c6f776572207468616e20312520746f74616c20737570706c792e000060648201526084016105f6565b600d55565b606060048054610796906120ed565b6005546001600160a01b03163314610c775760405162461bcd60e51b81526004016105f690612082565b610c8b6103e8610a186001610a1260025490565b811015610d005760405162461bcd60e51b815260206004820152603e60248201527f48595045523a204d61782073656c6c20616d6f756e742063616e6e6f7420626560448201527f206c6f776572207468616e20302e312520746f74616c20737570706c792e000060648201526084016105f6565b600c55565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610d8a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105f6565b6109548286868403611227565b6000336108278185856113d7565b6005546001600160a01b03163314610dcf5760405162461bcd60e51b81526004016105f690612082565b610de4620186a0610a186001610a1260025490565b811015610e595760405162461bcd60e51b815260206004820152603c60248201527f48595045523a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e0000000060648201526084016105f6565b610e6d6103e8610a186005610a1260025490565b811115610ee25760405162461bcd60e51b815260206004820152603b60248201527f48595045523a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e000000000060648201526084016105f6565b601155565b6005546001600160a01b03163314610f115760405162461bcd60e51b81526004016105f690612082565b600a5460ff1615610f645760405162461bcd60e51b815260206004820152601e60248201527f48595045523a2054726164696e6720697320616c7265616479206f70656e000060448201526064016105f6565b6006546001600160a01b031663f305d7194730610f96816001600160a01b031660009081526020819052604090205490565b600080610fab6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611013573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110389190612179565b5050600a805462ff00ff19166201000117905550565b6005546001600160a01b031633146110785760405162461bcd60e51b81526004016105f690612082565b600a8054911515620100000262ff000019909216919091179055565b6005546001600160a01b031633146110be5760405162461bcd60e51b81526004016105f690612082565b6001600160a01b0381166111235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105f6565b61112c81611976565b50565b6005546001600160a01b031633146111595760405162461bcd60e51b81526004016105f690612082565b60005b825181101561078257816009600085848151811061117c5761117c612121565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806111b88161214d565b91505061115c565b6005546001600160a01b031633146111ea5760405162461bcd60e51b81526004016105f690612082565b6d314dc6448d9338c15b0a00000000600b819055600c819055600d55565b600061121482846121a7565b9392505050565b600061121482846121be565b6001600160a01b0383166112895760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105f6565b6001600160a01b0382166112ea5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105f6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461093557818110156113ca5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105f6565b6109358484848403611227565b6015546001600160a01b03908116908416036114435760405162461bcd60e51b815260206004820152602560248201527f48595045523a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105f6565b6015546001600160a01b03908116908316036114ad5760405162461bcd60e51b815260206004820152602360248201527f48595045523a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105f6565b600081116115165760405162461bcd60e51b815260206004820152603060248201527f48595045523a205472616e7366657220616d6f756e74206d757374206265206760448201526f726561746572207468616e207a65726f60801b60648201526084016105f6565b6001600061152c6005546001600160a01b031690565b6001600160a01b0316856001600160a01b03161415801561155b57506005546001600160a01b03858116911614155b801561157557506015546001600160a01b03858116911614155b801561158f57506014546001600160a01b03858116911614155b80156115a35750600a54610100900460ff16155b1561185857600a5460ff16611648576001600160a01b03851660009081526008602052604090205460ff16806115f157506001600160a01b03841660009081526008602052604090205460ff165b6116485760405162461bcd60e51b815260206004820152602260248201527f48595045523a2054726164696e67206973206e6f7420616c6c6f7765642079656044820152613a1760f11b60648201526084016105f6565b6013546001600160a01b03868116911614801561167357506006546001600160a01b03858116911614155b801561169857506001600160a01b03841660009081526009602052604090205460ff16155b1561179557600b548311156117065760405162461bcd60e51b815260206004820152602e60248201527f48595045523a205472616e7366657220616d6f756e742065786365656473207460448201526d34329036b0bc213abca0b6b73a1760911b60648201526084016105f6565b600d5483611729866001600160a01b031660009081526020819052604090205490565b6117339190612166565b11156117955760405162461bcd60e51b815260206004820152602b60248201527f48595045523a2045786365656473206d6178696d756d2077616c6c657420746f60448201526a35b2b71030b6b7bab73a1760a91b60648201526084016105f6565b6013546001600160a01b0385811691161480156117c057506006546001600160a01b03868116911614155b80156117e557506001600160a01b03851660009081526009602052604090205460ff16155b1561185857600c548311156118545760405162461bcd60e51b815260206004820152602f60248201527f48595045523a205472616e7366657220616d6f756e742065786365656473207460448201526e34329036b0bc29b2b63620b6b73a1760891b60648201526084016105f6565b5060015b6001600160a01b03851660009081526008602052604090205460ff168061189757506001600160a01b03841660009081526008602052604090205460ff165b156118a157600091505b3060009081526020819052604081205490506000601154821180156118c35750825b90508080156118da5750600a5462010000900460ff165b80156118ee5750600a54610100900460ff16155b801561191357506001600160a01b03871660009081526008602052604090205460ff16155b801561193857506001600160a01b03861660009081526008602052604090205460ff16155b1561196157600a805461ff001916610100179055611955826119c8565b600a805461ff00191690555b61196d87878787611a14565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8015806119d55750601054155b156119dd5750565b6011546119eb9060056121a7565b811115611a0357601154611a009060056121a7565b90505b611a0c81611a4e565b506000601055565b80611a2657611a21611bac565b611a33565b611a308483611bc5565b91505b611a3e848484611c42565b8061093557610935600f54600e55565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a8357611a83612121565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611adc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b0091906121e0565b81600181518110611b1357611b13612121565b6001600160a01b039283166020918202929092010152600654611b399130911684611227565b60065460125460405163791ac94760e01b81526001600160a01b039283169263791ac94792611b76928792600092889291169042906004016121fd565b600060405180830381600087803b158015611b9057600080fd5b505af1158015611ba4573d6000803e3d6000fd5b505050505050565b600e54600003611bb857565b600e8054600f5560009055565b600e5460009015611c3c576000611bed6103e8610a18600e548661120890919063ffffffff16565b600e54909150611bfd81836121a7565b611c0791906121be565b60106000828254611c189190612166565b90915550508015611c2e57611c2e843083611c42565b611c38818461226e565b9250505b50919050565b6001600160a01b038316611ca65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105f6565b6001600160a01b038216611d085760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105f6565b6001600160a01b03831660009081526020819052604090205481811015611d805760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105f6565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611db7908490612166565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e0391815260200190565b60405180910390a3610935565b6001600160a01b038116811461112c57600080fd5b8035611e3081611e10565b919050565b600060208284031215611e4757600080fd5b813561121481611e10565b600060208083528351808285015260005b81811015611e7f57858101830151858201604001528201611e63565b506000604082860101526040601f19601f8301168501019250505092915050565b60008060408385031215611eb357600080fd5b8235611ebe81611e10565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b801515811461112c57600080fd5b8035611e3081611ee2565b60008060408385031215611f0e57600080fd5b823567ffffffffffffffff80821115611f2657600080fd5b818501915085601f830112611f3a57600080fd5b8135602082821115611f4e57611f4e611ecc565b8160051b604051601f19603f83011681018181108682111715611f7357611f73611ecc565b604052928352818301935084810182019289841115611f9157600080fd5b948201945b83861015611fb657611fa786611e25565b85529482019493820193611f96565b9650611fc59050878201611ef0565b9450505050509250929050565b600080600060608486031215611fe757600080fd5b8335611ff281611e10565b9250602084013561200281611e10565b929592945050506040919091013590565b60006020828403121561202557600080fd5b5035919050565b6000806040838503121561203f57600080fd5b823561204a81611e10565b9150602083013561205a81611e10565b809150509250929050565b60006020828403121561207757600080fd5b813561121481611ee2565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000602082840312156120c957600080fd5b5051919050565b6000602082840312156120e257600080fd5b815161121481611ee2565b600181811c9082168061210157607f821691505b602082108103611c3c57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161215f5761215f612137565b5060010190565b8082018082111561082d5761082d612137565b60008060006060848603121561218e57600080fd5b8351925060208401519150604084015190509250925092565b808202811582820484141761082d5761082d612137565b6000826121db57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156121f257600080fd5b815161121481611e10565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561224d5784516001600160a01b031683529383019391830191600101612228565b50506001600160a01b03969096166060850152505050608001529392505050565b8181038181111561082d5761082d61213756fea264697066735822122046819838f6671b77877a1946a9b625e55d2d4755d449250fca190b63b862a3da64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101ce5760003560e01c80638b56caa6116100f6578063afa4f3b21161008f578063f2fde38b11610061578063f2fde38b1461055d578063f5a6682f1461057d578063f928364c1461059d578063ffb54a99146105b257005b8063afa4f3b2146104c2578063c9567bf9146104e2578063dd62ed3e146104f7578063e01af92c1461053d57005b80639c61a177116100c85780639c61a1771461044c578063a457c2d71461046c578063a90599421461048c578063a9059cbb146104a257005b80638b56caa6146103d95780638da5cb5b146103f9578063959fa3351461042157806395d89b411461043757005b806338cb06061161016857806370a082311161013a57806370a082311461034e578063715018a6146103845780637fdaa34d1461039957806387f99ec6146103b957005b806338cb0606146102e257806339509351146102f857806354cf2aeb146103185780636ddd17131461032e57005b806318160ddd116101a157806318160ddd1461027257806320800a001461029157806323b872dd146102a6578063313ce567146102c657005b8062ae3bf8146101d757806306fdde03146101f7578063095ea7b314610222578063105222f91461025257005b366101d557005b005b3480156101e357600080fd5b506101d56101f2366004611e35565b6105cc565b34801561020357600080fd5b5061020c610787565b6040516102199190611e52565b60405180910390f35b34801561022e57600080fd5b5061024261023d366004611ea0565b610819565b6040519015158152602001610219565b34801561025e57600080fd5b506101d561026d366004611efb565b610833565b34801561027e57600080fd5b506002545b604051908152602001610219565b34801561029d57600080fd5b506101d56108c4565b3480156102b257600080fd5b506102426102c1366004611fd2565b61093b565b3480156102d257600080fd5b5060405160128152602001610219565b3480156102ee57600080fd5b50610283600b5481565b34801561030457600080fd5b50610242610313366004611ea0565b61095f565b34801561032457600080fd5b50610283600e5481565b34801561033a57600080fd5b50600a546102429062010000900460ff1681565b34801561035a57600080fd5b50610283610369366004611e35565b6001600160a01b031660009081526020819052604090205490565b34801561039057600080fd5b506101d561099e565b3480156103a557600080fd5b506101d56103b4366004612013565b6109d4565b3480156103c557600080fd5b506101d56103d4366004611e35565b610a98565b3480156103e557600080fd5b506101d56103f4366004612013565b610b87565b34801561040557600080fd5b506005546040516001600160a01b039091168152602001610219565b34801561042d57600080fd5b50610283600d5481565b34801561044357600080fd5b5061020c610c3e565b34801561045857600080fd5b506101d5610467366004612013565b610c4d565b34801561047857600080fd5b50610242610487366004611ea0565b610d05565b34801561049857600080fd5b50610283600c5481565b3480156104ae57600080fd5b506102426104bd366004611ea0565b610d97565b3480156104ce57600080fd5b506101d56104dd366004612013565b610da5565b3480156104ee57600080fd5b506101d5610ee7565b34801561050357600080fd5b5061028361051236600461202c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561054957600080fd5b506101d5610558366004612065565b61104e565b34801561056957600080fd5b506101d5610578366004611e35565b611094565b34801561058957600080fd5b506101d5610598366004611efb565b61112f565b3480156105a957600080fd5b506101d56111c0565b3480156105be57600080fd5b50600a546102429060ff1681565b6005546001600160a01b031633146105ff5760405162461bcd60e51b81526004016105f690612082565b60405180910390fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610646573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061066a91906120b7565b116106a35760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b60448201526064016105f6565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156106ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061070e91906120b7565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af115801561075e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061078291906120d0565b505050565b606060038054610796906120ed565b80601f01602080910402602001604051908101604052809291908181526020018280546107c2906120ed565b801561080f5780601f106107e45761010080835404028352916020019161080f565b820191906000526020600020905b8154815290600101906020018083116107f257829003601f168201915b5050505050905090565b600033610827818585611227565b60019150505b92915050565b6005546001600160a01b0316331461085d5760405162461bcd60e51b81526004016105f690612082565b60005b825181101561078257816008600085848151811061088057610880612121565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806108bc8161214d565b915050610860565b6005546001600160a01b031633146108ee5760405162461bcd60e51b81526004016105f690612082565b604051600090339047908381818185875af1925050503d8060008114610930576040519150601f19603f3d011682016040523d82523d6000602084013e610935565b606091505b50505050565b60003361094985828561134b565b6109548585856113d7565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906108279082908690610999908790612166565b611227565b6005546001600160a01b031633146109c85760405162461bcd60e51b81526004016105f690612082565b6109d26000611976565b565b6005546001600160a01b031633146109fe5760405162461bcd60e51b81526004016105f690612082565b610a1e6103e8610a186001610a1260025490565b90611208565b9061121b565b811015610a935760405162461bcd60e51b815260206004820152603d60248201527f48595045523a204d61782062757920616d6f756e742063616e6e6f742062652060448201527f6c6f776572207468616e20302e312520746f74616c20737570706c792e00000060648201526084016105f6565b600b55565b6005546001600160a01b03163314610ac25760405162461bcd60e51b81526004016105f690612082565b6015546001600160a01b0390811690821603610b345760405162461bcd60e51b815260206004820152602b60248201527f48595045523a2073776170466565436f6c6c6563746f7220616464726573732060448201526a063616e6e6f7420626520360ac1b60648201526084016105f6565b601280546001600160a01b039092166001600160a01b0319909216821790556000908152600860209081526040808320805460ff1990811660019081179092556009909352922080549091169091179055565b6005546001600160a01b03163314610bb15760405162461bcd60e51b81526004016105f690612082565b610bc46064610a186001610a1260025490565b811015610c395760405162461bcd60e51b815260206004820152603e60248201527f48595045523a204d61782077616c6c657420616d6f756e742063616e6e6f742060448201527f6265206c6f776572207468616e20312520746f74616c20737570706c792e000060648201526084016105f6565b600d55565b606060048054610796906120ed565b6005546001600160a01b03163314610c775760405162461bcd60e51b81526004016105f690612082565b610c8b6103e8610a186001610a1260025490565b811015610d005760405162461bcd60e51b815260206004820152603e60248201527f48595045523a204d61782073656c6c20616d6f756e742063616e6e6f7420626560448201527f206c6f776572207468616e20302e312520746f74616c20737570706c792e000060648201526084016105f6565b600c55565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610d8a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105f6565b6109548286868403611227565b6000336108278185856113d7565b6005546001600160a01b03163314610dcf5760405162461bcd60e51b81526004016105f690612082565b610de4620186a0610a186001610a1260025490565b811015610e595760405162461bcd60e51b815260206004820152603c60248201527f48595045523a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e0000000060648201526084016105f6565b610e6d6103e8610a186005610a1260025490565b811115610ee25760405162461bcd60e51b815260206004820152603b60248201527f48595045523a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e000000000060648201526084016105f6565b601155565b6005546001600160a01b03163314610f115760405162461bcd60e51b81526004016105f690612082565b600a5460ff1615610f645760405162461bcd60e51b815260206004820152601e60248201527f48595045523a2054726164696e6720697320616c7265616479206f70656e000060448201526064016105f6565b6006546001600160a01b031663f305d7194730610f96816001600160a01b031660009081526020819052604090205490565b600080610fab6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611013573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110389190612179565b5050600a805462ff00ff19166201000117905550565b6005546001600160a01b031633146110785760405162461bcd60e51b81526004016105f690612082565b600a8054911515620100000262ff000019909216919091179055565b6005546001600160a01b031633146110be5760405162461bcd60e51b81526004016105f690612082565b6001600160a01b0381166111235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105f6565b61112c81611976565b50565b6005546001600160a01b031633146111595760405162461bcd60e51b81526004016105f690612082565b60005b825181101561078257816009600085848151811061117c5761117c612121565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806111b88161214d565b91505061115c565b6005546001600160a01b031633146111ea5760405162461bcd60e51b81526004016105f690612082565b6d314dc6448d9338c15b0a00000000600b819055600c819055600d55565b600061121482846121a7565b9392505050565b600061121482846121be565b6001600160a01b0383166112895760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105f6565b6001600160a01b0382166112ea5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105f6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461093557818110156113ca5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105f6565b6109358484848403611227565b6015546001600160a01b03908116908416036114435760405162461bcd60e51b815260206004820152602560248201527f48595045523a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105f6565b6015546001600160a01b03908116908316036114ad5760405162461bcd60e51b815260206004820152602360248201527f48595045523a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105f6565b600081116115165760405162461bcd60e51b815260206004820152603060248201527f48595045523a205472616e7366657220616d6f756e74206d757374206265206760448201526f726561746572207468616e207a65726f60801b60648201526084016105f6565b6001600061152c6005546001600160a01b031690565b6001600160a01b0316856001600160a01b03161415801561155b57506005546001600160a01b03858116911614155b801561157557506015546001600160a01b03858116911614155b801561158f57506014546001600160a01b03858116911614155b80156115a35750600a54610100900460ff16155b1561185857600a5460ff16611648576001600160a01b03851660009081526008602052604090205460ff16806115f157506001600160a01b03841660009081526008602052604090205460ff165b6116485760405162461bcd60e51b815260206004820152602260248201527f48595045523a2054726164696e67206973206e6f7420616c6c6f7765642079656044820152613a1760f11b60648201526084016105f6565b6013546001600160a01b03868116911614801561167357506006546001600160a01b03858116911614155b801561169857506001600160a01b03841660009081526009602052604090205460ff16155b1561179557600b548311156117065760405162461bcd60e51b815260206004820152602e60248201527f48595045523a205472616e7366657220616d6f756e742065786365656473207460448201526d34329036b0bc213abca0b6b73a1760911b60648201526084016105f6565b600d5483611729866001600160a01b031660009081526020819052604090205490565b6117339190612166565b11156117955760405162461bcd60e51b815260206004820152602b60248201527f48595045523a2045786365656473206d6178696d756d2077616c6c657420746f60448201526a35b2b71030b6b7bab73a1760a91b60648201526084016105f6565b6013546001600160a01b0385811691161480156117c057506006546001600160a01b03868116911614155b80156117e557506001600160a01b03851660009081526009602052604090205460ff16155b1561185857600c548311156118545760405162461bcd60e51b815260206004820152602f60248201527f48595045523a205472616e7366657220616d6f756e742065786365656473207460448201526e34329036b0bc29b2b63620b6b73a1760891b60648201526084016105f6565b5060015b6001600160a01b03851660009081526008602052604090205460ff168061189757506001600160a01b03841660009081526008602052604090205460ff165b156118a157600091505b3060009081526020819052604081205490506000601154821180156118c35750825b90508080156118da5750600a5462010000900460ff165b80156118ee5750600a54610100900460ff16155b801561191357506001600160a01b03871660009081526008602052604090205460ff16155b801561193857506001600160a01b03861660009081526008602052604090205460ff16155b1561196157600a805461ff001916610100179055611955826119c8565b600a805461ff00191690555b61196d87878787611a14565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8015806119d55750601054155b156119dd5750565b6011546119eb9060056121a7565b811115611a0357601154611a009060056121a7565b90505b611a0c81611a4e565b506000601055565b80611a2657611a21611bac565b611a33565b611a308483611bc5565b91505b611a3e848484611c42565b8061093557610935600f54600e55565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a8357611a83612121565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611adc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b0091906121e0565b81600181518110611b1357611b13612121565b6001600160a01b039283166020918202929092010152600654611b399130911684611227565b60065460125460405163791ac94760e01b81526001600160a01b039283169263791ac94792611b76928792600092889291169042906004016121fd565b600060405180830381600087803b158015611b9057600080fd5b505af1158015611ba4573d6000803e3d6000fd5b505050505050565b600e54600003611bb857565b600e8054600f5560009055565b600e5460009015611c3c576000611bed6103e8610a18600e548661120890919063ffffffff16565b600e54909150611bfd81836121a7565b611c0791906121be565b60106000828254611c189190612166565b90915550508015611c2e57611c2e843083611c42565b611c38818461226e565b9250505b50919050565b6001600160a01b038316611ca65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105f6565b6001600160a01b038216611d085760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105f6565b6001600160a01b03831660009081526020819052604090205481811015611d805760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105f6565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611db7908490612166565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e0391815260200190565b60405180910390a3610935565b6001600160a01b038116811461112c57600080fd5b8035611e3081611e10565b919050565b600060208284031215611e4757600080fd5b813561121481611e10565b600060208083528351808285015260005b81811015611e7f57858101830151858201604001528201611e63565b506000604082860101526040601f19601f8301168501019250505092915050565b60008060408385031215611eb357600080fd5b8235611ebe81611e10565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b801515811461112c57600080fd5b8035611e3081611ee2565b60008060408385031215611f0e57600080fd5b823567ffffffffffffffff80821115611f2657600080fd5b818501915085601f830112611f3a57600080fd5b8135602082821115611f4e57611f4e611ecc565b8160051b604051601f19603f83011681018181108682111715611f7357611f73611ecc565b604052928352818301935084810182019289841115611f9157600080fd5b948201945b83861015611fb657611fa786611e25565b85529482019493820193611f96565b9650611fc59050878201611ef0565b9450505050509250929050565b600080600060608486031215611fe757600080fd5b8335611ff281611e10565b9250602084013561200281611e10565b929592945050506040919091013590565b60006020828403121561202557600080fd5b5035919050565b6000806040838503121561203f57600080fd5b823561204a81611e10565b9150602083013561205a81611e10565b809150509250929050565b60006020828403121561207757600080fd5b813561121481611ee2565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000602082840312156120c957600080fd5b5051919050565b6000602082840312156120e257600080fd5b815161121481611ee2565b600181811c9082168061210157607f821691505b602082108103611c3c57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161215f5761215f612137565b5060010190565b8082018082111561082d5761082d612137565b60008060006060848603121561218e57600080fd5b8351925060208401519150604084015190509250925092565b808202811582820484141761082d5761082d612137565b6000826121db57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156121f257600080fd5b815161121481611e10565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561224d5784516001600160a01b031683529383019391830191600101612228565b50506001600160a01b03969096166060850152505050608001529392505050565b8181038181111561082d5761082d61213756fea264697066735822122046819838f6671b77877a1946a9b625e55d2d4755d449250fca190b63b862a3da64736f6c63430008110033

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.