ETH Price: $2,610.62 (-1.39%)

Token

zkINU (zkINU)
 

Overview

Max Total Supply

1,000,000,000 zkINU

Holders

97

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
16,000,000 zkINU

Value
$0.00
0xd516955bdfd66e5f4aaec593e28001265f44bd1f
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:
zkINU

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-23
*/

//https://t.me/zkInuPortal

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

    IUniswapV2Router02 public immutable router;
    address public uniswapV2Pair;

    // addresses
    address private developmentWallet;
    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;

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

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

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

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

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDevelopment;
    uint256 private taxTill;

    // 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("zkINU", "zkINU") {
 
        router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

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

        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedMaxWalletAmount[owner()] = true;
        _isExcludedMaxWalletAmount[address(0xdead)] = true;
        _isExcludedMaxWalletAmount[address(this)] = true;
        
        approve(address(router), type(uint256).max);

        uint256 totalSupply = 1e9 * 1e18;
        maxBuyAmount = totalSupply * 2 / 100; // 2% maxBuyAmount
        maxSellAmount = totalSupply * 2 / 100; // 2% maxSellAmount
        maxWalletAmount = totalSupply * 2 / 100; // 2% maxWallet
        thresholdSwapAmount = totalSupply * 1 / 1000; 

        _fees.buyMarketingFee = 20;
        _fees.buyLiquidityFee = 0;
        _fees.buyDevelopmentFee = 0;
        _fees.buyTotalFees = _fees.buyMarketingFee + _fees.buyLiquidityFee + _fees.buyDevelopmentFee;

        _fees.sellMarketingFee = 30;
        _fees.sellLiquidityFee = 0;
        _fees.sellDevelopmentFee = 10;
        _fees.sellTotalFees = _fees.sellMarketingFee + _fees.sellLiquidityFee + _fees.sellDevelopmentFee;

        marketingWallet = address(0x5832415F89eC14Bc82eD88c9Ab76039E9dab9987);
        developmentWallet = address(0xd70c5F61D889ddC5FEfA25F230b1C967afAe233F);

        // 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 {

    }


    function createPair() external onlyOwner {
        uniswapV2Pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH());
        _isExcludedMaxTransactionAmount[address(uniswapV2Pair)] = true;        
        _isExcludedMaxWalletAmount[address(uniswapV2Pair)] = true;
        marketPair[address(uniswapV2Pair)] = true;
    }


    // once enabled, can never be turned off
    function secretWeapon() external onlyOwner {
        isTrading = true;
        swapEnabled = true;
        taxTill = block.number + 0;
    }

    // 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) public onlyOwner {
        maxBuyAmount = (totalSupply() * newMaxBuy) / 1000;
        maxSellAmount = (totalSupply() * newMaxSell) / 1000;
    }

    function updateMaxWalletAmount(uint256 newPercentage) public onlyOwner {
        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 _developmentFeeBuy,uint256 _marketingFeeSell, uint256 _liquidityFeeSell,uint256 _developmentFeeSell) external onlyOwner{
        _fees.buyMarketingFee = _marketingFeeBuy;
        _fees.buyLiquidityFee = _liquidityFeeBuy;
        _fees.buyDevelopmentFee = _developmentFeeBuy;
        _fees.buyTotalFees = _fees.buyMarketingFee + _fees.buyLiquidityFee + _fees.buyDevelopmentFee;

        _fees.sellMarketingFee = _marketingFeeSell;
        _fees.sellLiquidityFee = _liquidityFeeSell;
        _fees.sellDevelopmentFee = _developmentFeeSell;
        _fees.sellTotalFees = _fees.sellMarketingFee + _fees.sellLiquidityFee + _fees.sellDevelopmentFee;
        require(_fees.buyTotalFees <= 99, "Must keep fees at 99% or less");   
        require(_fees.sellTotalFees <= 99, "Must keep fees at 99% 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 removeLimits() external onlyOwner {
        updateMaxTxnAmount(1000,1000);
        updateMaxWalletAmount(1000);
    }

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

    function setWallets(address _marketingWallet,address _developmentWallet) external onlyOwner{
        marketingWallet = _marketingWallet;
        developmentWallet = _developmentWallet;
    }

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

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        
        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;
        }
 
        
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            uint256 fees = 0;
            if(block.number < taxTill) {
                fees = amount.mul(99).div(100);
                tokensForMarketing += (fees * 94) / 99;
                tokensForDevelopment += (fees * 5) / 99;
            } else 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;
                tokensForDevelopment += fees * _fees.sellDevelopmentFee / _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;
                tokensForDevelopment += fees * _fees.buyDevelopmentFee / _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 + tokensForDevelopment;
        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 ethForDevelopment = newBalance.mul(tokensForDevelopment).div(toSwap);
        uint256 ethForLiquidity = newBalance - (ethForMarketing + ethForDevelopment);


        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDevelopment = 0;


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

        (success,) = address(developmentWallet).call{ value: (address(this).balance - ethForMarketing) } ("");
        (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":"buyDevelopmentFee","type":"uint256"},{"internalType":"uint256","name":"buyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"sellTotalFees","type":"uint256"},{"internalType":"uint256","name":"sellMarketingFee","type":"uint256"},{"internalType":"uint256","name":"sellDevelopmentFee","type":"uint256"},{"internalType":"uint256","name":"sellLiquidityFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_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":"createPair","outputs":[],"stateMutability":"nonpayable","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":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"secretWeapon","outputs":[],"stateMutability":"nonpayable","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"},{"internalType":"address","name":"_developmentWallet","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"toggleSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokensForDevelopment","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_liquidityFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_developmentFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_marketingFeeSell","type":"uint256"},{"internalType":"uint256","name":"_liquidityFeeSell","type":"uint256"},{"internalType":"uint256","name":"_developmentFeeSell","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"}]

600d805461ffff191690556101a0604052600060a081905260c081905260e0819052610100819052610120819052610140819052610160819052610180819052600e819055600f819055601081905560118190556012819055601381905560148190556015553480156200007257600080fd5b506040805180820182526005808252647a6b494e5560d81b602080840182815285518087019096529285528401528151919291620000b3916003916200061c565b508051620000c99060049060208401906200061c565b5050506000620000de6200043560201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526000908152601b60208190527f737a8aa320b777139cfebe450e173d90b49df21bdde0d83dcfdff4abee7622ee805460ff1916600190811790915591620001956005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152601b909252812080548316600190811790915561dead82527f6790d4910a095e0e04c8daa388834616a295bac3f59038957b6d0b93a2d2168480549093168117909255601a906200021d6005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152601a909252812080549092166001908117909255601c90620002766005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055601c9092527fa48bd8e7b1565515cde2859b6cc48308ba05b5325bcf90fb096b9ac0b8087dfc80548416600190811790915530835291208054909216179055608051620002f29060001962000439565b506b033b2e3c9fd0803ce800000060646200030f826002620006d8565b6200031b9190620006fa565b60095560646200032d826002620006d8565b620003399190620006fa565b600a5560646200034b826002620006d8565b620003579190620006fa565b600b556103e86200036a826001620006d8565b620003769190620006fa565b600c556014600f819055600060118190556010819055906200039a9082906200071d565b620003a691906200071d565b600e55601e601381905560006015819055600a601481905591620003cb91906200071d565b620003d791906200071d565b601255600880546001600160a01b0319908116735832415f89ec14bc82ed88c9ab76039e9dab9987179091556007805490911673d70c5f61d889ddc5fefa25f230b1c967afae233f1790556200042e338262000451565b5062000775565b3390565b60006200044833848462000551565b50600192915050565b6001600160a01b038216620004ad5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620004c981600254620005b260201b620012581790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620004fc91839062001258620005b2821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600080620005c183856200071d565b905083811015620006155760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620004a4565b9392505050565b8280546200062a9062000738565b90600052602060002090601f0160209004810192826200064e576000855562000699565b82601f106200066957805160ff191683800117855562000699565b8280016001018555821562000699579182015b82811115620006995782518255916020019190600101906200067c565b50620006a7929150620006ab565b5090565b5b80821115620006a75760008155600101620006ac565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620006f557620006f5620006c2565b500290565b6000826200071857634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007335762000733620006c2565b500190565b600181811c908216806200074d57607f821691505b602082108114156200076f57634e487b7160e01b600052602260045260246000fd5b50919050565b608051612509620007c2600039600081816107bd01528181610cdb01528181610d7b01528181611dfd01528181611ec501528181611f0101528181611f730152611fcf01526125096000f3fe6080604052600436106102345760003560e01c806378e0edd71161012e578063c16dd4a4116100ab578063e16830a81161006f578063e16830a814610725578063ef8700e514610745578063f2fde38b1461075b578063f5b3c3bf1461077b578063f887ea40146107ab57600080fd5b8063c16dd4a414610611578063c18bc19514610631578063d212a69a14610651578063d3f6a157146106bf578063dd62ed3e146106df57600080fd5b80639e78fb4f116100f25780639e78fb4f1461057c578063a457c2d714610591578063a9059cbb146105b1578063b8863115146105d1578063c0246668146105f157600080fd5b806378e0edd7146104e45780638da5cb5b146104f957806395d89b411461051757806396880b171461052c578063992c58e41461055c57600080fd5b8063313ce567116101bc5780636ddd1713116101805780636ddd17131461044557806370a0823114610464578063715018a61461049a578063751039fc146104af5780637571336a146104c457600080fd5b8063313ce56714610378578063395093511461039457806349bd5a5e146103b45780634fbee193146103ec578063555467a11461042557600080fd5b806318160ddd1161020357806318160ddd146102ed5780631a8145bb1461030c5780631c6e8a75146103225780631f3fed8f1461034257806323b872dd1461035857600080fd5b806306fdde0314610240578063095ea7b31461026b57806310d5de531461029b57806311a582c3146102cb57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b506102556107df565b604051610262919061208a565b60405180910390f35b34801561027757600080fd5b5061028b6102863660046120f7565b610871565b6040519015158152602001610262565b3480156102a757600080fd5b5061028b6102b6366004612123565b601b6020526000908152604090205460ff1681565b3480156102d757600080fd5b506102eb6102e6366004612140565b610888565b005b3480156102f957600080fd5b506002545b604051908152602001610262565b34801561031857600080fd5b506102fe60175481565b34801561032e57600080fd5b506102eb61033d366004612172565b610907565b34801561034e57600080fd5b506102fe60165481565b34801561036457600080fd5b5061028b61037336600461218d565b61094b565b34801561038457600080fd5b5060405160128152602001610262565b3480156103a057600080fd5b5061028b6103af3660046120f7565b6109b4565b3480156103c057600080fd5b506006546103d4906001600160a01b031681565b6040516001600160a01b039091168152602001610262565b3480156103f857600080fd5b5061028b610407366004612123565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561043157600080fd5b5061028b6104403660046121ce565b6109ea565b34801561045157600080fd5b50600d5461028b90610100900460ff1681565b34801561047057600080fd5b506102fe61047f366004612123565b6001600160a01b031660009081526020819052604090205490565b3480156104a657600080fd5b506102eb610a25565b3480156104bb57600080fd5b506102eb610a99565b3480156104d057600080fd5b506102eb6104df3660046121e7565b610adc565b3480156104f057600080fd5b506102eb610b31565b34801561050557600080fd5b506005546001600160a01b03166103d4565b34801561052357600080fd5b50610255610b7a565b34801561053857600080fd5b5061028b610547366004612123565b601c6020526000908152604090205460ff1681565b34801561056857600080fd5b506102eb61057736600461221c565b610b89565b34801561058857600080fd5b506102eb610caf565b34801561059d57600080fd5b5061028b6105ac3660046120f7565b610ef8565b3480156105bd57600080fd5b5061028b6105cc3660046120f7565b610f47565b3480156105dd57600080fd5b50600d5461028b9062010000900460ff1681565b3480156105fd57600080fd5b506102eb61060c3660046121e7565b610f54565b34801561061d57600080fd5b506102eb61062c3660046121e7565b610fa9565b34801561063d57600080fd5b506102eb61064c3660046121ce565b61106f565b34801561065d57600080fd5b50600e54600f54601054601154601254601354601454601554610684979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610262565b3480156106cb57600080fd5b506102eb6106da36600461225f565b6110c0565b3480156106eb57600080fd5b506102fe6106fa36600461225f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561073157600080fd5b506102eb6107403660046121e7565b611118565b34801561075157600080fd5b506102fe60185481565b34801561076757600080fd5b506102eb610776366004612123565b61116d565b34801561078757600080fd5b5061028b610796366004612123565b601d6020526000908152604090205460ff1681565b3480156107b757600080fd5b506103d47f000000000000000000000000000000000000000000000000000000000000000081565b6060600380546107ee90612298565b80601f016020809104026020016040519081016040528092919081815260200182805461081a90612298565b80156108675780601f1061083c57610100808354040283529160200191610867565b820191906000526020600020905b81548152906001019060200180831161084a57829003601f168201915b5050505050905090565b600061087e3384846112be565b5060015b92915050565b6005546001600160a01b031633146108bb5760405162461bcd60e51b81526004016108b2906122d3565b60405180910390fd5b6103e8826108c860025490565b6108d2919061231e565b6108dc919061233d565b6009556103e8816108ec60025490565b6108f6919061231e565b610900919061233d565b600a555050565b6005546001600160a01b031633146109315760405162461bcd60e51b81526004016108b2906122d3565b600d80549115156101000261ff0019909216919091179055565b6000610958848484611320565b6109aa84336109a5856040518060600160405280602881526020016124ac602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611979565b6112be565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161087e9185906109a59086611258565b6005546000906001600160a01b03163314610a175760405162461bcd60e51b81526004016108b2906122d3565b50600c81905560015b919050565b6005546001600160a01b03163314610a4f5760405162461bcd60e51b81526004016108b2906122d3565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610ac35760405162461bcd60e51b81526004016108b2906122d3565b610acf6103e880610888565b610ada6103e861106f565b565b6005546001600160a01b03163314610b065760405162461bcd60e51b81526004016108b2906122d3565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b5b5760405162461bcd60e51b81526004016108b2906122d3565b600d805461ffff1916610101179055610b7543600061235f565b601955565b6060600480546107ee90612298565b6005546001600160a01b03163314610bb35760405162461bcd60e51b81526004016108b2906122d3565b600f8690556011859055601084905583610bcd868861235f565b610bd7919061235f565b600e5560138390556015829055601481905580610bf4838561235f565b610bfe919061235f565b601255600e5460631015610c545760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c65737300000060448201526064016108b2565b60125460631015610ca75760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c65737300000060448201526064016108b2565b505050505050565b6005546001600160a01b03163314610cd95760405162461bcd60e51b81526004016108b2906122d3565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610d3257600080fd5b505afa158015610d46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6a9190612377565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610dd257600080fd5b505afa158015610de6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0a9190612377565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015610e5257600080fd5b505af1158015610e66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8a9190612377565b600680546001600160a01b0319166001600160a01b0392831690811782556000908152601b60209081526040808320805460ff199081166001908117909255855487168552601c8452828520805482168317905594549095168352601d909152902080549091169091179055565b600061087e33846109a585604051806060016040528060258152602001612461602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611979565b600061087e338484611320565b6005546001600160a01b03163314610f7e5760405162461bcd60e51b81526004016108b2906122d3565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fd35760405162461bcd60e51b81526004016108b2906122d3565b6006546001600160a01b03838116911614156110445760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526936b0b935b2ba2830b4b960b11b60648201526084016108b2565b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110995760405162461bcd60e51b81526004016108b2906122d3565b6103e8816110a660025490565b6110b0919061231e565b6110ba919061233d565b600b5550565b6005546001600160a01b031633146110ea5760405162461bcd60e51b81526004016108b2906122d3565b600880546001600160a01b039384166001600160a01b03199182161790915560078054929093169116179055565b6005546001600160a01b031633146111425760405162461bcd60e51b81526004016108b2906122d3565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146111975760405162461bcd60e51b81526004016108b2906122d3565b6001600160a01b0381166111fc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b2565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080611265838561235f565b9050838110156112b75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108b2565b9392505050565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b8061133657611331838360006119b3565b505050565b6005546001600160a01b0384811691161480159061136257506005546001600160a01b03838116911614155b80156113775750600d5462010000900460ff16155b1561160657600d5460ff1661140a576001600160a01b0383166000908152601a602052604090205460ff16806113c557506001600160a01b0382166000908152601a602052604090205460ff165b61140a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108b2565b6001600160a01b0383166000908152601d602052604090205460ff16801561144b57506001600160a01b0382166000908152601b602052604090205460ff16155b156114c5576009548111156114c05760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108b2565b61157c565b6001600160a01b0382166000908152601d602052604090205460ff16801561150657506001600160a01b0383166000908152601b602052604090205460ff16155b1561157c57600a5481111561157c5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108b2565b6001600160a01b0382166000908152601c602052604090205460ff1661160657600b546001600160a01b0383166000908152602081905260409020546115c2908361235f565b11156116065760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108b2565b30600090815260208190526040902054600c54811080159081906116315750600d54610100900460ff165b80156116465750600d5462010000900460ff16155b801561166a57506001600160a01b0384166000908152601d602052604090205460ff165b801561168f57506001600160a01b0385166000908152601a602052604090205460ff16155b80156116b457506001600160a01b0384166000908152601a602052604090205460ff16155b156116df57600d805462ff00001916620100001790556116d2611a70565b600d805462ff0000191690555b600d546001600160a01b0386166000908152601a602052604090205460ff6201000090920482161591168061172c57506001600160a01b0385166000908152601a602052604090205460ff165b15611735575060005b801561196e5760006019544310156117c05761175d6064611757876063611ca3565b90611d22565b9050606361176c82605e61231e565b611776919061233d565b60166000828254611787919061235f565b909155506063905061179a82600561231e565b6117a4919061233d565b601860008282546117b5919061235f565b9091555061194f9050565b6001600160a01b0386166000908152601d602052604090205460ff1680156117e9575060125415155b156118775760125461180390606490611757908890611ca3565b60125460155491925090611817908361231e565b611821919061233d565b60176000828254611832919061235f565b9091555050601254601354611847908361231e565b611851919061233d565b60166000828254611862919061235f565b909155505060125460145461179a908361231e565b6001600160a01b0387166000908152601d602052604090205460ff1680156118a05750600e5415155b1561194f57600e546118ba90606490611757908890611ca3565b600e54601154919250906118ce908361231e565b6118d8919061233d565b601760008282546118e9919061235f565b9091555050600e54600f546118fe908361231e565b611908919061233d565b60166000828254611919919061235f565b9091555050600e5460105461192e908361231e565b611938919061233d565b60186000828254611949919061235f565b90915550505b8015611960576119608730836119b3565b61196a8186612394565b9450505b610ca78686866119b3565b6000818484111561199d5760405162461bcd60e51b81526004016108b2919061208a565b5060006119aa8486612394565b95945050505050565b6119f081604051806060016040528060268152602001612486602691396001600160a01b0386166000908152602081905260409020549190611979565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611a1f9082611258565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611313565b3060009081526020819052604081205490506000601854601654601754611a97919061235f565b611aa1919061235f565b90506000821580611ab0575081155b15611aba57505050565b600c54611ac890601461231e565b831115611ae057600c54611add90601461231e565b92505b600060028360175486611af3919061231e565b611afd919061233d565b611b07919061233d565b90506000611b158583611d64565b905047611b2182611da6565b6000611b2d4783611d64565b90506000611b4a8761175760165485611ca390919063ffffffff16565b90506000611b678861175760185486611ca390919063ffffffff16565b90506000611b75828461235f565b611b7f9085612394565b60006017819055601681905560185590508615801590611b9f5750600081115b15611be857611bae8782611f6d565b60408051878152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b6007546001600160a01b0316611bfe8447612394565b604051600081818185875af1925050503d8060008114611c3a576040519150601f19603f3d011682016040523d82523d6000602084013e611c3f565b606091505b50506008546040519199506001600160a01b0316904790600081818185875af1925050503d8060008114611c8f576040519150601f19603f3d011682016040523d82523d6000602084013e611c94565b606091505b50505050505050505050505050565b600082611cb257506000610882565b6000611cbe838561231e565b905082611ccb858361233d565b146112b75760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108b2565b60006112b783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061205c565b60006112b783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611979565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ddb57611ddb6123ab565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611e5457600080fd5b505afa158015611e68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e8c9190612377565b81600181518110611e9f57611e9f6123ab565b60200260200101906001600160a01b031690816001600160a01b031681525050611eea307f0000000000000000000000000000000000000000000000000000000000000000846112be565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611f3f9085906000908690309042906004016123c1565b600060405180830381600087803b158015611f5957600080fd5b505af1158015610ca7573d6000803e3d6000fd5b611f98307f0000000000000000000000000000000000000000000000000000000000000000846112be565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c4016060604051808303818588803b15801561201c57600080fd5b505af1158015612030573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120559190612432565b5050505050565b6000818361207d5760405162461bcd60e51b81526004016108b2919061208a565b5060006119aa848661233d565b600060208083528351808285015260005b818110156120b75785810183015185820160400152820161209b565b818111156120c9576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146120f457600080fd5b50565b6000806040838503121561210a57600080fd5b8235612115816120df565b946020939093013593505050565b60006020828403121561213557600080fd5b81356112b7816120df565b6000806040838503121561215357600080fd5b50508035926020909101359150565b80358015158114610a2057600080fd5b60006020828403121561218457600080fd5b6112b782612162565b6000806000606084860312156121a257600080fd5b83356121ad816120df565b925060208401356121bd816120df565b929592945050506040919091013590565b6000602082840312156121e057600080fd5b5035919050565b600080604083850312156121fa57600080fd5b8235612205816120df565b915061221360208401612162565b90509250929050565b60008060008060008060c0878903121561223557600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b6000806040838503121561227257600080fd5b823561227d816120df565b9150602083013561228d816120df565b809150509250929050565b600181811c908216806122ac57607f821691505b602082108114156122cd57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561233857612338612308565b500290565b60008261235a57634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561237257612372612308565b500190565b60006020828403121561238957600080fd5b81516112b7816120df565b6000828210156123a6576123a6612308565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124115784516001600160a01b0316835293830193918301916001016123ec565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561244757600080fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220ae692dc1866a0762ee091484c95bcce7ce1db81c54bef1065ef0c2b03da1983564736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102345760003560e01c806378e0edd71161012e578063c16dd4a4116100ab578063e16830a81161006f578063e16830a814610725578063ef8700e514610745578063f2fde38b1461075b578063f5b3c3bf1461077b578063f887ea40146107ab57600080fd5b8063c16dd4a414610611578063c18bc19514610631578063d212a69a14610651578063d3f6a157146106bf578063dd62ed3e146106df57600080fd5b80639e78fb4f116100f25780639e78fb4f1461057c578063a457c2d714610591578063a9059cbb146105b1578063b8863115146105d1578063c0246668146105f157600080fd5b806378e0edd7146104e45780638da5cb5b146104f957806395d89b411461051757806396880b171461052c578063992c58e41461055c57600080fd5b8063313ce567116101bc5780636ddd1713116101805780636ddd17131461044557806370a0823114610464578063715018a61461049a578063751039fc146104af5780637571336a146104c457600080fd5b8063313ce56714610378578063395093511461039457806349bd5a5e146103b45780634fbee193146103ec578063555467a11461042557600080fd5b806318160ddd1161020357806318160ddd146102ed5780631a8145bb1461030c5780631c6e8a75146103225780631f3fed8f1461034257806323b872dd1461035857600080fd5b806306fdde0314610240578063095ea7b31461026b57806310d5de531461029b57806311a582c3146102cb57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b506102556107df565b604051610262919061208a565b60405180910390f35b34801561027757600080fd5b5061028b6102863660046120f7565b610871565b6040519015158152602001610262565b3480156102a757600080fd5b5061028b6102b6366004612123565b601b6020526000908152604090205460ff1681565b3480156102d757600080fd5b506102eb6102e6366004612140565b610888565b005b3480156102f957600080fd5b506002545b604051908152602001610262565b34801561031857600080fd5b506102fe60175481565b34801561032e57600080fd5b506102eb61033d366004612172565b610907565b34801561034e57600080fd5b506102fe60165481565b34801561036457600080fd5b5061028b61037336600461218d565b61094b565b34801561038457600080fd5b5060405160128152602001610262565b3480156103a057600080fd5b5061028b6103af3660046120f7565b6109b4565b3480156103c057600080fd5b506006546103d4906001600160a01b031681565b6040516001600160a01b039091168152602001610262565b3480156103f857600080fd5b5061028b610407366004612123565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561043157600080fd5b5061028b6104403660046121ce565b6109ea565b34801561045157600080fd5b50600d5461028b90610100900460ff1681565b34801561047057600080fd5b506102fe61047f366004612123565b6001600160a01b031660009081526020819052604090205490565b3480156104a657600080fd5b506102eb610a25565b3480156104bb57600080fd5b506102eb610a99565b3480156104d057600080fd5b506102eb6104df3660046121e7565b610adc565b3480156104f057600080fd5b506102eb610b31565b34801561050557600080fd5b506005546001600160a01b03166103d4565b34801561052357600080fd5b50610255610b7a565b34801561053857600080fd5b5061028b610547366004612123565b601c6020526000908152604090205460ff1681565b34801561056857600080fd5b506102eb61057736600461221c565b610b89565b34801561058857600080fd5b506102eb610caf565b34801561059d57600080fd5b5061028b6105ac3660046120f7565b610ef8565b3480156105bd57600080fd5b5061028b6105cc3660046120f7565b610f47565b3480156105dd57600080fd5b50600d5461028b9062010000900460ff1681565b3480156105fd57600080fd5b506102eb61060c3660046121e7565b610f54565b34801561061d57600080fd5b506102eb61062c3660046121e7565b610fa9565b34801561063d57600080fd5b506102eb61064c3660046121ce565b61106f565b34801561065d57600080fd5b50600e54600f54601054601154601254601354601454601554610684979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610262565b3480156106cb57600080fd5b506102eb6106da36600461225f565b6110c0565b3480156106eb57600080fd5b506102fe6106fa36600461225f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561073157600080fd5b506102eb6107403660046121e7565b611118565b34801561075157600080fd5b506102fe60185481565b34801561076757600080fd5b506102eb610776366004612123565b61116d565b34801561078757600080fd5b5061028b610796366004612123565b601d6020526000908152604090205460ff1681565b3480156107b757600080fd5b506103d47f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6060600380546107ee90612298565b80601f016020809104026020016040519081016040528092919081815260200182805461081a90612298565b80156108675780601f1061083c57610100808354040283529160200191610867565b820191906000526020600020905b81548152906001019060200180831161084a57829003601f168201915b5050505050905090565b600061087e3384846112be565b5060015b92915050565b6005546001600160a01b031633146108bb5760405162461bcd60e51b81526004016108b2906122d3565b60405180910390fd5b6103e8826108c860025490565b6108d2919061231e565b6108dc919061233d565b6009556103e8816108ec60025490565b6108f6919061231e565b610900919061233d565b600a555050565b6005546001600160a01b031633146109315760405162461bcd60e51b81526004016108b2906122d3565b600d80549115156101000261ff0019909216919091179055565b6000610958848484611320565b6109aa84336109a5856040518060600160405280602881526020016124ac602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611979565b6112be565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161087e9185906109a59086611258565b6005546000906001600160a01b03163314610a175760405162461bcd60e51b81526004016108b2906122d3565b50600c81905560015b919050565b6005546001600160a01b03163314610a4f5760405162461bcd60e51b81526004016108b2906122d3565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610ac35760405162461bcd60e51b81526004016108b2906122d3565b610acf6103e880610888565b610ada6103e861106f565b565b6005546001600160a01b03163314610b065760405162461bcd60e51b81526004016108b2906122d3565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b5b5760405162461bcd60e51b81526004016108b2906122d3565b600d805461ffff1916610101179055610b7543600061235f565b601955565b6060600480546107ee90612298565b6005546001600160a01b03163314610bb35760405162461bcd60e51b81526004016108b2906122d3565b600f8690556011859055601084905583610bcd868861235f565b610bd7919061235f565b600e5560138390556015829055601481905580610bf4838561235f565b610bfe919061235f565b601255600e5460631015610c545760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c65737300000060448201526064016108b2565b60125460631015610ca75760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c65737300000060448201526064016108b2565b505050505050565b6005546001600160a01b03163314610cd95760405162461bcd60e51b81526004016108b2906122d3565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610d3257600080fd5b505afa158015610d46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6a9190612377565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610dd257600080fd5b505afa158015610de6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0a9190612377565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015610e5257600080fd5b505af1158015610e66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8a9190612377565b600680546001600160a01b0319166001600160a01b0392831690811782556000908152601b60209081526040808320805460ff199081166001908117909255855487168552601c8452828520805482168317905594549095168352601d909152902080549091169091179055565b600061087e33846109a585604051806060016040528060258152602001612461602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611979565b600061087e338484611320565b6005546001600160a01b03163314610f7e5760405162461bcd60e51b81526004016108b2906122d3565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fd35760405162461bcd60e51b81526004016108b2906122d3565b6006546001600160a01b03838116911614156110445760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526936b0b935b2ba2830b4b960b11b60648201526084016108b2565b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110995760405162461bcd60e51b81526004016108b2906122d3565b6103e8816110a660025490565b6110b0919061231e565b6110ba919061233d565b600b5550565b6005546001600160a01b031633146110ea5760405162461bcd60e51b81526004016108b2906122d3565b600880546001600160a01b039384166001600160a01b03199182161790915560078054929093169116179055565b6005546001600160a01b031633146111425760405162461bcd60e51b81526004016108b2906122d3565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146111975760405162461bcd60e51b81526004016108b2906122d3565b6001600160a01b0381166111fc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b2565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080611265838561235f565b9050838110156112b75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108b2565b9392505050565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b8061133657611331838360006119b3565b505050565b6005546001600160a01b0384811691161480159061136257506005546001600160a01b03838116911614155b80156113775750600d5462010000900460ff16155b1561160657600d5460ff1661140a576001600160a01b0383166000908152601a602052604090205460ff16806113c557506001600160a01b0382166000908152601a602052604090205460ff165b61140a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108b2565b6001600160a01b0383166000908152601d602052604090205460ff16801561144b57506001600160a01b0382166000908152601b602052604090205460ff16155b156114c5576009548111156114c05760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108b2565b61157c565b6001600160a01b0382166000908152601d602052604090205460ff16801561150657506001600160a01b0383166000908152601b602052604090205460ff16155b1561157c57600a5481111561157c5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108b2565b6001600160a01b0382166000908152601c602052604090205460ff1661160657600b546001600160a01b0383166000908152602081905260409020546115c2908361235f565b11156116065760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108b2565b30600090815260208190526040902054600c54811080159081906116315750600d54610100900460ff165b80156116465750600d5462010000900460ff16155b801561166a57506001600160a01b0384166000908152601d602052604090205460ff165b801561168f57506001600160a01b0385166000908152601a602052604090205460ff16155b80156116b457506001600160a01b0384166000908152601a602052604090205460ff16155b156116df57600d805462ff00001916620100001790556116d2611a70565b600d805462ff0000191690555b600d546001600160a01b0386166000908152601a602052604090205460ff6201000090920482161591168061172c57506001600160a01b0385166000908152601a602052604090205460ff165b15611735575060005b801561196e5760006019544310156117c05761175d6064611757876063611ca3565b90611d22565b9050606361176c82605e61231e565b611776919061233d565b60166000828254611787919061235f565b909155506063905061179a82600561231e565b6117a4919061233d565b601860008282546117b5919061235f565b9091555061194f9050565b6001600160a01b0386166000908152601d602052604090205460ff1680156117e9575060125415155b156118775760125461180390606490611757908890611ca3565b60125460155491925090611817908361231e565b611821919061233d565b60176000828254611832919061235f565b9091555050601254601354611847908361231e565b611851919061233d565b60166000828254611862919061235f565b909155505060125460145461179a908361231e565b6001600160a01b0387166000908152601d602052604090205460ff1680156118a05750600e5415155b1561194f57600e546118ba90606490611757908890611ca3565b600e54601154919250906118ce908361231e565b6118d8919061233d565b601760008282546118e9919061235f565b9091555050600e54600f546118fe908361231e565b611908919061233d565b60166000828254611919919061235f565b9091555050600e5460105461192e908361231e565b611938919061233d565b60186000828254611949919061235f565b90915550505b8015611960576119608730836119b3565b61196a8186612394565b9450505b610ca78686866119b3565b6000818484111561199d5760405162461bcd60e51b81526004016108b2919061208a565b5060006119aa8486612394565b95945050505050565b6119f081604051806060016040528060268152602001612486602691396001600160a01b0386166000908152602081905260409020549190611979565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611a1f9082611258565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611313565b3060009081526020819052604081205490506000601854601654601754611a97919061235f565b611aa1919061235f565b90506000821580611ab0575081155b15611aba57505050565b600c54611ac890601461231e565b831115611ae057600c54611add90601461231e565b92505b600060028360175486611af3919061231e565b611afd919061233d565b611b07919061233d565b90506000611b158583611d64565b905047611b2182611da6565b6000611b2d4783611d64565b90506000611b4a8761175760165485611ca390919063ffffffff16565b90506000611b678861175760185486611ca390919063ffffffff16565b90506000611b75828461235f565b611b7f9085612394565b60006017819055601681905560185590508615801590611b9f5750600081115b15611be857611bae8782611f6d565b60408051878152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b6007546001600160a01b0316611bfe8447612394565b604051600081818185875af1925050503d8060008114611c3a576040519150601f19603f3d011682016040523d82523d6000602084013e611c3f565b606091505b50506008546040519199506001600160a01b0316904790600081818185875af1925050503d8060008114611c8f576040519150601f19603f3d011682016040523d82523d6000602084013e611c94565b606091505b50505050505050505050505050565b600082611cb257506000610882565b6000611cbe838561231e565b905082611ccb858361233d565b146112b75760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108b2565b60006112b783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061205c565b60006112b783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611979565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ddb57611ddb6123ab565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611e5457600080fd5b505afa158015611e68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e8c9190612377565b81600181518110611e9f57611e9f6123ab565b60200260200101906001600160a01b031690816001600160a01b031681525050611eea307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846112be565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611f3f9085906000908690309042906004016123c1565b600060405180830381600087803b158015611f5957600080fd5b505af1158015610ca7573d6000803e3d6000fd5b611f98307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846112be565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c4016060604051808303818588803b15801561201c57600080fd5b505af1158015612030573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120559190612432565b5050505050565b6000818361207d5760405162461bcd60e51b81526004016108b2919061208a565b5060006119aa848661233d565b600060208083528351808285015260005b818110156120b75785810183015185820160400152820161209b565b818111156120c9576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146120f457600080fd5b50565b6000806040838503121561210a57600080fd5b8235612115816120df565b946020939093013593505050565b60006020828403121561213557600080fd5b81356112b7816120df565b6000806040838503121561215357600080fd5b50508035926020909101359150565b80358015158114610a2057600080fd5b60006020828403121561218457600080fd5b6112b782612162565b6000806000606084860312156121a257600080fd5b83356121ad816120df565b925060208401356121bd816120df565b929592945050506040919091013590565b6000602082840312156121e057600080fd5b5035919050565b600080604083850312156121fa57600080fd5b8235612205816120df565b915061221360208401612162565b90509250929050565b60008060008060008060c0878903121561223557600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b6000806040838503121561227257600080fd5b823561227d816120df565b9150602083013561228d816120df565b809150509250929050565b600181811c908216806122ac57607f821691505b602082108114156122cd57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561233857612338612308565b500290565b60008261235a57634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561237257612372612308565b500190565b60006020828403121561238957600080fd5b81516112b7816120df565b6000828210156123a6576123a6612308565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124115784516001600160a01b0316835293830193918301916001016123ec565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561244757600080fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220ae692dc1866a0762ee091484c95bcce7ce1db81c54bef1065ef0c2b03da1983564736f6c63430008090033

Deployed Bytecode Sourcemap

20683:13049:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4267:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6427:168;;;;;;;;;;-1:-1:-1;6427:168:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;6427:168:0;1072:187:1;22092:63:0;;;;;;;;;;-1:-1:-1;22092:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25271:214;;;;;;;;;;-1:-1:-1;25271:214:0;;;;;:::i;:::-;;:::i;:::-;;5384:107;;;;;;;;;;-1:-1:-1;5471:12:0;;5384:107;;;1915:25:1;;;1903:2;1888:18;5384:107:0;1769:177:1;21866:33:0;;;;;;;;;;;;;;;;25735:101;;;;;;;;;;-1:-1:-1;25735:101:0;;;;;:::i;:::-;;:::i;21826:33::-;;;;;;;;;;;;;;;;7077:354;;;;;;;;;;-1:-1:-1;7077:354:0;;;;;:::i;:::-;;:::i;5227:92::-;;;;;;;;;;-1:-1:-1;5227:92:0;;5309:2;2904:36:1;;2892:2;2877:18;5227:92:0;2762:184:1;7840:217:0;;;;;;;;;;-1:-1:-1;7840:217:0;;;;;:::i;:::-;;:::i;20807:28::-;;;;;;;;;;-1:-1:-1;20807:28:0;;;;-1:-1:-1;;;;;20807:28:0;;;;;;-1:-1:-1;;;;;3115:32:1;;;3097:51;;3085:2;3070:18;20807:28:0;2951:203:1;27736:125:0;;;;;;;;;;-1:-1:-1;27736:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;27825:28:0;27801:4;27825:28;;;:19;:28;;;;;;;;;27736:125;25105:158;;;;;;;;;;-1:-1:-1;25105:158:0;;;;;:::i;:::-;;:::i;21175:31::-;;;;;;;;;;-1:-1:-1;21175:31:0;;;;;;;;;;;5554:126;;;;;;;;;;-1:-1:-1;5554:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;5654:18:0;5627:7;5654:18;;;;;;;;;;;;5554:126;13364:148;;;;;;;;;;;;;:::i;27194:129::-;;;;;;;;;;;;;:::i;27042:144::-;;;;;;;;;;-1:-1:-1;27042:144:0;;;;;:::i;:::-;;:::i;24891:::-;;;;;;;;;;;;;:::i;12723:78::-;;;;;;;;;;-1:-1:-1;12787:6:0;;-1:-1:-1;;;;;12787:6:0;12723:78;;4485:103;;;;;;;;;;;;;:::i;22162:58::-;;;;;;;;;;-1:-1:-1;22162:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25844:896;;;;;;;;;;-1:-1:-1;25844:896:0;;;;;:::i;:::-;;:::i;24482:353::-;;;;;;;;;;;;;:::i;8560:268::-;;;;;;;;;;-1:-1:-1;8560:268:0;;;;;:::i;:::-;;:::i;5893:174::-;;;;;;;;;;-1:-1:-1;5893:174:0;;;;;:::i;:::-;;:::i;21213:22::-;;;;;;;;;;-1:-1:-1;21213:22:0;;;;;;;;;;;26752:132;;;;;;;;;;-1:-1:-1;26752:132:0;;;;;:::i;:::-;;:::i;27331:196::-;;;;;;;;;;-1:-1:-1;27331:196:0;;;;;:::i;:::-;;:::i;25493:146::-;;;;;;;;;;-1:-1:-1;25493:146:0;;;;;:::i;:::-;;:::i;21550:267::-;;;;;;;;;;-1:-1:-1;21550:267:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4535:25:1;;;4591:2;4576:18;;4569:34;;;;4619:18;;;4612:34;;;;4677:2;4662:18;;4655:34;;;;4720:3;4705:19;;4698:35;4764:3;4749:19;;4742:35;4808:3;4793:19;;4786:35;4852:3;4837:19;;4830:35;4522:3;4507:19;21550:267:0;4192:679:1;27535:193:0;;;;;;;;;;-1:-1:-1;27535:193:0;;;;;:::i;:::-;;:::i;6130:150::-;;;;;;;;;;-1:-1:-1;6130:150:0;;;;;:::i;:::-;-1:-1:-1;;;;;6245:18:0;;;6218:7;6245:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6130:150;26890:146;;;;;;;;;;-1:-1:-1;26890:146:0;;;;;:::i;:::-;;:::i;21906:35::-;;;;;;;;;;;;;;;;13667:244;;;;;;;;;;-1:-1:-1;13667:244:0;;;;;:::i;:::-;;:::i;22378:42::-;;;;;;;;;;-1:-1:-1;22378:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;20758;;;;;;;;;;;;;;;4267:99;4320:13;4353:5;4346:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4267:99;:::o;6427:168::-;6509:4;6526:39;3419:10;6549:7;6558:6;6526:8;:39::i;:::-;-1:-1:-1;6583:4:0;6427:168;;;;;:::o;25271:214::-;12934:6;;-1:-1:-1;;;;;12934:6:0;3419:10;12934:22;12926:67;;;;-1:-1:-1;;;12926:67:0;;;;;;;:::i;:::-;;;;;;;;;25411:4:::1;25398:9;25382:13;5471:12:::0;;;5384:107;25382:13:::1;:25;;;;:::i;:::-;25381:34;;;;:::i;:::-;25366:12;:49:::0;25473:4:::1;25459:10:::0;25443:13:::1;5471:12:::0;;;5384:107;25443:13:::1;:26;;;;:::i;:::-;25442:35;;;;:::i;:::-;25426:13;:51:::0;-1:-1:-1;;25271:214:0:o;25735:101::-;12934:6;;-1:-1:-1;;;;;12934:6:0;3419:10;12934:22;12926:67;;;;-1:-1:-1;;;12926:67:0;;;;;;;:::i;:::-;25807:11:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;25807:21:0;;::::1;::::0;;;::::1;::::0;;25735:101::o;7077:354::-;7216:4;7233:36;7243:6;7251:9;7262:6;7233:9;:36::i;:::-;7280:121;7289:6;3419:10;7311:89;7349:6;7311:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7311:19:0;;;;;;:11;:19;;;;;;;;3419:10;7311:33;;;;;;;;;;:37;:89::i;:::-;7280:8;:121::i;:::-;-1:-1:-1;7419:4:0;7077:354;;;;;:::o;7840:217::-;3419:10;7927:4;7976:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;7976:34:0;;;;;;;;;;7927:4;;7944:83;;7967:7;;7976:50;;8015:10;7976:38;:50::i;25105:158::-;12934:6;;25186:4;;-1:-1:-1;;;;;12934:6:0;3419:10;12934:22;12926:67;;;;-1:-1:-1;;;12926:67:0;;;;;;;:::i;:::-;-1:-1:-1;25202:19:0::1;:31:::0;;;25251:4:::1;13004:1;25105:158:::0;;;:::o;13364:148::-;12934:6;;-1:-1:-1;;;;;12934:6:0;3419:10;12934:22;12926:67;;;;-1:-1:-1;;;12926:67:0;;;;;;;:::i;:::-;13455:6:::1;::::0;13434:40:::1;::::0;13471:1:::1;::::0;-1:-1:-1;;;;;13455:6:0::1;::::0;13434:40:::1;::::0;13471:1;;13434:40:::1;13485:6;:19:::0;;-1:-1:-1;;;;;;13485:19:0::1;::::0;;13364:148::o;27194:129::-;12934:6;;-1:-1:-1;;;;;12934:6:0;3419:10;12934:22;12926:67;;;;-1:-1:-1;;;12926:67:0;;;;;;;:::i;:::-;27248:29:::1;27267:4;27272::::0;27248:18:::1;:29::i;:::-;27288:27;27310:4;27288:21;:27::i;:::-;27194:129::o:0;27042:144::-;12934:6;;-1:-1:-1;;;;;12934:6:0;3419:10;12934:22;12926:67;;;;-1:-1:-1;;;12926:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27132:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;27132:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27042:144::o;24891:::-;12934:6;;-1:-1:-1;;;;;12934:6:0;3419:10;12934:22;12926:67;;;;-1:-1:-1;;;12926:67:0;;;;;;;:::i;:::-;24945:9:::1;:16:::0;;-1:-1:-1;;24972:18:0;;;;;25011:16:::1;:12;-1:-1:-1::0;25011:16:0::1;:::i;:::-;25001:7;:26:::0;24891:144::o;4485:103::-;4540:13;4573:7;4566:14;;;;;:::i;25844:896::-;12934:6;;-1:-1:-1;;;;;12934:6:0;3419:10;12934:22;12926:67;;;;-1:-1:-1;;;12926:67:0;;;;;;;:::i;:::-;26053:21;:40;;;26104:21;:40;;;26155:23;:44;;;26181:18;26231:45:::1;26128:16:::0;26077;26231:45:::1;:::i;:::-;:71;;;;:::i;:::-;26210:5;:92:::0;26315:22;:42;;;26368:22;:42;;;26421:24;:46;;;26448:19;26500:47:::1;26393:17:::0;26340;26500:47:::1;:::i;:::-;:74;;;;:::i;:::-;26478:19:::0;:96;:5:::1;26593:18:::0;26615:2:::1;-1:-1:-1::0;26593:24:0::1;26585:66;;;::::0;-1:-1:-1;;;26585:66:0;;7112:2:1;26585:66:0::1;::::0;::::1;7094:21:1::0;7151:2;7131:18;;;7124:30;7190:31;7170:18;;;7163:59;7239:18;;26585:66:0::1;6910:353:1::0;26585:66:0::1;26673:19:::0;;26696:2:::1;-1:-1:-1::0;26673:25:0::1;26665:67;;;::::0;-1:-1:-1;;;26665:67:0;;7112:2:1;26665:67:0::1;::::0;::::1;7094:21:1::0;7151:2;7131:18;;;7124:30;7190:31;7170:18;;;7163:59;7239:18;;26665:67:0::1;6910:353:1::0;26665:67:0::1;25844:896:::0;;;;;;:::o;24482:353::-;12934:6;;-1:-1:-1;;;;;12934:6:0;3419:10;12934:22;12926:67;;;;-1:-1:-1;;;12926:67:0;;;;;;;:::i;:::-;24568:6:::1;-1:-1:-1::0;;;;;24568:14:0::1;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;24550:46:0::1;;24605:4;24612:6;-1:-1:-1::0;;;;;24612:11:0::1;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24550:76;::::0;-1:-1:-1;;;;;;24550:76:0::1;::::0;;;;;;-1:-1:-1;;;;;7754:15:1;;;24550:76:0::1;::::0;::::1;7736:34:1::0;7806:15;;7786:18;;;7779:43;7671:18;;24550:76:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24534:13;:92:::0;;-1:-1:-1;;;;;;24534:92:0::1;-1:-1:-1::0;;;;;24534:92:0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;24637:55:0;;;:31:::1;:55;::::0;;;;;;;:62;;-1:-1:-1;;24637:62:0;;::::1;-1:-1:-1::0;24637:62:0;;::::1;::::0;;;24753:13;;;::::1;24718:50:::0;;:26:::1;:50:::0;;;;;:57;;;::::1;::::0;::::1;::::0;;24805:13;;;;::::1;24786:34:::0;;:10:::1;:34:::0;;;;;:41;;;;::::1;::::0;;::::1;::::0;;24482:353::o;8560:268::-;8652:4;8669:129;3419:10;8692:7;8701:96;8740:15;8701:96;;;;;;;;;;;;;;;;;3419:10;8701:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8701:34:0;;;;;;;;;;;;:38;:96::i;5893:174::-;5978:4;5995:42;3419:10;6019:9;6030:6;5995:9;:42::i;26752:132::-;12934:6;;-1:-1:-1;;;;;12934:6:0;3419:10;12934:22;12926:67;;;;-1:-1:-1;;;12926:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26837:28:0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:39;;-1:-1:-1;;26837:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26752:132::o;27331:196::-;12934:6;;-1:-1:-1;;;;;12934:6:0;3419:10;12934:22;12926:67;;;;-1:-1:-1;;;12926:67:0;;;;;;;:::i;:::-;27424:13:::1;::::0;-1:-1:-1;;;;;27416:21:0;;::::1;27424:13:::0;::::1;27416:21;;27408:76;;;::::0;-1:-1:-1;;;27408:76:0;;8035:2:1;27408:76:0::1;::::0;::::1;8017:21:1::0;8074:2;8054:18;;;8047:30;8113:34;8093:18;;;8086:62;-1:-1:-1;;;8164:18:1;;;8157:40;8214:19;;27408:76:0::1;7833:406:1::0;27408:76:0::1;-1:-1:-1::0;;;;;27495:16:0;;;::::1;;::::0;;;:10:::1;:16;::::0;;;;:24;;-1:-1:-1;;27495:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27331:196::o;25493:146::-;12934:6;;-1:-1:-1;;;;;12934:6:0;3419:10;12934:22;12926:67;;;;-1:-1:-1;;;12926:67:0;;;;;;;:::i;:::-;25627:4:::1;25610:13;25594;5471:12:::0;;;5384:107;25594:13:::1;:29;;;;:::i;:::-;25593:38;;;;:::i;:::-;25575:15;:56:::0;-1:-1:-1;25493:146:0:o;27535:193::-;12934:6;;-1:-1:-1;;;;;12934:6:0;3419:10;12934:22;12926:67;;;;-1:-1:-1;;;12926:67:0;;;;;;;:::i;:::-;27637:15:::1;:34:::0;;-1:-1:-1;;;;;27637:34:0;;::::1;-1:-1:-1::0;;;;;;27637:34:0;;::::1;;::::0;;;27682:17:::1;:38:::0;;;;;::::1;::::0;::::1;;::::0;;27535:193::o;26890:146::-;12934:6;;-1:-1:-1;;;;;12934:6:0;3419:10;12934:22;12926:67;;;;-1:-1:-1;;;12926:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26982:35:0;;;::::1;;::::0;;;:26:::1;:35;::::0;;;;:46;;-1:-1:-1;;26982:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26890:146::o;13667:244::-;12934:6;;-1:-1:-1;;;;;12934:6:0;3419:10;12934:22;12926:67;;;;-1:-1:-1;;;12926:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13756:22:0;::::1;13748:73;;;::::0;-1:-1:-1;;;13748:73:0;;8446:2:1;13748:73:0::1;::::0;::::1;8428:21:1::0;8485:2;8465:18;;;8458:30;8524:34;8504:18;;;8497:62;-1:-1:-1;;;8575:18:1;;;8568:36;8621:19;;13748:73:0::1;8244:402:1::0;13748:73:0::1;13858:6;::::0;13837:38:::1;::::0;-1:-1:-1;;;;;13837:38:0;;::::1;::::0;13858:6:::1;::::0;13837:38:::1;::::0;13858:6:::1;::::0;13837:38:::1;13886:6;:17:::0;;-1:-1:-1;;;;;;13886:17:0::1;-1:-1:-1::0;;;;;13886:17:0;;;::::1;::::0;;;::::1;::::0;;13667:244::o;10988:180::-;11045:7;;11077:5;11081:1;11077;:5;:::i;:::-;11065:17;;11106:1;11101;:6;;11093:46;;;;-1:-1:-1;;;11093:46:0;;8853:2:1;11093:46:0;;;8835:21:1;8892:2;8872:18;;;8865:30;8931:29;8911:18;;;8904:57;8978:18;;11093:46:0;8651:351:1;11093:46:0;11159:1;10988:180;-1:-1:-1;;;10988:180:0:o;10723:220::-;-1:-1:-1;;;;;10851:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10903:32;;1915:25:1;;;10903:32:0;;1888:18:1;10903:32:0;;;;;;;;10723:220;;;:::o;27869:3317::-;28016:11;28012:102;;28044:37;28060:6;28068:9;28079:1;28044:15;:37::i;:::-;27869:3317;;;:::o;28012:102::-;12787:6;;-1:-1:-1;;;;;28144:17:0;;;12787:6;;28144:17;;;;:54;;-1:-1:-1;12787:6:0;;-1:-1:-1;;;;;28178:20:0;;;12787:6;;28178:20;;28144:54;:82;;;;-1:-1:-1;28216:10:0;;;;;;;28215:11;28144:82;28126:888;;;28260:9;;;;28255:147;;-1:-1:-1;;;;;28298:27:0;;;;;;:19;:27;;;;;;;;;:61;;-1:-1:-1;;;;;;28329:30:0;;;;;;:19;:30;;;;;;;;28298:61;28290:96;;;;-1:-1:-1;;;28290:96:0;;9209:2:1;28290:96:0;;;9191:21:1;9248:2;9228:18;;;9221:30;-1:-1:-1;;;9267:18:1;;;9260:52;9329:18;;28290:96:0;9007:346:1;28290:96:0;-1:-1:-1;;;;;28420:18:0;;;;;;:10;:18;;;;;;;;:65;;;;-1:-1:-1;;;;;;28443:42:0;;;;;;:31;:42;;;;;;;;28442:43;28420:65;28416:410;;;28524:12;;28514:6;:22;;28506:88;;;;-1:-1:-1;;;28506:88:0;;9560:2:1;28506:88:0;;;9542:21:1;9599:2;9579:18;;;9572:30;9638:34;9618:18;;;9611:62;-1:-1:-1;;;9689:18:1;;;9682:51;9750:19;;28506:88:0;9358:417:1;28506:88:0;28416:410;;;-1:-1:-1;;;;;28634:21:0;;;;;;:10;:21;;;;;;;;:65;;;;-1:-1:-1;;;;;;28660:39:0;;;;;;:31;:39;;;;;;;;28659:40;28634:65;28630:196;;;28738:13;;28728:6;:23;;28720:90;;;;-1:-1:-1;;;28720:90:0;;9982:2:1;28720:90:0;;;9964:21:1;10021:2;10001:18;;;9994:30;10060:34;10040:18;;;10033:62;-1:-1:-1;;;10111:18:1;;;10104:52;10173:19;;28720:90:0;9780:418:1;28720:90:0;-1:-1:-1;;;;;28847:37:0;;;;;;:26;:37;;;;;;;;28842:159;;28946:15;;-1:-1:-1;;;;;5654:18:0;;5627:7;5654:18;;;;;;;;;;;28913:29;;:6;:29;:::i;:::-;:48;;28905:80;;;;-1:-1:-1;;;28905:80:0;;10405:2:1;28905:80:0;;;10387:21:1;10444:2;10424:18;;;10417:30;-1:-1:-1;;;10463:18:1;;;10456:49;10522:18;;28905:80:0;10203:343:1;28905:80:0;29076:4;29027:28;5654:18;;;;;;;;;;;29135:19;;29111:43;;;;;;;29185:35;;-1:-1:-1;29209:11:0;;;;;;;29185:35;:63;;;;-1:-1:-1;29238:10:0;;;;;;;29237:11;29185:63;:101;;;;-1:-1:-1;;;;;;29265:21:0;;;;;;:10;:21;;;;;;;;29185:101;:146;;;;-1:-1:-1;;;;;;29304:27:0;;;;;;:19;:27;;;;;;;;29303:28;29185:146;:194;;;;-1:-1:-1;;;;;;29349:30:0;;;;;;:19;:30;;;;;;;;29348:31;29185:194;29167:326;;;29406:10;:17;;-1:-1:-1;;29406:17:0;;;;;29438:10;:8;:10::i;:::-;29463;:18;;-1:-1:-1;;29463:18:0;;;29167:326;29522:10;;-1:-1:-1;;;;;29634:27:0;;29506:12;29634:27;;;:19;:27;;;;;;29522:10;;;;;;;29521:11;;29634:27;;:61;;-1:-1:-1;;;;;;29665:30:0;;;;;;:19;:30;;;;;;;;29634:61;29630:109;;;-1:-1:-1;29722:5:0;29630:109;29840:7;29836:1288;;;29864:12;29913:7;;29898:12;:22;29895:1076;;;29948:23;29967:3;29948:14;:6;29959:2;29948:10;:14::i;:::-;:18;;:23::i;:::-;29941:30;-1:-1:-1;30026:2:0;30013:9;29941:30;30020:2;30013:9;:::i;:::-;30012:16;;;;:::i;:::-;29990:18;;:38;;;;;;;:::i;:::-;;;;-1:-1:-1;30084:2:0;;-1:-1:-1;30072:8:0;:4;30079:1;30072:8;:::i;:::-;30071:15;;;;:::i;:::-;30047:20;;:39;;;;;;;:::i;:::-;;;;-1:-1:-1;29895:1076:0;;-1:-1:-1;29895:1076:0;;-1:-1:-1;;;;;30112:21:0;;;;;;:10;:21;;;;;;;;:48;;;;-1:-1:-1;30137:19:0;;:23;;30112:48;30108:863;;;30199:19;;30188:40;;30224:3;;30188:31;;:6;;:10;:31::i;:40::-;30301:19;;30276:22;;30181:47;;-1:-1:-1;30301:19:0;30269:29;;30181:47;30269:29;:::i;:::-;:51;;;;:::i;:::-;30247:18;;:73;;;;;;;:::i;:::-;;;;-1:-1:-1;;30393:19:0;;30368:22;;30361:29;;:4;:29;:::i;:::-;:51;;;;:::i;:::-;30339:18;;:73;;;;;;;:::i;:::-;;;;-1:-1:-1;;30489:19:0;;30462:24;;30455:31;;:4;:31;:::i;30108:863::-;-1:-1:-1;;;;;30570:18:0;;;;;;:10;:18;;;;;;;;:44;;;;-1:-1:-1;30592:5:0;:18;:22;;30570:44;30566:405;;;30653:5;:18;30642:39;;30677:3;;30642:30;;:6;;:10;:30::i;:39::-;30753:5;:18;30729:21;;30635:46;;-1:-1:-1;30753:18:0;30722:28;;30635:46;30722:28;:::i;:::-;:49;;;;:::i;:::-;30700:18;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;;30843:5:0;:18;30819:21;;30812:28;;:4;:28;:::i;:::-;:49;;;;:::i;:::-;30790:18;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;;30937:5:0;:18;30911:23;;30904:30;;:4;:30;:::i;:::-;:51;;;;:::i;:::-;30880:20;;:75;;;;;;;:::i;:::-;;;;-1:-1:-1;;30566:405:0;30991:8;;30987:93;;31020:44;31036:6;31052:4;31059;31020:15;:44::i;:::-;31096:14;31106:4;31096:14;;:::i;:::-;;;29849:1275;29836:1288;31136:42;31152:6;31160:9;31171:6;31136:15;:42::i;11329:191::-;11414:7;11450:12;11442:6;;;;11434:29;;;;-1:-1:-1;;;11434:29:0;;;;;;;;:::i;:::-;-1:-1:-1;11474:9:0;11486:5;11490:1;11486;:5;:::i;:::-;11474:17;11329:191;-1:-1:-1;;;;;11329:191:0:o;9318:358::-;9480:71;9502:6;9480:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9480:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;9460:17:0;;;:9;:17;;;;;;;;;;;:91;;;;9585:20;;;;;;;:32;;9610:6;9585:24;:32::i;:::-;-1:-1:-1;;;;;9562:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;9633:35;1915:25:1;;;9562:20:0;;9633:35;;;;;;1888:18:1;9633:35:0;1769:177:1;32114:1613:0;32202:4;32153:28;5654:18;;;;;;;;;;;32153:55;;32219:14;32278:20;;32257:18;;32236;;:39;;;;:::i;:::-;:62;;;;:::i;:::-;32219:79;-1:-1:-1;32309:12:0;32338:25;;;:40;;-1:-1:-1;32367:11:0;;32338:40;32334:57;;;32382:7;;;32114:1613::o;32334:57::-;32430:19;;:24;;32452:2;32430:24;:::i;:::-;32407:20;:47;32403:127;;;32494:19;;:24;;32516:2;32494:24;:::i;:::-;32471:47;;32403:127;32591:23;32670:1;32661:6;32640:18;;32617:20;:41;;;;:::i;:::-;:50;;;;:::i;:::-;:54;;;;:::i;:::-;32591:80;-1:-1:-1;32682:26:0;32711:41;:20;32591:80;32711:24;:41::i;:::-;32682:70;-1:-1:-1;32794:21:0;32828:36;32682:70;32828:16;:36::i;:::-;32879:18;32900:44;:21;32926:17;32900:25;:44::i;:::-;32879:65;;32958:23;32984:46;33023:6;32984:34;32999:18;;32984:10;:14;;:34;;;;:::i;:46::-;32958:72;;33041:25;33069:48;33110:6;33069:36;33084:20;;33069:10;:14;;:36;;;;:::i;:48::-;33041:76;-1:-1:-1;33128:23:0;33168:35;33041:76;33168:15;:35;:::i;:::-;33154:50;;:10;:50;:::i;:::-;33240:1;33219:18;:22;;;33252:18;:22;;;33285:20;:24;33128:76;-1:-1:-1;33328:19:0;;;;;:42;;;33369:1;33351:15;:19;33328:42;33324:192;;;33387:46;33400:15;33417;33387:12;:46::i;:::-;33453:51;;;10855:25:1;;;10911:2;10896:18;;10889:34;;;33453:51:0;;10828:18:1;33453:51:0;;;;;;;33324:192;33549:17;;-1:-1:-1;;;;;33549:17:0;33582:39;33606:15;33582:21;:39;:::i;:::-;33541:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33661:15:0;;33653:66;;33528:101;;-1:-1:-1;;;;;;33661:15:0;;33691:21;;33653:66;;;;33691:21;33661:15;33653:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;32114:1613:0:o;11528:256::-;11585:7;11615:6;11611:47;;-1:-1:-1;11645:1:0;11638:8;;11611:47;11671:9;11683:5;11687:1;11683;:5;:::i;:::-;11671:17;-1:-1:-1;11716:1:0;11707:5;11711:1;11671:17;11707:5;:::i;:::-;:10;11699:56;;;;-1:-1:-1;;;11699:56:0;;11346:2:1;11699:56:0;;;11328:21:1;11385:2;11365:18;;;11358:30;11424:34;11404:18;;;11397:62;-1:-1:-1;;;11475:18:1;;;11468:31;11516:19;;11699:56:0;11144:397:1;11795:131:0;11852:7;11879:39;11883:1;11886;11879:39;;;;;;;;;;;;;;;;;:3;:39::i;11181:135::-;11238:7;11265:43;11269:1;11272;11265:43;;;;;;;;;;;;;;;;;:3;:43::i;31194:554::-;31342:16;;;31356:1;31342:16;;;;;;;;31318:21;;31342:16;;;;;;;;;;-1:-1:-1;31342:16:0;31318:40;;31387:4;31369;31374:1;31369:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31369:23:0;;;-1:-1:-1;;;;;31369:23:0;;;;;31413:6;-1:-1:-1;;;;;31413:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31403:4;31408:1;31403:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31403:23:0;;;-1:-1:-1;;;;;31403:23:0;;;;;31439:49;31456:4;31471:6;31480:7;31439:8;:49::i;:::-;31527:211;;-1:-1:-1;;;31527:211:0;;-1:-1:-1;;;;;31527:6:0;:57;;;;:211;;31599:7;;31621:1;;31665:4;;31692;;31712:15;;31527:211;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31756:350;31900:49;31917:4;31932:6;31941:7;31900:8;:49::i;:::-;31992:106;;-1:-1:-1;;;31992:106:0;;32044:4;31992:106;;;13136:34:1;;;13186:18;;;13179:34;;;32060:1:0;13229:18:1;;;13222:34;;;13272:18;;;13265:34;13315:19;;;13308:44;32082:15:0;13368:19:1;;;13361:35;31992:6:0;-1:-1:-1;;;;;31992:22:0;;;;32023:9;;13070:19:1;;31992:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31756:350;;:::o;11938:277::-;12023:7;12058:12;12051:5;12043:28;;;;-1:-1:-1;;;12043:28:0;;;;;;;;:::i;:::-;-1:-1:-1;12082:9:0;12094:5;12098:1;12094;: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:523::-;3768:6;3776;3784;3792;3800;3808;3861:3;3849:9;3840:7;3836:23;3832:33;3829:53;;;3878:1;3875;3868:12;3829:53;-1:-1:-1;;3901:23:1;;;3971:2;3956:18;;3943:32;;-1:-1:-1;4022:2:1;4007:18;;3994:32;;4073:2;4058:18;;4045:32;;-1:-1:-1;4124:3:1;4109:19;;4096:33;;-1:-1:-1;4176:3:1;4161:19;4148:33;;-1:-1:-1;3664:523:1;-1:-1:-1;3664:523:1:o;4876:388::-;4944:6;4952;5005:2;4993:9;4984:7;4980:23;4976:32;4973:52;;;5021:1;5018;5011:12;4973:52;5060:9;5047:23;5079:31;5104:5;5079:31;:::i;:::-;5129:5;-1:-1:-1;5186:2:1;5171:18;;5158:32;5199:33;5158:32;5199:33;:::i;:::-;5251:7;5241:17;;;4876:388;;;;;:::o;5504:380::-;5583:1;5579:12;;;;5626;;;5647:61;;5701:4;5693:6;5689:17;5679:27;;5647:61;5754:2;5746:6;5743:14;5723:18;5720:38;5717:161;;;5800:10;5795:3;5791:20;5788:1;5781:31;5835:4;5832:1;5825:15;5863:4;5860:1;5853:15;5717:161;;5504:380;;;:::o;5889:356::-;6091:2;6073:21;;;6110:18;;;6103:30;6169:34;6164:2;6149:18;;6142:62;6236:2;6221:18;;5889:356::o;6250:127::-;6311:10;6306:3;6302:20;6299:1;6292:31;6342:4;6339:1;6332:15;6366:4;6363:1;6356:15;6382:168;6422:7;6488:1;6484;6480:6;6476:14;6473:1;6470:21;6465:1;6458:9;6451:17;6447:45;6444:71;;;6495:18;;:::i;:::-;-1:-1:-1;6535:9:1;;6382:168::o;6555:217::-;6595:1;6621;6611:132;;6665:10;6660:3;6656:20;6653:1;6646:31;6700:4;6697:1;6690:15;6728:4;6725:1;6718:15;6611:132;-1:-1:-1;6757:9:1;;6555:217::o;6777:128::-;6817:3;6848:1;6844:6;6841:1;6838:13;6835:39;;;6854:18;;:::i;:::-;-1:-1:-1;6890:9:1;;6777:128::o;7268:251::-;7338:6;7391:2;7379:9;7370:7;7366:23;7362:32;7359:52;;;7407:1;7404;7397:12;7359:52;7439:9;7433:16;7458:31;7483:5;7458:31;:::i;10551:125::-;10591:4;10619:1;10616;10613:8;10610:34;;;10624:18;;:::i;:::-;-1:-1:-1;10661:9:1;;10551:125::o;11678:127::-;11739:10;11734:3;11730:20;11727:1;11720:31;11770:4;11767:1;11760:15;11794:4;11791:1;11784:15;11810:980;12072:4;12120:3;12109:9;12105:19;12151:6;12140:9;12133:25;12177:2;12215:6;12210:2;12199:9;12195:18;12188:34;12258:3;12253:2;12242:9;12238:18;12231:31;12282:6;12317;12311:13;12348:6;12340;12333:22;12386:3;12375:9;12371:19;12364:26;;12425:2;12417:6;12413:15;12399:29;;12446:1;12456:195;12470:6;12467:1;12464:13;12456:195;;;12535:13;;-1:-1:-1;;;;;12531:39:1;12519:52;;12626:15;;;;12591:12;;;;12567:1;12485:9;12456:195;;;-1:-1:-1;;;;;;;12707:32:1;;;;12702:2;12687:18;;12680:60;-1:-1:-1;;;12771:3:1;12756:19;12749:35;12668:3;11810:980;-1:-1:-1;;;11810:980:1:o;13407:306::-;13495:6;13503;13511;13564:2;13552:9;13543:7;13539:23;13535:32;13532:52;;;13580:1;13577;13570:12;13532:52;13609:9;13603:16;13593:26;;13659:2;13648:9;13644:18;13638:25;13628:35;;13703:2;13692:9;13688:18;13682:25;13672:35;;13407:306;;;;;:::o

Swarm Source

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