ETH Price: $2,519.78 (+2.40%)
Gas: 0.79 Gwei

Token

World Record Egg Token (WREGG)
 

Overview

Max Total Supply

50,000,000 WREGG

Holders

41

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: WREGG
Balance
383,243.097624475788512864 WREGG

Value
$0.00
0x23709f57c61b91ceb2fc6bcdc3c0e746f5e39d55
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:
WREGG

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

///Website: http://wreggtoken.com/
///Telegram: https://t.me/wreggtoken
// 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 WREGG 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("World Record Egg Token", "WREGG") {
 
        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 = 5 * 1e7 * 1e18;

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

        _fees.buyMarketingFee = 15;
        _fees.buyLiquidityFee = 0;
        _fees.buyTotalFees = _fees.buyMarketingFee + _fees.buyLiquidityFee;

        _fees.sellMarketingFee = 25;
        _fees.sellLiquidityFee = 0;
        _fees.sellTotalFees = _fees.sellMarketingFee + _fees.sellLiquidityFee;


        marketingWallet = address(0xA722409DeDA39CD6c37Ffd7bfacDaAa01f1B4521); // 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 <= 16, "Must keep fees at 9% or less");   
        require(_fees.sellTotalFees <= 26, "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"}]

600b805461ffff19169055610180604052600060c081905260e0819052610100819052610120819052610140819052610160819052600d819055600e819055600f819055601081905560118190556012553480156200005d57600080fd5b50604080518082018252601681527f576f726c64205265636f72642045676720546f6b656e00000000000000000000602080830191825283518085019094526005845264575245474760d81b908401528151919291620000c091600391620007d9565b508051620000d6906004906020840190620007d9565b5050506000620000eb6200052b60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200018a57600080fd5b505afa1580156200019f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c591906200087f565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200021057600080fd5b505afa15801562000225573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024b91906200087f565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200029457600080fd5b505af1158015620002a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002cf91906200087f565b6001600160a01b0390811660a081905260805190911660009081526016602081905260408083208054600160ff1991821681179092559484529083208054909416811790935590620003296005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526016909252812080549092166001908117909255601590620003826005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526015909252812080549092166001908117909255601790620003db6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526017845282812080548616600190811790915560a0519092168152828120805486168317905560189093529120805490921617905560805162000452906000196200052f565b506a295be96e640669720000006200046c606482620008c0565b6007556200047c606482620008c0565b60085560646200048e826002620008e3565b6200049a9190620008c0565b600955612710620004ad826001620008e3565b620004b99190620008c0565b600a55600f600e8190556000808255620004d39162000905565b600d556019601181905560006012819055620004ef9162000905565b601055600680546001600160a01b03191673a722409deda39cd6c37ffd7bfacdaaa01f1b452117905562000524338262000547565b506200095d565b3390565b60006200053e33848462000647565b50600192915050565b6001600160a01b038216620005a35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620005bf816002546200076f60201b620010881790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620005f2918390620010886200076f821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316620006ab5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016200059a565b6001600160a01b0382166200070e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200059a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000806200077e838562000905565b905083811015620007d25760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200059a565b9392505050565b828054620007e79062000920565b90600052602060002090601f0160209004810192826200080b576000855562000856565b82601f106200082657805160ff191683800117855562000856565b8280016001018555821562000856579182015b828111156200085657825182559160200191906001019062000839565b506200086492915062000868565b5090565b5b8082111562000864576000815560010162000869565b6000602082840312156200089257600080fd5b81516001600160a01b0381168114620007d257600080fd5b634e487b7160e01b600052601160045260246000fd5b600082620008de57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615620009005762000900620008aa565b500290565b600082198211156200091b576200091b620008aa565b500190565b600181811c908216806200093557607f821691505b602082108114156200095757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516124c6620009ad600039600081816103a50152610ca601526000818161075a01528181611ced01528181611db501528181611df101528181611e6b0152611ec701526124c66000f3fe6080604052600436106102135760003560e01c80637571336a11610118578063c16dd4a4116100a0578063dd62ed3e1161006f578063dd62ed3e14610692578063e16830a8146106d8578063f2fde38b146106f8578063f5b3c3bf14610718578063f887ea401461074857600080fd5b8063c16dd4a4146105da578063c18bc195146105fa578063c6616ba11461061a578063d212a69a1461063a57600080fd5b8063a457c2d7116100e7578063a457c2d714610545578063a9059cbb14610565578063b886311514610585578063b9e418e7146105a5578063c0246668146105ba57600080fd5b80637571336a146104c25780638da5cb5b146104e257806395d89b411461050057806396880b171461051557600080fd5b8063313ce5671161019b578063555467a11161016a578063555467a1146104185780635d098b38146104385780636ddd17131461045857806370a0823114610477578063715018a6146104ad57600080fd5b8063313ce56714610357578063395093511461037357806349bd5a5e146103935780634fbee193146103df57600080fd5b806318160ddd116101e257806318160ddd146102cc5780631a8145bb146102eb5780631c6e8a75146103015780631f3fed8f1461032157806323b872dd1461033757600080fd5b806306fdde031461021f578063095ea7b31461024a57806310d5de531461027a57806311a582c3146102aa57600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b5061023461077c565b6040516102419190611f82565b60405180910390f35b34801561025657600080fd5b5061026a610265366004611fef565b61080e565b6040519015158152602001610241565b34801561028657600080fd5b5061026a61029536600461201b565b60166020526000908152604090205460ff1681565b3480156102b657600080fd5b506102ca6102c5366004612038565b610825565b005b3480156102d857600080fd5b506002545b604051908152602001610241565b3480156102f757600080fd5b506102dd60145481565b34801561030d57600080fd5b506102ca61031c36600461206a565b61094c565b34801561032d57600080fd5b506102dd60135481565b34801561034357600080fd5b5061026a610352366004612085565b610990565b34801561036357600080fd5b5060405160128152602001610241565b34801561037f57600080fd5b5061026a61038e366004611fef565b6109f9565b34801561039f57600080fd5b506103c77f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610241565b3480156103eb57600080fd5b5061026a6103fa36600461201b565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561042457600080fd5b5061026a6104333660046120c6565b610a2f565b34801561044457600080fd5b506102ca61045336600461201b565b610a6a565b34801561046457600080fd5b50600b5461026a90610100900460ff1681565b34801561048357600080fd5b506102dd61049236600461201b565b6001600160a01b031660009081526020819052604090205490565b3480156104b957600080fd5b506102ca610ab6565b3480156104ce57600080fd5b506102ca6104dd3660046120df565b610b2a565b3480156104ee57600080fd5b506005546001600160a01b03166103c7565b34801561050c57600080fd5b50610234610b7f565b34801561052157600080fd5b5061026a61053036600461201b565b60176020526000908152604090205460ff1681565b34801561055157600080fd5b5061026a610560366004611fef565b610b8e565b34801561057157600080fd5b5061026a610580366004611fef565b610bdd565b34801561059157600080fd5b50600b5461026a9062010000900460ff1681565b3480156105b157600080fd5b506102ca610bea565b3480156105c657600080fd5b506102ca6105d53660046120df565b610c25565b3480156105e657600080fd5b506102ca6105f53660046120df565b610c7a565b34801561060657600080fd5b506102ca6106153660046120c6565b610d64565b34801561062657600080fd5b506102ca610635366004612114565b610e44565b34801561064657600080fd5b50600d54600e54600f5460105460115460125461066595949392919086565b604080519687526020870195909552938501929092526060840152608083015260a082015260c001610241565b34801561069e57600080fd5b506102dd6106ad366004612146565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106e457600080fd5b506102ca6106f33660046120df565b610f48565b34801561070457600080fd5b506102ca61071336600461201b565b610f9d565b34801561072457600080fd5b5061026a61073336600461201b565b60186020526000908152604090205460ff1681565b34801561075457600080fd5b506103c77f000000000000000000000000000000000000000000000000000000000000000081565b60606003805461078b9061217f565b80601f01602080910402602001604051908101604052809291908181526020018280546107b79061217f565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b600061081b3384846110ee565b5060015b92915050565b6005546001600160a01b031633146108585760405162461bcd60e51b815260040161084f906121ba565b60405180910390fd5b606461086360025490565b61086d9190612205565b6103e88361087a60025490565b6108849190612227565b61088e9190612205565b10156108ac5760405162461bcd60e51b815260040161084f90612246565b60646108b760025490565b6108c19190612205565b6103e8826108ce60025490565b6108d89190612227565b6108e29190612205565b10156109005760405162461bcd60e51b815260040161084f90612246565b6103e88261090d60025490565b6109179190612227565b6109219190612205565b6007556103e88161093160025490565b61093b9190612227565b6109459190612205565b6008555050565b6005546001600160a01b031633146109765760405162461bcd60e51b815260040161084f906121ba565b600b80549115156101000261ff0019909216919091179055565b600061099d848484611213565b6109ef84336109ea85604051806060016040528060288152602001612469602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906118b1565b6110ee565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161081b9185906109ea9086611088565b6005546000906001600160a01b03163314610a5c5760405162461bcd60e51b815260040161084f906121ba565b50600a81905560015b919050565b6005546001600160a01b03163314610a945760405162461bcd60e51b815260040161084f906121ba565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610ae05760405162461bcd60e51b815260040161084f906121ba565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610b545760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b60606004805461078b9061217f565b600061081b33846109ea8560405180606001604052806025815260200161241e602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906118b1565b600061081b338484611213565b6005546001600160a01b03163314610c145760405162461bcd60e51b815260040161084f906121ba565b600b805461ffff1916610101179055565b6005546001600160a01b03163314610c4f5760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ca45760405162461bcd60e51b815260040161084f906121ba565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610d395760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526936b0b935b2ba2830b4b960b11b606482015260840161084f565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d8e5760405162461bcd60e51b815260040161084f906121ba565b6064610d9960025490565b610da39190612205565b6103e882610db060025490565b610dba9190612227565b610dc49190612205565b1015610e1d5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b606482015260840161084f565b6103e881610e2a60025490565b610e349190612227565b610e3e9190612205565b60095550565b6005546001600160a01b03163314610e6e5760405162461bcd60e51b815260040161084f906121ba565b600e849055600f839055610e828385612294565b600d5560118290556012819055610e998183612294565b6010908155600d541115610eef5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203925206f72206c65737300000000604482015260640161084f565b601054601a1015610f425760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203925206f72206c65737300000000604482015260640161084f565b50505050565b6005546001600160a01b03163314610f725760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fc75760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03811661102c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084f565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806110958385612294565b9050838110156110e75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161084f565b9392505050565b6001600160a01b0383166111505760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161084f565b6001600160a01b0382166111b15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161084f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166112395760405162461bcd60e51b815260040161084f906122ac565b6001600160a01b03821661125f5760405162461bcd60e51b815260040161084f906122f1565b6001600160a01b0382166000908152600c602052604090205460ff161580156112a157506001600160a01b0383166000908152600c602052604090205460ff16155b6113075760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b606482015260840161084f565b8061131d57611318838360006118eb565b505050565b6005546001600160a01b0384811691161480159061134957506005546001600160a01b03838116911614155b801561135e5750600b5462010000900460ff16155b156115ed57600b5460ff166113f1576001600160a01b03831660009081526015602052604090205460ff16806113ac57506001600160a01b03821660009081526015602052604090205460ff165b6113f15760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161084f565b6001600160a01b03831660009081526018602052604090205460ff16801561143257506001600160a01b03821660009081526016602052604090205460ff16155b156114ac576007548111156114a75760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161084f565b611563565b6001600160a01b03821660009081526018602052604090205460ff1680156114ed57506001600160a01b03831660009081526016602052604090205460ff16155b15611563576008548111156115635760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161084f565b6001600160a01b03821660009081526017602052604090205460ff166115ed576009546001600160a01b0383166000908152602081905260409020546115a99083612294565b11156115ed5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161084f565b30600090815260208190526040902054600a54811080159081906116185750600b54610100900460ff165b801561162d5750600b5462010000900460ff16155b801561165157506001600160a01b03841660009081526018602052604090205460ff165b801561167657506001600160a01b03851660009081526015602052604090205460ff16155b801561169b57506001600160a01b03841660009081526015602052604090205460ff16155b156116c657600b805462ff00001916620100001790556116b96119f4565b600b805462ff0000191690555b600b546001600160a01b03861660009081526015602052604090205460ff6201000090920482161591168061171357506001600160a01b03851660009081526015602052604090205460ff165b1561171c575060005b6000811561189d576001600160a01b03861660009081526018602052604090205460ff16801561174d575060105415155b156117d75760105461176d90606490611767908890611b93565b90611c12565b601054601254919250906117819083612227565b61178b9190612205565b6014600082825461179c9190612294565b90915550506010546011546117b19083612227565b6117bb9190612205565b601360008282546117cc9190612294565b9091555061187f9050565b6001600160a01b03871660009081526018602052604090205460ff1680156118005750600d5415155b1561187f57600d5461181a90606490611767908890611b93565b600d54600f549192509061182e9083612227565b6118389190612205565b601460008282546118499190612294565b9091555050600d54600e5461185e9083612227565b6118689190612205565b601360008282546118799190612294565b90915550505b8015611890576118908730836118eb565b61189a8186612334565b94505b6118a88787876118eb565b50505050505050565b600081848411156118d55760405162461bcd60e51b815260040161084f9190611f82565b5060006118e28486612334565b95945050505050565b6001600160a01b0383166119115760405162461bcd60e51b815260040161084f906122ac565b6001600160a01b0382166119375760405162461bcd60e51b815260040161084f906122f1565b61197481604051806060016040528060268152602001612443602691396001600160a01b03861660009081526020819052604090205491906118b1565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546119a39082611088565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611206565b3060009081526020819052604081205490506000601354601454611a189190612294565b90506000821580611a27575081155b15611a3157505050565b600a54611a3f906014612227565b831115611a5757600a54611a54906014612227565b92505b600060028360145486611a6a9190612227565b611a749190612205565b611a7e9190612205565b90506000611a8c8583611c54565b905047611a9882611c96565b6000611aa44783611c54565b90506000611ac18761176760135485611b9390919063ffffffff16565b90506000611acf8284612334565b6000601481905560135590508515801590611aea5750600081115b15611b3357611af98682611e65565b60408051868152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611b80576040519150601f19603f3d011682016040523d82523d6000602084013e611b85565b606091505b505050505050505050505050565b600082611ba25750600061081f565b6000611bae8385612227565b905082611bbb8583612205565b146110e75760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161084f565b60006110e783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611f54565b60006110e783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506118b1565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ccb57611ccb61234b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611d4457600080fd5b505afa158015611d58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d7c9190612361565b81600181518110611d8f57611d8f61234b565b60200260200101906001600160a01b031690816001600160a01b031681525050611dda307f0000000000000000000000000000000000000000000000000000000000000000846110ee565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611e2f90859060009086903090429060040161237e565b600060405180830381600087803b158015611e4957600080fd5b505af1158015611e5d573d6000803e3d6000fd5b505050505050565b611e90307f0000000000000000000000000000000000000000000000000000000000000000846110ee565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c4016060604051808303818588803b158015611f1457600080fd5b505af1158015611f28573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611f4d91906123ef565b5050505050565b60008183611f755760405162461bcd60e51b815260040161084f9190611f82565b5060006118e28486612205565b600060208083528351808285015260005b81811015611faf57858101830151858201604001528201611f93565b81811115611fc1576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611fec57600080fd5b50565b6000806040838503121561200257600080fd5b823561200d81611fd7565b946020939093013593505050565b60006020828403121561202d57600080fd5b81356110e781611fd7565b6000806040838503121561204b57600080fd5b50508035926020909101359150565b80358015158114610a6557600080fd5b60006020828403121561207c57600080fd5b6110e78261205a565b60008060006060848603121561209a57600080fd5b83356120a581611fd7565b925060208401356120b581611fd7565b929592945050506040919091013590565b6000602082840312156120d857600080fd5b5035919050565b600080604083850312156120f257600080fd5b82356120fd81611fd7565b915061210b6020840161205a565b90509250929050565b6000806000806080858703121561212a57600080fd5b5050823594602084013594506040840135936060013592509050565b6000806040838503121561215957600080fd5b823561216481611fd7565b9150602083013561217481611fd7565b809150509250929050565b600181811c9082168061219357607f821691505b602082108114156121b457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008261222257634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612241576122416121ef565b500290565b6020808252602e908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e747360408201526d206c6f776572207468616e20312560901b606082015260800190565b600082198211156122a7576122a76121ef565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612346576123466121ef565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561237357600080fd5b81516110e781611fd7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123ce5784516001600160a01b0316835293830193918301916001016123a9565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561240457600080fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122002c215a4eff6e07b3ae4922f1771fdb539b848631f6804eb0a1afdb7796c5c1a64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102135760003560e01c80637571336a11610118578063c16dd4a4116100a0578063dd62ed3e1161006f578063dd62ed3e14610692578063e16830a8146106d8578063f2fde38b146106f8578063f5b3c3bf14610718578063f887ea401461074857600080fd5b8063c16dd4a4146105da578063c18bc195146105fa578063c6616ba11461061a578063d212a69a1461063a57600080fd5b8063a457c2d7116100e7578063a457c2d714610545578063a9059cbb14610565578063b886311514610585578063b9e418e7146105a5578063c0246668146105ba57600080fd5b80637571336a146104c25780638da5cb5b146104e257806395d89b411461050057806396880b171461051557600080fd5b8063313ce5671161019b578063555467a11161016a578063555467a1146104185780635d098b38146104385780636ddd17131461045857806370a0823114610477578063715018a6146104ad57600080fd5b8063313ce56714610357578063395093511461037357806349bd5a5e146103935780634fbee193146103df57600080fd5b806318160ddd116101e257806318160ddd146102cc5780631a8145bb146102eb5780631c6e8a75146103015780631f3fed8f1461032157806323b872dd1461033757600080fd5b806306fdde031461021f578063095ea7b31461024a57806310d5de531461027a57806311a582c3146102aa57600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b5061023461077c565b6040516102419190611f82565b60405180910390f35b34801561025657600080fd5b5061026a610265366004611fef565b61080e565b6040519015158152602001610241565b34801561028657600080fd5b5061026a61029536600461201b565b60166020526000908152604090205460ff1681565b3480156102b657600080fd5b506102ca6102c5366004612038565b610825565b005b3480156102d857600080fd5b506002545b604051908152602001610241565b3480156102f757600080fd5b506102dd60145481565b34801561030d57600080fd5b506102ca61031c36600461206a565b61094c565b34801561032d57600080fd5b506102dd60135481565b34801561034357600080fd5b5061026a610352366004612085565b610990565b34801561036357600080fd5b5060405160128152602001610241565b34801561037f57600080fd5b5061026a61038e366004611fef565b6109f9565b34801561039f57600080fd5b506103c77f00000000000000000000000023709f57c61b91ceb2fc6bcdc3c0e746f5e39d5581565b6040516001600160a01b039091168152602001610241565b3480156103eb57600080fd5b5061026a6103fa36600461201b565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561042457600080fd5b5061026a6104333660046120c6565b610a2f565b34801561044457600080fd5b506102ca61045336600461201b565b610a6a565b34801561046457600080fd5b50600b5461026a90610100900460ff1681565b34801561048357600080fd5b506102dd61049236600461201b565b6001600160a01b031660009081526020819052604090205490565b3480156104b957600080fd5b506102ca610ab6565b3480156104ce57600080fd5b506102ca6104dd3660046120df565b610b2a565b3480156104ee57600080fd5b506005546001600160a01b03166103c7565b34801561050c57600080fd5b50610234610b7f565b34801561052157600080fd5b5061026a61053036600461201b565b60176020526000908152604090205460ff1681565b34801561055157600080fd5b5061026a610560366004611fef565b610b8e565b34801561057157600080fd5b5061026a610580366004611fef565b610bdd565b34801561059157600080fd5b50600b5461026a9062010000900460ff1681565b3480156105b157600080fd5b506102ca610bea565b3480156105c657600080fd5b506102ca6105d53660046120df565b610c25565b3480156105e657600080fd5b506102ca6105f53660046120df565b610c7a565b34801561060657600080fd5b506102ca6106153660046120c6565b610d64565b34801561062657600080fd5b506102ca610635366004612114565b610e44565b34801561064657600080fd5b50600d54600e54600f5460105460115460125461066595949392919086565b604080519687526020870195909552938501929092526060840152608083015260a082015260c001610241565b34801561069e57600080fd5b506102dd6106ad366004612146565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106e457600080fd5b506102ca6106f33660046120df565b610f48565b34801561070457600080fd5b506102ca61071336600461201b565b610f9d565b34801561072457600080fd5b5061026a61073336600461201b565b60186020526000908152604090205460ff1681565b34801561075457600080fd5b506103c77f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60606003805461078b9061217f565b80601f01602080910402602001604051908101604052809291908181526020018280546107b79061217f565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b600061081b3384846110ee565b5060015b92915050565b6005546001600160a01b031633146108585760405162461bcd60e51b815260040161084f906121ba565b60405180910390fd5b606461086360025490565b61086d9190612205565b6103e88361087a60025490565b6108849190612227565b61088e9190612205565b10156108ac5760405162461bcd60e51b815260040161084f90612246565b60646108b760025490565b6108c19190612205565b6103e8826108ce60025490565b6108d89190612227565b6108e29190612205565b10156109005760405162461bcd60e51b815260040161084f90612246565b6103e88261090d60025490565b6109179190612227565b6109219190612205565b6007556103e88161093160025490565b61093b9190612227565b6109459190612205565b6008555050565b6005546001600160a01b031633146109765760405162461bcd60e51b815260040161084f906121ba565b600b80549115156101000261ff0019909216919091179055565b600061099d848484611213565b6109ef84336109ea85604051806060016040528060288152602001612469602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906118b1565b6110ee565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161081b9185906109ea9086611088565b6005546000906001600160a01b03163314610a5c5760405162461bcd60e51b815260040161084f906121ba565b50600a81905560015b919050565b6005546001600160a01b03163314610a945760405162461bcd60e51b815260040161084f906121ba565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610ae05760405162461bcd60e51b815260040161084f906121ba565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610b545760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b60606004805461078b9061217f565b600061081b33846109ea8560405180606001604052806025815260200161241e602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906118b1565b600061081b338484611213565b6005546001600160a01b03163314610c145760405162461bcd60e51b815260040161084f906121ba565b600b805461ffff1916610101179055565b6005546001600160a01b03163314610c4f5760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ca45760405162461bcd60e51b815260040161084f906121ba565b7f00000000000000000000000023709f57c61b91ceb2fc6bcdc3c0e746f5e39d556001600160a01b0316826001600160a01b03161415610d395760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526936b0b935b2ba2830b4b960b11b606482015260840161084f565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d8e5760405162461bcd60e51b815260040161084f906121ba565b6064610d9960025490565b610da39190612205565b6103e882610db060025490565b610dba9190612227565b610dc49190612205565b1015610e1d5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b606482015260840161084f565b6103e881610e2a60025490565b610e349190612227565b610e3e9190612205565b60095550565b6005546001600160a01b03163314610e6e5760405162461bcd60e51b815260040161084f906121ba565b600e849055600f839055610e828385612294565b600d5560118290556012819055610e998183612294565b6010908155600d541115610eef5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203925206f72206c65737300000000604482015260640161084f565b601054601a1015610f425760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203925206f72206c65737300000000604482015260640161084f565b50505050565b6005546001600160a01b03163314610f725760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fc75760405162461bcd60e51b815260040161084f906121ba565b6001600160a01b03811661102c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084f565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806110958385612294565b9050838110156110e75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161084f565b9392505050565b6001600160a01b0383166111505760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161084f565b6001600160a01b0382166111b15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161084f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166112395760405162461bcd60e51b815260040161084f906122ac565b6001600160a01b03821661125f5760405162461bcd60e51b815260040161084f906122f1565b6001600160a01b0382166000908152600c602052604090205460ff161580156112a157506001600160a01b0383166000908152600c602052604090205460ff16155b6113075760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b606482015260840161084f565b8061131d57611318838360006118eb565b505050565b6005546001600160a01b0384811691161480159061134957506005546001600160a01b03838116911614155b801561135e5750600b5462010000900460ff16155b156115ed57600b5460ff166113f1576001600160a01b03831660009081526015602052604090205460ff16806113ac57506001600160a01b03821660009081526015602052604090205460ff165b6113f15760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161084f565b6001600160a01b03831660009081526018602052604090205460ff16801561143257506001600160a01b03821660009081526016602052604090205460ff16155b156114ac576007548111156114a75760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161084f565b611563565b6001600160a01b03821660009081526018602052604090205460ff1680156114ed57506001600160a01b03831660009081526016602052604090205460ff16155b15611563576008548111156115635760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161084f565b6001600160a01b03821660009081526017602052604090205460ff166115ed576009546001600160a01b0383166000908152602081905260409020546115a99083612294565b11156115ed5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161084f565b30600090815260208190526040902054600a54811080159081906116185750600b54610100900460ff165b801561162d5750600b5462010000900460ff16155b801561165157506001600160a01b03841660009081526018602052604090205460ff165b801561167657506001600160a01b03851660009081526015602052604090205460ff16155b801561169b57506001600160a01b03841660009081526015602052604090205460ff16155b156116c657600b805462ff00001916620100001790556116b96119f4565b600b805462ff0000191690555b600b546001600160a01b03861660009081526015602052604090205460ff6201000090920482161591168061171357506001600160a01b03851660009081526015602052604090205460ff165b1561171c575060005b6000811561189d576001600160a01b03861660009081526018602052604090205460ff16801561174d575060105415155b156117d75760105461176d90606490611767908890611b93565b90611c12565b601054601254919250906117819083612227565b61178b9190612205565b6014600082825461179c9190612294565b90915550506010546011546117b19083612227565b6117bb9190612205565b601360008282546117cc9190612294565b9091555061187f9050565b6001600160a01b03871660009081526018602052604090205460ff1680156118005750600d5415155b1561187f57600d5461181a90606490611767908890611b93565b600d54600f549192509061182e9083612227565b6118389190612205565b601460008282546118499190612294565b9091555050600d54600e5461185e9083612227565b6118689190612205565b601360008282546118799190612294565b90915550505b8015611890576118908730836118eb565b61189a8186612334565b94505b6118a88787876118eb565b50505050505050565b600081848411156118d55760405162461bcd60e51b815260040161084f9190611f82565b5060006118e28486612334565b95945050505050565b6001600160a01b0383166119115760405162461bcd60e51b815260040161084f906122ac565b6001600160a01b0382166119375760405162461bcd60e51b815260040161084f906122f1565b61197481604051806060016040528060268152602001612443602691396001600160a01b03861660009081526020819052604090205491906118b1565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546119a39082611088565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611206565b3060009081526020819052604081205490506000601354601454611a189190612294565b90506000821580611a27575081155b15611a3157505050565b600a54611a3f906014612227565b831115611a5757600a54611a54906014612227565b92505b600060028360145486611a6a9190612227565b611a749190612205565b611a7e9190612205565b90506000611a8c8583611c54565b905047611a9882611c96565b6000611aa44783611c54565b90506000611ac18761176760135485611b9390919063ffffffff16565b90506000611acf8284612334565b6000601481905560135590508515801590611aea5750600081115b15611b3357611af98682611e65565b60408051868152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611b80576040519150601f19603f3d011682016040523d82523d6000602084013e611b85565b606091505b505050505050505050505050565b600082611ba25750600061081f565b6000611bae8385612227565b905082611bbb8583612205565b146110e75760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161084f565b60006110e783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611f54565b60006110e783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506118b1565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ccb57611ccb61234b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611d4457600080fd5b505afa158015611d58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d7c9190612361565b81600181518110611d8f57611d8f61234b565b60200260200101906001600160a01b031690816001600160a01b031681525050611dda307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110ee565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611e2f90859060009086903090429060040161237e565b600060405180830381600087803b158015611e4957600080fd5b505af1158015611e5d573d6000803e3d6000fd5b505050505050565b611e90307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110ee565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c4016060604051808303818588803b158015611f1457600080fd5b505af1158015611f28573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611f4d91906123ef565b5050505050565b60008183611f755760405162461bcd60e51b815260040161084f9190611f82565b5060006118e28486612205565b600060208083528351808285015260005b81811015611faf57858101830151858201604001528201611f93565b81811115611fc1576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611fec57600080fd5b50565b6000806040838503121561200257600080fd5b823561200d81611fd7565b946020939093013593505050565b60006020828403121561202d57600080fd5b81356110e781611fd7565b6000806040838503121561204b57600080fd5b50508035926020909101359150565b80358015158114610a6557600080fd5b60006020828403121561207c57600080fd5b6110e78261205a565b60008060006060848603121561209a57600080fd5b83356120a581611fd7565b925060208401356120b581611fd7565b929592945050506040919091013590565b6000602082840312156120d857600080fd5b5035919050565b600080604083850312156120f257600080fd5b82356120fd81611fd7565b915061210b6020840161205a565b90509250929050565b6000806000806080858703121561212a57600080fd5b5050823594602084013594506040840135936060013592509050565b6000806040838503121561215957600080fd5b823561216481611fd7565b9150602083013561217481611fd7565b809150509250929050565b600181811c9082168061219357607f821691505b602082108114156121b457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008261222257634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612241576122416121ef565b500290565b6020808252602e908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e747360408201526d206c6f776572207468616e20312560901b606082015260800190565b600082198211156122a7576122a76121ef565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612346576123466121ef565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561237357600080fd5b81516110e781611fd7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123ce5784516001600160a01b0316835293830193918301916001016123a9565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561240457600080fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122002c215a4eff6e07b3ae4922f1771fdb539b848631f6804eb0a1afdb7796c5c1a64736f6c63430008090033

