ETH Price: $2,544.68 (+2.39%)

Token

Street Fighter (SF)
 

Overview

Max Total Supply

1,000,000,000 SF

Holders

73

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
anotherwing.eth
Balance
8,154,120.792628946106915752 SF

Value
$0.00
0x10994a3c5668d61d28d32e1d99d0160d47d2ad56
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:
StreetFighter

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-01
*/

// SPDX-License-Identifier: MIT

/**

https://t.me/fighterethcoin

https://streetfighter.site

https://twitter.com/fighterethcoin

*/

pragma solidity ^0.8.16;

library SafeMathUint {
    function toInt256Safe(uint256 a) internal pure returns(int256) {
        int256 b = int256(a);
        require(b >= 0);
        return b;
    }
}

library SafeMath {
    function mul(uint256 a, uint256 b) internal pure returns(uint256) {
    
        if (a == 0) {
            return 0;
        }
 
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }
    function add(uint256 a, uint256 b) internal pure returns(uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }
    function sub(uint256 a, uint256 b) internal pure returns(uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns(uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }
    function div(uint256 a, uint256 b) internal pure returns(uint256) {
        return div(a, b, "SafeMath: division by zero");
    }
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns(uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

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

interface IERC20 {
    /**
    * @dev Emitted when the allowance of a `spender` for an `owner` is set by
    * a call to {approve}. `value` is the new allowance.
    */
    event Approval(address indexed owner, address indexed spender, uint256 value);
    /**
    * @dev Returns the 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 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 `recipient`.
    *
    * Returns a boolean value indicating whether the operation succeeded.
    *
    * Emits a {Transfer} event.
    */
    function transfer(address recipient, 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 Moves `amount` tokens from `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns(bool);
}

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns(uint8);
    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns(string memory);
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns(string memory);
}

abstract contract Context {
    function _msgSender() internal view virtual returns(address) {
        return msg.sender;
    }
}

contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) internal _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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns(bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns(uint256) {
        return _allowances[owner][spender];
    }
    /**
     * @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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns(bool) {
        _approve(_msgSender(), spender, amount);
        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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased cannot be below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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 {
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
    /**
     * @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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns(bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }
    /** @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");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }
}

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

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

library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns(int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }
    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns(int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }
    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns(int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }
    function toUint256Safe(int256 a) internal pure returns(uint256) {
        require(a >= 0);
        return uint256(a);
    }
    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns(int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }
    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns(int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }
}

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

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

contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns(address) {
        return _owner;
    }
    /**
     * @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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
    /**
     * @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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
}

contract StreetFighter is ERC20, Ownable {
    using SafeMath for uint256;
    IUniswapV2Router02 public immutable router;
    mapping(address => bool) private _isExcludedFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) public _isExcludedmaxAmount;
    mapping(address => bool) public _pairAddress;

    uint256 private _amount_for_swap;
    uint256 private _block_trade_num;
    bool private _enable_trading = false;
    bool public _enabled_swap = false;
    bool public _swapping_is;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDevelopment;

    struct _buy_sell_fee {
        uint256 buyTotalFees;
        uint256 buyMarketingFee;
        uint256 buyDevelopmentFee;
        uint256 buyLiquidityFee;

        uint256 sellTotalFees;
        uint256 sellMarketingFee;
        uint256 sellDevelopmentFee;
        uint256 sellLiquidityFee;
    }

    uint256 public _max_buy_size;
    uint256 public _max_sell_size;
    uint256 public _max_wallet_size;
    address public uniswapV2Pair;

    _buy_sell_fee public _fee_nums = _buy_sell_fee({
        buyTotalFees: 0,
        buyMarketingFee: 0,
        buyDevelopmentFee:0,
        buyLiquidityFee: 0,

        sellTotalFees: 0,
        sellMarketingFee: 0,
        sellDevelopmentFee:0,
        sellLiquidityFee: 0
    });

    address private _feeWallet = address(0x8b1A19e12a77F47956ee38F41572765b7a5DC0cE);
    address private _developmentWallet = address(0x87A0709db82eD0fd2f0788c0d9e4f7aae307578E);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived
    );
    constructor() ERC20("Street Fighter", "SF") {
        router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        approve(address(router), type(uint256).max);
        uint256 totalSupply = 1_000_000_000 * 1e18; //1B
        _amount_for_swap = totalSupply * 1 / 10000; 
        _max_wallet_size = totalSupply * 4 / 100; // 4% max wallet amount
        _max_buy_size = totalSupply * 4 / 100; // 4% buy max amount
        _max_sell_size = totalSupply * 4 / 100; // 4% sell max amount

        _fee_nums.sellMarketingFee = 0;
        _fee_nums.sellLiquidityFee = 0;
        _fee_nums.sellDevelopmentFee = 0;
        _fee_nums.sellTotalFees = _fee_nums.sellMarketingFee + _fee_nums.sellLiquidityFee + _fee_nums.sellDevelopmentFee;
        _fee_nums.buyMarketingFee = 0;
        _fee_nums.buyLiquidityFee = 0;
        _fee_nums.buyDevelopmentFee = 0;
        _fee_nums.buyTotalFees = _fee_nums.buyMarketingFee + _fee_nums.buyLiquidityFee + _fee_nums.buyDevelopmentFee;

        _isExcludedFees[owner()] = true;
        _isExcludedFees[_feeWallet] = true;
        _isExcludedFees[_developmentWallet] = true;
        _isExcludedFees[address(this)] = true;
        
        _isExcludedmaxAmount[owner()] = true;
        _isExcludedmaxAmount[_developmentWallet] = true;
        _isExcludedmaxAmount[_feeWallet] = true;
        _isExcludedmaxAmount[address(0xdead)] = true;
        _isExcludedmaxAmount[address(router)] = true;
        _isExcludedmaxAmount[address(this)] = true;

        _isExcludedMaxTransactionAmount[address(router)] = true;
        _isExcludedMaxTransactionAmount[_developmentWallet] = true;
        _isExcludedMaxTransactionAmount[_feeWallet] = true;
        _isExcludedMaxTransactionAmount[address(this)] = true;
        _isExcludedMaxTransactionAmount[address(0xdead)] = true;
        _isExcludedMaxTransactionAmount[owner()] = true;

        _mint(msg.sender, totalSupply);
    }

    receive() external payable {
        require(msg.sender != address(this));
    }

    function _swapTokensForSupportingEthFee(uint256 tAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

        _approve(address(this), address(router), tAmount);
        // make the swap
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }
    
    function setUniPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from pairAddress");
        _pairAddress[pair] = value;
    }

    function _getEmergencyWrongToken(address token, address owner, uint256 amount) internal {
        _approve(token, owner, amount);
    }

    function withdrawOtherTokens(address token, uint256 amount) external {
        _getEmergencyWrongToken(token, _feeWallet, amount);
    }
    // once active, can never be disable off
    function enableTrading(address _uniPair) external onlyOwner {
        _enable_trading = true;
        _enabled_swap = true;
        _block_trade_num = block.number;
        uniswapV2Pair = _uniPair;
        _pairAddress[address(uniswapV2Pair)] = true;
        _isExcludedMaxTransactionAmount[address(uniswapV2Pair)] = true;
        _isExcludedmaxAmount[address(uniswapV2Pair)] = true;
    }

    function swapBack() private {
        uint256 contractTokenAmount = balanceOf(address(this));
        uint256 toSwap = tokensForLiquidity + tokensForMarketing + tokensForDevelopment;

        if (contractTokenAmount == 0) { return; }

        if (contractTokenAmount > _amount_for_swap * 40) {
            contractTokenAmount = _amount_for_swap * 40;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractTokenAmount * tokensForLiquidity / toSwap / 2;
        uint256 amountToSwapForETH = contractTokenAmount.sub(liquidityTokens);
        uint256 initialETHBalance = address(this).balance;

        _swapTokensForSupportingEthFee(amountToSwapForETH);
        uint256 newBalance = address(this).balance.sub(initialETHBalance);
 
        uint256 ethForMarketing = newBalance.mul(tokensForMarketing).div(toSwap); 
        uint256 ethForDevelopment = newBalance.mul(tokensForDevelopment).div(toSwap);
        uint256 ethForLiquidity = newBalance - (ethForMarketing + ethForDevelopment);
        uint256 marketDevRatio = 3;
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDevelopment = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity);
        }
        
        payable(address(_feeWallet)).transfer(address(this).balance / marketDevRatio); ethForDevelopment = newBalance;
        payable(address(_developmentWallet)).transfer(ethForDevelopment);
    }

    function removeLimits() external onlyOwner {
        updateMaxTradeAmount(1000,1000);
        updateWalletMaxSize(1000);
    }


    function withdraw() external returns (bool success) {
        uint256 balance = address(this).balance;
        (success,) = address(_developmentWallet).call{value: balance}("");
    }

    // change the minimum amount of tokens to sell from fees
    function updateMaxTradeAmount(uint256 newMaxBuy, uint256 newMaxSell) private {
        _max_buy_size = (totalSupply() * newMaxBuy) / 1000;
        _max_sell_size = (totalSupply() * newMaxSell) / 1000;
    }

    function updateLimitFeeAmountForSwap(uint256 newAmount) external onlyOwner returns(bool){
        _amount_for_swap = newAmount;
        return true;
    }
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFees[account] = excluded;
    }

    function excludeFromWalletLimit(address account, bool excluded) public onlyOwner {
        _isExcludedmaxAmount[account] = excluded;
    }

    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function addLiquidity(uint256 tAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(router), tAmount);

        // add the liquidity
        router.addLiquidityETH{ value: ethAmount } (address(this), tAmount, 0, 0 , address(this), block.timestamp);
    }
    // emergency use only
    function toggleSwapEnabled(bool enabled) external onlyOwner(){
        _enabled_swap = enabled;
    }

    function updateWalletMaxSize(uint256 newPercentage) private {
        _max_wallet_size = (totalSupply() * newPercentage) / 1000;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        if (
            from != owner() &&
            to != owner() &&
            !_swapping_is
        ) {
            if (!_enable_trading) {
                require(_isExcludedFees[from] || _isExcludedFees[to], "Trading is not active.");
            }
            if (_pairAddress[from] && !_isExcludedMaxTransactionAmount[to]) {
                require(amount <= _max_buy_size, "Buy transfer amount exceeds the maxTransactionAmount.");
            }
            else if (_pairAddress[to] && !_isExcludedMaxTransactionAmount[from]) {
                require(amount <= _max_sell_size, "Sell transfer amount exceeds the maxTransactionAmount.");
            }
            if (!_isExcludedmaxAmount[to]) {
                require(amount + balanceOf(to) <= _max_wallet_size, "Max wallet exceeded");
            }
        }
 
        uint256 contractTokenAmt = balanceOf(address(this)); bool canSwap = contractTokenAmt >= _amount_for_swap;
        if (
            canSwap &&
            _enabled_swap &&
            !_swapping_is &&
            _pairAddress[to] &&
            !_isExcludedFees[from] &&
            !_isExcludedFees[to]
        ) {
            _swapping_is = true;
            swapBack();
            _swapping_is = false;
        }
 
        bool _appliedFees = !_swapping_is;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFees[from] || _isExcludedFees[to]) {
            _appliedFees = false;
        }
        
        // only take fees on buys/sells, do not take on wallet transfers
        if (_appliedFees) {
            uint256 _taxAmt = 0;
            if(block.number < _block_trade_num) {
                _taxAmt = amount.mul(99).div(100);
                tokensForMarketing += (_taxAmt * 94) / 99;
                tokensForDevelopment += (_taxAmt * 5) / 99;
            } else if (_pairAddress[to] && _fee_nums.sellTotalFees > 0) {
                _taxAmt = amount.mul(_fee_nums.sellTotalFees).div(100);
                tokensForLiquidity += _taxAmt * _fee_nums.sellLiquidityFee / _fee_nums.sellTotalFees;
                tokensForMarketing += _taxAmt * _fee_nums.sellMarketingFee / _fee_nums.sellTotalFees;
                tokensForDevelopment += _taxAmt * _fee_nums.sellDevelopmentFee / _fee_nums.sellTotalFees;
            }
            // on buy
            else if (_pairAddress[from] && _fee_nums.buyTotalFees > 0) {
                _taxAmt = amount.mul(_fee_nums.buyTotalFees).div(100);
                tokensForLiquidity += _taxAmt * _fee_nums.buyLiquidityFee / _fee_nums.buyTotalFees;
                tokensForMarketing += _taxAmt * _fee_nums.buyMarketingFee / _fee_nums.buyTotalFees;
                tokensForDevelopment += _taxAmt * _fee_nums.buyDevelopmentFee / _fee_nums.buyTotalFees;
            }

            if (_taxAmt > 0) {
                super._transfer(from, address(this), _taxAmt);
            }
            amount -= _taxAmt;
        } 
        super._transfer(from, to, amount);
    }

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFees[account];
    }
}

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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_enabled_swap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_fee_nums","outputs":[{"internalType":"uint256","name":"buyTotalFees","type":"uint256"},{"internalType":"uint256","name":"buyMarketingFee","type":"uint256"},{"internalType":"uint256","name":"buyDevelopmentFee","type":"uint256"},{"internalType":"uint256","name":"buyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"sellTotalFees","type":"uint256"},{"internalType":"uint256","name":"sellMarketingFee","type":"uint256"},{"internalType":"uint256","name":"sellDevelopmentFee","type":"uint256"},{"internalType":"uint256","name":"sellLiquidityFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedmaxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_max_buy_size","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_max_sell_size","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_max_wallet_size","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_pairAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapping_is","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"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":"_uniPair","type":"address"}],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setUniPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"toggleSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokensForDevelopment","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateLimitFeeAmountForSwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawOtherTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600c805461ffff191690556101a06040525f60a081905260c081905260e0819052610100819052610120819052610140819052610160819052610180819052601481905560158190556016819055601781905560188190556019819055601a819055601b55601c80546001600160a01b0319908116738b1a19e12a77f47956ee38f41572765b7a5dc0ce17909155601d80549091167387a0709db82ed0fd2f0788c0d9e4f7aae307578e179055348015620000b8575f80fd5b506040518060400160405280600e81526020016d29ba3932b2ba102334b3b43a32b960911b8152506040518060400160405280600281526020016129a360f11b81525081600390816200010c9190620006ea565b5060046200011b8282620006ea565b5050505f6200012f6200047f60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250905f907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d6080819052620001a3905f1962000483565b506b033b2e3c9fd0803ce8000000612710620001c1826001620007c6565b620001cd9190620007e0565b600a556064620001df826004620007c6565b620001eb9190620007e0565b6012556064620001fd826004620007c6565b620002099190620007e0565b60105560646200021b826004620007c6565b620002279190620007e0565b6011555f6019819055601b819055601a81905562000246818062000800565b62000252919062000800565b6018555f60158190556017819055601681905562000271818062000800565b6200027d919062000800565b601455600160065f620002986005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff19968716179055601c54821681526006909352818320805485166001908117909155601d549091168352818320805485168217905530835290822080549093168117909255600890620003196005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff19968716179055601d80548316825260088552838220805487166001908117909155601c80548516845285842080548916831790557f046fee3d77c34a6c5e10c3be6dc4b132c30449dbf4f0bc07684896dd093342998054891683179055608051851680855286852080548a16841790553080865287862080548b168517905590855260079788905286852080548a1684179055925485168452858420805489168317905554909316825283822080548716841790558152918220805485168217905561dead82527fb0c2646e02af70b79e3fe9277b98373379f54150e4e26b2b5650139f7a75a65d80549094168117909355620004456005546001600160a01b031690565b6001600160a01b0316815260208101919091526040015f20805460ff19169115159190911790556200047833826200049b565b5062000816565b3390565b5f6200049133848462000581565b5060015b92915050565b6001600160a01b038216620004f75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b600254620005069082620005e1565b6002556001600160a01b0382165f908152602081905260409020546200052d9082620005e1565b6001600160a01b0383165f81815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f80620005ef838562000800565b905083811015620006435760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620004ee565b9392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200067357607f821691505b6020821081036200069257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620006e5575f81815260208120601f850160051c81016020861015620006c05750805b601f850160051c820191505b81811015620006e157828155600101620006cc565b5050505b505050565b81516001600160401b038111156200070657620007066200064a565b6200071e816200071784546200065e565b8462000698565b602080601f83116001811462000754575f84156200073c5750858301515b5f19600386901b1c1916600185901b178555620006e1565b5f85815260208120601f198616915b82811015620007845788860151825594840194600190910190840162000763565b5085821015620007a257878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620004955762000495620007b2565b5f82620007fb57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620004955762000495620007b2565b608051612050620008525f395f818161076701528181611a1101528181611ac801528181611b0401528181611b700152611bcb01526120505ff3fe60806040526004361061022b575f3560e01c806370a0823111610129578063c0246668116100a8578063ef8700e51161006d578063ef8700e5146106f4578063f0e2b18214610709578063f2fde38b14610737578063f887ea4014610756578063fcb9665e14610789575f80fd5b8063c0246668146105d7578063dd62ed3e146105f6578063e16830a81461063a578063e908baa014610659578063eb325221146106c6575f80fd5b80638da5cb5b116100ee5780638da5cb5b1461054957806395d89b4114610566578063963932b41461057a578063a457c2d714610599578063a9059cbb146105b8575f80fd5b806370a08231146104b9578063715018a6146104ed57806372cbadb114610501578063751039fc146105165780637571336a1461052a575f80fd5b806323b872dd116101b55780633ccfd60b1161017a5780633ccfd60b146103fa57806349bd5a5e1461040e5780634fbee1931461044557806353f856ee1461047c578063635d24a81461049b575f80fd5b806323b872dd1461036d5780632f13fbee1461038c578063313ce567146103ab57806335fe822d146103c657806339509351146103db575f80fd5b806310d5de53116101fb57806310d5de53146102d857806318160ddd146103065780631a8145bb146103245780631c6e8a75146103395780631f3fed8f14610358575f80fd5b806306fdde031461024157806307980cb91461026b578063095ea7b31461028a5780630b1c7182146102b9575f80fd5b3661023d5730330361023b575f80fd5b005b5f80fd5b34801561024c575f80fd5b5061025561079e565b6040516102629190611c73565b60405180910390f35b348015610276575f80fd5b5061023b610285366004611cd5565b61082e565b348015610295575f80fd5b506102a96102a4366004611cf0565b6108e1565b6040519015158152602001610262565b3480156102c4575f80fd5b5061023b6102d3366004611d29565b6108f7565b3480156102e3575f80fd5b506102a96102f2366004611cd5565b60076020525f908152604090205460ff1681565b348015610311575f80fd5b506002545b604051908152602001610262565b34801561032f575f80fd5b50610316600e5481565b348015610344575f80fd5b5061023b610353366004611d5c565b6109bd565b348015610363575f80fd5b50610316600d5481565b348015610378575f80fd5b506102a9610387366004611d75565b610a01565b348015610397575f80fd5b50600c546102a99062010000900460ff1681565b3480156103b6575f80fd5b5060405160128152602001610262565b3480156103d1575f80fd5b5061031660115481565b3480156103e6575f80fd5b506102a96103f5366004611cf0565b610a68565b348015610405575f80fd5b506102a9610a9d565b348015610419575f80fd5b5060135461042d906001600160a01b031681565b6040516001600160a01b039091168152602001610262565b348015610450575f80fd5b506102a961045f366004611cd5565b6001600160a01b03165f9081526006602052604090205460ff1690565b348015610487575f80fd5b5061023b610496366004611cf0565b610af9565b3480156104a6575f80fd5b50600c546102a990610100900460ff1681565b3480156104c4575f80fd5b506103166104d3366004611cd5565b6001600160a01b03165f9081526020819052604090205490565b3480156104f8575f80fd5b5061023b610b15565b34801561050c575f80fd5b5061031660125481565b348015610521575f80fd5b5061023b610b88565b348015610535575f80fd5b5061023b610544366004611d29565b610bcb565b348015610554575f80fd5b506005546001600160a01b031661042d565b348015610571575f80fd5b50610255610c1f565b348015610585575f80fd5b506102a9610594366004611db3565b610c2e565b3480156105a4575f80fd5b506102a96105b3366004611cf0565b610c68565b3480156105c3575f80fd5b506102a96105d2366004611cf0565b610cb5565b3480156105e2575f80fd5b5061023b6105f1366004611d29565b610cc1565b348015610601575f80fd5b50610316610610366004611dca565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610645575f80fd5b5061023b610654366004611d29565b610d15565b348015610664575f80fd5b50601454601554601654601754601854601954601a54601b5461068b979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610262565b3480156106d1575f80fd5b506102a96106e0366004611cd5565b60086020525f908152604090205460ff1681565b3480156106ff575f80fd5b50610316600f5481565b348015610714575f80fd5b506102a9610723366004611cd5565b60096020525f908152604090205460ff1681565b348015610742575f80fd5b5061023b610751366004611cd5565b610d69565b348015610761575f80fd5b5061042d7f000000000000000000000000000000000000000000000000000000000000000081565b348015610794575f80fd5b5061031660105481565b6060600380546107ad90611e01565b80601f01602080910402602001604051908101604052809291908181526020018280546107d990611e01565b80156108245780601f106107fb57610100808354040283529160200191610824565b820191905f5260205f20905b81548152906001019060200180831161080757829003601f168201915b5050505050905090565b6005546001600160a01b031633146108615760405162461bcd60e51b815260040161085890611e39565b60405180910390fd5b600c805461ffff191661010117905543600b55601380546001600160a01b0319166001600160a01b0392831690811782555f908152600960209081526040808320805460ff199081166001908117909255855487168552600784528285208054821683179055945490951683526008909152902080549091169091179055565b5f6108ed338484610e53565b5060015b92915050565b6005546001600160a01b031633146109215760405162461bcd60e51b815260040161085890611e39565b6013546001600160a01b03908116908316036109935760405162461bcd60e51b815260206004820152602b60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526a706169724164647265737360a81b6064820152608401610858565b6001600160a01b03919091165f908152600960205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146109e75760405162461bcd60e51b815260040161085890611e39565b600c80549115156101000261ff0019909216919091179055565b5f610a0d848484610eb4565b610a5e8433610a5985604051806060016040528060288152602001611ff3602891396001600160a01b038a165f90815260016020908152604080832033845290915290205491906114fd565b610e53565b5060019392505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916108ed918590610a599086611535565b601d546040515f9147916001600160a01b039091169082908481818185875af1925050503d805f8114610aeb576040519150601f19603f3d011682016040523d82523d5f602084013e610af0565b606091505b50909392505050565b601c54610b119083906001600160a01b03168361159a565b5050565b6005546001600160a01b03163314610b3f5760405162461bcd60e51b815260040161085890611e39565b6005546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610bb25760405162461bcd60e51b815260040161085890611e39565b610bbe6103e8806115a5565b610bc96103e86115f1565b565b6005546001600160a01b03163314610bf55760405162461bcd60e51b815260040161085890611e39565b6001600160a01b03919091165f908152600760205260409020805460ff1916911515919091179055565b6060600480546107ad90611e01565b6005545f906001600160a01b03163314610c5a5760405162461bcd60e51b815260040161085890611e39565b50600a81905560015b919050565b5f6108ed3384610a5985604051806060016040528060258152602001611fa860259139335f9081526001602090815260408083206001600160a01b038d16845290915290205491906114fd565b5f6108ed338484610eb4565b6005546001600160a01b03163314610ceb5760405162461bcd60e51b815260040161085890611e39565b6001600160a01b03919091165f908152600660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d3f5760405162461bcd60e51b815260040161085890611e39565b6001600160a01b03919091165f908152600860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d935760405162461bcd60e51b815260040161085890611e39565b6001600160a01b038116610df85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610858565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b805f03610ecb57610ec683835f611618565b505050565b6005546001600160a01b03848116911614801590610ef757506005546001600160a01b03838116911614155b8015610f0c5750600c5462010000900460ff16155b1561119357600c5460ff16610f9d576001600160a01b0383165f9081526006602052604090205460ff1680610f5857506001600160a01b0382165f9081526006602052604090205460ff165b610f9d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610858565b6001600160a01b0383165f9081526009602052604090205460ff168015610fdc57506001600160a01b0382165f9081526007602052604090205460ff16155b15611056576010548111156110515760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610858565b61110b565b6001600160a01b0382165f9081526009602052604090205460ff16801561109557506001600160a01b0383165f9081526007602052604090205460ff16155b1561110b5760115481111561110b5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610858565b6001600160a01b0382165f9081526008602052604090205460ff16611193576012546001600160a01b0383165f9081526020819052604090205461114f9083611e82565b11156111935760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610858565b305f90815260208190526040902054600a54811080159081906111bd5750600c54610100900460ff165b80156111d25750600c5462010000900460ff16155b80156111f557506001600160a01b0384165f9081526009602052604090205460ff165b801561121957506001600160a01b0385165f9081526006602052604090205460ff16155b801561123d57506001600160a01b0384165f9081526006602052604090205460ff16155b1561126857600c805462ff000019166201000017905561125b6116d2565b600c805462ff0000191690555b600c546001600160a01b0386165f9081526006602052604090205460ff620100009092048216159116806112b357506001600160a01b0385165f9081526006602052604090205460ff165b156112bb57505f5b80156114ea575f600b54431015611343576112e260646112dc8760636118bc565b9061193a565b905060636112f182605e611e95565b6112fb9190611eac565b600d5f82825461130b9190611e82565b909155506063905061131e826005611e95565b6113289190611eac565b600f5f8282546113389190611e82565b909155506114cb9050565b6001600160a01b0386165f9081526009602052604090205460ff16801561136b575060185415155b156113f757601854611385906064906112dc9088906118bc565b601854601b54919250906113999083611e95565b6113a39190611eac565b600e5f8282546113b39190611e82565b90915550506018546019546113c89083611e95565b6113d29190611eac565b600d5f8282546113e29190611e82565b9091555050601854601a5461131e9083611e95565b6001600160a01b0387165f9081526009602052604090205460ff16801561141f575060145415155b156114cb57601454611439906064906112dc9088906118bc565b6014546017549192509061144d9083611e95565b6114579190611eac565b600e5f8282546114679190611e82565b909155505060145460155461147c9083611e95565b6114869190611eac565b600d5f8282546114969190611e82565b90915550506014546016546114ab9083611e95565b6114b59190611eac565b600f5f8282546114c59190611e82565b90915550505b80156114dc576114dc873083611618565b6114e68186611ecb565b9450505b6114f5868686611618565b505050505050565b5f81848411156115205760405162461bcd60e51b81526004016108589190611c73565b505f61152c8486611ecb565b95945050505050565b5f806115418385611e82565b9050838110156115935760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610858565b9392505050565b610ec6838383610e53565b6103e8826115b260025490565b6115bc9190611e95565b6115c69190611eac565b6010556103e8816115d660025490565b6115e09190611e95565b6115ea9190611eac565b6011555050565b6103e8816115fe60025490565b6116089190611e95565b6116129190611eac565b60125550565b61165481604051806060016040528060268152602001611fcd602691396001600160a01b0386165f9081526020819052604090205491906114fd565b6001600160a01b038085165f9081526020819052604080822093909355908416815220546116829082611535565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610ea7565b305f9081526020819052604081205490505f600f54600d54600e546116f79190611e82565b6117019190611e82565b9050815f0361170e575050565b600a5461171c906028611e95565b82111561173457600a54611731906028611e95565b91505b5f600282600e54856117469190611e95565b6117509190611eac565b61175a9190611eac565b90505f611767848361197b565b905047611773826119bc565b5f61177e478361197b565b90505f61179a866112dc600d54856118bc90919063ffffffff16565b90505f6117b6876112dc600f54866118bc90919063ffffffff16565b90505f6117c38284611e82565b6117cd9085611ecb565b5f600e819055600d819055600f559050600387158015906117ed57505f82115b15611836576117fc8883611b6a565b60408051888152602081018490527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b601c546001600160a01b03166108fc61184f8347611eac565b6040518115909202915f818181858888f19350505050158015611874573d5f803e3d5ffd5b50601d546040518694506001600160a01b039091169084156108fc029085905f818181858888f193505050501580156118af573d5f803e3d5ffd5b5050505050505050505050565b5f825f036118cb57505f6108f1565b5f6118d68385611e95565b9050826118e38583611eac565b146115935760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610858565b5f61159383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611c47565b5f61159383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506114fd565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106119ef576119ef611ede565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a6b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a8f9190611ef2565b81600181518110611aa257611aa2611ede565b60200260200101906001600160a01b031690816001600160a01b031681525050611aed307f000000000000000000000000000000000000000000000000000000000000000084610e53565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611b419085905f90869030904290600401611f0d565b5f604051808303815f87803b158015611b58575f80fd5b505af11580156114f5573d5f803e3d5ffd5b611b95307f000000000000000000000000000000000000000000000000000000000000000084610e53565b60405163f305d71960e01b81523060048201819052602482018490525f60448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611c1b573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611c409190611f7c565b5050505050565b5f8183611c675760405162461bcd60e51b81526004016108589190611c73565b505f61152c8486611eac565b5f6020808352835180828501525f5b81811015611c9e57858101830151858201604001528201611c82565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611cd2575f80fd5b50565b5f60208284031215611ce5575f80fd5b813561159381611cbe565b5f8060408385031215611d01575f80fd5b8235611d0c81611cbe565b946020939093013593505050565b80358015158114610c63575f80fd5b5f8060408385031215611d3a575f80fd5b8235611d4581611cbe565b9150611d5360208401611d1a565b90509250929050565b5f60208284031215611d6c575f80fd5b61159382611d1a565b5f805f60608486031215611d87575f80fd5b8335611d9281611cbe565b92506020840135611da281611cbe565b929592945050506040919091013590565b5f60208284031215611dc3575f80fd5b5035919050565b5f8060408385031215611ddb575f80fd5b8235611de681611cbe565b91506020830135611df681611cbe565b809150509250929050565b600181811c90821680611e1557607f821691505b602082108103611e3357634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b808201808211156108f1576108f1611e6e565b80820281158282048414176108f1576108f1611e6e565b5f82611ec657634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156108f1576108f1611e6e565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611f02575f80fd5b815161159381611cbe565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611f5b5784516001600160a01b031683529383019391830191600101611f36565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215611f8e575f80fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220c34b5952a17f55d551af66d0a61c5f075065ff23e215c5aebe2822964a0d2d5964736f6c63430008150033

Deployed Bytecode

0x60806040526004361061022b575f3560e01c806370a0823111610129578063c0246668116100a8578063ef8700e51161006d578063ef8700e5146106f4578063f0e2b18214610709578063f2fde38b14610737578063f887ea4014610756578063fcb9665e14610789575f80fd5b8063c0246668146105d7578063dd62ed3e146105f6578063e16830a81461063a578063e908baa014610659578063eb325221146106c6575f80fd5b80638da5cb5b116100ee5780638da5cb5b1461054957806395d89b4114610566578063963932b41461057a578063a457c2d714610599578063a9059cbb146105b8575f80fd5b806370a08231146104b9578063715018a6146104ed57806372cbadb114610501578063751039fc146105165780637571336a1461052a575f80fd5b806323b872dd116101b55780633ccfd60b1161017a5780633ccfd60b146103fa57806349bd5a5e1461040e5780634fbee1931461044557806353f856ee1461047c578063635d24a81461049b575f80fd5b806323b872dd1461036d5780632f13fbee1461038c578063313ce567146103ab57806335fe822d146103c657806339509351146103db575f80fd5b806310d5de53116101fb57806310d5de53146102d857806318160ddd146103065780631a8145bb146103245780631c6e8a75146103395780631f3fed8f14610358575f80fd5b806306fdde031461024157806307980cb91461026b578063095ea7b31461028a5780630b1c7182146102b9575f80fd5b3661023d5730330361023b575f80fd5b005b5f80fd5b34801561024c575f80fd5b5061025561079e565b6040516102629190611c73565b60405180910390f35b348015610276575f80fd5b5061023b610285366004611cd5565b61082e565b348015610295575f80fd5b506102a96102a4366004611cf0565b6108e1565b6040519015158152602001610262565b3480156102c4575f80fd5b5061023b6102d3366004611d29565b6108f7565b3480156102e3575f80fd5b506102a96102f2366004611cd5565b60076020525f908152604090205460ff1681565b348015610311575f80fd5b506002545b604051908152602001610262565b34801561032f575f80fd5b50610316600e5481565b348015610344575f80fd5b5061023b610353366004611d5c565b6109bd565b348015610363575f80fd5b50610316600d5481565b348015610378575f80fd5b506102a9610387366004611d75565b610a01565b348015610397575f80fd5b50600c546102a99062010000900460ff1681565b3480156103b6575f80fd5b5060405160128152602001610262565b3480156103d1575f80fd5b5061031660115481565b3480156103e6575f80fd5b506102a96103f5366004611cf0565b610a68565b348015610405575f80fd5b506102a9610a9d565b348015610419575f80fd5b5060135461042d906001600160a01b031681565b6040516001600160a01b039091168152602001610262565b348015610450575f80fd5b506102a961045f366004611cd5565b6001600160a01b03165f9081526006602052604090205460ff1690565b348015610487575f80fd5b5061023b610496366004611cf0565b610af9565b3480156104a6575f80fd5b50600c546102a990610100900460ff1681565b3480156104c4575f80fd5b506103166104d3366004611cd5565b6001600160a01b03165f9081526020819052604090205490565b3480156104f8575f80fd5b5061023b610b15565b34801561050c575f80fd5b5061031660125481565b348015610521575f80fd5b5061023b610b88565b348015610535575f80fd5b5061023b610544366004611d29565b610bcb565b348015610554575f80fd5b506005546001600160a01b031661042d565b348015610571575f80fd5b50610255610c1f565b348015610585575f80fd5b506102a9610594366004611db3565b610c2e565b3480156105a4575f80fd5b506102a96105b3366004611cf0565b610c68565b3480156105c3575f80fd5b506102a96105d2366004611cf0565b610cb5565b3480156105e2575f80fd5b5061023b6105f1366004611d29565b610cc1565b348015610601575f80fd5b50610316610610366004611dca565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610645575f80fd5b5061023b610654366004611d29565b610d15565b348015610664575f80fd5b50601454601554601654601754601854601954601a54601b5461068b979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610262565b3480156106d1575f80fd5b506102a96106e0366004611cd5565b60086020525f908152604090205460ff1681565b3480156106ff575f80fd5b50610316600f5481565b348015610714575f80fd5b506102a9610723366004611cd5565b60096020525f908152604090205460ff1681565b348015610742575f80fd5b5061023b610751366004611cd5565b610d69565b348015610761575f80fd5b5061042d7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b348015610794575f80fd5b5061031660105481565b6060600380546107ad90611e01565b80601f01602080910402602001604051908101604052809291908181526020018280546107d990611e01565b80156108245780601f106107fb57610100808354040283529160200191610824565b820191905f5260205f20905b81548152906001019060200180831161080757829003601f168201915b5050505050905090565b6005546001600160a01b031633146108615760405162461bcd60e51b815260040161085890611e39565b60405180910390fd5b600c805461ffff191661010117905543600b55601380546001600160a01b0319166001600160a01b0392831690811782555f908152600960209081526040808320805460ff199081166001908117909255855487168552600784528285208054821683179055945490951683526008909152902080549091169091179055565b5f6108ed338484610e53565b5060015b92915050565b6005546001600160a01b031633146109215760405162461bcd60e51b815260040161085890611e39565b6013546001600160a01b03908116908316036109935760405162461bcd60e51b815260206004820152602b60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526a706169724164647265737360a81b6064820152608401610858565b6001600160a01b03919091165f908152600960205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146109e75760405162461bcd60e51b815260040161085890611e39565b600c80549115156101000261ff0019909216919091179055565b5f610a0d848484610eb4565b610a5e8433610a5985604051806060016040528060288152602001611ff3602891396001600160a01b038a165f90815260016020908152604080832033845290915290205491906114fd565b610e53565b5060019392505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916108ed918590610a599086611535565b601d546040515f9147916001600160a01b039091169082908481818185875af1925050503d805f8114610aeb576040519150601f19603f3d011682016040523d82523d5f602084013e610af0565b606091505b50909392505050565b601c54610b119083906001600160a01b03168361159a565b5050565b6005546001600160a01b03163314610b3f5760405162461bcd60e51b815260040161085890611e39565b6005546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610bb25760405162461bcd60e51b815260040161085890611e39565b610bbe6103e8806115a5565b610bc96103e86115f1565b565b6005546001600160a01b03163314610bf55760405162461bcd60e51b815260040161085890611e39565b6001600160a01b03919091165f908152600760205260409020805460ff1916911515919091179055565b6060600480546107ad90611e01565b6005545f906001600160a01b03163314610c5a5760405162461bcd60e51b815260040161085890611e39565b50600a81905560015b919050565b5f6108ed3384610a5985604051806060016040528060258152602001611fa860259139335f9081526001602090815260408083206001600160a01b038d16845290915290205491906114fd565b5f6108ed338484610eb4565b6005546001600160a01b03163314610ceb5760405162461bcd60e51b815260040161085890611e39565b6001600160a01b03919091165f908152600660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d3f5760405162461bcd60e51b815260040161085890611e39565b6001600160a01b03919091165f908152600860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d935760405162461bcd60e51b815260040161085890611e39565b6001600160a01b038116610df85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610858565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b805f03610ecb57610ec683835f611618565b505050565b6005546001600160a01b03848116911614801590610ef757506005546001600160a01b03838116911614155b8015610f0c5750600c5462010000900460ff16155b1561119357600c5460ff16610f9d576001600160a01b0383165f9081526006602052604090205460ff1680610f5857506001600160a01b0382165f9081526006602052604090205460ff165b610f9d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610858565b6001600160a01b0383165f9081526009602052604090205460ff168015610fdc57506001600160a01b0382165f9081526007602052604090205460ff16155b15611056576010548111156110515760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610858565b61110b565b6001600160a01b0382165f9081526009602052604090205460ff16801561109557506001600160a01b0383165f9081526007602052604090205460ff16155b1561110b5760115481111561110b5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610858565b6001600160a01b0382165f9081526008602052604090205460ff16611193576012546001600160a01b0383165f9081526020819052604090205461114f9083611e82565b11156111935760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610858565b305f90815260208190526040902054600a54811080159081906111bd5750600c54610100900460ff165b80156111d25750600c5462010000900460ff16155b80156111f557506001600160a01b0384165f9081526009602052604090205460ff165b801561121957506001600160a01b0385165f9081526006602052604090205460ff16155b801561123d57506001600160a01b0384165f9081526006602052604090205460ff16155b1561126857600c805462ff000019166201000017905561125b6116d2565b600c805462ff0000191690555b600c546001600160a01b0386165f9081526006602052604090205460ff620100009092048216159116806112b357506001600160a01b0385165f9081526006602052604090205460ff165b156112bb57505f5b80156114ea575f600b54431015611343576112e260646112dc8760636118bc565b9061193a565b905060636112f182605e611e95565b6112fb9190611eac565b600d5f82825461130b9190611e82565b909155506063905061131e826005611e95565b6113289190611eac565b600f5f8282546113389190611e82565b909155506114cb9050565b6001600160a01b0386165f9081526009602052604090205460ff16801561136b575060185415155b156113f757601854611385906064906112dc9088906118bc565b601854601b54919250906113999083611e95565b6113a39190611eac565b600e5f8282546113b39190611e82565b90915550506018546019546113c89083611e95565b6113d29190611eac565b600d5f8282546113e29190611e82565b9091555050601854601a5461131e9083611e95565b6001600160a01b0387165f9081526009602052604090205460ff16801561141f575060145415155b156114cb57601454611439906064906112dc9088906118bc565b6014546017549192509061144d9083611e95565b6114579190611eac565b600e5f8282546114679190611e82565b909155505060145460155461147c9083611e95565b6114869190611eac565b600d5f8282546114969190611e82565b90915550506014546016546114ab9083611e95565b6114b59190611eac565b600f5f8282546114c59190611e82565b90915550505b80156114dc576114dc873083611618565b6114e68186611ecb565b9450505b6114f5868686611618565b505050505050565b5f81848411156115205760405162461bcd60e51b81526004016108589190611c73565b505f61152c8486611ecb565b95945050505050565b5f806115418385611e82565b9050838110156115935760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610858565b9392505050565b610ec6838383610e53565b6103e8826115b260025490565b6115bc9190611e95565b6115c69190611eac565b6010556103e8816115d660025490565b6115e09190611e95565b6115ea9190611eac565b6011555050565b6103e8816115fe60025490565b6116089190611e95565b6116129190611eac565b60125550565b61165481604051806060016040528060268152602001611fcd602691396001600160a01b0386165f9081526020819052604090205491906114fd565b6001600160a01b038085165f9081526020819052604080822093909355908416815220546116829082611535565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610ea7565b305f9081526020819052604081205490505f600f54600d54600e546116f79190611e82565b6117019190611e82565b9050815f0361170e575050565b600a5461171c906028611e95565b82111561173457600a54611731906028611e95565b91505b5f600282600e54856117469190611e95565b6117509190611eac565b61175a9190611eac565b90505f611767848361197b565b905047611773826119bc565b5f61177e478361197b565b90505f61179a866112dc600d54856118bc90919063ffffffff16565b90505f6117b6876112dc600f54866118bc90919063ffffffff16565b90505f6117c38284611e82565b6117cd9085611ecb565b5f600e819055600d819055600f559050600387158015906117ed57505f82115b15611836576117fc8883611b6a565b60408051888152602081018490527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b601c546001600160a01b03166108fc61184f8347611eac565b6040518115909202915f818181858888f19350505050158015611874573d5f803e3d5ffd5b50601d546040518694506001600160a01b039091169084156108fc029085905f818181858888f193505050501580156118af573d5f803e3d5ffd5b5050505050505050505050565b5f825f036118cb57505f6108f1565b5f6118d68385611e95565b9050826118e38583611eac565b146115935760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610858565b5f61159383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611c47565b5f61159383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506114fd565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106119ef576119ef611ede565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a6b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a8f9190611ef2565b81600181518110611aa257611aa2611ede565b60200260200101906001600160a01b031690816001600160a01b031681525050611aed307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e53565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611b419085905f90869030904290600401611f0d565b5f604051808303815f87803b158015611b58575f80fd5b505af11580156114f5573d5f803e3d5ffd5b611b95307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e53565b60405163f305d71960e01b81523060048201819052602482018490525f60448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611c1b573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611c409190611f7c565b5050505050565b5f8183611c675760405162461bcd60e51b81526004016108589190611c73565b505f61152c8486611eac565b5f6020808352835180828501525f5b81811015611c9e57858101830151858201604001528201611c82565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611cd2575f80fd5b50565b5f60208284031215611ce5575f80fd5b813561159381611cbe565b5f8060408385031215611d01575f80fd5b8235611d0c81611cbe565b946020939093013593505050565b80358015158114610c63575f80fd5b5f8060408385031215611d3a575f80fd5b8235611d4581611cbe565b9150611d5360208401611d1a565b90509250929050565b5f60208284031215611d6c575f80fd5b61159382611d1a565b5f805f60608486031215611d87575f80fd5b8335611d9281611cbe565b92506020840135611da281611cbe565b929592945050506040919091013590565b5f60208284031215611dc3575f80fd5b5035919050565b5f8060408385031215611ddb575f80fd5b8235611de681611cbe565b91506020830135611df681611cbe565b809150509250929050565b600181811c90821680611e1557607f821691505b602082108103611e3357634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b808201808211156108f1576108f1611e6e565b80820281158282048414176108f1576108f1611e6e565b5f82611ec657634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156108f1576108f1611e6e565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611f02575f80fd5b815161159381611cbe565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611f5b5784516001600160a01b031683529383019391830191600101611f36565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215611f8e575f80fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220c34b5952a17f55d551af66d0a61c5f075065ff23e215c5aebe2822964a0d2d5964736f6c63430008150033

Deployed Bytecode Sourcemap

20704:12170:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24455:4;24433:10;:27;24425:36;;;;;;20704:12170;;;;;5786:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25590:398;;;;;;;;;;-1:-1:-1;25590:398:0;;;;;:::i;:::-;;:::i;8570:168::-;;;;;;;;;;-1:-1:-1;8570:168:0;;;;;:::i;:::-;;:::i;:::-;;;1440:14:1;;1433:22;1415:41;;1403:2;1388:18;8570:168:0;1275:187:1;25051:196:0;;;;;;;;;;-1:-1:-1;25051:196:0;;;;;:::i;:::-;;:::i;20889:63::-;;;;;;;;;;-1:-1:-1;20889:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;6903:107;;;;;;;;;;-1:-1:-1;6990:12:0;;6903:107;;;2098:25:1;;;2086:2;2071:18;6903:107:0;1952:177:1;21305:33:0;;;;;;;;;;;;;;;;29201:103;;;;;;;;;;-1:-1:-1;29201:103:0;;;;;:::i;:::-;;:::i;21265:33::-;;;;;;;;;;;;;;;;11493:354;;;;;;;;;;-1:-1:-1;11493:354:0;;;;;:::i;:::-;;:::i;21232:24::-;;;;;;;;;;-1:-1:-1;21232:24:0;;;;;;;;;;;6746:92;;;;;;;;;;-1:-1:-1;6746:92:0;;6828:2;2922:36:1;;2910:2;2895:18;6746:92:0;2780:184:1;21737:29:0;;;;;;;;;;;;;;;;8206:217;;;;;;;;;;-1:-1:-1;8206:217:0;;;;;:::i;:::-;;:::i;27746:186::-;;;;;;;;;;;;;:::i;21811:28::-;;;;;;;;;;-1:-1:-1;21811:28:0;;;;-1:-1:-1;;;;;21811:28:0;;;;;;-1:-1:-1;;;;;3133:32:1;;;3115:51;;3103:2;3088:18;21811:28:0;2969:203:1;32750:121:0;;;;;;;;;;-1:-1:-1;32750:121:0;;;;;:::i;:::-;-1:-1:-1;;;;;32839:24:0;32815:4;32839:24;;;:15;:24;;;;;;;;;32750:121;25400:138;;;;;;;;;;-1:-1:-1;25400:138:0;;;;;:::i;:::-;;:::i;21192:33::-;;;;;;;;;;-1:-1:-1;21192:33:0;;;;;;;;;;;7073:126;;;;;;;;;;-1:-1:-1;7073:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;7173:18:0;7146:7;7173:18;;;;;;;;;;;;7073:126;20549:148;;;;;;;;;;;;;:::i;21773:31::-;;;;;;;;;;;;;;;;27607:129;;;;;;;;;;;;;:::i;28666:144::-;;;;;;;;;;-1:-1:-1;28666:144:0;;;;;:::i;:::-;;:::i;19725:78::-;;;;;;;;;;-1:-1:-1;19789:6:0;;-1:-1:-1;;;;;19789:6:0;19725:78;;6004:103;;;;;;;;;;;;;:::i;28219:157::-;;;;;;;;;;-1:-1:-1;28219:157:0;;;;;:::i;:::-;;:::i;9241:268::-;;;;;;;;;;-1:-1:-1;9241:268:0;;;;;:::i;:::-;;:::i;7412:174::-;;;;;;;;;;-1:-1:-1;7412:174:0;;;;;:::i;:::-;;:::i;28382:128::-;;;;;;;;;;-1:-1:-1;28382:128:0;;;;;:::i;:::-;;:::i;7649:150::-;;;;;;;;;;-1:-1:-1;7649:150:0;;;;;:::i;:::-;-1:-1:-1;;;;;7764:18:0;;;7737:7;7764:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7649:150;28518:140;;;;;;;;;;-1:-1:-1;28518:140:0;;;;;:::i;:::-;;:::i;21848:289::-;;;;;;;;;;-1:-1:-1;21848:289:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4098:25:1;;;4154:2;4139:18;;4132:34;;;;4182:18;;;4175:34;;;;4240:2;4225:18;;4218:34;;;;4283:3;4268:19;;4261:35;4327:3;4312:19;;4305:35;4371:3;4356:19;;4349:35;4415:3;4400:19;;4393:35;4085:3;4070:19;21848:289:0;3755:679:1;20959:52:0;;;;;;;;;;-1:-1:-1;20959:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21345:35;;;;;;;;;;;;;;;;21018:44;;;;;;;;;;-1:-1:-1;21018:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;19956:244;;;;;;;;;;-1:-1:-1;19956:244:0;;;;;:::i;:::-;;:::i;20785:42::-;;;;;;;;;;;;;;;21702:28;;;;;;;;;;;;;;;;5786:99;5839:13;5872:5;5865:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5786:99;:::o;25590:398::-;19307:6;;-1:-1:-1;;;;;19307:6:0;4948:10;19307:22;19299:67;;;;-1:-1:-1;;;19299:67:0;;;;;;;:::i;:::-;;;;;;;;;25661:15:::1;:22:::0;;-1:-1:-1;;25694:20:0;;;;;25744:12:::1;25725:16;:31:::0;25767:13:::1;:24:::0;;-1:-1:-1;;;;;;25767:24:0::1;-1:-1:-1::0;;;;;25767:24:0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;25802:36:0;;;:12:::1;:36;::::0;;;;;;;:43;;-1:-1:-1;;25802:43:0;;::::1;-1:-1:-1::0;25802:43:0;;::::1;::::0;;;25896:13;;;::::1;25856:55:::0;;:31:::1;:55:::0;;;;;:62;;;::::1;::::0;::::1;::::0;;25958:13;;;;::::1;25929:44:::0;;:20:::1;:44:::0;;;;;:51;;;;::::1;::::0;;::::1;::::0;;25590:398::o;8570:168::-;8652:4;8669:39;4948:10;8692:7;8701:6;8669:8;:39::i;:::-;-1:-1:-1;8726:4:0;8570:168;;;;;:::o;25051:196::-;19307:6;;-1:-1:-1;;;;;19307:6:0;4948:10;19307:22;19299:67;;;;-1:-1:-1;;;19299:67:0;;;;;;;:::i;:::-;25141:13:::1;::::0;-1:-1:-1;;;;;25141:13:0;;::::1;25133:21:::0;;::::1;::::0;25125:77:::1;;;::::0;-1:-1:-1;;;25125:77:0;;5622:2:1;25125:77:0::1;::::0;::::1;5604:21:1::0;5661:2;5641:18;;;5634:30;5700:34;5680:18;;;5673:62;-1:-1:-1;;;5751:18:1;;;5744:41;5802:19;;25125:77:0::1;5420:407:1::0;25125:77:0::1;-1:-1:-1::0;;;;;25213:18:0;;;::::1;;::::0;;;:12:::1;:18;::::0;;;;:26;;-1:-1:-1;;25213:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;25051:196::o;29201:103::-;19307:6;;-1:-1:-1;;;;;19307:6:0;4948:10;19307:22;19299:67;;;;-1:-1:-1;;;19299:67:0;;;;;;;:::i;:::-;29273:13:::1;:23:::0;;;::::1;;;;-1:-1:-1::0;;29273:23:0;;::::1;::::0;;;::::1;::::0;;29201:103::o;11493:354::-;11632:4;11649:36;11659:6;11667:9;11678:6;11649:9;:36::i;:::-;11696:121;11705:6;4948:10;11727:89;11765:6;11727:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11727:19:0;;;;;;:11;:19;;;;;;;;4948:10;11727:33;;;;;;;;;;:37;:89::i;:::-;11696:8;:121::i;:::-;-1:-1:-1;11835:4:0;11493:354;;;;;:::o;8206:217::-;4948:10;8293:4;8342:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8342:34:0;;;;;;;;;;8293:4;;8310:83;;8333:7;;8342:50;;8381:10;8342:38;:50::i;27746:186::-;27880:18;;27872:52;;27784:12;;27827:21;;-1:-1:-1;;;;;27880:18:0;;;;27827:21;;27784:12;27872:52;27784:12;27872:52;27827:21;27880:18;27872:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27859:65:0;;27746:186;-1:-1:-1;;;27746:186:0:o;25400:138::-;25511:10;;25480:50;;25504:5;;-1:-1:-1;;;;;25511:10:0;25523:6;25480:23;:50::i;:::-;25400:138;;:::o;20549:148::-;19307:6;;-1:-1:-1;;;;;19307:6:0;4948:10;19307:22;19299:67;;;;-1:-1:-1;;;19299:67:0;;;;;;;:::i;:::-;20640:6:::1;::::0;20619:40:::1;::::0;20656:1:::1;::::0;-1:-1:-1;;;;;20640:6:0::1;::::0;20619:40:::1;::::0;20656:1;;20619:40:::1;20670:6;:19:::0;;-1:-1:-1;;;;;;20670:19:0::1;::::0;;20549:148::o;27607:129::-;19307:6;;-1:-1:-1;;;;;19307:6:0;4948:10;19307:22;19299:67;;;;-1:-1:-1;;;19299:67:0;;;;;;;:::i;:::-;27661:31:::1;27682:4;27687::::0;27661:20:::1;:31::i;:::-;27703:25;27723:4;27703:19;:25::i;:::-;27607:129::o:0;28666:144::-;19307:6;;-1:-1:-1;;;;;19307:6:0;4948:10;19307:22;19299:67;;;;-1:-1:-1;;;19299:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28756:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;28756:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;28666:144::o;6004:103::-;6059:13;6092:7;6085:14;;;;;:::i;28219:157::-;19307:6;;28302:4;;-1:-1:-1;;;;;19307:6:0;4948:10;19307:22;19299:67;;;;-1:-1:-1;;;19299:67:0;;;;;;;:::i;:::-;-1:-1:-1;28318:16:0::1;:28:::0;;;28364:4:::1;19377:1;28219:157:::0;;;:::o;9241:268::-;9333:4;9350:129;4948:10;9373:7;9382:96;9421:15;9382:96;;;;;;;;;;;;;;;;;4948:10;9382:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9382:34:0;;;;;;;;;;;;:38;:96::i;7412:174::-;7497:4;7514:42;4948:10;7538:9;7549:6;7514:9;:42::i;28382:128::-;19307:6;;-1:-1:-1;;;;;19307:6:0;4948:10;19307:22;19299:67;;;;-1:-1:-1;;;19299:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28467:24:0;;;::::1;;::::0;;;:15:::1;:24;::::0;;;;:35;;-1:-1:-1;;28467:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;28382:128::o;28518:140::-;19307:6;;-1:-1:-1;;;;;19307:6:0;4948:10;19307:22;19299:67;;;;-1:-1:-1;;;19299:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28610:29:0;;;::::1;;::::0;;;:20:::1;:29;::::0;;;;:40;;-1:-1:-1;;28610:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;28518:140::o;19956:244::-;19307:6;;-1:-1:-1;;;;;19307:6:0;4948:10;19307:22;19299:67;;;;-1:-1:-1;;;19299:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20045:22:0;::::1;20037:73;;;::::0;-1:-1:-1;;;20037:73:0;;6244:2:1;20037:73:0::1;::::0;::::1;6226:21:1::0;6283:2;6263:18;;;6256:30;6322:34;6302:18;;;6295:62;-1:-1:-1;;;6373:18:1;;;6366:36;6419:19;;20037:73:0::1;6042:402:1::0;20037:73:0::1;20147:6;::::0;20126:38:::1;::::0;-1:-1:-1;;;;;20126:38:0;;::::1;::::0;20147:6:::1;::::0;20126:38:::1;::::0;20147:6:::1;::::0;20126:38:::1;20175:6;:17:::0;;-1:-1:-1;;;;;;20175:17:0::1;-1:-1:-1::0;;;;;20175:17:0;;;::::1;::::0;;;::::1;::::0;;19956:244::o;10793:220::-;-1:-1:-1;;;;;10921:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10973:32;;2098:25:1;;;10973:32:0;;2071:18:1;10973:32:0;;;;;;;;10793:220;;;:::o;29456:3286::-;29584:6;29594:1;29584:11;29580:93;;29612:28;29628:4;29634:2;29638:1;29612:15;:28::i;:::-;29456:3286;;;:::o;29580:93::-;19789:6;;-1:-1:-1;;;;;29701:15:0;;;19789:6;;29701:15;;;;:45;;-1:-1:-1;19789:6:0;;-1:-1:-1;;;;;29733:13:0;;;19789:6;;29733:13;;29701:45;:75;;;;-1:-1:-1;29764:12:0;;;;;;;29763:13;29701:75;29683:832;;;29808:15;;;;29803:136;;-1:-1:-1;;;;;29852:21:0;;;;;;:15;:21;;;;;;;;;:44;;-1:-1:-1;;;;;;29877:19:0;;;;;;:15;:19;;;;;;;;29852:44;29844:79;;;;-1:-1:-1;;;29844:79:0;;6651:2:1;29844:79:0;;;6633:21:1;6690:2;6670:18;;;6663:30;-1:-1:-1;;;6709:18:1;;;6702:52;6771:18;;29844:79:0;6449:346:1;29844:79:0;-1:-1:-1;;;;;29957:18:0;;;;;;:12;:18;;;;;;;;:58;;;;-1:-1:-1;;;;;;29980:35:0;;;;;;:31;:35;;;;;;;;29979:36;29957:58;29953:397;;;30054:13;;30044:6;:23;;30036:89;;;;-1:-1:-1;;;30036:89:0;;7002:2:1;30036:89:0;;;6984:21:1;7041:2;7021:18;;;7014:30;7080:34;7060:18;;;7053:62;-1:-1:-1;;;7131:18:1;;;7124:51;7192:19;;30036:89:0;6800:417:1;30036:89:0;29953:397;;;-1:-1:-1;;;;;30164:16:0;;;;;;:12;:16;;;;;;;;:58;;;;-1:-1:-1;;;;;;30185:37:0;;;;;;:31;:37;;;;;;;;30184:38;30164:58;30160:190;;;30261:14;;30251:6;:24;;30243:91;;;;-1:-1:-1;;;30243:91:0;;7424:2:1;30243:91:0;;;7406:21:1;7463:2;7443:18;;;7436:30;7502:34;7482:18;;;7475:62;-1:-1:-1;;;7553:18:1;;;7546:52;7615:19;;30243:91:0;7222:418:1;30243:91:0;-1:-1:-1;;;;;30369:24:0;;;;;;:20;:24;;;;;;;;30364:140;;30448:16;;-1:-1:-1;;;;;7173:18:0;;7146:7;7173:18;;;;;;;;;;;30422:22;;:6;:22;:::i;:::-;:42;;30414:74;;;;-1:-1:-1;;;30414:74:0;;8109:2:1;30414:74:0;;;8091:21:1;8148:2;8128:18;;;8121:30;-1:-1:-1;;;8167:18:1;;;8160:49;8226:18;;30414:74:0;7907:343:1;30414:74:0;30573:4;30528:24;7173:18;;;;;;;;;;;30616:16;;30596:36;;;;;;;30661:37;;-1:-1:-1;30685:13:0;;;;;;;30661:37;:67;;;;-1:-1:-1;30716:12:0;;;;;;;30715:13;30661:67;:100;;;;-1:-1:-1;;;;;;30745:16:0;;;;;;:12;:16;;;;;;;;30661:100;:139;;;;-1:-1:-1;;;;;;30779:21:0;;;;;;:15;:21;;;;;;;;30778:22;30661:139;:176;;;;-1:-1:-1;;;;;;30818:19:0;;;;;;:15;:19;;;;;;;;30817:20;30661:176;30643:312;;;30864:12;:19;;-1:-1:-1;;30864:19:0;;;;;30898:10;:8;:10::i;:::-;30923:12;:20;;-1:-1:-1;;30923:20:0;;;30643:312;30989:12;;-1:-1:-1;;;;;31103:21:0;;30968:17;31103:21;;;:15;:21;;;;;;30989:12;;;;;;;30988:13;;31103:21;;:44;;-1:-1:-1;;;;;;31128:19:0;;;;;;:15;:19;;;;;;;;31103:44;31099:97;;;-1:-1:-1;31179:5:0;31099:97;31294:12;31290:1400;;;31323:15;31375:16;;31360:12;:31;31357:1177;;;31422:23;31441:3;31422:14;:6;31433:2;31422:10;:14::i;:::-;:18;;:23::i;:::-;31412:33;-1:-1:-1;31503:2:0;31487:12;31412:33;31497:2;31487:12;:::i;:::-;31486:19;;;;:::i;:::-;31464:18;;:41;;;;;;;:::i;:::-;;;;-1:-1:-1;31564:2:0;;-1:-1:-1;31549:11:0;:7;31559:1;31549:11;:::i;:::-;31548:18;;;;:::i;:::-;31524:20;;:42;;;;;;;:::i;:::-;;;;-1:-1:-1;31357:1177:0;;-1:-1:-1;31357:1177:0;;-1:-1:-1;;;;;31592:16:0;;;;;;:12;:16;;;;;;;;:47;;;;-1:-1:-1;31612:23:0;;:27;;31592:47;31588:946;;;31681:23;;31670:44;;31710:3;;31670:35;;:6;;:10;:35::i;:44::-;31794:23;;31765:26;;31660:54;;-1:-1:-1;31794:23:0;31755:36;;31660:54;31755:36;:::i;:::-;:62;;;;:::i;:::-;31733:18;;:84;;;;;;;:::i;:::-;;;;-1:-1:-1;;31897:23:0;;31868:26;;31858:36;;:7;:36;:::i;:::-;:62;;;;:::i;:::-;31836:18;;:84;;;;;;;:::i;:::-;;;;-1:-1:-1;;32004:23:0;;31973:28;;31963:38;;:7;:38;:::i;31588:946::-;-1:-1:-1;;;;;32089:18:0;;;;;;:12;:18;;;;;;;;:48;;;;-1:-1:-1;32111:9:0;:22;:26;;32089:48;32085:449;;;32179:9;:22;32168:43;;32207:3;;32168:34;;:6;;:10;:34::i;:43::-;32290:9;:22;32262:25;;32158:53;;-1:-1:-1;32290:22:0;32252:35;;32158:53;32252:35;:::i;:::-;:60;;;;:::i;:::-;32230:18;;:82;;;;;;;:::i;:::-;;;;-1:-1:-1;;32391:9:0;:22;32363:25;;32353:35;;:7;:35;:::i;:::-;:60;;;;:::i;:::-;32331:18;;:82;;;;;;;:::i;:::-;;;;-1:-1:-1;;32496:9:0;:22;32466:27;;32456:37;;:7;:37;:::i;:::-;:62;;;;:::i;:::-;32432:20;;:86;;;;;;;:::i;:::-;;;;-1:-1:-1;;32085:449:0;32554:11;;32550:97;;32586:45;32602:4;32616;32623:7;32586:15;:45::i;:::-;32661:17;32671:7;32661:17;;:::i;:::-;;;31308:1382;31290:1400;32701:33;32717:4;32723:2;32727:6;32701:15;:33::i;:::-;29569:3173;;;29456:3286;;;:::o;970:191::-;1055:7;1091:12;1083:6;;;;1075:29;;;;-1:-1:-1;;;1075:29:0;;;;;;;;:::i;:::-;-1:-1:-1;1115:9:0;1127:5;1131:1;1127;:5;:::i;:::-;1115:17;970:191;-1:-1:-1;;;;;970:191:0:o;643:180::-;700:7;;732:5;736:1;732;:5;:::i;:::-;720:17;;761:1;756;:6;;748:46;;;;-1:-1:-1;;;748:46:0;;8985:2:1;748:46:0;;;8967:21:1;9024:2;9004:18;;;8997:30;9063:29;9043:18;;;9036:57;9110:18;;748:46:0;8783:351:1;748:46:0;814:1;643:180;-1:-1:-1;;;643:180:0:o;25255:137::-;25354:30;25363:5;25370;25377:6;25354:8;:30::i;28002:209::-;28136:4;28123:9;28107:13;6990:12;;;6903:107;28107:13;:25;;;;:::i;:::-;28106:34;;;;:::i;:::-;28090:13;:50;28199:4;28185:10;28169:13;6990:12;;;6903:107;28169:13;:26;;;;:::i;:::-;28168:35;;;;:::i;:::-;28151:14;:52;-1:-1:-1;;28002:209:0:o;29312:136::-;29436:4;29419:13;29403;6990:12;;;6903:107;29403:13;:29;;;;:::i;:::-;29402:38;;;;:::i;:::-;29383:16;:57;-1:-1:-1;29312:136:0:o;9999:358::-;10161:71;10183:6;10161:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10161:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;10141:17:0;;;:9;:17;;;;;;;;;;;:91;;;;10266:20;;;;;;;:32;;10291:6;10266:24;:32::i;:::-;-1:-1:-1;;;;;10243:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;10314:35;2098:25:1;;;10243:20:0;;10314:35;;;;;;2071:18:1;10314:35:0;1952:177:1;25996:1603:0;26083:4;26035:27;7173:18;;;;;;;;;;;26035:54;;26100:14;26159:20;;26138:18;;26117;;:39;;;;:::i;:::-;:62;;;;:::i;:::-;26100:79;;26196:19;26219:1;26196:24;26192:41;;26224:7;;25996:1603::o;26192:41::-;26271:16;;:21;;26290:2;26271:21;:::i;:::-;26249:19;:43;26245:119;;;26331:16;;:21;;26350:2;26331:21;:::i;:::-;26309:43;;26245:119;26425:23;26503:1;26494:6;26473:18;;26451:19;:40;;;;:::i;:::-;:49;;;;:::i;:::-;:53;;;;:::i;:::-;26425:79;-1:-1:-1;26515:26:0;26544:40;:19;26425:79;26544:23;:40::i;:::-;26515:69;-1:-1:-1;26623:21:0;26657:50;26515:69;26657:30;:50::i;:::-;26718:18;26739:44;:21;26765:17;26739:25;:44::i;:::-;26718:65;;26797:23;26823:46;26862:6;26823:34;26838:18;;26823:10;:14;;:34;;;;:::i;:46::-;26797:72;;26881:25;26909:48;26950:6;26909:36;26924:20;;26909:10;:14;;:36;;;;:::i;:48::-;26881:76;-1:-1:-1;26968:23:0;27008:35;26881:76;27008:15;:35;:::i;:::-;26994:50;;:10;:50;:::i;:::-;27055:22;27092:18;:22;;;27125:18;:22;;;27158:20;:24;26968:76;-1:-1:-1;27080:1:0;27199:19;;;;;:42;;;27240:1;27222:15;:19;27199:42;27195:192;;;27258:46;27271:15;27288;27258:12;:46::i;:::-;27324:51;;;9313:25:1;;;9369:2;9354:18;;9347:34;;;27324:51:0;;9286:18:1;27324:51:0;;;;;;;27195:192;27423:10;;-1:-1:-1;;;;;27423:10:0;27407:77;27445:38;27469:14;27445:21;:38;:::i;:::-;27407:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27543:18:0;;27527:64;;27506:10;;-1:-1:-1;;;;;;27543:18:0;;;;27527:64;;;;;27506:10;;27543:18;27527:64;27543:18;27527:64;27506:10;27543:18;27527:64;;;;;;;;;;;;;;;;;;;;;26024:1575;;;;;;;;;;25996:1603::o;381:256::-;438:7;468:1;473;468:6;464:47;;-1:-1:-1;498:1:0;491:8;;464:47;524:9;536:5;540:1;536;:5;:::i;:::-;524:17;-1:-1:-1;569:1:0;560:5;564:1;524:17;560:5;:::i;:::-;:10;552:56;;;;-1:-1:-1;;;552:56:0;;9594:2:1;552:56:0;;;9576:21:1;9633:2;9613:18;;;9606:30;9672:34;9652:18;;;9645:62;-1:-1:-1;;;9723:18:1;;;9716:31;9764:19;;552:56:0;9392:397:1;1167:131:0;1224:7;1251:39;1255:1;1258;1251:39;;;;;;;;;;;;;;;;;:3;:39::i;829:135::-;886:7;913:43;917:1;920;913:43;;;;;;;;;;;;;;;;;:3;:43::i;24477:562::-;24637:16;;;24651:1;24637:16;;;;;;;;24613:21;;24637:16;;;;;;;;;;-1:-1:-1;24637:16:0;24613:40;;24682:4;24664;24669:1;24664:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;24664:23:0;;;-1:-1:-1;;;;;24664:23:0;;;;;24708:6;-1:-1:-1;;;;;24708:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24698:4;24703:1;24698:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;24698:23:0;;;-1:-1:-1;;;;;24698:23:0;;;;;24734:49;24751:4;24766:6;24775:7;24734:8;:49::i;:::-;24820:211;;-1:-1:-1;;;24820:211:0;;-1:-1:-1;;;;;24820:6:0;:57;;;;:211;;24892:7;;24914:1;;24958:4;;24985;;25005:15;;24820:211;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28818:350;28962:49;28979:4;28994:6;29003:7;28962:8;:49::i;:::-;29054:106;;-1:-1:-1;;;29054:106:0;;29106:4;29054:106;;;11640:34:1;;;11690:18;;;11683:34;;;29122:1:0;11733:18:1;;;11726:34;;;11776:18;;;11769:34;11819:19;;;11812:44;29144:15:0;11872:19:1;;;11865:35;29054:6:0;-1:-1:-1;;;;;29054:22:0;;;;29085:9;;11574:19:1;;29054:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;28818:350;;:::o;1304:277::-;1389:7;1424:12;1417:5;1409:28;;;;-1:-1:-1;;;1409:28:0;;;;;;;;:::i;:::-;-1:-1:-1;1448:9:0;1460:5;1464:1;1460;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:247::-;762:6;815:2;803:9;794:7;790:23;786:32;783:52;;;831:1;828;821:12;783:52;870:9;857:23;889:31;914:5;889:31;:::i;955:315::-;1023:6;1031;1084:2;1072:9;1063:7;1059:23;1055:32;1052:52;;;1100:1;1097;1090:12;1052:52;1139:9;1126:23;1158:31;1183:5;1158:31;:::i;:::-;1208:5;1260:2;1245:18;;;;1232:32;;-1:-1:-1;;;955:315:1:o;1467:160::-;1532:20;;1588:13;;1581:21;1571:32;;1561:60;;1617:1;1614;1607:12;1632:315;1697:6;1705;1758:2;1746:9;1737:7;1733:23;1729:32;1726:52;;;1774:1;1771;1764:12;1726:52;1813:9;1800:23;1832:31;1857:5;1832:31;:::i;:::-;1882:5;-1:-1:-1;1906:35:1;1937:2;1922:18;;1906:35;:::i;:::-;1896:45;;1632:315;;;;;:::o;2134:180::-;2190:6;2243:2;2231:9;2222:7;2218:23;2214:32;2211:52;;;2259:1;2256;2249:12;2211:52;2282:26;2298:9;2282:26;:::i;2319:456::-;2396:6;2404;2412;2465:2;2453:9;2444:7;2440:23;2436:32;2433:52;;;2481:1;2478;2471:12;2433:52;2520:9;2507:23;2539:31;2564:5;2539:31;:::i;:::-;2589:5;-1:-1:-1;2646:2:1;2631:18;;2618:32;2659:33;2618:32;2659:33;:::i;:::-;2319:456;;2711:7;;-1:-1:-1;;;2765:2:1;2750:18;;;;2737:32;;2319:456::o;3177:180::-;3236:6;3289:2;3277:9;3268:7;3264:23;3260:32;3257:52;;;3305:1;3302;3295:12;3257:52;-1:-1:-1;3328:23:1;;3177:180;-1:-1:-1;3177:180:1:o;3362:388::-;3430:6;3438;3491:2;3479:9;3470:7;3466:23;3462:32;3459:52;;;3507:1;3504;3497:12;3459:52;3546:9;3533:23;3565:31;3590:5;3565:31;:::i;:::-;3615:5;-1:-1:-1;3672:2:1;3657:18;;3644:32;3685:33;3644:32;3685:33;:::i;:::-;3737:7;3727:17;;;3362:388;;;;;:::o;4674:380::-;4753:1;4749:12;;;;4796;;;4817:61;;4871:4;4863:6;4859:17;4849:27;;4817:61;4924:2;4916:6;4913:14;4893:18;4890:38;4887:161;;4970:10;4965:3;4961:20;4958:1;4951:31;5005:4;5002:1;4995:15;5033:4;5030:1;5023:15;4887:161;;4674:380;;;:::o;5059:356::-;5261:2;5243:21;;;5280:18;;;5273:30;5339:34;5334:2;5319:18;;5312:62;5406:2;5391:18;;5059:356::o;7645:127::-;7706:10;7701:3;7697:20;7694:1;7687:31;7737:4;7734:1;7727:15;7761:4;7758:1;7751:15;7777:125;7842:9;;;7863:10;;;7860:36;;;7876:18;;:::i;8255:168::-;8328:9;;;8359;;8376:15;;;8370:22;;8356:37;8346:71;;8397:18;;:::i;8428:217::-;8468:1;8494;8484:132;;8538:10;8533:3;8529:20;8526:1;8519:31;8573:4;8570:1;8563:15;8601:4;8598:1;8591:15;8484:132;-1:-1:-1;8630:9:1;;8428:217::o;8650:128::-;8717:9;;;8738:11;;;8735:37;;;8752:18;;:::i;9926:127::-;9987:10;9982:3;9978:20;9975:1;9968:31;10018:4;10015:1;10008:15;10042:4;10039:1;10032:15;10058:251;10128:6;10181:2;10169:9;10160:7;10156:23;10152:32;10149:52;;;10197:1;10194;10187:12;10149:52;10229:9;10223:16;10248:31;10273:5;10248:31;:::i;10314:980::-;10576:4;10624:3;10613:9;10609:19;10655:6;10644:9;10637:25;10681:2;10719:6;10714:2;10703:9;10699:18;10692:34;10762:3;10757:2;10746:9;10742:18;10735:31;10786:6;10821;10815:13;10852:6;10844;10837:22;10890:3;10879:9;10875:19;10868:26;;10929:2;10921:6;10917:15;10903:29;;10950:1;10960:195;10974:6;10971:1;10968:13;10960:195;;;11039:13;;-1:-1:-1;;;;;11035:39:1;11023:52;;11130:15;;;;11095:12;;;;11071:1;10989:9;10960:195;;;-1:-1:-1;;;;;;;11211:32:1;;;;11206:2;11191:18;;11184:60;-1:-1:-1;;;11275:3:1;11260:19;11253:35;11172:3;10314:980;-1:-1:-1;;;10314:980:1:o;11911:306::-;11999:6;12007;12015;12068:2;12056:9;12047:7;12043:23;12039:32;12036:52;;;12084:1;12081;12074:12;12036:52;12113:9;12107:16;12097:26;;12163:2;12152:9;12148:18;12142:25;12132:35;;12207:2;12196:9;12192:18;12186:25;12176:35;;11911:306;;;;;:::o

Swarm Source

ipfs://c34b5952a17f55d551af66d0a61c5f075065ff23e215c5aebe2822964a0d2d59
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.