ETH Price: $2,433.48 (+4.68%)

Token

Eau De Parfum (PERFUME)
 

Overview

Max Total Supply

8,989,899,898,989 PERFUME

Holders

50

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
87,193,308,817.2912797 PERFUME

Value
$0.00
0xd9Aee31AF9c9f9C59e36E40c10c2AF803d6c8742
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:
EauDeParfum

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

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

interface IRouter {
    function factory() 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 swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline) external;
}

interface IUSDCReceiver {
    function initialize(address) external;
    function withdraw() external;
    function withdrawUnsupportedAsset(address, uint256) external;
}

contract USDCReceiver is IUSDCReceiver, Ownable {
    address public usdc;
    address public token;

    constructor() Ownable() {
        token = msg.sender;
    }

    function initialize(address _usdc) public override onlyOwner {
        require(usdc == address(0x0), "Already initialized");
        usdc = _usdc;
    }

    function withdraw() public override {
        require(msg.sender == token, "Caller is not token");
        IERC20(usdc).transfer(token, IERC20(usdc).balanceOf(address(this)));
    }

    function withdrawUnsupportedAsset(address _token, uint256 _amount) public override onlyOwner {
        if(_token == address(0x0))
            payable(owner()).transfer(_amount);
        else
            IERC20(_token).transfer(owner(), _amount);
    }
}

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

    IRouter private _router;

    USDCReceiver private _usdcReceiver;

    mapping (address => uint) private _cooldown;

    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) private _isExcludedFromTransactionLimits;
    mapping (address => bool) private _isBlacklisted;

    bool public tradingOpen;
    bool private _swapping;
    bool public swapEnabled;
    bool public cooldownEnabled;
    bool public feesEnabled = true;

    uint256 private constant _totalSupply = 8989899898989 * (10**18);

    uint256 public maxBuy = _totalSupply.mul(1).div(100);
    uint256 public maxSell = _totalSupply.mul(1).div(100);
    uint256 public maxWallet = _totalSupply.mul(1).div(100);

    uint256 public constant FEE_DIVISOR = 1000;

    uint256 public liquidityFee = 10;
    uint256 private _previousLiquidityFee = liquidityFee;

    uint256 public usdcFee = 20;
    uint256 private _previousUSDCFee = usdcFee;

    uint256 private _totalFees;
    uint256 private _liqFee;
    uint256 private _usdcFee;

    uint256 private _tokensForLiquidity;
    uint256 private _tokensForUSDC;

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

    address payable public liquidityWallet;
    address payable public usdcWallet;
    address private _pair;
    address private DEAD = 0x000000000000000000000000000000000000dEaD;
    address private ZERO = 0x0000000000000000000000000000000000000000;         
    address private USDC = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;
    
    constructor () ERC20("Eau De Parfum", "PERFUME") {
        _router = IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(_router), _totalSupply);
        _pair = IFactory(_router.factory()).createPair(address(this), USDC);
        IERC20(_pair).approve(address(_router), type(uint).max);

        _usdcReceiver = new USDCReceiver();
        _usdcReceiver.initialize(USDC);
        _usdcReceiver.transferOwnership(msg.sender);

        liquidityWallet = payable(owner());
        usdcWallet = payable(owner());

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

        _isExcludedFromTransactionLimits[owner()] = true;
        _isExcludedFromTransactionLimits[address(this)] = true;
        _isExcludedFromTransactionLimits[address(_usdcReceiver)] = true;
        _isExcludedFromTransactionLimits[DEAD] = true;

        _mint(owner(), _totalSupply);
    }

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

        bool takeFee = true;
        bool shouldSwap = false;
        if (from != owner() && to != owner() && to != ZERO && to != DEAD && !_swapping) {
            require(!_isBlacklisted[from] && !_isBlacklisted[to]);

            if(!tradingOpen) require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not allowed.");

            if (cooldownEnabled) {
                if (to != address(_router) && to != address(_pair)){
                    require(_cooldown[tx.origin] < block.number.sub(1) && _cooldown[to] < block.number.sub(1), "Transfer delay enabled. Try again later.");
                    _cooldown[tx.origin] = block.number;
                    _cooldown[to] = block.number;
                }
            }

            if (from == _pair && to != address(_router) && !_isExcludedFromTransactionLimits[to]) {
                require(amount <= maxBuy, "Transfer amount exceeds the buy limit.");
                require((balanceOf(to)).add(amount) <= maxWallet, "Exceeds wallet limit.");
            }
            
            if (to == _pair && from != address(_router) && !_isExcludedFromTransactionLimits[from]) {
                require(amount <= maxSell, "Transfer amount exceeds the sell limit.");
                shouldSwap = true;
            }
        }

        if(_isExcludedFromFees[from] || _isExcludedFromFees[to] || !feesEnabled) 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 {
        uint256 totalTokensToSwap = _tokensForLiquidity.add(_tokensForUSDC);
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}

        if(contractBalance >_swapTokensAtAmount) contractBalance = _swapTokensAtAmount;
        
        uint256 liquidityTokens = contractBalance.mul(_tokensForLiquidity).div(totalTokensToSwap).div(2);
        uint256 amountToSwapForUSDC = contractBalance.sub(liquidityTokens);
        
        uint256 initialUSDCBalance = IERC20(USDC).balanceOf(address(this));

        _swapTokensForTokens(amountToSwapForUSDC);

        _usdcReceiver.withdraw();
        
        uint256 usdcBalance = IERC20(USDC).balanceOf(address(this)).sub(initialUSDCBalance);
        uint256 usdcForUSDC = usdcBalance.mul(_tokensForUSDC).div(totalTokensToSwap);
        uint256 usdcForLiquidity = usdcBalance.sub(usdcForUSDC);
        
        _tokensForLiquidity = 0;
        _tokensForUSDC = 0;
        
        if(liquidityTokens > 0 && usdcForLiquidity > 0) _addLiquidity(liquidityTokens, usdcForLiquidity);
        
        IERC20(USDC).transfer(usdcWallet, IERC20(USDC).balanceOf(address(this)));
    }

    function _swapTokensForTokens(uint256 tokenAmount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = USDC;
        _approve(address(this), address(_router), tokenAmount);
        _router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(_usdcReceiver),
            block.timestamp
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 usdcAmount) internal {
        IERC20(USDC).approve(address(_router), usdcAmount);
        _approve(address(this), address(_router), tokenAmount);
        _router.addLiquidity(
                address(this),
                USDC,
                tokenAmount,
                usdcAmount,
                0,
                0,
                liquidityWallet,
                block.timestamp
        );
    }

    function _removeFees() internal {
        if(liquidityFee == 0 && usdcFee == 0) return;
        
        _previousLiquidityFee = liquidityFee;
        _previousUSDCFee = usdcFee;
        
        liquidityFee = 0;
        usdcFee = 0;
    }
    
    function _restoreFees() internal {
        liquidityFee = _previousLiquidityFee;
        usdcFee = _previousUSDCFee;
    }
        
    function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) internal {
        if(!takeFee) _removeFees();
        else amount = _takeFees(sender, amount);

        super._transfer(sender, recipient, amount);
        
        if(!takeFee) _restoreFees();
    }

    function _takeFees(address sender, uint256 amount) internal returns (uint256) {
        _setFees();
        uint256 fees;
        if (_totalFees > 0) {
            fees = amount.mul(_totalFees).div(FEE_DIVISOR);
            _tokensForLiquidity += fees.mul(_liqFee).div(_totalFees);
            _tokensForUSDC += fees.mul(_usdcFee).div(_totalFees);
        }
            
        if (fees > 0) super._transfer(sender, address(this), fees);
            
        return amount.sub(fees);
    }

    function _setFees() internal {
        _liqFee = liquidityFee;
        _usdcFee = usdcFee;
        _totalFees = _liqFee.add(_usdcFee);
    }

    function usdcReceiverAddress() external view returns (address) {
        return address(_usdcReceiver);
    }

    function isExcludedFromFees(address wallet) external view returns (bool) {
        return _isExcludedFromFees[wallet];
    }

    function isExcludedFromTransactionLimits(address wallet) external view returns (bool) {
        return _isExcludedFromTransactionLimits[wallet];
    }

    function isBlacklisted(address wallet) external view returns (bool) {
        return _isBlacklisted[wallet];
    }
    
    function lfg() public onlyOwner {
        require(!tradingOpen, "Trading is already open");
        swapEnabled = true;
        cooldownEnabled = true;
        tradingOpen = true;
    }

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

    function setcooldownEnabled(bool onoff) public onlyOwner {
        cooldownEnabled = onoff;
    }

    function setFeesEnabled(bool onoff) public onlyOwner {
        feesEnabled = onoff;
    }

    function setMaxBuy(uint256 _maxBuy) public onlyOwner {
        require(_maxBuy >= (totalSupply().mul(1).div(1000)), "Max buy cannot be lower than 0.1% total supply.");
        maxBuy = _maxBuy;
    }

    function setMaxSell(uint256 _maxSell) public onlyOwner {
        require(_maxSell >= (totalSupply().mul(1).div(1000)), "Max buy cannot be lower than 0.1% total supply.");
        maxSell = _maxSell;
    }
    
    function setMaxWallet(uint256 _maxWallet) public onlyOwner {
        require(_maxWallet >= (totalSupply().mul(1).div(100)), "Max wallet cannot be lower than 1% total supply.");
        maxWallet = _maxWallet;
    }
    
    function setSwapTokensAtAmount(uint256 swapAmount) public onlyOwner {
        require(swapAmount >= (totalSupply().mul(1).div(100000)), "Swap amount cannot be lower than 0.001% total supply.");
        require(swapAmount <= (totalSupply().mul(5).div(1000)), "Swap amount cannot be higher than 0.5% total supply.");
        _swapTokensAtAmount = swapAmount;
    }

    function setLiquidityWallet(address _liquidityWallet) public onlyOwner {
        require(_liquidityWallet != ZERO, "liquidityWallet address cannot be 0");
        liquidityWallet = payable(_liquidityWallet);
        _isExcludedFromFees[liquidityWallet] = true;
        _isExcludedFromTransactionLimits[liquidityWallet] = true;
    }

    function setUSDCWallet(address _USDCWallet) public onlyOwner {
        require(_USDCWallet != ZERO, "usdcWallet address cannot be 0");
        usdcWallet = payable(_USDCWallet);
        _isExcludedFromFees[usdcWallet] = true;
        _isExcludedFromTransactionLimits[usdcWallet] = true;
    }

    function excludeFromFees(address[] memory accounts, bool isEx) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = isEx;
        }
    }
    
    function excludeFromTransactionLimits(address[] memory accounts, bool isEx) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) {
            _isExcludedFromTransactionLimits[accounts[i]] = isEx;
        }
    }
    
    function blacklist(address[] memory accounts, bool isBl) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) {
            if (accounts[i] != _pair) _isBlacklisted[accounts[i]] = isBl;
        }
    }

    function setFees(uint256 _buyLiquidityFee, uint256 _buyUSDCFee) public onlyOwner {
        require(_buyLiquidityFee.add(_buyUSDCFee) <= 100, "Must keep buy taxes below 10%");
        liquidityFee = _buyLiquidityFee;
        usdcFee = _buyUSDCFee;
    }

    function rescueETH() public {
        require(_msgSender() == usdcWallet || _msgSender() == liquidityWallet, "Unauthorized.");
        bool success;
        (success,) = address(_msgSender()).call{value: address(this).balance}("");
    }

    function rescueForeignTokens(address tokenAddress) public {
        require(_msgSender() == usdcWallet || _msgSender() == liquidityWallet, "Unauthorized.");
        require(tokenAddress != address(this), "Cannot withdraw this token");
        require(IERC20(tokenAddress).balanceOf(address(this)) > 0, "No tokens");
        uint amount = IERC20(tokenAddress).balanceOf(address(this));
        IERC20(tokenAddress).transfer(_msgSender(), amount);
    }

    function removeLimits() public onlyOwner {
        maxBuy = _totalSupply;
        maxSell = _totalSupply;
        maxWallet = _totalSupply;
    }

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

}