Deployed Bytecode Sourcemap

21069:12192:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4319:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6479:168;;;;;;;;;;-1:-1:-1;6479:168:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;6479:168:0;1072:187:1;22336:63:0;;;;;;;;;;-1:-1:-1;22336:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25177:479;;;;;;;;;;-1:-1:-1;25177:479:0;;;;;:::i;:::-;;:::i;:::-;;5436:107;;;;;;;;;;-1:-1:-1;5523:12:0;;5436:107;;;1915:25:1;;;1903:2;1888:18;5436:107:0;1769:177:1;22180:33:0;;;;;;;;;;;;;;;;26033:101;;;;;;;;;;-1:-1:-1;26033:101:0;;;;;:::i;:::-;;:::i;22140:33::-;;;;;;;;;;;;;;;;7129:354;;;;;;;;;;-1:-1:-1;7129:354:0;;;;;:::i;:::-;;:::i;5279:92::-;;;;;;;;;;-1:-1:-1;5279:92:0;;5361:2;2904:36:1;;2892:2;2877:18;5279:92:0;2762:184:1;7892:217:0;;;;;;;;;;-1:-1:-1;7892:217:0;;;;;:::i;:::-;;:::i;21193:38::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3115:32:1;;;3097:51;;3085:2;3070:18;21193:38:0;2951:203:1;27618:125:0;;;;;;;;;;-1:-1:-1;27618:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;27707:28:0;27683:4;27707:28;;;:19;:28;;;;;;;;;27618:125;25009:158;;;;;;;;;;-1:-1:-1;25009:158:0;;;;;:::i;:::-;;:::i;27485:125::-;;;;;;;;;;-1:-1:-1;27485:125:0;;;;;:::i;:::-;;:::i;21533:31::-;;;;;;;;;;-1:-1:-1;21533:31:0;;;;;;;;;;;5606:126;;;;;;;;;;-1:-1:-1;5606:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;5706:18:0;5679:7;5706:18;;;;;;;;;;;;5606:126;13741:148;;;;;;;;;;;;;:::i;27125:144::-;;;;;;;;;;-1:-1:-1;27125:144:0;;;;;:::i;:::-;;:::i;13100:78::-;;;;;;;;;;-1:-1:-1;13164:6:0;;-1:-1:-1;;;;;13164:6:0;13100:78;;4537:103;;;;;;;;;;;;;:::i;22406:58::-;;;;;;;;;;-1:-1:-1;22406:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;8612:268;;;;;;;;;;-1:-1:-1;8612:268:0;;;;;:::i;:::-;;:::i;5945:174::-;;;;;;;;;;-1:-1:-1;5945:174:0;;;;;:::i;:::-;;:::i;21571:22::-;;;;;;;;;;-1:-1:-1;21571:22:0;;;;;;;;;;;24829:106;;;;;;;;;;;;;:::i;26835:132::-;;;;;;;;;;-1:-1:-1;26835:132:0;;;;;:::i;:::-;;:::i;27279:196::-;;;;;;;;;;-1:-1:-1;27279:196:0;;;;;:::i;:::-;;:::i;25666:271::-;;;;;;;;;;-1:-1:-1;25666:271:0;;;;;:::i;:::-;;:::i;26142:681::-;;;;;;;;;;-1:-1:-1;26142:681:0;;;;;:::i;:::-;;:::i;21913:206::-;;;;;;;;;;-1:-1:-1;21913: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;21913:206:0;4054:535:1;6182:150:0;;;;;;;;;;-1:-1:-1;6182:150:0;;;;;:::i;:::-;-1:-1:-1;;;;;6297:18:0;;;6270:7;6297:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6182:150;26973:146;;;;;;;;;;-1:-1:-1;26973:146:0;;;;;:::i;:::-;;:::i;14044:244::-;;;;;;;;;;-1:-1:-1;14044:244:0;;;;;:::i;:::-;;:::i;22622:42::-;;;;;;;;;;-1:-1:-1;22622:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21144;;;;;;;;;;;;;;;4319:99;4372:13;4405:5;4398:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4319:99;:::o;6479:168::-;6561:4;6578:39;3468:10;6601:7;6610:6;6578:8;:39::i;:::-;-1:-1:-1;6635:4:0;6479:168;;;;;:::o;25177:479::-;13311:6;;-1:-1:-1;;;;;13311:6:0;3468:10;13311:22;13303:67;;;;-1:-1:-1;;;13303:67:0;;;;;;;:::i;:::-;;;;;;;;;25339:3:::1;25323:13;5523:12:::0;;;5436:107;25323:13:::1;:19;;;;:::i;:::-;25313:4;25300:9;25284:13;5523:12:::0;;;5436:107;25284:13:::1;:25;;;;:::i;:::-;25283:34;;;;:::i;:::-;25282:61;;25274:120;;;;-1:-1:-1::0;;;25274:120:0::1;;;;;;;:::i;:::-;25471:3;25455:13;5523:12:::0;;;5436:107;25455:13:::1;:19;;;;:::i;:::-;25445:4;25431:10;25415:13;5523:12:::0;;;5436:107;25415:13:::1;:26;;;;:::i;:::-;25414:35;;;;:::i;:::-;25413:62;;25405:121;;;;-1:-1:-1::0;;;25405:121:0::1;;;;;;;:::i;:::-;25582:4;25569:9;25553:13;5523:12:::0;;;5436:107;25553:13:::1;:25;;;;:::i;:::-;25552:34;;;;:::i;:::-;25537:12;:49:::0;25644:4:::1;25630:10:::0;25614:13:::1;5523:12:::0;;;5436:107;25614:13:::1;:26;;;;:::i;:::-;25613:35;;;;:::i;:::-;25597:13;:51:::0;-1:-1:-1;;25177:479:0:o;26033:101::-;13311:6;;-1:-1:-1;;;;;13311:6:0;3468:10;13311:22;13303:67;;;;-1:-1:-1;;;13303:67:0;;;;;;;:::i;:::-;26105:11:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;26105:21:0;;::::1;::::0;;;::::1;::::0;;26033:101::o;7129:354::-;7268:4;7285:36;7295:6;7303:9;7314:6;7285:9;:36::i;:::-;7332:121;7341:6;3468:10;7363:89;7401:6;7363:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7363:19:0;;;;;;:11;:19;;;;;;;;3468:10;7363:33;;;;;;;;;;:37;:89::i;:::-;7332:8;:121::i;:::-;-1:-1:-1;7471:4:0;7129:354;;;;;:::o;7892:217::-;3468:10;7979:4;8028:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8028:34:0;;;;;;;;;;7979:4;;7996:83;;8019:7;;8028:50;;8067:10;8028:38;:50::i;25009:158::-;13311:6;;25090:4;;-1:-1:-1;;;;;13311:6:0;3468:10;13311:22;13303:67;;;;-1:-1:-1;;;13303:67:0;;;;;;;:::i;:::-;-1:-1:-1;25106:19:0::1;:31:::0;;;25155:4:::1;13381:1;25009:158:::0;;;:::o;27485:125::-;13311:6;;-1:-1:-1;;;;;13311:6:0;3468:10;13311:22;13303:67;;;;-1:-1:-1;;;13303:67:0;;;;;;;:::i;:::-;27568:15:::1;:34:::0;;-1:-1:-1;;;;;;27568:34:0::1;-1:-1:-1::0;;;;;27568:34:0;;;::::1;::::0;;;::::1;::::0;;27485:125::o;13741:148::-;13311:6;;-1:-1:-1;;;;;13311:6:0;3468:10;13311:22;13303:67;;;;-1:-1:-1;;;13303:67:0;;;;;;;:::i;:::-;13832:6:::1;::::0;13811:40:::1;::::0;13848:1:::1;::::0;-1:-1:-1;;;;;13832:6:0::1;::::0;13811:40:::1;::::0;13848:1;;13811:40:::1;13862:6;:19:::0;;-1:-1:-1;;;;;;13862:19:0::1;::::0;;13741:148::o;27125:144::-;13311:6;;-1:-1:-1;;;;;13311:6:0;3468:10;13311:22;13303:67;;;;-1:-1:-1;;;13303:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27215:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;27215:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27125:144::o;4537:103::-;4592:13;4625:7;4618:14;;;;;:::i;8612:268::-;8704:4;8721:129;3468:10;8744:7;8753:96;8792:15;8753:96;;;;;;;;;;;;;;;;;3468:10;8753:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8753:34:0;;;;;;;;;;;;:38;:96::i;5945:174::-;6030:4;6047:42;3468:10;6071:9;6082:6;6047:9;:42::i;24829:106::-;13311:6;;-1:-1:-1;;;;;13311:6:0;3468:10;13311:22;13303:67;;;;-1:-1:-1;;;13303:67:0;;;;;;;:::i;:::-;24882:9:::1;:16:::0;;-1:-1:-1;;24909:18:0;;;;;24829:106::o;26835:132::-;13311:6;;-1:-1:-1;;;;;13311:6:0;3468:10;13311:22;13303:67;;;;-1:-1:-1;;;13303:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26920:28:0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:39;;-1:-1:-1;;26920:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26835:132::o;27279:196::-;13311:6;;-1:-1:-1;;;;;13311:6:0;3468:10;13311:22;13303:67;;;;-1:-1:-1;;;13303:67:0;;;;;;;:::i;:::-;27372:13:::1;-1:-1:-1::0;;;;;27364:21:0::1;:4;-1:-1:-1::0;;;;;27364:21:0::1;;;27356:76;;;::::0;-1:-1:-1;;;27356:76:0;;7112:2:1;27356: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;;27356:76:0::1;6910:406:1::0;27356:76:0::1;-1:-1:-1::0;;;;;27443:16:0;;;::::1;;::::0;;;:10:::1;:16;::::0;;;;:24;;-1:-1:-1;;27443:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27279:196::o;25666:271::-;13311:6;;-1:-1:-1;;;;;13311:6:0;3468:10;13311:22;13303:67;;;;-1:-1:-1;;;13303:67:0;;;;;;;:::i;:::-;25819:3:::1;25803:13;5523:12:::0;;;5436:107;25803:13:::1;:19;;;;:::i;:::-;25793:4;25776:13;25760;5523:12:::0;;;5436:107;25760:13:::1;:29;;;;:::i;:::-;25759:38;;;;:::i;:::-;25758:65;;25750:112;;;::::0;-1:-1:-1;;;25750:112:0;;7523:2:1;25750: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;;25750:112:0::1;7321:398:1::0;25750:112:0::1;25925:4;25908:13;25892;5523:12:::0;;;5436:107;25892:13:::1;:29;;;;:::i;:::-;25891:38;;;;:::i;:::-;25873:15;:56:::0;-1:-1:-1;25666:271:0:o;26142:681::-;13311:6;;-1:-1:-1;;;;;13311:6:0;3468:10;13311:22;13303:67;;;;-1:-1:-1;;;13303:67:0;;;;;;;:::i;:::-;26296:21;:40;;;26347:21;:40;;;26419:45:::1;26371:16:::0;26320;26419:45:::1;:::i;:::-;26398:5;:66:::0;26477:22;:42;;;26530:22;:42;;;26605:47:::1;26555:17:::0;26502;26605:47:::1;:::i;:::-;26583:19:::0;:69;;;:5:::1;26671:18:::0;:24:::1;;26663:65;;;::::0;-1:-1:-1;;;26663:65:0;;8059:2:1;26663:65:0::1;::::0;::::1;8041:21:1::0;8098:2;8078:18;;;8071:30;8137;8117:18;;;8110:58;8185:18;;26663:65:0::1;7857:352:1::0;26663:65:0::1;26750:19:::0;;26773:2:::1;-1:-1:-1::0;26750:25:0::1;26742:66;;;::::0;-1:-1:-1;;;26742:66:0;;8059:2:1;26742:66:0::1;::::0;::::1;8041:21:1::0;8098:2;8078:18;;;8071:30;8137;8117:18;;;8110:58;8185:18;;26742:66:0::1;7857:352:1::0;26742:66:0::1;26142:681:::0;;;;:::o;26973:146::-;13311:6;;-1:-1:-1;;;;;13311:6:0;3468:10;13311:22;13303:67;;;;-1:-1:-1;;;13303:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27065:35:0;;;::::1;;::::0;;;:26:::1;:35;::::0;;;;:46;;-1:-1:-1;;27065:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26973:146::o;14044:244::-;13311:6;;-1:-1:-1;;;;;13311:6:0;3468:10;13311:22;13303:67;;;;-1:-1:-1;;;13303:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14133:22:0;::::1;14125:73;;;::::0;-1:-1:-1;;;14125:73:0;;8416:2:1;14125: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;;14125:73:0::1;8214:402:1::0;14125:73:0::1;14235:6;::::0;14214:38:::1;::::0;-1:-1:-1;;;;;14214:38:0;;::::1;::::0;14235:6:::1;::::0;14214:38:::1;::::0;14235:6:::1;::::0;14214:38:::1;14263:6;:17:::0;;-1:-1:-1;;;;;;14263:17:0::1;-1:-1:-1::0;;;;;14263:17:0;;;::::1;::::0;;;::::1;::::0;;14044:244::o;11365:180::-;11422:7;;11454:5;11458:1;11454;:5;:::i;:::-;11442:17;;11483:1;11478;:6;;11470:46;;;;-1:-1:-1;;;11470:46:0;;8823:2:1;11470:46:0;;;8805:21:1;8862:2;8842:18;;;8835:30;8901:29;8881:18;;;8874:57;8948:18;;11470:46:0;8621:351:1;11470:46:0;11536:1;11365:180;-1:-1:-1;;;11365:180:0:o;10938:382::-;-1:-1:-1;;;;;11074:19:0;;11066:68;;;;-1:-1:-1;;;11066:68:0;;9179:2:1;11066: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;;11066:68:0;8977:400:1;11066:68:0;-1:-1:-1;;;;;11153:21:0;;11145:68;;;;-1:-1:-1;;;11145:68:0;;9584:2:1;11145: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;;11145:68:0;9382:398:1;11145:68:0;-1:-1:-1;;;;;11228:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11280:32;;1915:25:1;;;11280:32:0;;1888:18:1;11280:32:0;;;;;;;;10938:382;;;:::o;27751:3242::-;-1:-1:-1;;;;;27892:20:0;;27884:70;;;;-1:-1:-1;;;27884:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27973:23:0;;27965:71;;;;-1:-1:-1;;;27965:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28066:21:0;;;;;;:10;:21;;;;;;;;28065:22;:45;;;;-1:-1:-1;;;;;;28092:18:0;;;;;;:10;:18;;;;;;;;28091:19;28065:45;28057:107;;;;-1:-1:-1;;;28057:107:0;;10797:2:1;28057: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;;28057:107:0;10595:413:1;28057:107:0;28189:11;28185:102;;28217:37;28233:6;28241:9;28252:1;28217:15;:37::i;:::-;27751:3242;;;:::o;28185:102::-;13164:6;;-1:-1:-1;;;;;28317:17:0;;;13164:6;;28317:17;;;;:54;;-1:-1:-1;13164:6:0;;-1:-1:-1;;;;;28351:20:0;;;13164:6;;28351:20;;28317:54;:82;;;;-1:-1:-1;28389:10:0;;;;;;;28388:11;28317:82;28299:888;;;28433:9;;;;28428:147;;-1:-1:-1;;;;;28471:27:0;;;;;;:19;:27;;;;;;;;;:61;;-1:-1:-1;;;;;;28502:30:0;;;;;;:19;:30;;;;;;;;28471:61;28463:96;;;;-1:-1:-1;;;28463:96:0;;11215:2:1;28463:96:0;;;11197:21:1;11254:2;11234:18;;;11227:30;-1:-1:-1;;;11273:18:1;;;11266:52;11335:18;;28463:96:0;11013:346:1;28463:96:0;-1:-1:-1;;;;;28593:18:0;;;;;;:10;:18;;;;;;;;:65;;;;-1:-1:-1;;;;;;28616:42:0;;;;;;:31;:42;;;;;;;;28615:43;28593:65;28589:410;;;28697:12;;28687:6;:22;;28679:88;;;;-1:-1:-1;;;28679:88:0;;11566:2:1;28679: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;;28679:88:0;11364:417:1;28679:88:0;28589:410;;;-1:-1:-1;;;;;28807:21:0;;;;;;:10;:21;;;;;;;;:65;;;;-1:-1:-1;;;;;;28833:39:0;;;;;;:31;:39;;;;;;;;28832:40;28807:65;28803:196;;;28911:13;;28901:6;:23;;28893:90;;;;-1:-1:-1;;;28893:90:0;;11988:2:1;28893: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;;28893:90:0;11786:418:1;28893:90:0;-1:-1:-1;;;;;29020:37:0;;;;;;:26;:37;;;;;;;;29015:159;;29119:15;;-1:-1:-1;;;;;5706:18:0;;5679:7;5706:18;;;;;;;;;;;29086:29;;:6;:29;:::i;:::-;:48;;29078:80;;;;-1:-1:-1;;;29078:80:0;;12411:2:1;29078:80:0;;;12393:21:1;12450:2;12430:18;;;12423:30;-1:-1:-1;;;12469:18:1;;;12462:49;12528:18;;29078:80:0;12209:343:1;29078:80:0;29262:4;29213:28;5706:18;;;;;;;;;;;29321:19;;29297:43;;;;;;;29371:35;;-1:-1:-1;29395:11:0;;;;;;;29371:35;:63;;;;-1:-1:-1;29424:10:0;;;;;;;29423:11;29371:63;:101;;;;-1:-1:-1;;;;;;29451:21:0;;;;;;:10;:21;;;;;;;;29371:101;:146;;;;-1:-1:-1;;;;;;29490:27:0;;;;;;:19;:27;;;;;;;;29489:28;29371:146;:194;;;;-1:-1:-1;;;;;;29535:30:0;;;;;;:19;:30;;;;;;;;29534:31;29371:194;29353:326;;;29592:10;:17;;-1:-1:-1;;29592:17:0;;;;;29624:10;:8;:10::i;:::-;29649;:18;;-1:-1:-1;;29649:18:0;;;29353:326;29708:10;;-1:-1:-1;;;;;29820:27:0;;29692:12;29820:27;;;:19;:27;;;;;;29708:10;;;;;;;29707:11;;29820:27;;:61;;-1:-1:-1;;;;;;29851:30:0;;;;;;:19;:30;;;;;;;;29820:61;29816:109;;;-1:-1:-1;29908:5:0;29816:109;29938:12;30043:7;30039:892;;;-1:-1:-1;;;;;30109:21:0;;;;;;:10;:21;;;;;;;;:48;;;;-1:-1:-1;30134:19:0;;:23;;30109:48;30105:673;;;30196:19;;30185:40;;30221:3;;30185:31;;:6;;:10;:31::i;:::-;:35;;:40::i;:::-;30298:19;;30273:22;;30178:47;;-1:-1:-1;30298:19:0;30266:29;;30178:47;30266:29;:::i;:::-;:51;;;;:::i;:::-;30244:18;;:73;;;;;;;:::i;:::-;;;;-1:-1:-1;;30390:19:0;;30365:22;;30358:29;;:4;:29;:::i;:::-;:51;;;;:::i;:::-;30336:18;;:73;;;;;;;:::i;:::-;;;;-1:-1:-1;30105:673:0;;-1:-1:-1;30105:673:0;;-1:-1:-1;;;;;30471:18:0;;;;;;:10;:18;;;;;;;;:44;;;;-1:-1:-1;30493:5:0;:18;:22;;30471:44;30467:311;;;30554:5;:18;30543:39;;30578:3;;30543:30;;:6;;:10;:30::i;:39::-;30654:5;:18;30630:21;;30536:46;;-1:-1:-1;30654:18:0;30623:28;;30536:46;30623:28;:::i;:::-;:49;;;;:::i;:::-;30601:18;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;;30744:5:0;:18;30720:21;;30713:28;;:4;:28;:::i;:::-;:49;;;;:::i;:::-;30691:18;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;;30467:311:0;30798:8;;30794:93;;30827:44;30843:6;30859:4;30866;30827:15;:44::i;:::-;30903:14;30913:4;30903:14;;:::i;:::-;;;30039:892;30943:42;30959:6;30967:9;30978:6;30943:15;:42::i;:::-;27873:3120;;;;27751:3242;;;:::o;11706:191::-;11791:7;11827:12;11819:6;;;;11811:29;;;;-1:-1:-1;;;11811:29:0;;;;;;;;:::i;:::-;-1:-1:-1;11851:9:0;11863:5;11867:1;11863;:5;:::i;:::-;11851:17;11706:191;-1:-1:-1;;;;;11706:191:0:o;9370:521::-;-1:-1:-1;;;;;9510:20:0;;9502:70;;;;-1:-1:-1;;;9502:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9591:23:0;;9583:71;;;;-1:-1:-1;;;9583:71:0;;;;;;;:::i;:::-;9695;9717:6;9695:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9695:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;9675:17:0;;;:9;:17;;;;;;;;;;;:91;;;;9800:20;;;;;;;:32;;9825:6;9800:24;:32::i;:::-;-1:-1:-1;;;;;9777:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;9848:35;1915:25:1;;;9777:20:0;;9848:35;;;;;;1888:18:1;9848:35:0;1769:177:1;31921:1335:0;32009:4;31960:28;5706:18;;;;;;;;;;;31960:55;;32026:14;32064:18;;32043;;:39;;;;:::i;:::-;32026:56;-1:-1:-1;32094:12:0;32123:25;;;:40;;-1:-1:-1;32152:11:0;;32123:40;32119:57;;;32167:7;;;31921:1335::o;32119:57::-;32215:19;;:24;;32237:2;32215:24;:::i;:::-;32192:20;:47;32188:127;;;32279:19;;:24;;32301:2;32279:24;:::i;:::-;32256:47;;32188:127;32376:23;32455:1;32446:6;32425:18;;32402:20;:41;;;;:::i;:::-;:50;;;;:::i;:::-;:54;;;;:::i;:::-;32376:80;-1:-1:-1;32467:26:0;32496:41;:20;32376:80;32496:24;:41::i;:::-;32467:70;-1:-1:-1;32579:21:0;32613:36;32467:70;32613:16;:36::i;:::-;32664:18;32685:44;:21;32711:17;32685:25;:44::i;:::-;32664:65;;32743:23;32769:46;32808:6;32769:34;32784:18;;32769:10;:14;;:34;;;;:::i;:46::-;32743:72;-1:-1:-1;32826:23:0;32852:28;32743:72;32852:10;:28;:::i;:::-;32916:1;32895:18;:22;;;32928:18;:22;32826:54;-1:-1:-1;32969:19:0;;;;;:42;;;33010:1;32992:15;:19;32969:42;32965:192;;;33028:46;33041:15;33058;33028:12;:46::i;:::-;33094:51;;;12861:25:1;;;12917:2;12902:18;;12895:34;;;33094:51:0;;12834:18:1;33094:51:0;;;;;;;32965:192;33190:15;;33182:66;;-1:-1:-1;;;;;33190:15:0;;;;33220:21;;33182:66;;;;33220:21;33190:15;33182:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;31921:1335:0:o;11905:256::-;11962:7;11992:6;11988:47;;-1:-1:-1;12022:1:0;12015:8;;11988:47;12048:9;12060:5;12064:1;12060;:5;:::i;:::-;12048:17;-1:-1:-1;12093:1:0;12084:5;12088:1;12048:17;12084:5;:::i;:::-;:10;12076:56;;;;-1:-1:-1;;;12076:56:0;;13352:2:1;12076: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;;12076:56:0;13150:397:1;12172:131:0;12229:7;12256:39;12260:1;12263;12256:39;;;;;;;;;;;;;;;;;:3;:39::i;11558:135::-;11615:7;11642:43;11646:1;11649;11642:43;;;;;;;;;;;;;;;;;:3;:43::i;31001:554::-;31149:16;;;31163:1;31149:16;;;;;;;;31125:21;;31149:16;;;;;;;;;;-1:-1:-1;31149:16:0;31125:40;;31194:4;31176;31181:1;31176:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31176:23:0;;;-1:-1:-1;;;;;31176:23:0;;;;;31220:6;-1:-1:-1;;;;;31220:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31210:4;31215:1;31210:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31210:23:0;;;-1:-1:-1;;;;;31210:23:0;;;;;31246:49;31263:4;31278:6;31287:7;31246:8;:49::i;:::-;31334:211;;-1:-1:-1;;;31334:211:0;;-1:-1:-1;;;;;31334:6:0;:57;;;;:211;;31406:7;;31428:1;;31472:4;;31499;;31519:15;;31334:211;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31052:503;31001:554;:::o;31563:350::-;31707:49;31724:4;31739:6;31748:7;31707:8;:49::i;:::-;31799:106;;-1:-1:-1;;;31799:106:0;;31851:4;31799:106;;;15398:34:1;;;15448:18;;;15441:34;;;31867:1:0;15491:18:1;;;15484:34;;;15534:18;;;15527:34;15577:19;;;15570:44;31889:15:0;15630:19:1;;;15623:35;31799:6:0;-1:-1:-1;;;;;31799:22:0;;;;31830:9;;15332:19:1;;31799:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31563:350;;:::o;12315:277::-;12400:7;12435:12;12428:5;12420:28;;;;-1:-1:-1;;;12420:28:0;;;;;;;;:::i;:::-;-1:-1:-1;12459:9:0;12471:5;12475:1;12471;: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://02c215a4eff6e07b3ae4922f1771fdb539b848631f6804eb0a1afdb7796c5c1a
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.