ETH Price: $3,172.11 (-8.60%)
Gas: 3 Gwei

Token

XAUETH (GOLD)
 

Overview

Max Total Supply

20,000,000,000 GOLD

Holders

57

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
GOLD

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-27
*/

/**
 t.me/xaueth 

*/



// SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
 


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

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

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

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

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

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

    /**
    * @dev Moves `amount` tokens from `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);

        /**
        * @dev Emitted when `value` tokens are moved from one account (`from`) to
        * another (`to`).
        *
        * Note that `value` may be zero.
        */
        event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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)) private _allowances;
 
    uint256 private _totalSupply;
 
    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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 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 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 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 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 {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

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


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

    
}
 
library SafeMath {
   
    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 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 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;
    }

    
}
 
contract Ownable is Context {
    address private _owner;
 
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}
 
 
 
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 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;
    }

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

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


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


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

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

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

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 GOLD is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable router;
    address public immutable uniswapV2Pair;


    // addresses
    address private marketingWallet;

    // limits 
    uint256 private maxBuyAmount;
    uint256 private maxSellAmount;   
    uint256 private maxWalletAmount;
 
    uint256 private thresholdSwapAmount;

    // status flags
    bool private isTrading = false;
    bool public swapEnabled = false;
    bool public isSwapping;


    // Blacklist Map
    mapping(address => bool) private _blacklist;


    struct Fees {
        uint256 buyTotalFees;
        uint256 buyMarketingFee;
        uint256 buyLiquidityFee;

        uint256 sellTotalFees;
        uint256 sellMarketingFee;
        uint256 sellLiquidityFee;
    }  

    Fees public _fees = Fees({
        buyTotalFees: 0,
        buyMarketingFee: 0,
        buyLiquidityFee: 0,

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

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;


    // exclude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) public _isExcludedMaxWalletAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public marketPair;
 
  
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived
    );


    constructor() ERC20("XAUETH", "GOLD") {
 
        router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);


        uniswapV2Pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH());

        _isExcludedMaxTransactionAmount[address(router)] = true;
        _isExcludedMaxTransactionAmount[address(uniswapV2Pair)] = true;        
        _isExcludedMaxTransactionAmount[owner()] = true;
        _isExcludedMaxTransactionAmount[address(this)] = true;

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

        _isExcludedMaxWalletAmount[owner()] = true;
        _isExcludedMaxWalletAmount[address(this)] = true;
        _isExcludedMaxWalletAmount[address(uniswapV2Pair)] = true;


        marketPair[address(uniswapV2Pair)] = true;

        approve(address(router), type(uint256).max);
        uint256 totalSupply = 20 * 1e9 * 1e18;

        maxBuyAmount = totalSupply / 100; // 1% maxTransactionAmountTxn
        maxSellAmount = totalSupply / 100; // 1% maxTransactionAmountTxn
        maxWalletAmount = totalSupply * 3 / 100; // 3% maxWallet
        thresholdSwapAmount = totalSupply * 1 / 10000; // 0.01% swap wallet

        _fees.buyMarketingFee = 4;
        _fees.buyLiquidityFee = 2;
        _fees.buyTotalFees = _fees.buyMarketingFee + _fees.buyLiquidityFee;

        _fees.sellMarketingFee = 4;
        _fees.sellLiquidityFee = 2;
        _fees.sellTotalFees = _fees.sellMarketingFee + _fees.sellLiquidityFee;


        marketingWallet = address(0xEc297dedE8d9fA03640C927E2C1Bbf1DabEDF96C); // set as marketing wallet

        // exclude from paying fees or having max transaction amount




        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {

    }

    // once enabled, can never be turned off
    function swapTrading() external onlyOwner {
        isTrading = true;
        swapEnabled = true;
    }



    // change the minimum amount of tokens to sell from fees
    function updateThresholdSwapAmount(uint256 newAmount) external onlyOwner returns(bool){
        thresholdSwapAmount = newAmount;
        return true;
    }


    function updateMaxTxnAmount(uint256 newMaxBuy, uint256 newMaxSell) external onlyOwner {
        require(((totalSupply() * newMaxBuy) / 1000) >= (totalSupply() / 100), "Cannot set maxTransactionAmounts lower than 1%");
        require(((totalSupply() * newMaxSell) / 1000) >= (totalSupply() / 100), "Cannot set maxTransactionAmounts lower than 1%");
        maxBuyAmount = (totalSupply() * newMaxBuy) / 1000;
        maxSellAmount = (totalSupply() * newMaxSell) / 1000;
    }


    function updateMaxWalletAmount(uint256 newPercentage) external onlyOwner {
        require(((totalSupply() * newPercentage) / 1000) >= (totalSupply() / 100), "Cannot set maxWallet lower than 1%");
        maxWalletAmount = (totalSupply() * newPercentage) / 1000;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function toggleSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }

    function updateFees(uint256 _marketingFeeBuy, uint256 _liquidityFeeBuy,uint256 _marketingFeeSell, uint256 _liquidityFeeSell) external onlyOwner{
        _fees.buyMarketingFee = _marketingFeeBuy;
        _fees.buyLiquidityFee = _liquidityFeeBuy;
        _fees.buyTotalFees = _fees.buyMarketingFee + _fees.buyLiquidityFee;

        _fees.sellMarketingFee = _marketingFeeSell;
        _fees.sellLiquidityFee = _liquidityFeeSell;
        _fees.sellTotalFees = _fees.sellMarketingFee + _fees.sellLiquidityFee;
        require(_fees.buyTotalFees <= 9, "Must keep fees at 9% or less");   
        require(_fees.sellTotalFees <= 9, "Must keep fees at 9% or less");
     
    }
    
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
    }
    function excludeFromWalletLimit(address account, bool excluded) public onlyOwner {
        _isExcludedMaxWalletAmount[account] = excluded;
    }
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }


    function setMarketPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from marketPair");
        marketPair[pair] = value;
    }


    function setMarketingWallet(address _marketingWallet) external onlyOwner{
        marketingWallet = _marketingWallet;
    }

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

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        
        require(!_blacklist[recipient] && !_blacklist[sender], "You have been blacklisted from transfering tokens");
        
        if (amount == 0) {
            super._transfer(sender, recipient, 0);
            return;
        }

        if (
            sender != owner() &&
            recipient != owner() &&
            !isSwapping
        ) {

            if (!isTrading) {
                require(_isExcludedFromFees[sender] || _isExcludedFromFees[recipient], "Trading is not active.");
            }
            if (marketPair[sender] && !_isExcludedMaxTransactionAmount[recipient]) {
                require(amount <= maxBuyAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
            } 
            else if (marketPair[recipient] && !_isExcludedMaxTransactionAmount[sender]) {
                require(amount <= maxSellAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
            }

            if (!_isExcludedMaxWalletAmount[recipient]) {
                require(amount + balanceOf(recipient) <= maxWalletAmount, "Max wallet exceeded");
            }

        }
 
        
 
        uint256 contractTokenBalance = balanceOf(address(this));
 
        bool canSwap = contractTokenBalance >= thresholdSwapAmount;

        if (
            canSwap &&
            swapEnabled &&
            !isSwapping &&
            marketPair[recipient] &&
            !_isExcludedFromFees[sender] &&
            !_isExcludedFromFees[recipient]
        ) {
            isSwapping = true;
            swapBack();
            isSwapping = false;
        }
 
        bool takeFee = !isSwapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[sender] || _isExcludedFromFees[recipient]) {
            takeFee = false;
        }
 
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            
            // on sell
            if (marketPair[recipient] && _fees.sellTotalFees > 0) {
                fees = amount.mul(_fees.sellTotalFees).div(100);
                tokensForLiquidity += fees * _fees.sellLiquidityFee / _fees.sellTotalFees;
                tokensForMarketing += fees * _fees.sellMarketingFee / _fees.sellTotalFees;
            }
            // on buy
            else if (marketPair[sender] && _fees.buyTotalFees > 0) {
                fees = amount.mul(_fees.buyTotalFees).div(100);
                tokensForLiquidity += fees * _fees.buyLiquidityFee / _fees.buyTotalFees;
                tokensForMarketing += fees * _fees.buyMarketingFee / _fees.buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(sender, address(this), fees);
            }

            amount -= fees;

        }

        super._transfer(sender, recipient, amount);
    }

    function swapTokensForEth(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 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);
    }

    function swapBack() private {
        uint256 contractTokenBalance = balanceOf(address(this));
        uint256 toSwap = tokensForLiquidity + tokensForMarketing ;
        bool success;

        if (contractTokenBalance == 0 || toSwap == 0) { return; }

        if (contractTokenBalance > thresholdSwapAmount * 20) {
            contractTokenBalance = thresholdSwapAmount * 20;
        }

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

        swapTokensForEth(amountToSwapForETH); 
 
        uint256 newBalance = address(this).balance.sub(initialETHBalance);
 
        uint256 ethForMarketing = newBalance.mul(tokensForMarketing).div(toSwap);
        uint256 ethForLiquidity = newBalance - ethForMarketing;


        tokensForLiquidity = 0;
        tokensForMarketing = 0;


        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity);
        }

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

}

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":"_fees","outputs":[{"internalType":"uint256","name":"buyTotalFees","type":"uint256"},{"internalType":"uint256","name":"buyMarketingFee","type":"uint256"},{"internalType":"uint256","name":"buyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"sellTotalFees","type":"uint256"},{"internalType":"uint256","name":"sellMarketingFee","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":"_isExcludedMaxWalletAmount","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":"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":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"marketPair","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":"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":"setMarketPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTrading","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":"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":"_marketingFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_liquidityFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_marketingFeeSell","type":"uint256"},{"internalType":"uint256","name":"_liquidityFeeSell","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxBuy","type":"uint256"},{"internalType":"uint256","name":"newMaxSell","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateThresholdSwapAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600b805461ffff19169055610180604052600060c081905260e0819052610100819052610120819052610140819052610160819052600d819055600e819055600f819055601081905560118190556012553480156200005d57600080fd5b5060408051808201825260068152650b082aa8aa8960d31b60208083019182528351808501909452600484526311d3d31160e21b908401528151919291620000a891600391620007c4565b508051620000be906004906020840190620007c4565b5050506000620000d36200051660201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200017257600080fd5b505afa15801562000187573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ad91906200086a565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001f857600080fd5b505afa1580156200020d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023391906200086a565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200027c57600080fd5b505af115801562000291573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b791906200086a565b6001600160a01b0390811660a081905260805190911660009081526016602081905260408083208054600160ff1991821681179092559484529083208054909416811790935590620003116005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260169092528120805490921660019081179092556015906200036a6005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526015909252812080549092166001908117909255601790620003c36005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526017845282812080548616600190811790915560a051909216815282812080548616831790556018909352912080549092161790556080516200043a906000196200051a565b506b409f9cbc7c4a04c22000000062000455606482620008ab565b60075562000465606482620008ab565b600855606462000477826003620008ce565b620004839190620008ab565b60095561271062000496826001620008ce565b620004a29190620008ab565b600a556004600e8190556002600f819055620004be91620008f0565b600d556004601181905560026012819055620004da91620008f0565b601055600680546001600160a01b03191673ec297dede8d9fa03640c927e2c1bbf1dabedf96c1790556200050f338262000532565b5062000948565b3390565b60006200052933848462000632565b50600192915050565b6001600160a01b0382166200058e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620005aa816002546200075a60201b620010881790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620005dd918390620010886200075a821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316620006965760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000585565b6001600160a01b038216620006f95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000585565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600080620007698385620008f0565b905083811015620007bd5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000585565b9392505050565b828054620007d2906200090b565b90600052602060002090601f016020900481019282620007f6576000855562000841565b82601f106200081157805160ff191683800117855562000841565b8280016001018555821562000841579182015b828111156200084157825182559160200191906001019062000824565b506200084f92915062000853565b5090565b5b808211156200084f576000815560010162000854565b6000602082840312156200087d57600080fd5b81516001600160a01b0381168114620007bd57600080fd5b634e487b7160e01b600052601160045260246000fd5b600082620008c957634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615620008eb57620008eb62000895565b500290565b6000821982111562000906576200090662000895565b500190565b600181811c908216806200092057607f821691505b602082108114156200094257634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516124c662000998600039600081816103a50152610ca601526000818161075a01528181611ced01528181611db501528181611df101528181611e6b0152611ec701526124c66000f3fe6080604052600436106102135760003560e01c80637571336a11610118578063c16dd4a4116100a0578063dd62ed3e1161006f578063dd62ed3e14610692578063e16830a8146106d8578063f2fde38b146106f8578063f5b3c3bf14610718578063f887ea401461074857600080fd5b8063c16dd4a4146105da578063c18bc195146105fa578063c6616ba11461061a578063d212a69a1461063a57600080fd5b8063a457c2d7116100e7578063a457c2d714610545578063a9059cbb14610565578063b886311514610585578063b9e418e7146105a5578063c0246668146105ba57600080fd5b80637571336a146104c25780638da5cb5b146104e257806395d89b411461050057806396880b171461051557600080fd5b8063313ce5671161019b578063555467a11161016a578063555467a1146104185780635d098b38146104385780636ddd17131461045857806370a0823114610477578063715018a6146104ad57600080fd5b8063313ce56714610357578063395093511461037357806349bd5a5e146103935780634fbee193146103df57600080fd5b806318160ddd116101e257806318160ddd146102cc5780631a8145bb146102eb5780631c6e8a75146103015780631f3fed8f1461032157806323b872dd1461033757600080fd5b806306fdde031461021f578063095ea7b31461024a57806310d5de531461027a57806311a582c3146102aa57600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b5061023461077c565b6040516102419190611f82565b60405180910390f35b34801561025657600080fd5b5061026a610265366004611fef565b61080e565b6040519015158152602001610241565b34801561028657600080fd5b5061026a61029536600461201b565b60166020526000908152604090205460ff1681565b3480156102b657600080fd5b506102ca6102c5366004612038565b610825565b005b3480156102d857600080fd5b506002545b604051908152602001610241565b3480156102f757600080fd5b506102dd60145481565b34801561030d57600080fd5b506102ca61031c36600461206a565b61094c565b34801561032d57600080fd5b506102dd60135481565b34801561034357600080fd5b5061026a610352366004612085565b610990565b34801561036357600080fd5b5060405160128152602001610241565b34801561037f57600080fd5b5061026a61038e366004611fef565b6109f9565b34801561039f57600080fd5b506103c77f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610241565b3480156103eb57600080fd5b5061026a6103fa36600461201b565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561042457600080fd5b5061026a6104333660046120c6565b610a2f565b34801561044457600080fd5b506102ca61045336600461201b565b610a6a565b34801561046457600080fd5b50600b5461026a90610100900460ff1681565b34801561048357600080fd5b506102dd61049236600461201b565b6001600160a01b031660009081526020819052604090205490565b3480156104b957600080fd5b506102ca610ab6565b3480156104ce57600080fd5b506102ca6104dd3660046120df565b610b2a565b3480156104ee57600080fd5b506005546001600160a01b03166103c7565b34801561050c57600080fd5b50610234610b7f565b34801561052157600080fd5b5061026a61053036600461201b565b60176020526000908152604090205460ff1681565b34801561055157600080fd5b5061026a610560366004611fef565b610b8e565b34801561057157600080fd5b5061026a610580366004611fef565b610bdd565b34801561059157600080fd5b50600b5461026a9062010000900460ff1681565b3480156105b157600080fd5b506102ca610bea565b3480156105c657600080fd5b506102ca6105d53660046120df565b610c25565b3480156105e657600080fd5b506102ca6105f53660046120df565b610c7a565b34801561060657600080fd5b506102ca6106153660046120c6565b610d64565b34801561062657600080fd5b506102ca610635366004612114565b610e44565b34801561064657600080fd5b50600d54600e54600f5460105460115460125461066595949392919086565b604080519687526020870195909552938501929092526060840152608083015260a082015260c001610241565b34801561069e57600080fd5b506102dd6106ad366004612146565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106e457600080fd5b506102ca6106f33660046120df565b610f48565b34801561070457600080fd5b506102ca61071336600461201b565b610f9d565b34801561072457600080fd5b5061026a61073336600461201b565b60186020526000908152604090205460ff1681565b34801561075457600080fd5b506103c77f000000000000000000000000000000000000000000000000000000000000000081565b60606003805461078b9061217f565b80601f01602080910402602001604051908101604052809291908181526020018280546107b79061217f565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b600061081b3384846110ee565b5060015b92915050565b6005546001600160a01b031633146108585760405162461bcd60e51b815260040161084f906121ba565b60405180910390fd5b606461086360025490565b61086d9190612205565b6103e88361087a60025490565b6108849190612227565b61088e9190612205565b10156108ac5760405162461bcd60e51b815260040161084f90612246565b60646108b760025490565b6108c19190612205565b6103e8826108ce60025490565b6108d89190612227565b6108e29190612205565b10156109005760405162461bcd60e51b815260040161084f90612246565b6103e88261090d60025490565b6109179190612227565b6109219190612205565b6007556103e88161093160025490565b61093b9190612227565b6109459190612205565b6008555050565b6005546001600160a01b031633146109765760405162461bcd60e51b815260040161084f906121ba565b600b80549115156101000261ff0019909216919091179055565b600061099d848484611213565b6109ef84336109ea85604051806060016040528060288152602001612469602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906118b1565b6110ee565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161081b9185906109ea9086611088565b6005546000906001600160a01b03163314610a5c5760405162461bcd60e51b815260040161084f906121ba565b50600a81905560015b919050565b6005546001600160a01b03163314610a945760405162461bcd60e51b815260040161084f906121ba565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610ae05760405162461bcd60e51b815260040161084f906121ba565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610b545760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b60606004805461078b9061217f565b600061081b33846109ea8560405180606001604052806025815260200161241e602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906118b1565b600061081b338484611213565b6005546001600160a01b03163314610c145760405162461bcd60e51b815260040161084f906121ba565b600b805461ffff1916610101179055565b6005546001600160a01b03163314610c4f5760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ca45760405162461bcd60e51b815260040161084f906121ba565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610d395760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526936b0b935b2ba2830b4b960b11b606482015260840161084f565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d8e5760405162461bcd60e51b815260040161084f906121ba565b6064610d9960025490565b610da39190612205565b6103e882610db060025490565b610dba9190612227565b610dc49190612205565b1015610e1d5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b606482015260840161084f565b6103e881610e2a60025490565b610e349190612227565b610e3e9190612205565b60095550565b6005546001600160a01b03163314610e6e5760405162461bcd60e51b815260040161084f906121ba565b600e849055600f839055610e828385612294565b600d5560118290556012819055610e998183612294565b601055600d5460091015610eef5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203925206f72206c65737300000000604482015260640161084f565b60105460091015610f425760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203925206f72206c65737300000000604482015260640161084f565b50505050565b6005546001600160a01b03163314610f725760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fc75760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03811661102c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084f565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806110958385612294565b9050838110156110e75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161084f565b9392505050565b6001600160a01b0383166111505760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161084f565b6001600160a01b0382166111b15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161084f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166112395760405162461bcd60e51b815260040161084f906122ac565b6001600160a01b03821661125f5760405162461bcd60e51b815260040161084f906122f1565b6001600160a01b0382166000908152600c602052604090205460ff161580156112a157506001600160a01b0383166000908152600c602052604090205460ff16155b6113075760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b606482015260840161084f565b8061131d57611318838360006118eb565b505050565b6005546001600160a01b0384811691161480159061134957506005546001600160a01b03838116911614155b801561135e5750600b5462010000900460ff16155b156115ed57600b5460ff166113f1576001600160a01b03831660009081526015602052604090205460ff16806113ac57506001600160a01b03821660009081526015602052604090205460ff165b6113f15760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161084f565b6001600160a01b03831660009081526018602052604090205460ff16801561143257506001600160a01b03821660009081526016602052604090205460ff16155b156114ac576007548111156114a75760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161084f565b611563565b6001600160a01b03821660009081526018602052604090205460ff1680156114ed57506001600160a01b03831660009081526016602052604090205460ff16155b15611563576008548111156115635760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161084f565b6001600160a01b03821660009081526017602052604090205460ff166115ed576009546001600160a01b0383166000908152602081905260409020546115a99083612294565b11156115ed5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161084f565b30600090815260208190526040902054600a54811080159081906116185750600b54610100900460ff165b801561162d5750600b5462010000900460ff16155b801561165157506001600160a01b03841660009081526018602052604090205460ff165b801561167657506001600160a01b03851660009081526015602052604090205460ff16155b801561169b57506001600160a01b03841660009081526015602052604090205460ff16155b156116c657600b805462ff00001916620100001790556116b96119f4565b600b805462ff0000191690555b600b546001600160a01b03861660009081526015602052604090205460ff6201000090920482161591168061171357506001600160a01b03851660009081526015602052604090205460ff165b1561171c575060005b6000811561189d576001600160a01b03861660009081526018602052604090205460ff16801561174d575060105415155b156117d75760105461176d90606490611767908890611b93565b90611c12565b601054601254919250906117819083612227565b61178b9190612205565b6014600082825461179c9190612294565b90915550506010546011546117b19083612227565b6117bb9190612205565b601360008282546117cc9190612294565b9091555061187f9050565b6001600160a01b03871660009081526018602052604090205460ff1680156118005750600d5415155b1561187f57600d5461181a90606490611767908890611b93565b600d54600f549192509061182e9083612227565b6118389190612205565b601460008282546118499190612294565b9091555050600d54600e5461185e9083612227565b6118689190612205565b601360008282546118799190612294565b90915550505b8015611890576118908730836118eb565b61189a8186612334565b94505b6118a88787876118eb565b50505050505050565b600081848411156118d55760405162461bcd60e51b815260040161084f9190611f82565b5060006118e28486612334565b95945050505050565b6001600160a01b0383166119115760405162461bcd60e51b815260040161084f906122ac565b6001600160a01b0382166119375760405162461bcd60e51b815260040161084f906122f1565b61197481604051806060016040528060268152602001612443602691396001600160a01b03861660009081526020819052604090205491906118b1565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546119a39082611088565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611206565b3060009081526020819052604081205490506000601354601454611a189190612294565b90506000821580611a27575081155b15611a3157505050565b600a54611a3f906014612227565b831115611a5757600a54611a54906014612227565b92505b600060028360145486611a6a9190612227565b611a749190612205565b611a7e9190612205565b90506000611a8c8583611c54565b905047611a9882611c96565b6000611aa44783611c54565b90506000611ac18761176760135485611b9390919063ffffffff16565b90506000611acf8284612334565b6000601481905560135590508515801590611aea5750600081115b15611b3357611af98682611e65565b60408051868152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611b80576040519150601f19603f3d011682016040523d82523d6000602084013e611b85565b606091505b505050505050505050505050565b600082611ba25750600061081f565b6000611bae8385612227565b905082611bbb8583612205565b146110e75760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161084f565b60006110e783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611f54565b60006110e783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506118b1565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ccb57611ccb61234b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611d4457600080fd5b505afa158015611d58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d7c9190612361565b81600181518110611d8f57611d8f61234b565b60200260200101906001600160a01b031690816001600160a01b031681525050611dda307f0000000000000000000000000000000000000000000000000000000000000000846110ee565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611e2f90859060009086903090429060040161237e565b600060405180830381600087803b158015611e4957600080fd5b505af1158015611e5d573d6000803e3d6000fd5b505050505050565b611e90307f0000000000000000000000000000000000000000000000000000000000000000846110ee565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c4016060604051808303818588803b158015611f1457600080fd5b505af1158015611f28573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611f4d91906123ef565b5050505050565b60008183611f755760405162461bcd60e51b815260040161084f9190611f82565b5060006118e28486612205565b600060208083528351808285015260005b81811015611faf57858101830151858201604001528201611f93565b81811115611fc1576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611fec57600080fd5b50565b6000806040838503121561200257600080fd5b823561200d81611fd7565b946020939093013593505050565b60006020828403121561202d57600080fd5b81356110e781611fd7565b6000806040838503121561204b57600080fd5b50508035926020909101359150565b80358015158114610a6557600080fd5b60006020828403121561207c57600080fd5b6110e78261205a565b60008060006060848603121561209a57600080fd5b83356120a581611fd7565b925060208401356120b581611fd7565b929592945050506040919091013590565b6000602082840312156120d857600080fd5b5035919050565b600080604083850312156120f257600080fd5b82356120fd81611fd7565b915061210b6020840161205a565b90509250929050565b6000806000806080858703121561212a57600080fd5b5050823594602084013594506040840135936060013592509050565b6000806040838503121561215957600080fd5b823561216481611fd7565b9150602083013561217481611fd7565b809150509250929050565b600181811c9082168061219357607f821691505b602082108114156121b457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008261222257634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612241576122416121ef565b500290565b6020808252602e908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e747360408201526d206c6f776572207468616e20312560901b606082015260800190565b600082198211156122a7576122a76121ef565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612346576123466121ef565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561237357600080fd5b81516110e781611fd7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123ce5784516001600160a01b0316835293830193918301916001016123a9565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561240457600080fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212201cf49fb666b2b9c00e6e3ba36891eda1b1f80b9810aa09264b105803736cff1b64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102135760003560e01c80637571336a11610118578063c16dd4a4116100a0578063dd62ed3e1161006f578063dd62ed3e14610692578063e16830a8146106d8578063f2fde38b146106f8578063f5b3c3bf14610718578063f887ea401461074857600080fd5b8063c16dd4a4146105da578063c18bc195146105fa578063c6616ba11461061a578063d212a69a1461063a57600080fd5b8063a457c2d7116100e7578063a457c2d714610545578063a9059cbb14610565578063b886311514610585578063b9e418e7146105a5578063c0246668146105ba57600080fd5b80637571336a146104c25780638da5cb5b146104e257806395d89b411461050057806396880b171461051557600080fd5b8063313ce5671161019b578063555467a11161016a578063555467a1146104185780635d098b38146104385780636ddd17131461045857806370a0823114610477578063715018a6146104ad57600080fd5b8063313ce56714610357578063395093511461037357806349bd5a5e146103935780634fbee193146103df57600080fd5b806318160ddd116101e257806318160ddd146102cc5780631a8145bb146102eb5780631c6e8a75146103015780631f3fed8f1461032157806323b872dd1461033757600080fd5b806306fdde031461021f578063095ea7b31461024a57806310d5de531461027a57806311a582c3146102aa57600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b5061023461077c565b6040516102419190611f82565b60405180910390f35b34801561025657600080fd5b5061026a610265366004611fef565b61080e565b6040519015158152602001610241565b34801561028657600080fd5b5061026a61029536600461201b565b60166020526000908152604090205460ff1681565b3480156102b657600080fd5b506102ca6102c5366004612038565b610825565b005b3480156102d857600080fd5b506002545b604051908152602001610241565b3480156102f757600080fd5b506102dd60145481565b34801561030d57600080fd5b506102ca61031c36600461206a565b61094c565b34801561032d57600080fd5b506102dd60135481565b34801561034357600080fd5b5061026a610352366004612085565b610990565b34801561036357600080fd5b5060405160128152602001610241565b34801561037f57600080fd5b5061026a61038e366004611fef565b6109f9565b34801561039f57600080fd5b506103c77f000000000000000000000000bf5e2d218fcc49f11ee78c4f6fe7a16f97ae2aa081565b6040516001600160a01b039091168152602001610241565b3480156103eb57600080fd5b5061026a6103fa36600461201b565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561042457600080fd5b5061026a6104333660046120c6565b610a2f565b34801561044457600080fd5b506102ca61045336600461201b565b610a6a565b34801561046457600080fd5b50600b5461026a90610100900460ff1681565b34801561048357600080fd5b506102dd61049236600461201b565b6001600160a01b031660009081526020819052604090205490565b3480156104b957600080fd5b506102ca610ab6565b3480156104ce57600080fd5b506102ca6104dd3660046120df565b610b2a565b3480156104ee57600080fd5b506005546001600160a01b03166103c7565b34801561050c57600080fd5b50610234610b7f565b34801561052157600080fd5b5061026a61053036600461201b565b60176020526000908152604090205460ff1681565b34801561055157600080fd5b5061026a610560366004611fef565b610b8e565b34801561057157600080fd5b5061026a610580366004611fef565b610bdd565b34801561059157600080fd5b50600b5461026a9062010000900460ff1681565b3480156105b157600080fd5b506102ca610bea565b3480156105c657600080fd5b506102ca6105d53660046120df565b610c25565b3480156105e657600080fd5b506102ca6105f53660046120df565b610c7a565b34801561060657600080fd5b506102ca6106153660046120c6565b610d64565b34801561062657600080fd5b506102ca610635366004612114565b610e44565b34801561064657600080fd5b50600d54600e54600f5460105460115460125461066595949392919086565b604080519687526020870195909552938501929092526060840152608083015260a082015260c001610241565b34801561069e57600080fd5b506102dd6106ad366004612146565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106e457600080fd5b506102ca6106f33660046120df565b610f48565b34801561070457600080fd5b506102ca61071336600461201b565b610f9d565b34801561072457600080fd5b5061026a61073336600461201b565b60186020526000908152604090205460ff1681565b34801561075457600080fd5b506103c77f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60606003805461078b9061217f565b80601f01602080910402602001604051908101604052809291908181526020018280546107b79061217f565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b600061081b3384846110ee565b5060015b92915050565b6005546001600160a01b031633146108585760405162461bcd60e51b815260040161084f906121ba565b60405180910390fd5b606461086360025490565b61086d9190612205565b6103e88361087a60025490565b6108849190612227565b61088e9190612205565b10156108ac5760405162461bcd60e51b815260040161084f90612246565b60646108b760025490565b6108c19190612205565b6103e8826108ce60025490565b6108d89190612227565b6108e29190612205565b10156109005760405162461bcd60e51b815260040161084f90612246565b6103e88261090d60025490565b6109179190612227565b6109219190612205565b6007556103e88161093160025490565b61093b9190612227565b6109459190612205565b6008555050565b6005546001600160a01b031633146109765760405162461bcd60e51b815260040161084f906121ba565b600b80549115156101000261ff0019909216919091179055565b600061099d848484611213565b6109ef84336109ea85604051806060016040528060288152602001612469602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906118b1565b6110ee565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161081b9185906109ea9086611088565b6005546000906001600160a01b03163314610a5c5760405162461bcd60e51b815260040161084f906121ba565b50600a81905560015b919050565b6005546001600160a01b03163314610a945760405162461bcd60e51b815260040161084f906121ba565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610ae05760405162461bcd60e51b815260040161084f906121ba565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610b545760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b60606004805461078b9061217f565b600061081b33846109ea8560405180606001604052806025815260200161241e602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906118b1565b600061081b338484611213565b6005546001600160a01b03163314610c145760405162461bcd60e51b815260040161084f906121ba565b600b805461ffff1916610101179055565b6005546001600160a01b03163314610c4f5760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ca45760405162461bcd60e51b815260040161084f906121ba565b7f000000000000000000000000bf5e2d218fcc49f11ee78c4f6fe7a16f97ae2aa06001600160a01b0316826001600160a01b03161415610d395760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526936b0b935b2ba2830b4b960b11b606482015260840161084f565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d8e5760405162461bcd60e51b815260040161084f906121ba565b6064610d9960025490565b610da39190612205565b6103e882610db060025490565b610dba9190612227565b610dc49190612205565b1015610e1d5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b606482015260840161084f565b6103e881610e2a60025490565b610e349190612227565b610e3e9190612205565b60095550565b6005546001600160a01b03163314610e6e5760405162461bcd60e51b815260040161084f906121ba565b600e849055600f839055610e828385612294565b600d5560118290556012819055610e998183612294565b601055600d5460091015610eef5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203925206f72206c65737300000000604482015260640161084f565b60105460091015610f425760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203925206f72206c65737300000000604482015260640161084f565b50505050565b6005546001600160a01b03163314610f725760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fc75760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03811661102c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084f565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806110958385612294565b9050838110156110e75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161084f565b9392505050565b6001600160a01b0383166111505760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161084f565b6001600160a01b0382166111b15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161084f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166112395760405162461bcd60e51b815260040161084f906122ac565b6001600160a01b03821661125f5760405162461bcd60e51b815260040161084f906122f1565b6001600160a01b0382166000908152600c602052604090205460ff161580156112a157506001600160a01b0383166000908152600c602052604090205460ff16155b6113075760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b606482015260840161084f565b8061131d57611318838360006118eb565b505050565b6005546001600160a01b0384811691161480159061134957506005546001600160a01b03838116911614155b801561135e5750600b5462010000900460ff16155b156115ed57600b5460ff166113f1576001600160a01b03831660009081526015602052604090205460ff16806113ac57506001600160a01b03821660009081526015602052604090205460ff165b6113f15760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161084f565b6001600160a01b03831660009081526018602052604090205460ff16801561143257506001600160a01b03821660009081526016602052604090205460ff16155b156114ac576007548111156114a75760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161084f565b611563565b6001600160a01b03821660009081526018602052604090205460ff1680156114ed57506001600160a01b03831660009081526016602052604090205460ff16155b15611563576008548111156115635760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161084f565b6001600160a01b03821660009081526017602052604090205460ff166115ed576009546001600160a01b0383166000908152602081905260409020546115a99083612294565b11156115ed5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161084f565b30600090815260208190526040902054600a54811080159081906116185750600b54610100900460ff165b801561162d5750600b5462010000900460ff16155b801561165157506001600160a01b03841660009081526018602052604090205460ff165b801561167657506001600160a01b03851660009081526015602052604090205460ff16155b801561169b57506001600160a01b03841660009081526015602052604090205460ff16155b156116c657600b805462ff00001916620100001790556116b96119f4565b600b805462ff0000191690555b600b546001600160a01b03861660009081526015602052604090205460ff6201000090920482161591168061171357506001600160a01b03851660009081526015602052604090205460ff165b1561171c575060005b6000811561189d576001600160a01b03861660009081526018602052604090205460ff16801561174d575060105415155b156117d75760105461176d90606490611767908890611b93565b90611c12565b601054601254919250906117819083612227565b61178b9190612205565b6014600082825461179c9190612294565b90915550506010546011546117b19083612227565b6117bb9190612205565b601360008282546117cc9190612294565b9091555061187f9050565b6001600160a01b03871660009081526018602052604090205460ff1680156118005750600d5415155b1561187f57600d5461181a90606490611767908890611b93565b600d54600f549192509061182e9083612227565b6118389190612205565b601460008282546118499190612294565b9091555050600d54600e5461185e9083612227565b6118689190612205565b601360008282546118799190612294565b90915550505b8015611890576118908730836118eb565b61189a8186612334565b94505b6118a88787876118eb565b50505050505050565b600081848411156118d55760405162461bcd60e51b815260040161084f9190611f82565b5060006118e28486612334565b95945050505050565b6001600160a01b0383166119115760405162461bcd60e51b815260040161084f906122ac565b6001600160a01b0382166119375760405162461bcd60e51b815260040161084f906122f1565b61197481604051806060016040528060268152602001612443602691396001600160a01b03861660009081526020819052604090205491906118b1565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546119a39082611088565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611206565b3060009081526020819052604081205490506000601354601454611a189190612294565b90506000821580611a27575081155b15611a3157505050565b600a54611a3f906014612227565b831115611a5757600a54611a54906014612227565b92505b600060028360145486611a6a9190612227565b611a749190612205565b611a7e9190612205565b90506000611a8c8583611c54565b905047611a9882611c96565b6000611aa44783611c54565b90506000611ac18761176760135485611b9390919063ffffffff16565b90506000611acf8284612334565b6000601481905560135590508515801590611aea5750600081115b15611b3357611af98682611e65565b60408051868152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611b80576040519150601f19603f3d011682016040523d82523d6000602084013e611b85565b606091505b505050505050505050505050565b600082611ba25750600061081f565b6000611bae8385612227565b905082611bbb8583612205565b146110e75760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161084f565b60006110e783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611f54565b60006110e783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506118b1565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ccb57611ccb61234b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611d4457600080fd5b505afa158015611d58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d7c9190612361565b81600181518110611d8f57611d8f61234b565b60200260200101906001600160a01b031690816001600160a01b031681525050611dda307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110ee565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611e2f90859060009086903090429060040161237e565b600060405180830381600087803b158015611e4957600080fd5b505af1158015611e5d573d6000803e3d6000fd5b505050505050565b611e90307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110ee565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c4016060604051808303818588803b158015611f1457600080fd5b505af1158015611f28573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611f4d91906123ef565b5050505050565b60008183611f755760405162461bcd60e51b815260040161084f9190611f82565b5060006118e28486612205565b600060208083528351808285015260005b81811015611faf57858101830151858201604001528201611f93565b81811115611fc1576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611fec57600080fd5b50565b6000806040838503121561200257600080fd5b823561200d81611fd7565b946020939093013593505050565b60006020828403121561202d57600080fd5b81356110e781611fd7565b6000806040838503121561204b57600080fd5b50508035926020909101359150565b80358015158114610a6557600080fd5b60006020828403121561207c57600080fd5b6110e78261205a565b60008060006060848603121561209a57600080fd5b83356120a581611fd7565b925060208401356120b581611fd7565b929592945050506040919091013590565b6000602082840312156120d857600080fd5b5035919050565b600080604083850312156120f257600080fd5b82356120fd81611fd7565b915061210b6020840161205a565b90509250929050565b6000806000806080858703121561212a57600080fd5b5050823594602084013594506040840135936060013592509050565b6000806040838503121561215957600080fd5b823561216481611fd7565b9150602083013561217481611fd7565b809150509250929050565b600181811c9082168061219357607f821691505b602082108114156121b457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008261222257634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612241576122416121ef565b500290565b6020808252602e908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e747360408201526d206c6f776572207468616e20312560901b606082015260800190565b600082198211156122a7576122a76121ef565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612346576123466121ef565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561237357600080fd5b81516110e781611fd7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123ce5784516001600160a01b0316835293830193918301916001016123a9565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561240457600080fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212201cf49fb666b2b9c00e6e3ba36891eda1b1f80b9810aa09264b105803736cff1b64736f6c63430008090033

Deployed Bytecode Sourcemap

21027:12170:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4277:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6437:168;;;;;;;;;;-1:-1:-1;6437:168:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;6437:168:0;1072:187:1;22293:63:0;;;;;;;;;;-1:-1:-1;22293:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25115:479;;;;;;;;;;-1:-1:-1;25115:479:0;;;;;:::i;:::-;;:::i;:::-;;5394:107;;;;;;;;;;-1:-1:-1;5481:12:0;;5394:107;;;1915:25:1;;;1903:2;1888:18;5394:107:0;1769:177:1;22137:33:0;;;;;;;;;;;;;;;;25971:101;;;;;;;;;;-1:-1:-1;25971:101:0;;;;;:::i;:::-;;:::i;22097:33::-;;;;;;;;;;;;;;;;7087:354;;;;;;;;;;-1:-1:-1;7087:354:0;;;;;:::i;:::-;;:::i;5237:92::-;;;;;;;;;;-1:-1:-1;5237:92:0;;5319:2;2904:36:1;;2892:2;2877:18;5237:92:0;2762:184:1;7850:217:0;;;;;;;;;;-1:-1:-1;7850:217:0;;;;;:::i;:::-;;:::i;21150:38::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3115:32:1;;;3097:51;;3085:2;3070:18;21150:38:0;2951:203:1;27554:125:0;;;;;;;;;;-1:-1:-1;27554:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;27643:28:0;27619:4;27643:28;;;:19;:28;;;;;;;;;27554:125;24947:158;;;;;;;;;;-1:-1:-1;24947:158:0;;;;;:::i;:::-;;:::i;27421:125::-;;;;;;;;;;-1:-1:-1;27421:125:0;;;;;:::i;:::-;;:::i;21490:31::-;;;;;;;;;;-1:-1:-1;21490:31:0;;;;;;;;;;;5564:126;;;;;;;;;;-1:-1:-1;5564:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;5664:18:0;5637:7;5664:18;;;;;;;;;;;;5564:126;13699:148;;;;;;;;;;;;;:::i;27061:144::-;;;;;;;;;;-1:-1:-1;27061:144:0;;;;;:::i;:::-;;:::i;13058:78::-;;;;;;;;;;-1:-1:-1;13122:6:0;;-1:-1:-1;;;;;13122:6:0;13058:78;;4495:103;;;;;;;;;;;;;:::i;22363:58::-;;;;;;;;;;-1:-1:-1;22363:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;8570:268;;;;;;;;;;-1:-1:-1;8570:268:0;;;;;:::i;:::-;;:::i;5903:174::-;;;;;;;;;;-1:-1:-1;5903:174:0;;;;;:::i;:::-;;:::i;21528:22::-;;;;;;;;;;-1:-1:-1;21528:22:0;;;;;;;;;;;24767:106;;;;;;;;;;;;;:::i;26771:132::-;;;;;;;;;;-1:-1:-1;26771:132:0;;;;;:::i;:::-;;:::i;27215:196::-;;;;;;;;;;-1:-1:-1;27215:196:0;;;;;:::i;:::-;;:::i;25604:271::-;;;;;;;;;;-1:-1:-1;25604:271:0;;;;;:::i;:::-;;:::i;26080:679::-;;;;;;;;;;-1:-1:-1;26080:679:0;;;;;:::i;:::-;;:::i;21870:206::-;;;;;;;;;;-1:-1:-1;21870:206:0;;;;;;;;;;;;;;;;;;;;;;;;;4341:25:1;;;4397:2;4382:18;;4375:34;;;;4425:18;;;4418:34;;;;4483:2;4468:18;;4461:34;4526:3;4511:19;;4504:35;4570:3;4555:19;;4548:35;4328:3;4313:19;21870:206:0;4054:535:1;6140:150:0;;;;;;;;;;-1:-1:-1;6140:150:0;;;;;:::i;:::-;-1:-1:-1;;;;;6255:18:0;;;6228:7;6255:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6140:150;26909:146;;;;;;;;;;-1:-1:-1;26909:146:0;;;;;:::i;:::-;;:::i;14002:244::-;;;;;;;;;;-1:-1:-1;14002:244:0;;;;;:::i;:::-;;:::i;22579:42::-;;;;;;;;;;-1:-1:-1;22579:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21101;;;;;;;;;;;;;;;4277:99;4330:13;4363:5;4356:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4277:99;:::o;6437:168::-;6519:4;6536:39;3426:10;6559:7;6568:6;6536:8;:39::i;:::-;-1:-1:-1;6593:4:0;6437:168;;;;;:::o;25115:479::-;13269:6;;-1:-1:-1;;;;;13269:6:0;3426:10;13269:22;13261:67;;;;-1:-1:-1;;;13261:67:0;;;;;;;:::i;:::-;;;;;;;;;25277:3:::1;25261:13;5481:12:::0;;;5394:107;25261:13:::1;:19;;;;:::i;:::-;25251:4;25238:9;25222:13;5481:12:::0;;;5394:107;25222:13:::1;:25;;;;:::i;:::-;25221:34;;;;:::i;:::-;25220:61;;25212:120;;;;-1:-1:-1::0;;;25212:120:0::1;;;;;;;:::i;:::-;25409:3;25393:13;5481:12:::0;;;5394:107;25393:13:::1;:19;;;;:::i;:::-;25383:4;25369:10;25353:13;5481:12:::0;;;5394:107;25353:13:::1;:26;;;;:::i;:::-;25352:35;;;;:::i;:::-;25351:62;;25343:121;;;;-1:-1:-1::0;;;25343:121:0::1;;;;;;;:::i;:::-;25520:4;25507:9;25491:13;5481:12:::0;;;5394:107;25491:13:::1;:25;;;;:::i;:::-;25490:34;;;;:::i;:::-;25475:12;:49:::0;25582:4:::1;25568:10:::0;25552:13:::1;5481:12:::0;;;5394:107;25552:13:::1;:26;;;;:::i;:::-;25551:35;;;;:::i;:::-;25535:13;:51:::0;-1:-1:-1;;25115:479:0:o;25971:101::-;13269:6;;-1:-1:-1;;;;;13269:6:0;3426:10;13269:22;13261:67;;;;-1:-1:-1;;;13261:67:0;;;;;;;:::i;:::-;26043:11:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;26043:21:0;;::::1;::::0;;;::::1;::::0;;25971:101::o;7087:354::-;7226:4;7243:36;7253:6;7261:9;7272:6;7243:9;:36::i;:::-;7290:121;7299:6;3426:10;7321:89;7359:6;7321:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7321:19:0;;;;;;:11;:19;;;;;;;;3426:10;7321:33;;;;;;;;;;:37;:89::i;:::-;7290:8;:121::i;:::-;-1:-1:-1;7429:4:0;7087:354;;;;;:::o;7850:217::-;3426:10;7937:4;7986:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;7986:34:0;;;;;;;;;;7937:4;;7954:83;;7977:7;;7986:50;;8025:10;7986:38;:50::i;24947:158::-;13269:6;;25028:4;;-1:-1:-1;;;;;13269:6:0;3426:10;13269:22;13261:67;;;;-1:-1:-1;;;13261:67:0;;;;;;;:::i;:::-;-1:-1:-1;25044:19:0::1;:31:::0;;;25093:4:::1;13339:1;24947:158:::0;;;:::o;27421:125::-;13269:6;;-1:-1:-1;;;;;13269:6:0;3426:10;13269:22;13261:67;;;;-1:-1:-1;;;13261:67:0;;;;;;;:::i;:::-;27504:15:::1;:34:::0;;-1:-1:-1;;;;;;27504:34:0::1;-1:-1:-1::0;;;;;27504:34:0;;;::::1;::::0;;;::::1;::::0;;27421:125::o;13699:148::-;13269:6;;-1:-1:-1;;;;;13269:6:0;3426:10;13269:22;13261:67;;;;-1:-1:-1;;;13261:67:0;;;;;;;:::i;:::-;13790:6:::1;::::0;13769:40:::1;::::0;13806:1:::1;::::0;-1:-1:-1;;;;;13790:6:0::1;::::0;13769:40:::1;::::0;13806:1;;13769:40:::1;13820:6;:19:::0;;-1:-1:-1;;;;;;13820:19:0::1;::::0;;13699:148::o;27061:144::-;13269:6;;-1:-1:-1;;;;;13269:6:0;3426:10;13269:22;13261:67;;;;-1:-1:-1;;;13261:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27151:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;27151:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27061:144::o;4495:103::-;4550:13;4583:7;4576:14;;;;;:::i;8570:268::-;8662:4;8679:129;3426:10;8702:7;8711:96;8750:15;8711:96;;;;;;;;;;;;;;;;;3426:10;8711:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8711:34:0;;;;;;;;;;;;:38;:96::i;5903:174::-;5988:4;6005:42;3426:10;6029:9;6040:6;6005:9;:42::i;24767:106::-;13269:6;;-1:-1:-1;;;;;13269:6:0;3426:10;13269:22;13261:67;;;;-1:-1:-1;;;13261:67:0;;;;;;;:::i;:::-;24820:9:::1;:16:::0;;-1:-1:-1;;24847:18:0;;;;;24767:106::o;26771:132::-;13269:6;;-1:-1:-1;;;;;13269:6:0;3426:10;13269:22;13261:67;;;;-1:-1:-1;;;13261:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26856:28:0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:39;;-1:-1:-1;;26856:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26771:132::o;27215:196::-;13269:6;;-1:-1:-1;;;;;13269:6:0;3426:10;13269:22;13261:67;;;;-1:-1:-1;;;13261:67:0;;;;;;;:::i;:::-;27308:13:::1;-1:-1:-1::0;;;;;27300:21:0::1;:4;-1:-1:-1::0;;;;;27300:21:0::1;;;27292:76;;;::::0;-1:-1:-1;;;27292:76:0;;7112:2:1;27292:76:0::1;::::0;::::1;7094:21:1::0;7151:2;7131:18;;;7124:30;7190:34;7170:18;;;7163:62;-1:-1:-1;;;7241:18:1;;;7234:40;7291:19;;27292:76:0::1;6910:406:1::0;27292:76:0::1;-1:-1:-1::0;;;;;27379:16:0;;;::::1;;::::0;;;:10:::1;:16;::::0;;;;:24;;-1:-1:-1;;27379:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27215:196::o;25604:271::-;13269:6;;-1:-1:-1;;;;;13269:6:0;3426:10;13269:22;13261:67;;;;-1:-1:-1;;;13261:67:0;;;;;;;:::i;:::-;25757:3:::1;25741:13;5481:12:::0;;;5394:107;25741:13:::1;:19;;;;:::i;:::-;25731:4;25714:13;25698;5481:12:::0;;;5394:107;25698:13:::1;:29;;;;:::i;:::-;25697:38;;;;:::i;:::-;25696:65;;25688:112;;;::::0;-1:-1:-1;;;25688:112:0;;7523:2:1;25688:112:0::1;::::0;::::1;7505:21:1::0;7562:2;7542:18;;;7535:30;7601:34;7581:18;;;7574:62;-1:-1:-1;;;7652:18:1;;;7645:32;7694:19;;25688:112:0::1;7321:398:1::0;25688:112:0::1;25863:4;25846:13;25830;5481:12:::0;;;5394:107;25830:13:::1;:29;;;;:::i;:::-;25829:38;;;;:::i;:::-;25811:15;:56:::0;-1:-1:-1;25604:271:0:o;26080:679::-;13269:6;;-1:-1:-1;;;;;13269:6:0;3426:10;13269:22;13261:67;;;;-1:-1:-1;;;13261:67:0;;;;;;;:::i;:::-;26234:21;:40;;;26285:21;:40;;;26357:45:::1;26309:16:::0;26258;26357:45:::1;:::i;:::-;26336:5;:66:::0;26415:22;:42;;;26468:22;:42;;;26543:47:::1;26493:17:::0;26440;26543:47:::1;:::i;:::-;26521:19:::0;:69;:5:::1;26609:18:::0;26631:1:::1;-1:-1:-1::0;26609:23:0::1;26601:64;;;::::0;-1:-1:-1;;;26601:64:0;;8059:2:1;26601:64:0::1;::::0;::::1;8041:21:1::0;8098:2;8078:18;;;8071:30;8137;8117:18;;;8110:58;8185:18;;26601:64:0::1;7857:352:1::0;26601:64:0::1;26687:19:::0;;26710:1:::1;-1:-1:-1::0;26687:24:0::1;26679:65;;;::::0;-1:-1:-1;;;26679:65:0;;8059:2:1;26679:65:0::1;::::0;::::1;8041:21:1::0;8098:2;8078:18;;;8071:30;8137;8117:18;;;8110:58;8185:18;;26679:65:0::1;7857:352:1::0;26679:65:0::1;26080:679:::0;;;;:::o;26909:146::-;13269:6;;-1:-1:-1;;;;;13269:6:0;3426:10;13269:22;13261:67;;;;-1:-1:-1;;;13261:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27001:35:0;;;::::1;;::::0;;;:26:::1;:35;::::0;;;;:46;;-1:-1:-1;;27001:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26909:146::o;14002:244::-;13269:6;;-1:-1:-1;;;;;13269:6:0;3426:10;13269:22;13261:67;;;;-1:-1:-1;;;13261:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14091:22:0;::::1;14083:73;;;::::0;-1:-1:-1;;;14083:73:0;;8416:2:1;14083:73:0::1;::::0;::::1;8398:21:1::0;8455:2;8435:18;;;8428:30;8494:34;8474:18;;;8467:62;-1:-1:-1;;;8545:18:1;;;8538:36;8591:19;;14083:73:0::1;8214:402:1::0;14083:73:0::1;14193:6;::::0;14172:38:::1;::::0;-1:-1:-1;;;;;14172:38:0;;::::1;::::0;14193:6:::1;::::0;14172:38:::1;::::0;14193:6:::1;::::0;14172:38:::1;14221:6;:17:::0;;-1:-1:-1;;;;;;14221:17:0::1;-1:-1:-1::0;;;;;14221:17:0;;;::::1;::::0;;;::::1;::::0;;14002:244::o;11323:180::-;11380:7;;11412:5;11416:1;11412;:5;:::i;:::-;11400:17;;11441:1;11436;:6;;11428:46;;;;-1:-1:-1;;;11428:46:0;;8823:2:1;11428:46:0;;;8805:21:1;8862:2;8842:18;;;8835:30;8901:29;8881:18;;;8874:57;8948:18;;11428:46:0;8621:351:1;11428:46:0;11494:1;11323:180;-1:-1:-1;;;11323:180:0:o;10896:382::-;-1:-1:-1;;;;;11032:19:0;;11024:68;;;;-1:-1:-1;;;11024:68:0;;9179:2:1;11024:68:0;;;9161:21:1;9218:2;9198:18;;;9191:30;9257:34;9237:18;;;9230:62;-1:-1:-1;;;9308:18:1;;;9301:34;9352:19;;11024:68:0;8977:400:1;11024:68:0;-1:-1:-1;;;;;11111:21:0;;11103:68;;;;-1:-1:-1;;;11103:68:0;;9584:2:1;11103:68:0;;;9566:21:1;9623:2;9603:18;;;9596:30;9662:34;9642:18;;;9635:62;-1:-1:-1;;;9713:18:1;;;9706:32;9755:19;;11103:68:0;9382:398:1;11103:68:0;-1:-1:-1;;;;;11186:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11238:32;;1915:25:1;;;11238:32:0;;1888:18:1;11238:32:0;;;;;;;;10896:382;;;:::o;27687:3242::-;-1:-1:-1;;;;;27828:20:0;;27820:70;;;;-1:-1:-1;;;27820:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27909:23:0;;27901:71;;;;-1:-1:-1;;;27901:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28002:21:0;;;;;;:10;:21;;;;;;;;28001:22;:45;;;;-1:-1:-1;;;;;;28028:18:0;;;;;;:10;:18;;;;;;;;28027:19;28001:45;27993:107;;;;-1:-1:-1;;;27993:107:0;;10797:2:1;27993:107:0;;;10779:21:1;10836:2;10816:18;;;10809:30;10875:34;10855:18;;;10848:62;-1:-1:-1;;;10926:18:1;;;10919:47;10983:19;;27993:107:0;10595:413:1;27993:107:0;28125:11;28121:102;;28153:37;28169:6;28177:9;28188:1;28153:15;:37::i;:::-;27687:3242;;;:::o;28121:102::-;13122:6;;-1:-1:-1;;;;;28253:17:0;;;13122:6;;28253:17;;;;:54;;-1:-1:-1;13122:6:0;;-1:-1:-1;;;;;28287:20:0;;;13122:6;;28287:20;;28253:54;:82;;;;-1:-1:-1;28325:10:0;;;;;;;28324:11;28253:82;28235:888;;;28369:9;;;;28364:147;;-1:-1:-1;;;;;28407:27:0;;;;;;:19;:27;;;;;;;;;:61;;-1:-1:-1;;;;;;28438:30:0;;;;;;:19;:30;;;;;;;;28407:61;28399:96;;;;-1:-1:-1;;;28399:96:0;;11215:2:1;28399:96:0;;;11197:21:1;11254:2;11234:18;;;11227:30;-1:-1:-1;;;11273:18:1;;;11266:52;11335:18;;28399:96:0;11013:346:1;28399:96:0;-1:-1:-1;;;;;28529:18:0;;;;;;:10;:18;;;;;;;;:65;;;;-1:-1:-1;;;;;;28552:42:0;;;;;;:31;:42;;;;;;;;28551:43;28529:65;28525:410;;;28633:12;;28623:6;:22;;28615:88;;;;-1:-1:-1;;;28615:88:0;;11566:2:1;28615:88:0;;;11548:21:1;11605:2;11585:18;;;11578:30;11644:34;11624:18;;;11617:62;-1:-1:-1;;;11695:18:1;;;11688:51;11756:19;;28615:88:0;11364:417:1;28615:88:0;28525:410;;;-1:-1:-1;;;;;28743:21:0;;;;;;:10;:21;;;;;;;;:65;;;;-1:-1:-1;;;;;;28769:39:0;;;;;;:31;:39;;;;;;;;28768:40;28743:65;28739:196;;;28847:13;;28837:6;:23;;28829:90;;;;-1:-1:-1;;;28829:90:0;;11988:2:1;28829:90:0;;;11970:21:1;12027:2;12007:18;;;12000:30;12066:34;12046:18;;;12039:62;-1:-1:-1;;;12117:18:1;;;12110:52;12179:19;;28829:90:0;11786:418:1;28829:90:0;-1:-1:-1;;;;;28956:37:0;;;;;;:26;:37;;;;;;;;28951:159;;29055:15;;-1:-1:-1;;;;;5664:18:0;;5637:7;5664:18;;;;;;;;;;;29022:29;;:6;:29;:::i;:::-;:48;;29014:80;;;;-1:-1:-1;;;29014:80:0;;12411:2:1;29014:80:0;;;12393:21:1;12450:2;12430:18;;;12423:30;-1:-1:-1;;;12469:18:1;;;12462:49;12528:18;;29014:80:0;12209:343:1;29014:80:0;29198:4;29149:28;5664:18;;;;;;;;;;;29257:19;;29233:43;;;;;;;29307:35;;-1:-1:-1;29331:11:0;;;;;;;29307:35;:63;;;;-1:-1:-1;29360:10:0;;;;;;;29359:11;29307:63;:101;;;;-1:-1:-1;;;;;;29387:21:0;;;;;;:10;:21;;;;;;;;29307:101;:146;;;;-1:-1:-1;;;;;;29426:27:0;;;;;;:19;:27;;;;;;;;29425:28;29307:146;:194;;;;-1:-1:-1;;;;;;29471:30:0;;;;;;:19;:30;;;;;;;;29470:31;29307:194;29289:326;;;29528:10;:17;;-1:-1:-1;;29528:17:0;;;;;29560:10;:8;:10::i;:::-;29585;:18;;-1:-1:-1;;29585:18:0;;;29289:326;29644:10;;-1:-1:-1;;;;;29756:27:0;;29628:12;29756:27;;;:19;:27;;;;;;29644:10;;;;;;;29643:11;;29756:27;;:61;;-1:-1:-1;;;;;;29787:30:0;;;;;;:19;:30;;;;;;;;29756:61;29752:109;;;-1:-1:-1;29844:5:0;29752:109;29874:12;29979:7;29975:892;;;-1:-1:-1;;;;;30045:21:0;;;;;;:10;:21;;;;;;;;:48;;;;-1:-1:-1;30070:19:0;;:23;;30045:48;30041:673;;;30132:19;;30121:40;;30157:3;;30121:31;;:6;;:10;:31::i;:::-;:35;;:40::i;:::-;30234:19;;30209:22;;30114:47;;-1:-1:-1;30234:19:0;30202:29;;30114:47;30202:29;:::i;:::-;:51;;;;:::i;:::-;30180:18;;:73;;;;;;;:::i;:::-;;;;-1:-1:-1;;30326:19:0;;30301:22;;30294:29;;:4;:29;:::i;:::-;:51;;;;:::i;:::-;30272:18;;:73;;;;;;;:::i;:::-;;;;-1:-1:-1;30041:673:0;;-1:-1:-1;30041:673:0;;-1:-1:-1;;;;;30407:18:0;;;;;;:10;:18;;;;;;;;:44;;;;-1:-1:-1;30429:5:0;:18;:22;;30407:44;30403:311;;;30490:5;:18;30479:39;;30514:3;;30479:30;;:6;;:10;:30::i;:39::-;30590:5;:18;30566:21;;30472:46;;-1:-1:-1;30590:18:0;30559:28;;30472:46;30559:28;:::i;:::-;:49;;;;:::i;:::-;30537:18;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;;30680:5:0;:18;30656:21;;30649:28;;:4;:28;:::i;:::-;:49;;;;:::i;:::-;30627:18;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;;30403:311:0;30734:8;;30730:93;;30763:44;30779:6;30795:4;30802;30763:15;:44::i;:::-;30839:14;30849:4;30839:14;;:::i;:::-;;;29975:892;30879:42;30895:6;30903:9;30914:6;30879:15;:42::i;:::-;27809:3120;;;;27687:3242;;;:::o;11664:191::-;11749:7;11785:12;11777:6;;;;11769:29;;;;-1:-1:-1;;;11769:29:0;;;;;;;;:::i;:::-;-1:-1:-1;11809:9:0;11821:5;11825:1;11821;:5;:::i;:::-;11809:17;11664:191;-1:-1:-1;;;;;11664:191:0:o;9328:521::-;-1:-1:-1;;;;;9468:20:0;;9460:70;;;;-1:-1:-1;;;9460:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9549:23:0;;9541:71;;;;-1:-1:-1;;;9541:71:0;;;;;;;:::i;:::-;9653;9675:6;9653:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9653:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;9633:17:0;;;:9;:17;;;;;;;;;;;:91;;;;9758:20;;;;;;;:32;;9783:6;9758:24;:32::i;:::-;-1:-1:-1;;;;;9735:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;9806:35;1915:25:1;;;9735:20:0;;9806:35;;;;;;1888:18:1;9806:35:0;1769:177:1;31857:1335:0;31945:4;31896:28;5664:18;;;;;;;;;;;31896:55;;31962:14;32000:18;;31979;;:39;;;;:::i;:::-;31962:56;-1:-1:-1;32030:12:0;32059:25;;;:40;;-1:-1:-1;32088:11:0;;32059:40;32055:57;;;32103:7;;;31857:1335::o;32055:57::-;32151:19;;:24;;32173:2;32151:24;:::i;:::-;32128:20;:47;32124:127;;;32215:19;;:24;;32237:2;32215:24;:::i;:::-;32192:47;;32124:127;32312:23;32391:1;32382:6;32361:18;;32338:20;:41;;;;:::i;:::-;:50;;;;:::i;:::-;:54;;;;:::i;:::-;32312:80;-1:-1:-1;32403:26:0;32432:41;:20;32312:80;32432:24;:41::i;:::-;32403:70;-1:-1:-1;32515:21:0;32549:36;32403:70;32549:16;:36::i;:::-;32600:18;32621:44;:21;32647:17;32621:25;:44::i;:::-;32600:65;;32679:23;32705:46;32744:6;32705:34;32720:18;;32705:10;:14;;:34;;;;:::i;:46::-;32679:72;-1:-1:-1;32762:23:0;32788:28;32679:72;32788:10;:28;:::i;:::-;32852:1;32831:18;:22;;;32864:18;:22;32762:54;-1:-1:-1;32905:19:0;;;;;:42;;;32946:1;32928:15;:19;32905:42;32901:192;;;32964:46;32977:15;32994;32964:12;:46::i;:::-;33030:51;;;12861:25:1;;;12917:2;12902:18;;12895:34;;;33030:51:0;;12834:18:1;33030:51:0;;;;;;;32901:192;33126:15;;33118:66;;-1:-1:-1;;;;;33126:15:0;;;;33156:21;;33118:66;;;;33156:21;33126:15;33118:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;31857:1335:0:o;11863:256::-;11920:7;11950:6;11946:47;;-1:-1:-1;11980:1:0;11973:8;;11946:47;12006:9;12018:5;12022:1;12018;:5;:::i;:::-;12006:17;-1:-1:-1;12051:1:0;12042:5;12046:1;12006:17;12042:5;:::i;:::-;:10;12034:56;;;;-1:-1:-1;;;12034:56:0;;13352:2:1;12034:56:0;;;13334:21:1;13391:2;13371:18;;;13364:30;13430:34;13410:18;;;13403:62;-1:-1:-1;;;13481:18:1;;;13474:31;13522:19;;12034:56:0;13150:397:1;12130:131:0;12187:7;12214:39;12218:1;12221;12214:39;;;;;;;;;;;;;;;;;:3;:39::i;11516:135::-;11573:7;11600:43;11604:1;11607;11600:43;;;;;;;;;;;;;;;;;:3;:43::i;30937:554::-;31085:16;;;31099:1;31085:16;;;;;;;;31061:21;;31085:16;;;;;;;;;;-1:-1:-1;31085:16:0;31061:40;;31130:4;31112;31117:1;31112:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31112:23:0;;;-1:-1:-1;;;;;31112:23:0;;;;;31156:6;-1:-1:-1;;;;;31156:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31146:4;31151:1;31146:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31146:23:0;;;-1:-1:-1;;;;;31146:23:0;;;;;31182:49;31199:4;31214:6;31223:7;31182:8;:49::i;:::-;31270:211;;-1:-1:-1;;;31270:211:0;;-1:-1:-1;;;;;31270:6:0;:57;;;;:211;;31342:7;;31364:1;;31408:4;;31435;;31455:15;;31270:211;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30988:503;30937:554;:::o;31499:350::-;31643:49;31660:4;31675:6;31684:7;31643:8;:49::i;:::-;31735:106;;-1:-1:-1;;;31735:106:0;;31787:4;31735:106;;;15398:34:1;;;15448:18;;;15441:34;;;31803:1:0;15491:18:1;;;15484:34;;;15534:18;;;15527:34;15577:19;;;15570:44;31825:15:0;15630:19:1;;;15623:35;31735:6:0;-1:-1:-1;;;;;31735:22:0;;;;31766:9;;15332:19:1;;31735:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31499:350;;:::o;12273:277::-;12358:7;12393:12;12386:5;12378:28;;;;-1:-1:-1;;;12378:28:0;;;;;;;;:::i;:::-;-1:-1:-1;12417:9:0;12429:5;12433:1;12429;:5;:::i;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;671:70;616:131;:::o;752:315::-;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1516:248::-;1584:6;1592;1645:2;1633:9;1624:7;1620:23;1616:32;1613:52;;;1661:1;1658;1651:12;1613:52;-1:-1:-1;;1684:23:1;;;1754:2;1739:18;;;1726:32;;-1:-1:-1;1516:248:1:o;1951:160::-;2016:20;;2072:13;;2065:21;2055:32;;2045:60;;2101:1;2098;2091:12;2116:180;2172:6;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:26;2280:9;2264:26;:::i;2301:456::-;2378:6;2386;2394;2447:2;2435:9;2426:7;2422:23;2418:32;2415:52;;;2463:1;2460;2453:12;2415:52;2502:9;2489:23;2521:31;2546:5;2521:31;:::i;:::-;2571:5;-1:-1:-1;2628:2:1;2613:18;;2600:32;2641:33;2600:32;2641:33;:::i;:::-;2301:456;;2693:7;;-1:-1:-1;;;2747:2:1;2732:18;;;;2719:32;;2301:456::o;3159:180::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;-1:-1:-1;3310:23:1;;3159:180;-1:-1:-1;3159:180:1:o;3344:315::-;3409:6;3417;3470:2;3458:9;3449:7;3445:23;3441:32;3438:52;;;3486:1;3483;3476:12;3438:52;3525:9;3512:23;3544:31;3569:5;3544:31;:::i;:::-;3594:5;-1:-1:-1;3618:35:1;3649:2;3634:18;;3618:35;:::i;:::-;3608:45;;3344:315;;;;;:::o;3664:385::-;3750:6;3758;3766;3774;3827:3;3815:9;3806:7;3802:23;3798:33;3795:53;;;3844:1;3841;3834:12;3795:53;-1:-1:-1;;3867:23:1;;;3937:2;3922:18;;3909:32;;-1:-1:-1;3988:2:1;3973:18;;3960:32;;4039:2;4024:18;4011:32;;-1:-1:-1;3664:385:1;-1:-1:-1;3664:385:1:o;4594:388::-;4662:6;4670;4723:2;4711:9;4702:7;4698:23;4694:32;4691:52;;;4739:1;4736;4729:12;4691:52;4778:9;4765:23;4797:31;4822:5;4797:31;:::i;:::-;4847:5;-1:-1:-1;4904:2:1;4889:18;;4876:32;4917:33;4876:32;4917:33;:::i;:::-;4969:7;4959:17;;;4594:388;;;;;:::o;5222:380::-;5301:1;5297:12;;;;5344;;;5365:61;;5419:4;5411:6;5407:17;5397:27;;5365:61;5472:2;5464:6;5461:14;5441:18;5438:38;5435:161;;;5518:10;5513:3;5509:20;5506:1;5499:31;5553:4;5550:1;5543:15;5581:4;5578:1;5571:15;5435:161;;5222:380;;;:::o;5607:356::-;5809:2;5791:21;;;5828:18;;;5821:30;5887:34;5882:2;5867:18;;5860:62;5954:2;5939:18;;5607:356::o;5968:127::-;6029:10;6024:3;6020:20;6017:1;6010:31;6060:4;6057:1;6050:15;6084:4;6081:1;6074:15;6100:217;6140:1;6166;6156:132;;6210:10;6205:3;6201:20;6198:1;6191:31;6245:4;6242:1;6235:15;6273:4;6270:1;6263:15;6156:132;-1:-1:-1;6302:9:1;;6100:217::o;6322:168::-;6362:7;6428:1;6424;6420:6;6416:14;6413:1;6410:21;6405:1;6398:9;6391:17;6387:45;6384:71;;;6435:18;;:::i;:::-;-1:-1:-1;6475:9:1;;6322:168::o;6495:410::-;6697:2;6679:21;;;6736:2;6716:18;;;6709:30;6775:34;6770:2;6755:18;;6748:62;-1:-1:-1;;;6841:2:1;6826:18;;6819:44;6895:3;6880:19;;6495:410::o;7724:128::-;7764:3;7795:1;7791:6;7788:1;7785:13;7782:39;;;7801:18;;:::i;:::-;-1:-1:-1;7837:9:1;;7724:128::o;9785:401::-;9987:2;9969:21;;;10026:2;10006:18;;;9999:30;10065:34;10060:2;10045:18;;10038:62;-1:-1:-1;;;10131:2:1;10116:18;;10109:35;10176:3;10161:19;;9785:401::o;10191:399::-;10393:2;10375:21;;;10432:2;10412:18;;;10405:30;10471:34;10466:2;10451:18;;10444:62;-1:-1:-1;;;10537:2:1;10522:18;;10515:33;10580:3;10565:19;;10191:399::o;12557:125::-;12597:4;12625:1;12622;12619:8;12616:34;;;12630:18;;:::i;:::-;-1:-1:-1;12667:9:1;;12557:125::o;13684:127::-;13745:10;13740:3;13736:20;13733:1;13726:31;13776:4;13773:1;13766:15;13800:4;13797:1;13790:15;13816:251;13886:6;13939:2;13927:9;13918:7;13914:23;13910:32;13907:52;;;13955:1;13952;13945:12;13907:52;13987:9;13981:16;14006:31;14031:5;14006:31;:::i;14072:980::-;14334:4;14382:3;14371:9;14367:19;14413:6;14402:9;14395:25;14439:2;14477:6;14472:2;14461:9;14457:18;14450:34;14520:3;14515:2;14504:9;14500:18;14493:31;14544:6;14579;14573:13;14610:6;14602;14595:22;14648:3;14637:9;14633:19;14626:26;;14687:2;14679:6;14675:15;14661:29;;14708:1;14718:195;14732:6;14729:1;14726:13;14718:195;;;14797:13;;-1:-1:-1;;;;;14793:39:1;14781:52;;14888:15;;;;14853:12;;;;14829:1;14747:9;14718:195;;;-1:-1:-1;;;;;;;14969:32:1;;;;14964:2;14949:18;;14942:60;-1:-1:-1;;;15033:3:1;15018:19;15011:35;14930:3;14072:980;-1:-1:-1;;;14072:980:1:o;15669:306::-;15757:6;15765;15773;15826:2;15814:9;15805:7;15801:23;15797:32;15794:52;;;15842:1;15839;15832:12;15794:52;15871:9;15865:16;15855:26;;15921:2;15910:9;15906:18;15900:25;15890:35;;15965:2;15954:9;15950:18;15944:25;15934:35;;15669:306;;;;;:::o

Swarm Source

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