File 2 of 7 : 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 3 of 7 : 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 4 of 7 : 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 5 of 7 : 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 6 of 7 : 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 7 of 7 : 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":[],"name":"FEE_DIVISOR","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":"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":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"isBl","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cooldownEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromTransactionLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isExcludedFromTransactionLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lfg","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"rescueForeignTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_buyUSDCFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setFeesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityWallet","type":"address"}],"name":"setLiquidityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuy","type":"uint256"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSell","type":"uint256"}],"name":"setMaxSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"swapAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_USDCWallet","type":"address"}],"name":"setUSDCWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setcooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[],"name":"usdcFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"usdcReceiverAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"usdcWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600c805464010000000060ff60201b199091161790556200005a6064620000466c7177eee7bd8df5e53f459400006001620005cf602090811b6200176517901c565b620005e460201b620017781790919060201c565b600d556200008b60646200004660016c7177eee7bd8df5e53f45940000620005cf60201b620017651790919060201c565b600e55620000bc60646200004660016c7177eee7bd8df5e53f45940000620005cf60201b620017651790919060201c565b600f55600a6010556010546011556014601255601254601355620001046127106200004660056c7177eee7bd8df5e53f45940000620005cf60201b620017651790919060201c565b601955601d80546001600160a01b031990811661dead17909155601e805482169055601f805490911673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb481790553480156200015257600080fd5b50604080518082018252600d81526c4561752044652050617266756d60981b60208083019182528351808501909452600784526650455246554d4560c81b908401528151919291620001a79160039162000868565b508051620001bd90600490602084019062000868565b505050620001da620001d4620005f260201b60201c565b620005f6565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556200021e9030906c7177eee7bd8df5e53f4594000062000648565b600660009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200026d57600080fd5b505afa15801562000282573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a891906200091c565b601f546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c6539690604401602060405180830381600087803b158015620002f557600080fd5b505af11580156200030a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200033091906200091c565b601c80546001600160a01b0319166001600160a01b0392831690811790915560065460405163095ea7b360e01b81529216600483015260001960248301529063095ea7b390604401602060405180830381600087803b1580156200039357600080fd5b505af1158015620003a8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003ce919062000945565b50604051620003dd90620008f7565b604051809103906000f080158015620003fa573d6000803e3d6000fd5b50600780546001600160a01b0319166001600160a01b03928316908117909155601f5460405163189acdbd60e31b8152921660048301529063c4d66de890602401600060405180830381600087803b1580156200045657600080fd5b505af11580156200046b573d6000803e3d6000fd5b505060075460405163f2fde38b60e01b81523360048201526001600160a01b03909116925063f2fde38b9150602401600060405180830381600087803b158015620004b557600080fd5b505af1158015620004ca573d6000803e3d6000fd5b50505050620004de6200077460201b60201c565b601a80546001600160a01b03199081166001600160a01b039384161790915560058054601b80549185169190931681179092556000918252600960209081526040808420805460ff19908116600190811790925530808752838720805483168417905560078054891688528488208054841685179055601d80548a168952858920805485168617905587548a168952600a90965284882080548416851790559087528387208054831684179055548716865282862080548216831790559254861685529320805490911690921790915554620005c991166c7177eee7bd8df5e53f4594000062000783565b62000a18565b6000620005dd8284620009a3565b9392505050565b6000620005dd828462000982565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316620006b05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620007135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620006a7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031690565b6001600160a01b038216620007db5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620006a7565b8060026000828254620007ef919062000967565b90915550506001600160a01b038216600090815260208190526040812080548392906200081e90849062000967565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200087690620009c5565b90600052602060002090601f0160209004810192826200089a5760008555620008e5565b82601f10620008b557805160ff1916838001178555620008e5565b82800160010185558215620008e5579182015b82811115620008e5578251825591602001919060010190620008c8565b50620008f392915062000905565b5090565b6106ee806200383183390190565b5b80821115620008f3576000815560010162000906565b6000602082840312156200092e578081fd5b81516001600160a01b0381168114620005dd578182fd5b60006020828403121562000957578081fd5b81518015158114620005dd578182fd5b600082198211156200097d576200097d62000a02565b500190565b6000826200099e57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615620009c057620009c062000a02565b500290565b600181811c90821680620009da57607f821691505b60208210811415620009fc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b612e098062000a286000396000f3fe6080604052600436106102745760003560e01c806398118cb41161014e578063c997eb8d116100bb578063ef998cf011610077578063ef998cf0146107cf578063f2fde38b146107ef578063f53bc8351461080f578063f8b45b051461082f578063fe575a8714610845578063ffb54a991461087e57005b8063c997eb8d146106e9578063cefb46c714610709578063d077b48f14610729578063d469801614610749578063dd62ed3e14610769578063e01af92c146107af57005b8063a985ceef1161010a578063a985ceef14610634578063ad29ffde14610655578063afa4f3b214610675578063b26f5a6b14610695578063b744223a146106b5578063b8eb3546146106d357005b806398118cb4146105865780639e93ad8e1461059c578063a457c2d7146105b2578063a64e4f8a146105d2578063a901dd92146105f4578063a9059cbb1461061457005b806339509351116101ec578063715018a6116101a8578063715018a6146104c7578063751039fc146104dc5780637e7eab1f146104f15780638da5cb5b1461052a5780638f793cb91461055c57806395d89b411461057157005b806339509351146103e25780634fbee193146104025780635d0044ca1461043b5780636ddd17131461045b57806370a082311461047b57806370db69d6146104b157005b806320800a001161023b57806320800a001461033157806323b872dd146103465780632534f51214610366578063296f0a0c146103865780632de83ef2146103a6578063313ce567146103c657005b806306fdde031461027d578063095ea7b3146102a85780630b78f9c0146102d8578063136f5cdd146102f857806318160ddd1461031c57005b3661027b57005b005b34801561028957600080fd5b50610292610898565b60405161029f9190612b8e565b60405180910390f35b3480156102b457600080fd5b506102c86102c33660046129d6565b61092a565b604051901515815260200161029f565b3480156102e457600080fd5b5061027b6102f3366004612b40565b610942565b34801561030457600080fd5b5061030e60125481565b60405190815260200161029f565b34801561032857600080fd5b5060025461030e565b34801561033d57600080fd5b5061027b6109da565b34801561035257600080fd5b506102c861036136600461299b565b610a98565b34801561037257600080fd5b5061027b61038136600461294f565b610abc565b34801561039257600080fd5b5061027b6103a136600461294f565b610b9d565b3480156103b257600080fd5b5061027b6103c13660046129ff565b610c8a565b3480156103d257600080fd5b506040516012815260200161029f565b3480156103ee57600080fd5b506102c86103fd3660046129d6565b610d2e565b34801561040e57600080fd5b506102c861041d36600461294f565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561044757600080fd5b5061027b610456366004612b10565b610d6d565b34801561046757600080fd5b50600c546102c89062010000900460ff1681565b34801561048757600080fd5b5061030e61049636600461294f565b6001600160a01b031660009081526020819052604090205490565b3480156104bd57600080fd5b5061030e600d5481565b3480156104d357600080fd5b5061027b610e23565b3480156104e857600080fd5b5061027b610e59565b3480156104fd57600080fd5b506102c861050c36600461294f565b6001600160a01b03166000908152600a602052604090205460ff1690565b34801561053657600080fd5b506005546001600160a01b03165b6040516001600160a01b03909116815260200161029f565b34801561056857600080fd5b5061027b610ea0565b34801561057d57600080fd5b50610292610f32565b34801561059257600080fd5b5061030e60105481565b3480156105a857600080fd5b5061030e6103e881565b3480156105be57600080fd5b506102c86105cd3660046129d6565b610f41565b3480156105de57600080fd5b50600c546102c890640100000000900460ff1681565b34801561060057600080fd5b5061027b61060f366004612ad8565b610fd3565b34801561062057600080fd5b506102c861062f3660046129d6565b61101d565b34801561064057600080fd5b50600c546102c8906301000000900460ff1681565b34801561066157600080fd5b5061027b6106703660046129ff565b61102b565b34801561068157600080fd5b5061027b610690366004612b10565b6110ca565b3480156106a157600080fd5b5061027b6106b0366004612ad8565b6111fb565b3480156106c157600080fd5b506007546001600160a01b0316610544565b3480156106df57600080fd5b5061030e600e5481565b3480156106f557600080fd5b5061027b6107043660046129ff565b611243565b34801561071557600080fd5b50601b54610544906001600160a01b031681565b34801561073557600080fd5b5061027b61074436600461294f565b611337565b34801561075557600080fd5b50601a54610544906001600160a01b031681565b34801561077557600080fd5b5061030e610784366004612969565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107bb57600080fd5b5061027b6107ca366004612ad8565b6115c0565b3480156107db57600080fd5b5061027b6107ea366004612b10565b611606565b3480156107fb57600080fd5b5061027b61080a36600461294f565b611668565b34801561081b57600080fd5b5061027b61082a366004612b10565b611703565b34801561083b57600080fd5b5061030e600f5481565b34801561085157600080fd5b506102c861086036600461294f565b6001600160a01b03166000908152600b602052604090205460ff1690565b34801561088a57600080fd5b50600c546102c89060ff1681565b6060600380546108a790612d43565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390612d43565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905090565b600033610938818585611784565b5060019392505050565b6005546001600160a01b031633146109755760405162461bcd60e51b815260040161096c90612c30565b60405180910390fd5b606461098183836118a8565b11156109cf5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206275792074617865732062656c6f7720313025000000604482015260640161096c565b601091909155601255565b601b546001600160a01b0316336001600160a01b03161480610a0f5750601a546001600160a01b0316336001600160a01b0316145b610a4b5760405162461bcd60e51b815260206004820152600d60248201526c2ab730baba3437b934bd32b21760991b604482015260640161096c565b604051600090339047908381818185875af1925050503d8060008114610a8d576040519150601f19603f3d011682016040523d82523d6000602084013e610a92565b606091505b50505050565b600033610aa68582856118b4565b610ab1858585611940565b506001949350505050565b6005546001600160a01b03163314610ae65760405162461bcd60e51b815260040161096c90612c30565b601e546001600160a01b0382811691161415610b445760405162461bcd60e51b815260206004820152601e60248201527f7573646357616c6c657420616464726573732063616e6e6f7420626520300000604482015260640161096c565b601b80546001600160a01b0319166001600160a01b0392831690811782556000908152600960209081526040808320805460ff19908116600190811790925594549095168352600a909152902080549091169091179055565b6005546001600160a01b03163314610bc75760405162461bcd60e51b815260040161096c90612c30565b601e546001600160a01b0382811691161415610c315760405162461bcd60e51b815260206004820152602360248201527f6c697175696469747957616c6c657420616464726573732063616e6e6f74206260448201526206520360ec1b606482015260840161096c565b601a80546001600160a01b0319166001600160a01b0392831690811782556000908152600960209081526040808320805460ff19908116600190811790925594549095168352600a909152902080549091169091179055565b6005546001600160a01b03163314610cb45760405162461bcd60e51b815260040161096c90612c30565b60005b8251811015610d295781600a6000858481518110610ce557634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610d2181612d7e565b915050610cb7565b505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906109389082908690610d68908790612cd5565b611784565b6005546001600160a01b03163314610d975760405162461bcd60e51b815260040161096c90612c30565b610db66064610db06001610daa60025490565b90611765565b90611778565b811015610e1e5760405162461bcd60e51b815260206004820152603060248201527f4d61782077616c6c65742063616e6e6f74206265206c6f776572207468616e2060448201526f1892903a37ba30b61039bab838363c9760811b606482015260840161096c565b600f55565b6005546001600160a01b03163314610e4d5760405162461bcd60e51b815260040161096c90612c30565b610e576000611ff6565b565b6005546001600160a01b03163314610e835760405162461bcd60e51b815260040161096c90612c30565b6c7177eee7bd8df5e53f45940000600d819055600e819055600f55565b6005546001600160a01b03163314610eca5760405162461bcd60e51b815260040161096c90612c30565b600c5460ff1615610f1d5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e000000000000000000604482015260640161096c565b600c805463ffff00ff19166301010001179055565b6060600480546108a790612d43565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610fc65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161096c565b610ab18286868403611784565b6005546001600160a01b03163314610ffd5760405162461bcd60e51b815260040161096c90612c30565b600c80549115156401000000000264ff0000000019909216919091179055565b600033610938818585611940565b6005546001600160a01b031633146110555760405162461bcd60e51b815260040161096c90612c30565b60005b8251811015610d2957816009600085848151811061108657634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806110c281612d7e565b915050611058565b6005546001600160a01b031633146110f45760405162461bcd60e51b815260040161096c90612c30565b611109620186a0610db06001610daa60025490565b8110156111765760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161096c565b61118a6103e8610db06005610daa60025490565b8111156111f65760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161096c565b601955565b6005546001600160a01b031633146112255760405162461bcd60e51b815260040161096c90612c30565b600c805491151563010000000263ff00000019909216919091179055565b6005546001600160a01b0316331461126d5760405162461bcd60e51b815260040161096c90612c30565b60005b8251811015610d2957601c5483516001600160a01b03909116908490839081106112aa57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b0316146113255781600b60008584815181106112e557634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8061132f81612d7e565b915050611270565b601b546001600160a01b0316336001600160a01b0316148061136c5750601a546001600160a01b0316336001600160a01b0316145b6113a85760405162461bcd60e51b815260206004820152600d60248201526c2ab730baba3437b934bd32b21760991b604482015260640161096c565b6001600160a01b0381163014156114015760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f74207769746864726177207468697320746f6b656e000000000000604482015260640161096c565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b15801561144357600080fd5b505afa158015611457573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061147b9190612b28565b116114b45760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b604482015260640161096c565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b1580156114f657600080fd5b505afa15801561150a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152e9190612b28565b90506001600160a01b03821663a9059cbb336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401602060405180830381600087803b15801561158857600080fd5b505af115801561159c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d299190612af4565b6005546001600160a01b031633146115ea5760405162461bcd60e51b815260040161096c90612c30565b600c8054911515620100000262ff000019909216919091179055565b6005546001600160a01b031633146116305760405162461bcd60e51b815260040161096c90612c30565b6116446103e8610db06001610daa60025490565b8110156116635760405162461bcd60e51b815260040161096c90612be1565b600e55565b6005546001600160a01b031633146116925760405162461bcd60e51b815260040161096c90612c30565b6001600160a01b0381166116f75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161096c565b61170081611ff6565b50565b6005546001600160a01b0316331461172d5760405162461bcd60e51b815260040161096c90612c30565b6117416103e8610db06001610daa60025490565b8110156117605760405162461bcd60e51b815260040161096c90612be1565b600d55565b60006117718284612d0d565b9392505050565b60006117718284612ced565b6001600160a01b0383166117e65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161096c565b6001600160a01b0382166118475760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161096c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006117718284612cd5565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610a9257818110156119335760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161096c565b610a928484848403611784565b601e546001600160a01b038481169116141561199e5760405162461bcd60e51b815260206004820152601e60248201527f5472616e736665722066726f6d20746865207a65726f20616464726573730000604482015260640161096c565b601e546001600160a01b03838116911614156119fc5760405162461bcd60e51b815260206004820152601c60248201527f5472616e7366657220746f20746865207a65726f206164647265737300000000604482015260640161096c565b60008111611a5e5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161096c565b60016000611a746005546001600160a01b031690565b6001600160a01b0316856001600160a01b031614158015611aa357506005546001600160a01b03858116911614155b8015611abd5750601e546001600160a01b03858116911614155b8015611ad75750601d546001600160a01b03858116911614155b8015611aeb5750600c54610100900460ff16155b15611ec1576001600160a01b0385166000908152600b602052604090205460ff16158015611b3257506001600160a01b0384166000908152600b602052604090205460ff16155b611b3b57600080fd5b600c5460ff16611bd0576001600160a01b03851660009081526009602052604090205460ff1680611b8457506001600160a01b03841660009081526009602052604090205460ff165b611bd05760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206973206e6f7420616c6c6f7765642e000000000000000000604482015260640161096c565b600c546301000000900460ff1615611cde576006546001600160a01b03858116911614801590611c0e5750601c546001600160a01b03858116911614155b15611cde57611c1e436001612048565b32600090815260086020526040902054108015611c5c5750611c41436001612048565b6001600160a01b038516600090815260086020526040902054105b611cb95760405162461bcd60e51b815260206004820152602860248201527f5472616e736665722064656c617920656e61626c65642e20547279206167616960448201526737103630ba32b91760c11b606482015260840161096c565b3260009081526008602052604080822043908190556001600160a01b03871683529120555b601c546001600160a01b038681169116148015611d0957506006546001600160a01b03858116911614155b8015611d2e57506001600160a01b0384166000908152600a602052604090205460ff16155b15611e0657600d54831115611d945760405162461bcd60e51b815260206004820152602660248201527f5472616e7366657220616d6f756e7420657863656564732074686520627579206044820152653634b6b4ba1760d11b606482015260840161096c565b600f54611dc084611dba876001600160a01b031660009081526020819052604090205490565b906118a8565b1115611e065760405162461bcd60e51b815260206004820152601560248201527422bc31b2b2b239903bb0b63632ba103634b6b4ba1760591b604482015260640161096c565b601c546001600160a01b038581169116148015611e3157506006546001600160a01b03868116911614155b8015611e5657506001600160a01b0385166000908152600a602052604090205460ff16155b15611ec157600e54831115611ebd5760405162461bcd60e51b815260206004820152602760248201527f5472616e7366657220616d6f756e742065786365656473207468652073656c6c604482015266103634b6b4ba1760c91b606482015260840161096c565b5060015b6001600160a01b03851660009081526009602052604090205460ff1680611f0057506001600160a01b03841660009081526009602052604090205460ff165b80611f165750600c54640100000000900460ff16155b15611f2057600091505b30600090815260208190526040812054905060006019548210158015611f435750825b9050808015611f5a5750600c5462010000900460ff165b8015611f6e5750600c54610100900460ff16155b8015611f9357506001600160a01b03871660009081526009602052604090205460ff16155b8015611fb857506001600160a01b03861660009081526009602052604090205460ff16155b15611fe157600c805461ff001916610100179055611fd582612054565b600c805461ff00191690555b611fed878787876123a3565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006117718284612d2c565b600061206d6018546017546118a890919063ffffffff16565b905081158061207a575080155b15612083575050565b6019548211156120935760195491505b60006120b36002610db084610db06017548861176590919063ffffffff16565b905060006120c18483612048565b601f546040516370a0823160e01b81523060048201529192506000916001600160a01b03909116906370a082319060240160206040518083038186803b15801561210a57600080fd5b505afa15801561211e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121429190612b28565b905061214d826123e3565b600760009054906101000a90046001600160a01b03166001600160a01b0316633ccfd60b6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561219d57600080fd5b505af11580156121b1573d6000803e3d6000fd5b5050601f546040516370a0823160e01b81523060048201526000935061223d925084916001600160a01b0316906370a082319060240160206040518083038186803b1580156121ff57600080fd5b505afa158015612213573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122379190612b28565b90612048565b9050600061225a86610db06018548561176590919063ffffffff16565b905060006122688383612048565b60006017819055601855905085158015906122835750600081115b156122925761229286826124fe565b601f54601b546040516370a0823160e01b81523060048201526001600160a01b039283169263a9059cbb92169083906370a082319060240160206040518083038186803b1580156122e257600080fd5b505afa1580156122f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061231a9190612b28565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b15801561236057600080fd5b505af1158015612374573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123989190612af4565b505050505050505050565b806123b5576123b061265a565b6123c2565b6123bf8483612688565b91505b6123cd84848461273b565b80610a9257610a92601154601055601354601255565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061242657634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601f5482519116908290600190811061246557634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201015260065461248b9130911684611784565b600654600754604051635c11d79560e01b81526001600160a01b0392831692635c11d795926124c892879260009288929116904290600401612c65565b600060405180830381600087803b1580156124e257600080fd5b505af11580156124f6573d6000803e3d6000fd5b505050505050565b601f5460065460405163095ea7b360e01b81526001600160a01b0391821660048201526024810184905291169063095ea7b390604401602060405180830381600087803b15801561254e57600080fd5b505af1158015612562573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125869190612af4565b5060065461259f9030906001600160a01b031684611784565b600654601f54601a5460405162e8e33760e81b81523060048201526001600160a01b039283166024820152604481018690526064810185905260006084820181905260a482015290821660c48201524260e482015291169063e8e337009061010401606060405180830381600087803b15801561261b57600080fd5b505af115801561262f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126539190612b61565b5050505050565b60105415801561266a5750601254155b1561267157565b601080546011556012805460135560009182905555565b6000612692612909565b60145460009015612718576126b86103e8610db06014548661176590919063ffffffff16565b90506126d5601454610db06015548461176590919063ffffffff16565b601760008282546126e69190612cd5565b90915550506014546016546127019190610db0908490611765565b601860008282546127129190612cd5565b90915550505b80156127295761272984308361273b565b6127338382612048565b949350505050565b6001600160a01b03831661279f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161096c565b6001600160a01b0382166128015760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161096c565b6001600160a01b038316600090815260208190526040902054818110156128795760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161096c565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906128b0908490612cd5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128fc91815260200190565b60405180910390a3610a92565b6010546015819055601254601681905561292391906118a8565b601455565b80356001600160a01b038116811461293f57600080fd5b919050565b803561293f81612dc5565b600060208284031215612960578081fd5b61177182612928565b6000806040838503121561297b578081fd5b61298483612928565b915061299260208401612928565b90509250929050565b6000806000606084860312156129af578081fd5b6129b884612928565b92506129c660208501612928565b9150604084013590509250925092565b600080604083850312156129e8578182fd5b6129f183612928565b946020939093013593505050565b60008060408385031215612a11578182fd5b823567ffffffffffffffff80821115612a28578384fd5b818501915085601f830112612a3b578384fd5b8135602082821115612a4f57612a4f612daf565b8160051b604051601f19603f83011681018181108682111715612a7457612a74612daf565b604052838152828101945085830182870184018b1015612a92578889fd5b8896505b84871015612abb57612aa781612928565b865260019690960195948301948301612a96565b509650612acb9050878201612944565b9450505050509250929050565b600060208284031215612ae9578081fd5b813561177181612dc5565b600060208284031215612b05578081fd5b815161177181612dc5565b600060208284031215612b21578081fd5b5035919050565b600060208284031215612b39578081fd5b5051919050565b60008060408385031215612b52578182fd5b50508035926020909101359150565b600080600060608486031215612b75578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b81811015612bba57858101830151858201604001528201612b9e565b81811115612bcb5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252602f908201527f4d6178206275792063616e6e6f74206265206c6f776572207468616e20302e3160408201526e12903a37ba30b61039bab838363c9760891b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b81811015612cb45784516001600160a01b031683529383019391830191600101612c8f565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612ce857612ce8612d99565b500190565b600082612d0857634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612d2757612d27612d99565b500290565b600082821015612d3e57612d3e612d99565b500390565b600181811c90821680612d5757607f821691505b60208210811415612d7857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d9257612d92612d99565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461170057600080fdfea2646970667358221220a11d7b3185f28b03cebdad02f047bac700256accc56038166d9cd1683aa2253c64736f6c63430008040033608060405234801561001057600080fd5b5061001a33610031565b600280546001600160a01b03191633179055610081565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61065e806100906000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c80638da5cb5b1161005b5780638da5cb5b146100e1578063c4d66de8146100f2578063f2fde38b14610105578063fc0c546a1461011857600080fd5b80633ccfd60b1461008d5780633e413bee1461009757806370c8b173146100c6578063715018a6146100d9575b600080fd5b61009561012b565b005b6001546100aa906001600160a01b031681565b6040516001600160a01b03909116815260200160405180910390f35b6100956100d4366004610592565b610289565b6100956103a0565b6000546001600160a01b03166100aa565b610095610100366004610571565b6103d6565b610095610113366004610571565b610471565b6002546100aa906001600160a01b031681565b6002546001600160a01b031633146101805760405162461bcd60e51b815260206004820152601360248201527221b0b63632b91034b9903737ba103a37b5b2b760691b60448201526064015b60405180910390fd5b6001546002546040516370a0823160e01b81523060048201526001600160a01b039283169263a9059cbb92169083906370a082319060240160206040518083038186803b1580156101d057600080fd5b505afa1580156101e4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061020891906105db565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b15801561024e57600080fd5b505af1158015610262573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061028691906105bb565b50565b6000546001600160a01b031633146102b35760405162461bcd60e51b8152600401610177906105f3565b6001600160a01b0382166102ff57600080546040516001600160a01b039091169183156108fc02918491818181858888f193505050501580156102fa573d6000803e3d6000fd5b505050565b816001600160a01b031663a9059cbb6103206000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401602060405180830381600087803b15801561036857600080fd5b505af115801561037c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102fa91906105bb565b6000546001600160a01b031633146103ca5760405162461bcd60e51b8152600401610177906105f3565b6103d46000610505565b565b6000546001600160a01b031633146104005760405162461bcd60e51b8152600401610177906105f3565b6001546001600160a01b03161561044f5760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b6044820152606401610177565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461049b5760405162461bcd60e51b8152600401610177906105f3565b6001600160a01b0381166105005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610177565b610286815b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b038116811461056c57600080fd5b919050565b600060208284031215610582578081fd5b61058b82610555565b9392505050565b600080604083850312156105a4578081fd5b6105ad83610555565b946020939093013593505050565b6000602082840312156105cc578081fd5b8151801515811461058b578182fd5b6000602082840312156105ec578081fd5b5051919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea264697066735822122004c06deb02e3e63edba92c445f99e16ca19d6c3a530c71e555a061460512fa6064736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102745760003560e01c806398118cb41161014e578063c997eb8d116100bb578063ef998cf011610077578063ef998cf0146107cf578063f2fde38b146107ef578063f53bc8351461080f578063f8b45b051461082f578063fe575a8714610845578063ffb54a991461087e57005b8063c997eb8d146106e9578063cefb46c714610709578063d077b48f14610729578063d469801614610749578063dd62ed3e14610769578063e01af92c146107af57005b8063a985ceef1161010a578063a985ceef14610634578063ad29ffde14610655578063afa4f3b214610675578063b26f5a6b14610695578063b744223a146106b5578063b8eb3546146106d357005b806398118cb4146105865780639e93ad8e1461059c578063a457c2d7146105b2578063a64e4f8a146105d2578063a901dd92146105f4578063a9059cbb1461061457005b806339509351116101ec578063715018a6116101a8578063715018a6146104c7578063751039fc146104dc5780637e7eab1f146104f15780638da5cb5b1461052a5780638f793cb91461055c57806395d89b411461057157005b806339509351146103e25780634fbee193146104025780635d0044ca1461043b5780636ddd17131461045b57806370a082311461047b57806370db69d6146104b157005b806320800a001161023b57806320800a001461033157806323b872dd146103465780632534f51214610366578063296f0a0c146103865780632de83ef2146103a6578063313ce567146103c657005b806306fdde031461027d578063095ea7b3146102a85780630b78f9c0146102d8578063136f5cdd146102f857806318160ddd1461031c57005b3661027b57005b005b34801561028957600080fd5b50610292610898565b60405161029f9190612b8e565b60405180910390f35b3480156102b457600080fd5b506102c86102c33660046129d6565b61092a565b604051901515815260200161029f565b3480156102e457600080fd5b5061027b6102f3366004612b40565b610942565b34801561030457600080fd5b5061030e60125481565b60405190815260200161029f565b34801561032857600080fd5b5060025461030e565b34801561033d57600080fd5b5061027b6109da565b34801561035257600080fd5b506102c861036136600461299b565b610a98565b34801561037257600080fd5b5061027b61038136600461294f565b610abc565b34801561039257600080fd5b5061027b6103a136600461294f565b610b9d565b3480156103b257600080fd5b5061027b6103c13660046129ff565b610c8a565b3480156103d257600080fd5b506040516012815260200161029f565b3480156103ee57600080fd5b506102c86103fd3660046129d6565b610d2e565b34801561040e57600080fd5b506102c861041d36600461294f565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561044757600080fd5b5061027b610456366004612b10565b610d6d565b34801561046757600080fd5b50600c546102c89062010000900460ff1681565b34801561048757600080fd5b5061030e61049636600461294f565b6001600160a01b031660009081526020819052604090205490565b3480156104bd57600080fd5b5061030e600d5481565b3480156104d357600080fd5b5061027b610e23565b3480156104e857600080fd5b5061027b610e59565b3480156104fd57600080fd5b506102c861050c36600461294f565b6001600160a01b03166000908152600a602052604090205460ff1690565b34801561053657600080fd5b506005546001600160a01b03165b6040516001600160a01b03909116815260200161029f565b34801561056857600080fd5b5061027b610ea0565b34801561057d57600080fd5b50610292610f32565b34801561059257600080fd5b5061030e60105481565b3480156105a857600080fd5b5061030e6103e881565b3480156105be57600080fd5b506102c86105cd3660046129d6565b610f41565b3480156105de57600080fd5b50600c546102c890640100000000900460ff1681565b34801561060057600080fd5b5061027b61060f366004612ad8565b610fd3565b34801561062057600080fd5b506102c861062f3660046129d6565b61101d565b34801561064057600080fd5b50600c546102c8906301000000900460ff1681565b34801561066157600080fd5b5061027b6106703660046129ff565b61102b565b34801561068157600080fd5b5061027b610690366004612b10565b6110ca565b3480156106a157600080fd5b5061027b6106b0366004612ad8565b6111fb565b3480156106c157600080fd5b506007546001600160a01b0316610544565b3480156106df57600080fd5b5061030e600e5481565b3480156106f557600080fd5b5061027b6107043660046129ff565b611243565b34801561071557600080fd5b50601b54610544906001600160a01b031681565b34801561073557600080fd5b5061027b61074436600461294f565b611337565b34801561075557600080fd5b50601a54610544906001600160a01b031681565b34801561077557600080fd5b5061030e610784366004612969565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107bb57600080fd5b5061027b6107ca366004612ad8565b6115c0565b3480156107db57600080fd5b5061027b6107ea366004612b10565b611606565b3480156107fb57600080fd5b5061027b61080a36600461294f565b611668565b34801561081b57600080fd5b5061027b61082a366004612b10565b611703565b34801561083b57600080fd5b5061030e600f5481565b34801561085157600080fd5b506102c861086036600461294f565b6001600160a01b03166000908152600b602052604090205460ff1690565b34801561088a57600080fd5b50600c546102c89060ff1681565b6060600380546108a790612d43565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390612d43565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905090565b600033610938818585611784565b5060019392505050565b6005546001600160a01b031633146109755760405162461bcd60e51b815260040161096c90612c30565b60405180910390fd5b606461098183836118a8565b11156109cf5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206275792074617865732062656c6f7720313025000000604482015260640161096c565b601091909155601255565b601b546001600160a01b0316336001600160a01b03161480610a0f5750601a546001600160a01b0316336001600160a01b0316145b610a4b5760405162461bcd60e51b815260206004820152600d60248201526c2ab730baba3437b934bd32b21760991b604482015260640161096c565b604051600090339047908381818185875af1925050503d8060008114610a8d576040519150601f19603f3d011682016040523d82523d6000602084013e610a92565b606091505b50505050565b600033610aa68582856118b4565b610ab1858585611940565b506001949350505050565b6005546001600160a01b03163314610ae65760405162461bcd60e51b815260040161096c90612c30565b601e546001600160a01b0382811691161415610b445760405162461bcd60e51b815260206004820152601e60248201527f7573646357616c6c657420616464726573732063616e6e6f7420626520300000604482015260640161096c565b601b80546001600160a01b0319166001600160a01b0392831690811782556000908152600960209081526040808320805460ff19908116600190811790925594549095168352600a909152902080549091169091179055565b6005546001600160a01b03163314610bc75760405162461bcd60e51b815260040161096c90612c30565b601e546001600160a01b0382811691161415610c315760405162461bcd60e51b815260206004820152602360248201527f6c697175696469747957616c6c657420616464726573732063616e6e6f74206260448201526206520360ec1b606482015260840161096c565b601a80546001600160a01b0319166001600160a01b0392831690811782556000908152600960209081526040808320805460ff19908116600190811790925594549095168352600a909152902080549091169091179055565b6005546001600160a01b03163314610cb45760405162461bcd60e51b815260040161096c90612c30565b60005b8251811015610d295781600a6000858481518110610ce557634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610d2181612d7e565b915050610cb7565b505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906109389082908690610d68908790612cd5565b611784565b6005546001600160a01b03163314610d975760405162461bcd60e51b815260040161096c90612c30565b610db66064610db06001610daa60025490565b90611765565b90611778565b811015610e1e5760405162461bcd60e51b815260206004820152603060248201527f4d61782077616c6c65742063616e6e6f74206265206c6f776572207468616e2060448201526f1892903a37ba30b61039bab838363c9760811b606482015260840161096c565b600f55565b6005546001600160a01b03163314610e4d5760405162461bcd60e51b815260040161096c90612c30565b610e576000611ff6565b565b6005546001600160a01b03163314610e835760405162461bcd60e51b815260040161096c90612c30565b6c7177eee7bd8df5e53f45940000600d819055600e819055600f55565b6005546001600160a01b03163314610eca5760405162461bcd60e51b815260040161096c90612c30565b600c5460ff1615610f1d5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e000000000000000000604482015260640161096c565b600c805463ffff00ff19166301010001179055565b6060600480546108a790612d43565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610fc65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161096c565b610ab18286868403611784565b6005546001600160a01b03163314610ffd5760405162461bcd60e51b815260040161096c90612c30565b600c80549115156401000000000264ff0000000019909216919091179055565b600033610938818585611940565b6005546001600160a01b031633146110555760405162461bcd60e51b815260040161096c90612c30565b60005b8251811015610d2957816009600085848151811061108657634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806110c281612d7e565b915050611058565b6005546001600160a01b031633146110f45760405162461bcd60e51b815260040161096c90612c30565b611109620186a0610db06001610daa60025490565b8110156111765760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161096c565b61118a6103e8610db06005610daa60025490565b8111156111f65760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161096c565b601955565b6005546001600160a01b031633146112255760405162461bcd60e51b815260040161096c90612c30565b600c805491151563010000000263ff00000019909216919091179055565b6005546001600160a01b0316331461126d5760405162461bcd60e51b815260040161096c90612c30565b60005b8251811015610d2957601c5483516001600160a01b03909116908490839081106112aa57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b0316146113255781600b60008584815181106112e557634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8061132f81612d7e565b915050611270565b601b546001600160a01b0316336001600160a01b0316148061136c5750601a546001600160a01b0316336001600160a01b0316145b6113a85760405162461bcd60e51b815260206004820152600d60248201526c2ab730baba3437b934bd32b21760991b604482015260640161096c565b6001600160a01b0381163014156114015760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f74207769746864726177207468697320746f6b656e000000000000604482015260640161096c565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b15801561144357600080fd5b505afa158015611457573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061147b9190612b28565b116114b45760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b604482015260640161096c565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b1580156114f657600080fd5b505afa15801561150a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152e9190612b28565b90506001600160a01b03821663a9059cbb336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401602060405180830381600087803b15801561158857600080fd5b505af115801561159c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d299190612af4565b6005546001600160a01b031633146115ea5760405162461bcd60e51b815260040161096c90612c30565b600c8054911515620100000262ff000019909216919091179055565b6005546001600160a01b031633146116305760405162461bcd60e51b815260040161096c90612c30565b6116446103e8610db06001610daa60025490565b8110156116635760405162461bcd60e51b815260040161096c90612be1565b600e55565b6005546001600160a01b031633146116925760405162461bcd60e51b815260040161096c90612c30565b6001600160a01b0381166116f75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161096c565b61170081611ff6565b50565b6005546001600160a01b0316331461172d5760405162461bcd60e51b815260040161096c90612c30565b6117416103e8610db06001610daa60025490565b8110156117605760405162461bcd60e51b815260040161096c90612be1565b600d55565b60006117718284612d0d565b9392505050565b60006117718284612ced565b6001600160a01b0383166117e65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161096c565b6001600160a01b0382166118475760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161096c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006117718284612cd5565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610a9257818110156119335760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161096c565b610a928484848403611784565b601e546001600160a01b038481169116141561199e5760405162461bcd60e51b815260206004820152601e60248201527f5472616e736665722066726f6d20746865207a65726f20616464726573730000604482015260640161096c565b601e546001600160a01b03838116911614156119fc5760405162461bcd60e51b815260206004820152601c60248201527f5472616e7366657220746f20746865207a65726f206164647265737300000000604482015260640161096c565b60008111611a5e5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161096c565b60016000611a746005546001600160a01b031690565b6001600160a01b0316856001600160a01b031614158015611aa357506005546001600160a01b03858116911614155b8015611abd5750601e546001600160a01b03858116911614155b8015611ad75750601d546001600160a01b03858116911614155b8015611aeb5750600c54610100900460ff16155b15611ec1576001600160a01b0385166000908152600b602052604090205460ff16158015611b3257506001600160a01b0384166000908152600b602052604090205460ff16155b611b3b57600080fd5b600c5460ff16611bd0576001600160a01b03851660009081526009602052604090205460ff1680611b8457506001600160a01b03841660009081526009602052604090205460ff165b611bd05760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206973206e6f7420616c6c6f7765642e000000000000000000604482015260640161096c565b600c546301000000900460ff1615611cde576006546001600160a01b03858116911614801590611c0e5750601c546001600160a01b03858116911614155b15611cde57611c1e436001612048565b32600090815260086020526040902054108015611c5c5750611c41436001612048565b6001600160a01b038516600090815260086020526040902054105b611cb95760405162461bcd60e51b815260206004820152602860248201527f5472616e736665722064656c617920656e61626c65642e20547279206167616960448201526737103630ba32b91760c11b606482015260840161096c565b3260009081526008602052604080822043908190556001600160a01b03871683529120555b601c546001600160a01b038681169116148015611d0957506006546001600160a01b03858116911614155b8015611d2e57506001600160a01b0384166000908152600a602052604090205460ff16155b15611e0657600d54831115611d945760405162461bcd60e51b815260206004820152602660248201527f5472616e7366657220616d6f756e7420657863656564732074686520627579206044820152653634b6b4ba1760d11b606482015260840161096c565b600f54611dc084611dba876001600160a01b031660009081526020819052604090205490565b906118a8565b1115611e065760405162461bcd60e51b815260206004820152601560248201527422bc31b2b2b239903bb0b63632ba103634b6b4ba1760591b604482015260640161096c565b601c546001600160a01b038581169116148015611e3157506006546001600160a01b03868116911614155b8015611e5657506001600160a01b0385166000908152600a602052604090205460ff16155b15611ec157600e54831115611ebd5760405162461bcd60e51b815260206004820152602760248201527f5472616e7366657220616d6f756e742065786365656473207468652073656c6c604482015266103634b6b4ba1760c91b606482015260840161096c565b5060015b6001600160a01b03851660009081526009602052604090205460ff1680611f0057506001600160a01b03841660009081526009602052604090205460ff165b80611f165750600c54640100000000900460ff16155b15611f2057600091505b30600090815260208190526040812054905060006019548210158015611f435750825b9050808015611f5a5750600c5462010000900460ff165b8015611f6e5750600c54610100900460ff16155b8015611f9357506001600160a01b03871660009081526009602052604090205460ff16155b8015611fb857506001600160a01b03861660009081526009602052604090205460ff16155b15611fe157600c805461ff001916610100179055611fd582612054565b600c805461ff00191690555b611fed878787876123a3565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006117718284612d2c565b600061206d6018546017546118a890919063ffffffff16565b905081158061207a575080155b15612083575050565b6019548211156120935760195491505b60006120b36002610db084610db06017548861176590919063ffffffff16565b905060006120c18483612048565b601f546040516370a0823160e01b81523060048201529192506000916001600160a01b03909116906370a082319060240160206040518083038186803b15801561210a57600080fd5b505afa15801561211e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121429190612b28565b905061214d826123e3565b600760009054906101000a90046001600160a01b03166001600160a01b0316633ccfd60b6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561219d57600080fd5b505af11580156121b1573d6000803e3d6000fd5b5050601f546040516370a0823160e01b81523060048201526000935061223d925084916001600160a01b0316906370a082319060240160206040518083038186803b1580156121ff57600080fd5b505afa158015612213573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122379190612b28565b90612048565b9050600061225a86610db06018548561176590919063ffffffff16565b905060006122688383612048565b60006017819055601855905085158015906122835750600081115b156122925761229286826124fe565b601f54601b546040516370a0823160e01b81523060048201526001600160a01b039283169263a9059cbb92169083906370a082319060240160206040518083038186803b1580156122e257600080fd5b505afa1580156122f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061231a9190612b28565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b15801561236057600080fd5b505af1158015612374573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123989190612af4565b505050505050505050565b806123b5576123b061265a565b6123c2565b6123bf8483612688565b91505b6123cd84848461273b565b80610a9257610a92601154601055601354601255565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061242657634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601f5482519116908290600190811061246557634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201015260065461248b9130911684611784565b600654600754604051635c11d79560e01b81526001600160a01b0392831692635c11d795926124c892879260009288929116904290600401612c65565b600060405180830381600087803b1580156124e257600080fd5b505af11580156124f6573d6000803e3d6000fd5b505050505050565b601f5460065460405163095ea7b360e01b81526001600160a01b0391821660048201526024810184905291169063095ea7b390604401602060405180830381600087803b15801561254e57600080fd5b505af1158015612562573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125869190612af4565b5060065461259f9030906001600160a01b031684611784565b600654601f54601a5460405162e8e33760e81b81523060048201526001600160a01b039283166024820152604481018690526064810185905260006084820181905260a482015290821660c48201524260e482015291169063e8e337009061010401606060405180830381600087803b15801561261b57600080fd5b505af115801561262f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126539190612b61565b5050505050565b60105415801561266a5750601254155b1561267157565b601080546011556012805460135560009182905555565b6000612692612909565b60145460009015612718576126b86103e8610db06014548661176590919063ffffffff16565b90506126d5601454610db06015548461176590919063ffffffff16565b601760008282546126e69190612cd5565b90915550506014546016546127019190610db0908490611765565b601860008282546127129190612cd5565b90915550505b80156127295761272984308361273b565b6127338382612048565b949350505050565b6001600160a01b03831661279f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161096c565b6001600160a01b0382166128015760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161096c565b6001600160a01b038316600090815260208190526040902054818110156128795760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161096c565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906128b0908490612cd5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128fc91815260200190565b60405180910390a3610a92565b6010546015819055601254601681905561292391906118a8565b601455565b80356001600160a01b038116811461293f57600080fd5b919050565b803561293f81612dc5565b600060208284031215612960578081fd5b61177182612928565b6000806040838503121561297b578081fd5b61298483612928565b915061299260208401612928565b90509250929050565b6000806000606084860312156129af578081fd5b6129b884612928565b92506129c660208501612928565b9150604084013590509250925092565b600080604083850312156129e8578182fd5b6129f183612928565b946020939093013593505050565b60008060408385031215612a11578182fd5b823567ffffffffffffffff80821115612a28578384fd5b818501915085601f830112612a3b578384fd5b8135602082821115612a4f57612a4f612daf565b8160051b604051601f19603f83011681018181108682111715612a7457612a74612daf565b604052838152828101945085830182870184018b1015612a92578889fd5b8896505b84871015612abb57612aa781612928565b865260019690960195948301948301612a96565b509650612acb9050878201612944565b9450505050509250929050565b600060208284031215612ae9578081fd5b813561177181612dc5565b600060208284031215612b05578081fd5b815161177181612dc5565b600060208284031215612b21578081fd5b5035919050565b600060208284031215612b39578081fd5b5051919050565b60008060408385031215612b52578182fd5b50508035926020909101359150565b600080600060608486031215612b75578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b81811015612bba57858101830151858201604001528201612b9e565b81811115612bcb5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252602f908201527f4d6178206275792063616e6e6f74206265206c6f776572207468616e20302e3160408201526e12903a37ba30b61039bab838363c9760891b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b81811015612cb45784516001600160a01b031683529383019391830191600101612c8f565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612ce857612ce8612d99565b500190565b600082612d0857634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612d2757612d27612d99565b500290565b600082821015612d3e57612d3e612d99565b500390565b600181811c90821680612d5757607f821691505b60208210811415612d7857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d9257612d92612d99565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461170057600080fdfea2646970667358221220a11d7b3185f28b03cebdad02f047bac700256accc56038166d9cd1683aa2253c64736f6c63430008040033

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.