ETH Price: $2,298.01 (+1.46%)

Token

Kokai Nami (KOKAI)
 

Overview

Max Total Supply

100,000,000 KOKAI

Holders

11

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
928,570.94506717248175742 KOKAI

Value
$0.00
0x3131224efc3c32b05a5e76e44a0c69e6a470b9a6
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:
KokaiName

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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


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

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

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

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

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

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

    /**
    * @dev Moves `amount` tokens from `sender` to `recipient` using the
    * allowance mechanism. `amount` is then deducted from the caller's
    * allowance.
    *
    * Returns a boolean value indicating whether the operation succeeded.
    *
    * Emits a {Transfer} event.
    */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns(bool);

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

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

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

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

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

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

}

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

        mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;
 
    uint256 private _totalSupply;
 
    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns(bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns(uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns(bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns(bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns(bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns(bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased cannot be below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(sender != address(0x000000000000000000000000000000000000dEaD), "ERC20: transfer from the dead address");
        require(recipient != address(0x000000000000000000000000000000000000dEaD), "ERC20: transfer to the dead address");
        
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

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

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

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

        return c;
    }

   
    function sub(uint256 a, uint256 b) internal pure returns(uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

   
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns(uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        return c;
    }

 
    function div(uint256 a, uint256 b) internal pure returns(uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

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

        return c;
    }

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns(address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}
 
 
 
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

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

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns(int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns(int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns(int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns(int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


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


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

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

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

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

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}
 
contract KokaiName is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable router;
    address public immutable uniswapV2Pair;


    // addresses
    address private marketingWallet;

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

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


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


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

        uint256 sellTotalFees;
        uint256 sellMarketingFee;
        uint256 sellLiquidityFee;
    }  

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

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

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;


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

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


    constructor() ERC20("Kokai Nami", "KOKAI") {
 
        router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);


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

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

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

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


        marketPair[address(uniswapV2Pair)] = true;

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

        maxBuyAmount = (totalSupply * 2) / 100; // 2%
        maxSellAmount = (totalSupply * 2) / 100; // 2%
        maxWalletAmount = totalSupply * 3 / 100; // 2% 
        thresholdSwapAmount = totalSupply * 1 / 10000; 

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

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


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

        // exclude from paying fees or having max transaction amount




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

    receive() external payable {

    }

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



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


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


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

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

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

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


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


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

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

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

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

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

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

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

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

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

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

            amount -= fees;

        }

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

    function swapTokensForEth(uint256 tAmount) private {

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

        _approve(address(this), address(router), tAmount);

        // make the swap
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );

    }

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

        // add the liquidity
        router.addLiquidityETH{ value: ethAmount } (address(this), tAmount, 0, 0 , address(this), block.timestamp);
    }

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

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

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

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

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


        tokensForLiquidity = 0;
        tokensForMarketing = 0;


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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_fees","outputs":[{"internalType":"uint256","name":"buyTotalFees","type":"uint256"},{"internalType":"uint256","name":"buyMarketingFee","type":"uint256"},{"internalType":"uint256","name":"buyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"sellTotalFees","type":"uint256"},{"internalType":"uint256","name":"sellMarketingFee","type":"uint256"},{"internalType":"uint256","name":"sellLiquidityFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"marketPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setMarketPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"toggleSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_liquidityFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_marketingFeeSell","type":"uint256"},{"internalType":"uint256","name":"_liquidityFeeSell","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxBuy","type":"uint256"},{"internalType":"uint256","name":"newMaxSell","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateThresholdSwapAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600b805461ffff19169055610180604052600060c081905260e0819052610100819052610120819052610140819052610160819052600d819055600e819055600f819055601081905560118190556012553480156200005d57600080fd5b50604080518082018252600a8152694b6f6b6169204e616d6960b01b6020808301918252835180850190945260058452644b4f4b414960d81b908401528151919291620000ad91600391620008b5565b508051620000c3906004906020840190620008b5565b5050506000620000d86200053660201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200017757600080fd5b505afa1580156200018c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b291906200095b565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001fd57600080fd5b505afa15801562000212573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023891906200095b565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200028157600080fd5b505af115801562000296573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bc91906200095b565b6001600160a01b0390811660a081905260805190911660009081526016602081905260408083208054600160ff1991821681179092559484529083208054909416811790935590620003166005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260169092528120805490921660019081179092556015906200036f6005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526015909252812080549092166001908117909255601790620003c86005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526017845282812080548616600190811790915560a051909216815282812080548616831790556018909352912080549092161790556080516200043f906000196200053a565b506a52b7d2dcc80cd2e400000060646200045b8260026200099c565b620004679190620009be565b6007556064620004798260026200099c565b620004859190620009be565b6008556064620004978260036200099c565b620004a39190620009be565b600955612710620004b68260016200099c565b620004c29190620009be565b600a556006600e8190556002600f819055620004de91620009e1565b600d556006601181905560026012819055620004fa91620009e1565b601055600680546001600160a01b031916737fd85b27cb623d29b26a26766f82632b81a323b81790556200052f338262000552565b5062000a39565b3390565b60006200054933848462000652565b50600192915050565b6001600160a01b038216620005ae5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620005ca816002546200084b60201b6200108c1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620005fd9183906200108c6200084b821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316620006b65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620005a5565b6001600160a01b038216620007195760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620005a5565b6001600160a01b03831661dead1415620007825760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d207468652064656164206164646044820152637265737360e01b6064820152608401620005a5565b6001600160a01b03821661dead1415620007ea5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f207468652064656164206164647265604482015261737360f01b6064820152608401620005a5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000806200085a8385620009e1565b905083811015620008ae5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620005a5565b9392505050565b828054620008c390620009fc565b90600052602060002090601f016020900481019282620008e7576000855562000932565b82601f106200090257805160ff191683800117855562000932565b8280016001018555821562000932579182015b828111156200093257825182559160200191906001019062000915565b506200094092915062000944565b5090565b5b8082111562000940576000815560010162000945565b6000602082840312156200096e57600080fd5b81516001600160a01b0381168114620008ae57600080fd5b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620009b957620009b962000986565b500290565b600082620009dc57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620009f757620009f762000986565b500190565b600181811c9082168062000a1157607f821691505b6020821081141562000a3357634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161273962000a89600039600081816103a50152610ca801526000818161075a01528181611f5e0152818161202601528181612062015281816120dc015261213801526127396000f3fe6080604052600436106102135760003560e01c80637571336a11610118578063c16dd4a4116100a0578063dd62ed3e1161006f578063dd62ed3e14610692578063e16830a8146106d8578063f2fde38b146106f8578063f5b3c3bf14610718578063f887ea401461074857600080fd5b8063c16dd4a4146105da578063c18bc195146105fa578063c6616ba11461061a578063d212a69a1461063a57600080fd5b8063a457c2d7116100e7578063a457c2d714610545578063a9059cbb14610565578063b886311514610585578063b9e418e7146105a5578063c0246668146105ba57600080fd5b80637571336a146104c25780638da5cb5b146104e257806395d89b411461050057806396880b171461051557600080fd5b8063313ce5671161019b578063555467a11161016a578063555467a1146104185780635d098b38146104385780636ddd17131461045857806370a0823114610477578063715018a6146104ad57600080fd5b8063313ce56714610357578063395093511461037357806349bd5a5e146103935780634fbee193146103df57600080fd5b806318160ddd116101e257806318160ddd146102cc5780631a8145bb146102eb5780631c6e8a75146103015780631f3fed8f1461032157806323b872dd1461033757600080fd5b806306fdde031461021f578063095ea7b31461024a57806310d5de531461027a57806311a582c3146102aa57600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b5061023461077c565b60405161024191906121f3565b60405180910390f35b34801561025657600080fd5b5061026a610265366004612260565b61080e565b6040519015158152602001610241565b34801561028657600080fd5b5061026a61029536600461228c565b60166020526000908152604090205460ff1681565b3480156102b657600080fd5b506102ca6102c53660046122a9565b610825565b005b3480156102d857600080fd5b506002545b604051908152602001610241565b3480156102f757600080fd5b506102dd60145481565b34801561030d57600080fd5b506102ca61031c3660046122db565b61094e565b34801561032d57600080fd5b506102dd60135481565b34801561034357600080fd5b5061026a6103523660046122f6565b610992565b34801561036357600080fd5b5060405160128152602001610241565b34801561037f57600080fd5b5061026a61038e366004612260565b6109fb565b34801561039f57600080fd5b506103c77f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610241565b3480156103eb57600080fd5b5061026a6103fa36600461228c565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561042457600080fd5b5061026a610433366004612337565b610a31565b34801561044457600080fd5b506102ca61045336600461228c565b610a6c565b34801561046457600080fd5b50600b5461026a90610100900460ff1681565b34801561048357600080fd5b506102dd61049236600461228c565b6001600160a01b031660009081526020819052604090205490565b3480156104b957600080fd5b506102ca610ab8565b3480156104ce57600080fd5b506102ca6104dd366004612350565b610b2c565b3480156104ee57600080fd5b506005546001600160a01b03166103c7565b34801561050c57600080fd5b50610234610b81565b34801561052157600080fd5b5061026a61053036600461228c565b60176020526000908152604090205460ff1681565b34801561055157600080fd5b5061026a610560366004612260565b610b90565b34801561057157600080fd5b5061026a610580366004612260565b610bdf565b34801561059157600080fd5b50600b5461026a9062010000900460ff1681565b3480156105b157600080fd5b506102ca610bec565b3480156105c657600080fd5b506102ca6105d5366004612350565b610c27565b3480156105e657600080fd5b506102ca6105f5366004612350565b610c7c565b34801561060657600080fd5b506102ca610615366004612337565b610d66565b34801561062657600080fd5b506102ca610635366004612385565b610e48565b34801561064657600080fd5b50600d54600e54600f5460105460115460125461066595949392919086565b604080519687526020870195909552938501929092526060840152608083015260a082015260c001610241565b34801561069e57600080fd5b506102dd6106ad3660046123b7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106e457600080fd5b506102ca6106f3366004612350565b610f4c565b34801561070457600080fd5b506102ca61071336600461228c565b610fa1565b34801561072457600080fd5b5061026a61073336600461228c565b60186020526000908152604090205460ff1681565b34801561075457600080fd5b506103c77f000000000000000000000000000000000000000000000000000000000000000081565b60606003805461078b906123f0565b80601f01602080910402602001604051908101604052809291908181526020018280546107b7906123f0565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b600061081b3384846110f2565b5060015b92915050565b6005546001600160a01b031633146108585760405162461bcd60e51b815260040161084f9061242b565b60405180910390fd5b61138861086460025490565b61086e9190612476565b6103e88361087b60025490565b6108859190612498565b61088f9190612476565b10156108ad5760405162461bcd60e51b815260040161084f906124b7565b6113886108b960025490565b6108c39190612476565b6103e8826108d060025490565b6108da9190612498565b6108e49190612476565b10156109025760405162461bcd60e51b815260040161084f906124b7565b6103e88261090f60025490565b6109199190612498565b6109239190612476565b6007556103e88161093360025490565b61093d9190612498565b6109479190612476565b6008555050565b6005546001600160a01b031633146109785760405162461bcd60e51b815260040161084f9061242b565b600b80549115156101000261ff0019909216919091179055565b600061099f8484846112e4565b6109f184336109ec856040518060600160405280602881526020016126dc602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611a52565b6110f2565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161081b9185906109ec908661108c565b6005546000906001600160a01b03163314610a5e5760405162461bcd60e51b815260040161084f9061242b565b50600a81905560015b919050565b6005546001600160a01b03163314610a965760405162461bcd60e51b815260040161084f9061242b565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610ae25760405162461bcd60e51b815260040161084f9061242b565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610b565760405162461bcd60e51b815260040161084f9061242b565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b60606004805461078b906123f0565b600061081b33846109ec85604051806060016040528060258152602001612691602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611a52565b600061081b3384846112e4565b6005546001600160a01b03163314610c165760405162461bcd60e51b815260040161084f9061242b565b600b805461ffff1916610101179055565b6005546001600160a01b03163314610c515760405162461bcd60e51b815260040161084f9061242b565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ca65760405162461bcd60e51b815260040161084f9061242b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610d3b5760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526936b0b935b2ba2830b4b960b11b606482015260840161084f565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d905760405162461bcd60e51b815260040161084f9061242b565b611388610d9c60025490565b610da69190612476565b6103e882610db360025490565b610dbd9190612498565b610dc79190612476565b1015610e215760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161084f565b6103e881610e2e60025490565b610e389190612498565b610e429190612476565b60095550565b6005546001600160a01b03163314610e725760405162461bcd60e51b815260040161084f9061242b565b600e849055600f839055610e868385612507565b600d5560118290556012819055610e9d8183612507565b601055600d5460061015610ef35760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203625206f72206c65737300000000604482015260640161084f565b60105460061015610f465760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203625206f72206c65737300000000604482015260640161084f565b50505050565b6005546001600160a01b03163314610f765760405162461bcd60e51b815260040161084f9061242b565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fcb5760405162461bcd60e51b815260040161084f9061242b565b6001600160a01b0381166110305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084f565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806110998385612507565b9050838110156110eb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161084f565b9392505050565b6001600160a01b0383166111545760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161084f565b6001600160a01b0382166111b55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161084f565b6001600160a01b03831661dead141561121c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d207468652064656164206164646044820152637265737360e01b606482015260840161084f565b6001600160a01b03821661dead14156112825760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f207468652064656164206164647265604482015261737360f01b606482015260840161084f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661130a5760405162461bcd60e51b815260040161084f9061251f565b6001600160a01b0382166113305760405162461bcd60e51b815260040161084f90612564565b6001600160a01b03831661dead14156113995760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d207468652064456144206164604482015264647265737360d81b606482015260840161084f565b6001600160a01b03821661dead14156114005760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f207468652064456144206164647260448201526265737360e81b606482015260840161084f565b6001600160a01b0382166000908152600c602052604090205460ff1615801561144257506001600160a01b0383166000908152600c602052604090205460ff16155b6114a85760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b606482015260840161084f565b806114be576114b983836000611a8c565b505050565b6005546001600160a01b038481169116148015906114ea57506005546001600160a01b03838116911614155b80156114ff5750600b5462010000900460ff16155b1561178e57600b5460ff16611592576001600160a01b03831660009081526015602052604090205460ff168061154d57506001600160a01b03821660009081526015602052604090205460ff165b6115925760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161084f565b6001600160a01b03831660009081526018602052604090205460ff1680156115d357506001600160a01b03821660009081526016602052604090205460ff16155b1561164d576007548111156116485760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161084f565b611704565b6001600160a01b03821660009081526018602052604090205460ff16801561168e57506001600160a01b03831660009081526016602052604090205460ff16155b15611704576008548111156117045760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161084f565b6001600160a01b03821660009081526017602052604090205460ff1661178e576009546001600160a01b03831660009081526020819052604090205461174a9083612507565b111561178e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161084f565b30600090815260208190526040902054600a54811080159081906117b95750600b54610100900460ff165b80156117ce5750600b5462010000900460ff16155b80156117f257506001600160a01b03841660009081526018602052604090205460ff165b801561181757506001600160a01b03851660009081526015602052604090205460ff16155b801561183c57506001600160a01b03841660009081526015602052604090205460ff16155b1561186757600b805462ff000019166201000017905561185a611c65565b600b805462ff0000191690555b600b546001600160a01b03861660009081526015602052604090205460ff620100009092048216159116806118b457506001600160a01b03851660009081526015602052604090205460ff165b156118bd575060005b60008115611a3e576001600160a01b03861660009081526018602052604090205460ff1680156118ee575060105415155b156119785760105461190e90606490611908908890611e04565b90611e83565b601054601254919250906119229083612498565b61192c9190612476565b6014600082825461193d9190612507565b90915550506010546011546119529083612498565b61195c9190612476565b6013600082825461196d9190612507565b90915550611a209050565b6001600160a01b03871660009081526018602052604090205460ff1680156119a15750600d5415155b15611a2057600d546119bb90606490611908908890611e04565b600d54600f54919250906119cf9083612498565b6119d99190612476565b601460008282546119ea9190612507565b9091555050600d54600e546119ff9083612498565b611a099190612476565b60136000828254611a1a9190612507565b90915550505b8015611a3157611a31873083611a8c565b611a3b81866125a7565b94505b611a49878787611a8c565b50505050505050565b60008184841115611a765760405162461bcd60e51b815260040161084f91906121f3565b506000611a8384866125a7565b95945050505050565b6001600160a01b038316611ab25760405162461bcd60e51b815260040161084f9061251f565b6001600160a01b038216611ad85760405162461bcd60e51b815260040161084f90612564565b6001600160a01b03831661dead1415611b415760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d207468652064656164206164604482015264647265737360d81b606482015260840161084f565b6001600160a01b03821661dead1415611ba85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f207468652064656164206164647260448201526265737360e81b606482015260840161084f565b611be5816040518060600160405280602681526020016126b6602691396001600160a01b0386166000908152602081905260409020549190611a52565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611c14908261108c565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016112d7565b3060009081526020819052604081205490506000601354601454611c899190612507565b90506000821580611c98575081155b15611ca257505050565b600a54611cb0906014612498565b831115611cc857600a54611cc5906014612498565b92505b600060028360145486611cdb9190612498565b611ce59190612476565b611cef9190612476565b90506000611cfd8583611ec5565b905047611d0982611f07565b6000611d154783611ec5565b90506000611d328761190860135485611e0490919063ffffffff16565b90506000611d4082846125a7565b6000601481905560135590508515801590611d5b5750600081115b15611da457611d6a86826120d6565b60408051868152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611df1576040519150601f19603f3d011682016040523d82523d6000602084013e611df6565b606091505b505050505050505050505050565b600082611e135750600061081f565b6000611e1f8385612498565b905082611e2c8583612476565b146110eb5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161084f565b60006110eb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506121c5565b60006110eb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611a52565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611f3c57611f3c6125be565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611fb557600080fd5b505afa158015611fc9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fed91906125d4565b81600181518110612000576120006125be565b60200260200101906001600160a01b031690816001600160a01b03168152505061204b307f0000000000000000000000000000000000000000000000000000000000000000846110f2565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906120a09085906000908690309042906004016125f1565b600060405180830381600087803b1580156120ba57600080fd5b505af11580156120ce573d6000803e3d6000fd5b505050505050565b612101307f0000000000000000000000000000000000000000000000000000000000000000846110f2565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c4016060604051808303818588803b15801561218557600080fd5b505af1158015612199573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121be9190612662565b5050505050565b600081836121e65760405162461bcd60e51b815260040161084f91906121f3565b506000611a838486612476565b600060208083528351808285015260005b8181101561222057858101830151858201604001528201612204565b81811115612232576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461225d57600080fd5b50565b6000806040838503121561227357600080fd5b823561227e81612248565b946020939093013593505050565b60006020828403121561229e57600080fd5b81356110eb81612248565b600080604083850312156122bc57600080fd5b50508035926020909101359150565b80358015158114610a6757600080fd5b6000602082840312156122ed57600080fd5b6110eb826122cb565b60008060006060848603121561230b57600080fd5b833561231681612248565b9250602084013561232681612248565b929592945050506040919091013590565b60006020828403121561234957600080fd5b5035919050565b6000806040838503121561236357600080fd5b823561236e81612248565b915061237c602084016122cb565b90509250929050565b6000806000806080858703121561239b57600080fd5b5050823594602084013594506040840135936060013592509050565b600080604083850312156123ca57600080fd5b82356123d581612248565b915060208301356123e581612248565b809150509250929050565b600181811c9082168061240457607f821691505b6020821081141561242557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008261249357634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156124b2576124b2612460565b500290565b60208082526030908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e747360408201526f206c6f776572207468616e20302e352560801b606082015260800190565b6000821982111561251a5761251a612460565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156125b9576125b9612460565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156125e657600080fd5b81516110eb81612248565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156126415784516001600160a01b03168352938301939183019160010161261c565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561267757600080fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122089cdea908128e91f4b1b5c7081247c213c6196c6b066bef1ae399d93002605ab64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102135760003560e01c80637571336a11610118578063c16dd4a4116100a0578063dd62ed3e1161006f578063dd62ed3e14610692578063e16830a8146106d8578063f2fde38b146106f8578063f5b3c3bf14610718578063f887ea401461074857600080fd5b8063c16dd4a4146105da578063c18bc195146105fa578063c6616ba11461061a578063d212a69a1461063a57600080fd5b8063a457c2d7116100e7578063a457c2d714610545578063a9059cbb14610565578063b886311514610585578063b9e418e7146105a5578063c0246668146105ba57600080fd5b80637571336a146104c25780638da5cb5b146104e257806395d89b411461050057806396880b171461051557600080fd5b8063313ce5671161019b578063555467a11161016a578063555467a1146104185780635d098b38146104385780636ddd17131461045857806370a0823114610477578063715018a6146104ad57600080fd5b8063313ce56714610357578063395093511461037357806349bd5a5e146103935780634fbee193146103df57600080fd5b806318160ddd116101e257806318160ddd146102cc5780631a8145bb146102eb5780631c6e8a75146103015780631f3fed8f1461032157806323b872dd1461033757600080fd5b806306fdde031461021f578063095ea7b31461024a57806310d5de531461027a57806311a582c3146102aa57600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b5061023461077c565b60405161024191906121f3565b60405180910390f35b34801561025657600080fd5b5061026a610265366004612260565b61080e565b6040519015158152602001610241565b34801561028657600080fd5b5061026a61029536600461228c565b60166020526000908152604090205460ff1681565b3480156102b657600080fd5b506102ca6102c53660046122a9565b610825565b005b3480156102d857600080fd5b506002545b604051908152602001610241565b3480156102f757600080fd5b506102dd60145481565b34801561030d57600080fd5b506102ca61031c3660046122db565b61094e565b34801561032d57600080fd5b506102dd60135481565b34801561034357600080fd5b5061026a6103523660046122f6565b610992565b34801561036357600080fd5b5060405160128152602001610241565b34801561037f57600080fd5b5061026a61038e366004612260565b6109fb565b34801561039f57600080fd5b506103c77f000000000000000000000000534c867d342c9954c45618868a57c9ae14b2ef6681565b6040516001600160a01b039091168152602001610241565b3480156103eb57600080fd5b5061026a6103fa36600461228c565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561042457600080fd5b5061026a610433366004612337565b610a31565b34801561044457600080fd5b506102ca61045336600461228c565b610a6c565b34801561046457600080fd5b50600b5461026a90610100900460ff1681565b34801561048357600080fd5b506102dd61049236600461228c565b6001600160a01b031660009081526020819052604090205490565b3480156104b957600080fd5b506102ca610ab8565b3480156104ce57600080fd5b506102ca6104dd366004612350565b610b2c565b3480156104ee57600080fd5b506005546001600160a01b03166103c7565b34801561050c57600080fd5b50610234610b81565b34801561052157600080fd5b5061026a61053036600461228c565b60176020526000908152604090205460ff1681565b34801561055157600080fd5b5061026a610560366004612260565b610b90565b34801561057157600080fd5b5061026a610580366004612260565b610bdf565b34801561059157600080fd5b50600b5461026a9062010000900460ff1681565b3480156105b157600080fd5b506102ca610bec565b3480156105c657600080fd5b506102ca6105d5366004612350565b610c27565b3480156105e657600080fd5b506102ca6105f5366004612350565b610c7c565b34801561060657600080fd5b506102ca610615366004612337565b610d66565b34801561062657600080fd5b506102ca610635366004612385565b610e48565b34801561064657600080fd5b50600d54600e54600f5460105460115460125461066595949392919086565b604080519687526020870195909552938501929092526060840152608083015260a082015260c001610241565b34801561069e57600080fd5b506102dd6106ad3660046123b7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106e457600080fd5b506102ca6106f3366004612350565b610f4c565b34801561070457600080fd5b506102ca61071336600461228c565b610fa1565b34801561072457600080fd5b5061026a61073336600461228c565b60186020526000908152604090205460ff1681565b34801561075457600080fd5b506103c77f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60606003805461078b906123f0565b80601f01602080910402602001604051908101604052809291908181526020018280546107b7906123f0565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b600061081b3384846110f2565b5060015b92915050565b6005546001600160a01b031633146108585760405162461bcd60e51b815260040161084f9061242b565b60405180910390fd5b61138861086460025490565b61086e9190612476565b6103e88361087b60025490565b6108859190612498565b61088f9190612476565b10156108ad5760405162461bcd60e51b815260040161084f906124b7565b6113886108b960025490565b6108c39190612476565b6103e8826108d060025490565b6108da9190612498565b6108e49190612476565b10156109025760405162461bcd60e51b815260040161084f906124b7565b6103e88261090f60025490565b6109199190612498565b6109239190612476565b6007556103e88161093360025490565b61093d9190612498565b6109479190612476565b6008555050565b6005546001600160a01b031633146109785760405162461bcd60e51b815260040161084f9061242b565b600b80549115156101000261ff0019909216919091179055565b600061099f8484846112e4565b6109f184336109ec856040518060600160405280602881526020016126dc602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611a52565b6110f2565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161081b9185906109ec908661108c565b6005546000906001600160a01b03163314610a5e5760405162461bcd60e51b815260040161084f9061242b565b50600a81905560015b919050565b6005546001600160a01b03163314610a965760405162461bcd60e51b815260040161084f9061242b565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610ae25760405162461bcd60e51b815260040161084f9061242b565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610b565760405162461bcd60e51b815260040161084f9061242b565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b60606004805461078b906123f0565b600061081b33846109ec85604051806060016040528060258152602001612691602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611a52565b600061081b3384846112e4565b6005546001600160a01b03163314610c165760405162461bcd60e51b815260040161084f9061242b565b600b805461ffff1916610101179055565b6005546001600160a01b03163314610c515760405162461bcd60e51b815260040161084f9061242b565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ca65760405162461bcd60e51b815260040161084f9061242b565b7f000000000000000000000000534c867d342c9954c45618868a57c9ae14b2ef666001600160a01b0316826001600160a01b03161415610d3b5760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526936b0b935b2ba2830b4b960b11b606482015260840161084f565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d905760405162461bcd60e51b815260040161084f9061242b565b611388610d9c60025490565b610da69190612476565b6103e882610db360025490565b610dbd9190612498565b610dc79190612476565b1015610e215760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161084f565b6103e881610e2e60025490565b610e389190612498565b610e429190612476565b60095550565b6005546001600160a01b03163314610e725760405162461bcd60e51b815260040161084f9061242b565b600e849055600f839055610e868385612507565b600d5560118290556012819055610e9d8183612507565b601055600d5460061015610ef35760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203625206f72206c65737300000000604482015260640161084f565b60105460061015610f465760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203625206f72206c65737300000000604482015260640161084f565b50505050565b6005546001600160a01b03163314610f765760405162461bcd60e51b815260040161084f9061242b565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fcb5760405162461bcd60e51b815260040161084f9061242b565b6001600160a01b0381166110305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084f565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806110998385612507565b9050838110156110eb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161084f565b9392505050565b6001600160a01b0383166111545760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161084f565b6001600160a01b0382166111b55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161084f565b6001600160a01b03831661dead141561121c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d207468652064656164206164646044820152637265737360e01b606482015260840161084f565b6001600160a01b03821661dead14156112825760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f207468652064656164206164647265604482015261737360f01b606482015260840161084f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661130a5760405162461bcd60e51b815260040161084f9061251f565b6001600160a01b0382166113305760405162461bcd60e51b815260040161084f90612564565b6001600160a01b03831661dead14156113995760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d207468652064456144206164604482015264647265737360d81b606482015260840161084f565b6001600160a01b03821661dead14156114005760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f207468652064456144206164647260448201526265737360e81b606482015260840161084f565b6001600160a01b0382166000908152600c602052604090205460ff1615801561144257506001600160a01b0383166000908152600c602052604090205460ff16155b6114a85760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b606482015260840161084f565b806114be576114b983836000611a8c565b505050565b6005546001600160a01b038481169116148015906114ea57506005546001600160a01b03838116911614155b80156114ff5750600b5462010000900460ff16155b1561178e57600b5460ff16611592576001600160a01b03831660009081526015602052604090205460ff168061154d57506001600160a01b03821660009081526015602052604090205460ff165b6115925760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161084f565b6001600160a01b03831660009081526018602052604090205460ff1680156115d357506001600160a01b03821660009081526016602052604090205460ff16155b1561164d576007548111156116485760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161084f565b611704565b6001600160a01b03821660009081526018602052604090205460ff16801561168e57506001600160a01b03831660009081526016602052604090205460ff16155b15611704576008548111156117045760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161084f565b6001600160a01b03821660009081526017602052604090205460ff1661178e576009546001600160a01b03831660009081526020819052604090205461174a9083612507565b111561178e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161084f565b30600090815260208190526040902054600a54811080159081906117b95750600b54610100900460ff165b80156117ce5750600b5462010000900460ff16155b80156117f257506001600160a01b03841660009081526018602052604090205460ff165b801561181757506001600160a01b03851660009081526015602052604090205460ff16155b801561183c57506001600160a01b03841660009081526015602052604090205460ff16155b1561186757600b805462ff000019166201000017905561185a611c65565b600b805462ff0000191690555b600b546001600160a01b03861660009081526015602052604090205460ff620100009092048216159116806118b457506001600160a01b03851660009081526015602052604090205460ff165b156118bd575060005b60008115611a3e576001600160a01b03861660009081526018602052604090205460ff1680156118ee575060105415155b156119785760105461190e90606490611908908890611e04565b90611e83565b601054601254919250906119229083612498565b61192c9190612476565b6014600082825461193d9190612507565b90915550506010546011546119529083612498565b61195c9190612476565b6013600082825461196d9190612507565b90915550611a209050565b6001600160a01b03871660009081526018602052604090205460ff1680156119a15750600d5415155b15611a2057600d546119bb90606490611908908890611e04565b600d54600f54919250906119cf9083612498565b6119d99190612476565b601460008282546119ea9190612507565b9091555050600d54600e546119ff9083612498565b611a099190612476565b60136000828254611a1a9190612507565b90915550505b8015611a3157611a31873083611a8c565b611a3b81866125a7565b94505b611a49878787611a8c565b50505050505050565b60008184841115611a765760405162461bcd60e51b815260040161084f91906121f3565b506000611a8384866125a7565b95945050505050565b6001600160a01b038316611ab25760405162461bcd60e51b815260040161084f9061251f565b6001600160a01b038216611ad85760405162461bcd60e51b815260040161084f90612564565b6001600160a01b03831661dead1415611b415760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d207468652064656164206164604482015264647265737360d81b606482015260840161084f565b6001600160a01b03821661dead1415611ba85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f207468652064656164206164647260448201526265737360e81b606482015260840161084f565b611be5816040518060600160405280602681526020016126b6602691396001600160a01b0386166000908152602081905260409020549190611a52565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611c14908261108c565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016112d7565b3060009081526020819052604081205490506000601354601454611c899190612507565b90506000821580611c98575081155b15611ca257505050565b600a54611cb0906014612498565b831115611cc857600a54611cc5906014612498565b92505b600060028360145486611cdb9190612498565b611ce59190612476565b611cef9190612476565b90506000611cfd8583611ec5565b905047611d0982611f07565b6000611d154783611ec5565b90506000611d328761190860135485611e0490919063ffffffff16565b90506000611d4082846125a7565b6000601481905560135590508515801590611d5b5750600081115b15611da457611d6a86826120d6565b60408051868152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611df1576040519150601f19603f3d011682016040523d82523d6000602084013e611df6565b606091505b505050505050505050505050565b600082611e135750600061081f565b6000611e1f8385612498565b905082611e2c8583612476565b146110eb5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161084f565b60006110eb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506121c5565b60006110eb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611a52565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611f3c57611f3c6125be565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611fb557600080fd5b505afa158015611fc9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fed91906125d4565b81600181518110612000576120006125be565b60200260200101906001600160a01b031690816001600160a01b03168152505061204b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110f2565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906120a09085906000908690309042906004016125f1565b600060405180830381600087803b1580156120ba57600080fd5b505af11580156120ce573d6000803e3d6000fd5b505050505050565b612101307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110f2565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c4016060604051808303818588803b15801561218557600080fd5b505af1158015612199573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121be9190612662565b5050505050565b600081836121e65760405162461bcd60e51b815260040161084f91906121f3565b506000611a838486612476565b600060208083528351808285015260005b8181101561222057858101830151858201604001528201612204565b81811115612232576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461225d57600080fd5b50565b6000806040838503121561227357600080fd5b823561227e81612248565b946020939093013593505050565b60006020828403121561229e57600080fd5b81356110eb81612248565b600080604083850312156122bc57600080fd5b50508035926020909101359150565b80358015158114610a6757600080fd5b6000602082840312156122ed57600080fd5b6110eb826122cb565b60008060006060848603121561230b57600080fd5b833561231681612248565b9250602084013561232681612248565b929592945050506040919091013590565b60006020828403121561234957600080fd5b5035919050565b6000806040838503121561236357600080fd5b823561236e81612248565b915061237c602084016122cb565b90509250929050565b6000806000806080858703121561239b57600080fd5b5050823594602084013594506040840135936060013592509050565b600080604083850312156123ca57600080fd5b82356123d581612248565b915060208301356123e581612248565b809150509250929050565b600181811c9082168061240457607f821691505b6020821081141561242557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008261249357634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156124b2576124b2612460565b500290565b60208082526030908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e747360408201526f206c6f776572207468616e20302e352560801b606082015260800190565b6000821982111561251a5761251a612460565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156125b9576125b9612460565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156125e657600080fd5b81516110eb81612248565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156126415784516001600160a01b03168352938301939183019160010161261c565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561267757600080fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122089cdea908128e91f4b1b5c7081247c213c6196c6b066bef1ae399d93002605ab64736f6c63430008090033

Deployed Bytecode Sourcemap

21478:12286:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4245:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6405:168;;;;;;;;;;-1:-1:-1;6405:168:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;6405:168:0;1072:187:1;22749:63:0;;;;;;;;;;-1:-1:-1;22749:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25510:485;;;;;;;;;;-1:-1:-1;25510:485:0;;;;;:::i;:::-;;:::i;:::-;;5362:107;;;;;;;;;;-1:-1:-1;5449:12:0;;5362:107;;;1915:25:1;;;1903:2;1888:18;5362:107:0;1769:177:1;22593:33:0;;;;;;;;;;;;;;;;26375:101;;;;;;;;;;-1:-1:-1;26375:101:0;;;;;:::i;:::-;;:::i;22553:33::-;;;;;;;;;;;;;;;;7055:354;;;;;;;;;;-1:-1:-1;7055:354:0;;;;;:::i;:::-;;:::i;5205:92::-;;;;;;;;;;-1:-1:-1;5205:92:0;;5287:2;2904:36:1;;2892:2;2877:18;5205:92:0;2762:184:1;7818:217:0;;;;;;;;;;-1:-1:-1;7818:217:0;;;;;:::i;:::-;;:::i;21606:38::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3115:32:1;;;3097:51;;3085:2;3070:18;21606:38:0;2951:203:1;27958:125:0;;;;;;;;;;-1:-1:-1;27958:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;28047:28:0;28023:4;28047:28;;;:19;:28;;;;;;;;;27958:125;25342:158;;;;;;;;;;-1:-1:-1;25342:158:0;;;;;:::i;:::-;;:::i;27825:125::-;;;;;;;;;;-1:-1:-1;27825:125:0;;;;;:::i;:::-;;:::i;21946:31::-;;;;;;;;;;-1:-1:-1;21946:31:0;;;;;;;;;;;5532:126;;;;;;;;;;-1:-1:-1;5532:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;5632:18:0;5605:7;5632:18;;;;;;;;;;;;5532:126;14150:148;;;;;;;;;;;;;:::i;27465:144::-;;;;;;;;;;-1:-1:-1;27465:144:0;;;;;:::i;:::-;;:::i;13509:78::-;;;;;;;;;;-1:-1:-1;13573:6:0;;-1:-1:-1;;;;;13573:6:0;13509:78;;4463:103;;;;;;;;;;;;;:::i;22819:58::-;;;;;;;;;;-1:-1:-1;22819:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;8538:268;;;;;;;;;;-1:-1:-1;8538:268:0;;;;;:::i;:::-;;:::i;5871:174::-;;;;;;;;;;-1:-1:-1;5871:174:0;;;;;:::i;:::-;;:::i;21984:22::-;;;;;;;;;;-1:-1:-1;21984:22:0;;;;;;;;;;;25162:106;;;;;;;;;;;;;:::i;27175:132::-;;;;;;;;;;-1:-1:-1;27175:132:0;;;;;:::i;:::-;;:::i;27619:196::-;;;;;;;;;;-1:-1:-1;27619:196:0;;;;;:::i;:::-;;:::i;26005:274::-;;;;;;;;;;-1:-1:-1;26005:274:0;;;;;:::i;:::-;;:::i;26484:679::-;;;;;;;;;;-1:-1:-1;26484:679:0;;;;;:::i;:::-;;:::i;22326:206::-;;;;;;;;;;-1:-1:-1;22326:206:0;;;;;;;;;;;;;;;;;;;;;;;;;4341:25:1;;;4397:2;4382:18;;4375:34;;;;4425:18;;;4418:34;;;;4483:2;4468:18;;4461:34;4526:3;4511:19;;4504:35;4570:3;4555:19;;4548:35;4328:3;4313:19;22326:206:0;4054:535:1;6108:150:0;;;;;;;;;;-1:-1:-1;6108:150:0;;;;;:::i;:::-;-1:-1:-1;;;;;6223:18:0;;;6196:7;6223:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6108:150;27313:146;;;;;;;;;;-1:-1:-1;27313:146:0;;;;;:::i;:::-;;:::i;14453:244::-;;;;;;;;;;-1:-1:-1;14453:244:0;;;;;:::i;:::-;;:::i;23035:42::-;;;;;;;;;;-1:-1:-1;23035:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21557;;;;;;;;;;;;;;;4245:99;4298:13;4331:5;4324:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4245:99;:::o;6405:168::-;6487:4;6504:39;3394:10;6527:7;6536:6;6504:8;:39::i;:::-;-1:-1:-1;6561:4:0;6405:168;;;;;:::o;25510:485::-;13720:6;;-1:-1:-1;;;;;13720:6:0;3394:10;13720:22;13712:67;;;;-1:-1:-1;;;13712:67:0;;;;;;;:::i;:::-;;;;;;;;;25672:4:::1;25656:13;5449:12:::0;;;5362:107;25656:13:::1;:20;;;;:::i;:::-;25646:4;25633:9;25617:13;5449:12:::0;;;5362:107;25617:13:::1;:25;;;;:::i;:::-;25616:34;;;;:::i;:::-;25615:62;;25607:123;;;;-1:-1:-1::0;;;25607:123:0::1;;;;;;;:::i;:::-;25807:4;25791:13;5449:12:::0;;;5362:107;25791:13:::1;:20;;;;:::i;:::-;25781:4;25767:10;25751:13;5449:12:::0;;;5362:107;25751:13:::1;:26;;;;:::i;:::-;25750:35;;;;:::i;:::-;25749:63;;25741:124;;;;-1:-1:-1::0;;;25741:124:0::1;;;;;;;:::i;:::-;25921:4;25908:9;25892:13;5449:12:::0;;;5362:107;25892:13:::1;:25;;;;:::i;:::-;25891:34;;;;:::i;:::-;25876:12;:49:::0;25983:4:::1;25969:10:::0;25953:13:::1;5449:12:::0;;;5362:107;25953:13:::1;:26;;;;:::i;:::-;25952:35;;;;:::i;:::-;25936:13;:51:::0;-1:-1:-1;;25510:485:0:o;26375:101::-;13720:6;;-1:-1:-1;;;;;13720:6:0;3394:10;13720:22;13712:67;;;;-1:-1:-1;;;13712:67:0;;;;;;;:::i;:::-;26447:11:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;26447:21:0;;::::1;::::0;;;::::1;::::0;;26375:101::o;7055:354::-;7194:4;7211:36;7221:6;7229:9;7240:6;7211:9;:36::i;:::-;7258:121;7267:6;3394:10;7289:89;7327:6;7289:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7289:19:0;;;;;;:11;:19;;;;;;;;3394:10;7289:33;;;;;;;;;;:37;:89::i;:::-;7258:8;:121::i;:::-;-1:-1:-1;7397:4:0;7055:354;;;;;:::o;7818:217::-;3394:10;7905:4;7954:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;7954:34:0;;;;;;;;;;7905:4;;7922:83;;7945:7;;7954:50;;7993:10;7954:38;:50::i;25342:158::-;13720:6;;25423:4;;-1:-1:-1;;;;;13720:6:0;3394:10;13720:22;13712:67;;;;-1:-1:-1;;;13712:67:0;;;;;;;:::i;:::-;-1:-1:-1;25439:19:0::1;:31:::0;;;25488:4:::1;13790:1;25342:158:::0;;;:::o;27825:125::-;13720:6;;-1:-1:-1;;;;;13720:6:0;3394:10;13720:22;13712:67;;;;-1:-1:-1;;;13712:67:0;;;;;;;:::i;:::-;27908:15:::1;:34:::0;;-1:-1:-1;;;;;;27908:34:0::1;-1:-1:-1::0;;;;;27908:34:0;;;::::1;::::0;;;::::1;::::0;;27825:125::o;14150:148::-;13720:6;;-1:-1:-1;;;;;13720:6:0;3394:10;13720:22;13712:67;;;;-1:-1:-1;;;13712:67:0;;;;;;;:::i;:::-;14241:6:::1;::::0;14220:40:::1;::::0;14257:1:::1;::::0;-1:-1:-1;;;;;14241:6:0::1;::::0;14220:40:::1;::::0;14257:1;;14220:40:::1;14271:6;:19:::0;;-1:-1:-1;;;;;;14271:19:0::1;::::0;;14150:148::o;27465:144::-;13720:6;;-1:-1:-1;;;;;13720:6:0;3394:10;13720:22;13712:67;;;;-1:-1:-1;;;13712:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27555:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;27555:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27465:144::o;4463:103::-;4518:13;4551:7;4544:14;;;;;:::i;8538:268::-;8630:4;8647:129;3394:10;8670:7;8679:96;8718:15;8679:96;;;;;;;;;;;;;;;;;3394:10;8679:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8679:34:0;;;;;;;;;;;;:38;:96::i;5871:174::-;5956:4;5973:42;3394:10;5997:9;6008:6;5973:9;:42::i;25162:106::-;13720:6;;-1:-1:-1;;;;;13720:6:0;3394:10;13720:22;13712:67;;;;-1:-1:-1;;;13712:67:0;;;;;;;:::i;:::-;25215:9:::1;:16:::0;;-1:-1:-1;;25242:18:0;;;;;25162:106::o;27175:132::-;13720:6;;-1:-1:-1;;;;;13720:6:0;3394:10;13720:22;13712:67;;;;-1:-1:-1;;;13712:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27260:28:0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:39;;-1:-1:-1;;27260:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27175:132::o;27619:196::-;13720:6;;-1:-1:-1;;;;;13720:6:0;3394:10;13720:22;13712:67;;;;-1:-1:-1;;;13712:67:0;;;;;;;:::i;:::-;27712:13:::1;-1:-1:-1::0;;;;;27704:21:0::1;:4;-1:-1:-1::0;;;;;27704:21:0::1;;;27696:76;;;::::0;-1:-1:-1;;;27696:76:0;;7114:2:1;27696:76:0::1;::::0;::::1;7096:21:1::0;7153:2;7133:18;;;7126:30;7192:34;7172:18;;;7165:62;-1:-1:-1;;;7243:18:1;;;7236:40;7293:19;;27696:76:0::1;6912:406:1::0;27696:76:0::1;-1:-1:-1::0;;;;;27783:16:0;;;::::1;;::::0;;;:10:::1;:16;::::0;;;;:24;;-1:-1:-1;;27783:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27619:196::o;26005:274::-;13720:6;;-1:-1:-1;;;;;13720:6:0;3394:10;13720:22;13712:67;;;;-1:-1:-1;;;13712:67:0;;;;;;;:::i;:::-;26158:4:::1;26142:13;5449:12:::0;;;5362:107;26142:13:::1;:20;;;;:::i;:::-;26132:4;26115:13;26099;5449:12:::0;;;5362:107;26099:13:::1;:29;;;;:::i;:::-;26098:38;;;;:::i;:::-;26097:66;;26089:115;;;::::0;-1:-1:-1;;;26089:115:0;;7525:2:1;26089:115:0::1;::::0;::::1;7507:21:1::0;7564:2;7544:18;;;7537:30;7603:34;7583:18;;;7576:62;-1:-1:-1;;;7654:18:1;;;7647:34;7698:19;;26089:115:0::1;7323:400:1::0;26089:115:0::1;26267:4;26250:13;26234;5449:12:::0;;;5362:107;26234:13:::1;:29;;;;:::i;:::-;26233:38;;;;:::i;:::-;26215:15;:56:::0;-1:-1:-1;26005:274:0:o;26484:679::-;13720:6;;-1:-1:-1;;;;;13720:6:0;3394:10;13720:22;13712:67;;;;-1:-1:-1;;;13712:67:0;;;;;;;:::i;:::-;26638:21;:40;;;26689:21;:40;;;26761:45:::1;26713:16:::0;26662;26761:45:::1;:::i;:::-;26740:5;:66:::0;26819:22;:42;;;26872:22;:42;;;26947:47:::1;26897:17:::0;26844;26947:47:::1;:::i;:::-;26925:19:::0;:69;:5:::1;27013:18:::0;27035:1:::1;-1:-1:-1::0;27013:23:0::1;27005:64;;;::::0;-1:-1:-1;;;27005:64:0;;8063:2:1;27005:64:0::1;::::0;::::1;8045:21:1::0;8102:2;8082:18;;;8075:30;8141;8121:18;;;8114:58;8189:18;;27005:64:0::1;7861:352:1::0;27005:64:0::1;27091:19:::0;;27114:1:::1;-1:-1:-1::0;27091:24:0::1;27083:65;;;::::0;-1:-1:-1;;;27083:65:0;;8063:2:1;27083:65:0::1;::::0;::::1;8045:21:1::0;8102:2;8082:18;;;8075:30;8141;8121:18;;;8114:58;8189:18;;27083:65:0::1;7861:352:1::0;27083:65:0::1;26484:679:::0;;;;:::o;27313:146::-;13720:6;;-1:-1:-1;;;;;13720:6:0;3394:10;13720:22;13712:67;;;;-1:-1:-1;;;13712:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27405:35:0;;;::::1;;::::0;;;:26:::1;:35;::::0;;;;:46;;-1:-1:-1;;27405:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27313:146::o;14453:244::-;13720:6;;-1:-1:-1;;;;;13720:6:0;3394:10;13720:22;13712:67;;;;-1:-1:-1;;;13712:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14542:22:0;::::1;14534:73;;;::::0;-1:-1:-1;;;14534:73:0;;8420:2:1;14534:73:0::1;::::0;::::1;8402:21:1::0;8459:2;8439:18;;;8432:30;8498:34;8478:18;;;8471:62;-1:-1:-1;;;8549:18:1;;;8542:36;8595:19;;14534:73:0::1;8218:402:1::0;14534:73:0::1;14644:6;::::0;14623:38:::1;::::0;-1:-1:-1;;;;;14623:38:0;;::::1;::::0;14644:6:::1;::::0;14623:38:::1;::::0;14644:6:::1;::::0;14623:38:::1;14672:6;:17:::0;;-1:-1:-1;;;;;;14672:17:0::1;-1:-1:-1::0;;;;;14672:17:0;;;::::1;::::0;;;::::1;::::0;;14453:244::o;11774:180::-;11831:7;;11863:5;11867:1;11863;:5;:::i;:::-;11851:17;;11892:1;11887;:6;;11879:46;;;;-1:-1:-1;;;11879:46:0;;8827:2:1;11879:46:0;;;8809:21:1;8866:2;8846:18;;;8839:30;8905:29;8885:18;;;8878:57;8952:18;;11879:46:0;8625:351:1;11879:46:0;11945:1;11774:180;-1:-1:-1;;;11774:180:0:o;11109:620::-;-1:-1:-1;;;;;11245:19:0;;11237:68;;;;-1:-1:-1;;;11237:68:0;;9183:2:1;11237:68:0;;;9165:21:1;9222:2;9202:18;;;9195:30;9261:34;9241:18;;;9234:62;-1:-1:-1;;;9312:18:1;;;9305:34;9356:19;;11237:68:0;8981:400:1;11237:68:0;-1:-1:-1;;;;;11324:21:0;;11316:68;;;;-1:-1:-1;;;11316:68:0;;9588:2:1;11316:68:0;;;9570:21:1;9627:2;9607:18;;;9600:30;9666:34;9646:18;;;9639:62;-1:-1:-1;;;9717:18:1;;;9710:32;9759:19;;11316:68:0;9386:398:1;11316:68:0;-1:-1:-1;;;;;11403:60:0;;11420:42;11403:60;;11395:109;;;;-1:-1:-1;;;11395:109:0;;9991:2:1;11395:109:0;;;9973:21:1;10030:2;10010:18;;;10003:30;10069:34;10049:18;;;10042:62;-1:-1:-1;;;10120:18:1;;;10113:34;10164:19;;11395:109:0;9789:400:1;11395:109:0;-1:-1:-1;;;;;11523:62:0;;11542:42;11523:62;;11515:109;;;;-1:-1:-1;;;11515:109:0;;10396:2:1;11515:109:0;;;10378:21:1;10435:2;10415:18;;;10408:30;10474:34;10454:18;;;10447:62;-1:-1:-1;;;10525:18:1;;;10518:32;10567:19;;11515:109:0;10194:398:1;11515:109:0;-1:-1:-1;;;;;11637:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11689:32;;1915:25:1;;;11689:32:0;;1888:18:1;11689:32:0;;;;;;;;11109:620;;;:::o;28091:3405::-;-1:-1:-1;;;;;28232:20:0;;28224:70;;;;-1:-1:-1;;;28224:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28313:23:0;;28305:71;;;;-1:-1:-1;;;28305:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28395:25:0;;28413:6;28395:25;;28387:75;;;;-1:-1:-1;;;28387:75:0;;11609:2:1;28387:75:0;;;11591:21:1;11648:2;11628:18;;;11621:30;11687:34;11667:18;;;11660:62;-1:-1:-1;;;11738:18:1;;;11731:35;11783:19;;28387:75:0;11407:401:1;28387:75:0;-1:-1:-1;;;;;28481:28:0;;28502:6;28481:28;;28473:76;;;;-1:-1:-1;;;28473:76:0;;12015:2:1;28473:76:0;;;11997:21:1;12054:2;12034:18;;;12027:30;12093:34;12073:18;;;12066:62;-1:-1:-1;;;12144:18:1;;;12137:33;12187:19;;28473:76:0;11813:399:1;28473:76:0;-1:-1:-1;;;;;28569:21:0;;;;;;:10;:21;;;;;;;;28568:22;:45;;;;-1:-1:-1;;;;;;28595:18:0;;;;;;:10;:18;;;;;;;;28594:19;28568:45;28560:107;;;;-1:-1:-1;;;28560:107:0;;12419:2:1;28560:107:0;;;12401:21:1;12458:2;12438:18;;;12431:30;12497:34;12477:18;;;12470:62;-1:-1:-1;;;12548:18:1;;;12541:47;12605:19;;28560:107:0;12217:413:1;28560:107:0;28692:11;28688:102;;28720:37;28736:6;28744:9;28755:1;28720:15;:37::i;:::-;28091:3405;;;:::o;28688:102::-;13573:6;;-1:-1:-1;;;;;28820:17:0;;;13573:6;;28820:17;;;;:54;;-1:-1:-1;13573:6:0;;-1:-1:-1;;;;;28854:20:0;;;13573:6;;28854:20;;28820:54;:82;;;;-1:-1:-1;28892:10:0;;;;;;;28891:11;28820:82;28802:888;;;28936:9;;;;28931:147;;-1:-1:-1;;;;;28974:27:0;;;;;;:19;:27;;;;;;;;;:61;;-1:-1:-1;;;;;;29005:30:0;;;;;;:19;:30;;;;;;;;28974:61;28966:96;;;;-1:-1:-1;;;28966:96:0;;12837:2:1;28966:96:0;;;12819:21:1;12876:2;12856:18;;;12849:30;-1:-1:-1;;;12895:18:1;;;12888:52;12957:18;;28966:96:0;12635:346:1;28966:96:0;-1:-1:-1;;;;;29096:18:0;;;;;;:10;:18;;;;;;;;:65;;;;-1:-1:-1;;;;;;29119:42:0;;;;;;:31;:42;;;;;;;;29118:43;29096:65;29092:410;;;29200:12;;29190:6;:22;;29182:88;;;;-1:-1:-1;;;29182:88:0;;13188:2:1;29182:88:0;;;13170:21:1;13227:2;13207:18;;;13200:30;13266:34;13246:18;;;13239:62;-1:-1:-1;;;13317:18:1;;;13310:51;13378:19;;29182:88:0;12986:417:1;29182:88:0;29092:410;;;-1:-1:-1;;;;;29310:21:0;;;;;;:10;:21;;;;;;;;:65;;;;-1:-1:-1;;;;;;29336:39:0;;;;;;:31;:39;;;;;;;;29335:40;29310:65;29306:196;;;29414:13;;29404:6;:23;;29396:90;;;;-1:-1:-1;;;29396:90:0;;13610:2:1;29396:90:0;;;13592:21:1;13649:2;13629:18;;;13622:30;13688:34;13668:18;;;13661:62;-1:-1:-1;;;13739:18:1;;;13732:52;13801:19;;29396:90:0;13408:418:1;29396:90:0;-1:-1:-1;;;;;29523:37:0;;;;;;:26;:37;;;;;;;;29518:159;;29622:15;;-1:-1:-1;;;;;5632:18:0;;5605:7;5632:18;;;;;;;;;;;29589:29;;:6;:29;:::i;:::-;:48;;29581:80;;;;-1:-1:-1;;;29581:80:0;;14033:2:1;29581:80:0;;;14015:21:1;14072:2;14052:18;;;14045:30;-1:-1:-1;;;14091:18:1;;;14084:49;14150:18;;29581:80:0;13831:343:1;29581:80:0;29765:4;29716:28;5632:18;;;;;;;;;;;29824:19;;29800:43;;;;;;;29874:35;;-1:-1:-1;29898:11:0;;;;;;;29874:35;:63;;;;-1:-1:-1;29927:10:0;;;;;;;29926:11;29874:63;:101;;;;-1:-1:-1;;;;;;29954:21:0;;;;;;:10;:21;;;;;;;;29874:101;:146;;;;-1:-1:-1;;;;;;29993:27:0;;;;;;:19;:27;;;;;;;;29992:28;29874:146;:194;;;;-1:-1:-1;;;;;;30038:30:0;;;;;;:19;:30;;;;;;;;30037:31;29874:194;29856:326;;;30095:10;:17;;-1:-1:-1;;30095:17:0;;;;;30127:10;:8;:10::i;:::-;30152;:18;;-1:-1:-1;;30152:18:0;;;29856:326;30211:10;;-1:-1:-1;;;;;30323:27:0;;30195:12;30323:27;;;:19;:27;;;;;;30211:10;;;;;;;30210:11;;30323:27;;:61;;-1:-1:-1;;;;;;30354:30:0;;;;;;:19;:30;;;;;;;;30323:61;30319:109;;;-1:-1:-1;30411:5:0;30319:109;30441:12;30546:7;30542:892;;;-1:-1:-1;;;;;30612:21:0;;;;;;:10;:21;;;;;;;;:48;;;;-1:-1:-1;30637:19:0;;:23;;30612:48;30608:673;;;30699:19;;30688:40;;30724:3;;30688:31;;:6;;:10;:31::i;:::-;:35;;:40::i;:::-;30801:19;;30776:22;;30681:47;;-1:-1:-1;30801:19:0;30769:29;;30681:47;30769:29;:::i;:::-;:51;;;;:::i;:::-;30747:18;;:73;;;;;;;:::i;:::-;;;;-1:-1:-1;;30893:19:0;;30868:22;;30861:29;;:4;:29;:::i;:::-;:51;;;;:::i;:::-;30839:18;;:73;;;;;;;:::i;:::-;;;;-1:-1:-1;30608:673:0;;-1:-1:-1;30608:673:0;;-1:-1:-1;;;;;30974:18:0;;;;;;:10;:18;;;;;;;;:44;;;;-1:-1:-1;30996:5:0;:18;:22;;30974:44;30970:311;;;31057:5;:18;31046:39;;31081:3;;31046:30;;:6;;:10;:30::i;:39::-;31157:5;:18;31133:21;;31039:46;;-1:-1:-1;31157:18:0;31126:28;;31039:46;31126:28;:::i;:::-;:49;;;;:::i;:::-;31104:18;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;;31247:5:0;:18;31223:21;;31216:28;;:4;:28;:::i;:::-;:49;;;;:::i;:::-;31194:18;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;;30970:311:0;31301:8;;31297:93;;31330:44;31346:6;31362:4;31369;31330:15;:44::i;:::-;31406:14;31416:4;31406:14;;:::i;:::-;;;30542:892;31446:42;31462:6;31470:9;31481:6;31446:15;:42::i;:::-;28213:3283;;;;28091:3405;;;:::o;12115:191::-;12200:7;12236:12;12228:6;;;;12220:29;;;;-1:-1:-1;;;12220:29:0;;;;;;;;:::i;:::-;-1:-1:-1;12260:9:0;12272:5;12276:1;12272;:5;:::i;:::-;12260:17;12115:191;-1:-1:-1;;;;;12115:191:0:o;9296:766::-;-1:-1:-1;;;;;9436:20:0;;9428:70;;;;-1:-1:-1;;;9428:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9517:23:0;;9509:71;;;;-1:-1:-1;;;9509:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9599:61:0;;9617:42;9599:61;;9591:111;;;;-1:-1:-1;;;9591:111:0;;14511:2:1;9591:111:0;;;14493:21:1;14550:2;14530:18;;;14523:30;14589:34;14569:18;;;14562:62;-1:-1:-1;;;14640:18:1;;;14633:35;14685:19;;9591:111:0;14309:401:1;9591:111:0;-1:-1:-1;;;;;9721:64:0;;9742:42;9721:64;;9713:112;;;;-1:-1:-1;;;9713:112:0;;14917:2:1;9713:112:0;;;14899:21:1;14956:2;14936:18;;;14929:30;14995:34;14975:18;;;14968:62;-1:-1:-1;;;15046:18:1;;;15039:33;15089:19;;9713:112:0;14715:399:1;9713:112:0;9866:71;9888:6;9866:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9866:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;9846:17:0;;;:9;:17;;;;;;;;;;;:91;;;;9971:20;;;;;;;:32;;9996:6;9971:24;:32::i;:::-;-1:-1:-1;;;;;9948:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;10019:35;1915:25:1;;;9948:20:0;;10019:35;;;;;;1888:18:1;10019:35:0;1769:177:1;32424:1335:0;32512:4;32463:28;5632:18;;;;;;;;;;;32463:55;;32529:14;32567:18;;32546;;:39;;;;:::i;:::-;32529:56;-1:-1:-1;32597:12:0;32626:25;;;:40;;-1:-1:-1;32655:11:0;;32626:40;32622:57;;;32670:7;;;32424:1335::o;32622:57::-;32718:19;;:24;;32740:2;32718:24;:::i;:::-;32695:20;:47;32691:127;;;32782:19;;:24;;32804:2;32782:24;:::i;:::-;32759:47;;32691:127;32879:23;32958:1;32949:6;32928:18;;32905:20;:41;;;;:::i;:::-;:50;;;;:::i;:::-;:54;;;;:::i;:::-;32879:80;-1:-1:-1;32970:26:0;32999:41;:20;32879:80;32999:24;:41::i;:::-;32970:70;-1:-1:-1;33082:21:0;33116:36;32970:70;33116:16;:36::i;:::-;33167:18;33188:44;:21;33214:17;33188:25;:44::i;:::-;33167:65;;33246:23;33272:46;33311:6;33272:34;33287:18;;33272:10;:14;;:34;;;;:::i;:46::-;33246:72;-1:-1:-1;33329:23:0;33355:28;33246:72;33355:10;:28;:::i;:::-;33419:1;33398:18;:22;;;33431:18;:22;33329:54;-1:-1:-1;33472:19:0;;;;;:42;;;33513:1;33495:15;:19;33472:42;33468:192;;;33531:46;33544:15;33561;33531:12;:46::i;:::-;33597:51;;;15293:25:1;;;15349:2;15334:18;;15327:34;;;33597:51:0;;15266:18:1;33597:51:0;;;;;;;33468:192;33693:15;;33685:66;;-1:-1:-1;;;;;33693:15:0;;;;33723:21;;33685:66;;;;33723:21;33693:15;33685:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;32424:1335:0:o;12314:256::-;12371:7;12401:6;12397:47;;-1:-1:-1;12431:1:0;12424:8;;12397:47;12457:9;12469:5;12473:1;12469;:5;:::i;:::-;12457:17;-1:-1:-1;12502:1:0;12493:5;12497:1;12457:17;12493:5;:::i;:::-;:10;12485:56;;;;-1:-1:-1;;;12485:56:0;;15784:2:1;12485:56:0;;;15766:21:1;15823:2;15803:18;;;15796:30;15862:34;15842:18;;;15835:62;-1:-1:-1;;;15913:18:1;;;15906:31;15954:19;;12485:56:0;15582:397:1;12581:131:0;12638:7;12665:39;12669:1;12672;12665:39;;;;;;;;;;;;;;;;;:3;:39::i;11967:135::-;12024:7;12051:43;12055:1;12058;12051:43;;;;;;;;;;;;;;;;;:3;:43::i;31504:554::-;31652:16;;;31666:1;31652:16;;;;;;;;31628:21;;31652:16;;;;;;;;;;-1:-1:-1;31652:16:0;31628:40;;31697:4;31679;31684:1;31679:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31679:23:0;;;-1:-1:-1;;;;;31679:23:0;;;;;31723:6;-1:-1:-1;;;;;31723:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31713:4;31718:1;31713:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31713:23:0;;;-1:-1:-1;;;;;31713:23:0;;;;;31749:49;31766:4;31781:6;31790:7;31749:8;:49::i;:::-;31837:211;;-1:-1:-1;;;31837:211:0;;-1:-1:-1;;;;;31837:6:0;:57;;;;:211;;31909:7;;31931:1;;31975:4;;32002;;32022:15;;31837:211;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31555:503;31504:554;:::o;32066:350::-;32210:49;32227:4;32242:6;32251:7;32210:8;:49::i;:::-;32302:106;;-1:-1:-1;;;32302:106:0;;32354:4;32302:106;;;17830:34:1;;;17880:18;;;17873:34;;;32370:1:0;17923:18:1;;;17916:34;;;17966:18;;;17959:34;18009:19;;;18002:44;32392:15:0;18062:19:1;;;18055:35;32302:6:0;-1:-1:-1;;;;;32302:22:0;;;;32333:9;;17764:19:1;;32302:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;32066:350;;:::o;12724:277::-;12809:7;12844:12;12837:5;12829:28;;;;-1:-1:-1;;;12829:28:0;;;;;;;;:::i;:::-;-1:-1:-1;12868:9:0;12880:5;12884:1;12880;:5;:::i;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;671:70;616:131;:::o;752:315::-;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1516:248::-;1584:6;1592;1645:2;1633:9;1624:7;1620:23;1616:32;1613:52;;;1661:1;1658;1651:12;1613:52;-1:-1:-1;;1684:23:1;;;1754:2;1739:18;;;1726:32;;-1:-1:-1;1516:248:1:o;1951:160::-;2016:20;;2072:13;;2065:21;2055:32;;2045:60;;2101:1;2098;2091:12;2116:180;2172:6;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:26;2280:9;2264:26;:::i;2301:456::-;2378:6;2386;2394;2447:2;2435:9;2426:7;2422:23;2418:32;2415:52;;;2463:1;2460;2453:12;2415:52;2502:9;2489:23;2521:31;2546:5;2521:31;:::i;:::-;2571:5;-1:-1:-1;2628:2:1;2613:18;;2600:32;2641:33;2600:32;2641:33;:::i;:::-;2301:456;;2693:7;;-1:-1:-1;;;2747:2:1;2732:18;;;;2719:32;;2301:456::o;3159:180::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;-1:-1:-1;3310:23:1;;3159:180;-1:-1:-1;3159:180:1:o;3344:315::-;3409:6;3417;3470:2;3458:9;3449:7;3445:23;3441:32;3438:52;;;3486:1;3483;3476:12;3438:52;3525:9;3512:23;3544:31;3569:5;3544:31;:::i;:::-;3594:5;-1:-1:-1;3618:35:1;3649:2;3634:18;;3618:35;:::i;:::-;3608:45;;3344:315;;;;;:::o;3664:385::-;3750:6;3758;3766;3774;3827:3;3815:9;3806:7;3802:23;3798:33;3795:53;;;3844:1;3841;3834:12;3795:53;-1:-1:-1;;3867:23:1;;;3937:2;3922:18;;3909:32;;-1:-1:-1;3988:2:1;3973:18;;3960:32;;4039:2;4024:18;4011:32;;-1:-1:-1;3664:385:1;-1:-1:-1;3664:385:1:o;4594:388::-;4662:6;4670;4723:2;4711:9;4702:7;4698:23;4694:32;4691:52;;;4739:1;4736;4729:12;4691:52;4778:9;4765:23;4797:31;4822:5;4797:31;:::i;:::-;4847:5;-1:-1:-1;4904:2:1;4889:18;;4876:32;4917:33;4876:32;4917:33;:::i;:::-;4969:7;4959:17;;;4594:388;;;;;:::o;5222:380::-;5301:1;5297:12;;;;5344;;;5365:61;;5419:4;5411:6;5407:17;5397:27;;5365:61;5472:2;5464:6;5461:14;5441:18;5438:38;5435:161;;;5518:10;5513:3;5509:20;5506:1;5499:31;5553:4;5550:1;5543:15;5581:4;5578:1;5571:15;5435:161;;5222:380;;;:::o;5607:356::-;5809:2;5791:21;;;5828:18;;;5821:30;5887:34;5882:2;5867:18;;5860:62;5954:2;5939:18;;5607:356::o;5968:127::-;6029:10;6024:3;6020:20;6017:1;6010:31;6060:4;6057:1;6050:15;6084:4;6081:1;6074:15;6100:217;6140:1;6166;6156:132;;6210:10;6205:3;6201:20;6198:1;6191:31;6245:4;6242:1;6235:15;6273:4;6270:1;6263:15;6156:132;-1:-1:-1;6302:9:1;;6100:217::o;6322:168::-;6362:7;6428:1;6424;6420:6;6416:14;6413:1;6410:21;6405:1;6398:9;6391:17;6387:45;6384:71;;;6435:18;;:::i;:::-;-1:-1:-1;6475:9:1;;6322:168::o;6495:412::-;6697:2;6679:21;;;6736:2;6716:18;;;6709:30;6775:34;6770:2;6755:18;;6748:62;-1:-1:-1;;;6841:2:1;6826:18;;6819:46;6897:3;6882:19;;6495:412::o;7728:128::-;7768:3;7799:1;7795:6;7792:1;7789:13;7786:39;;;7805:18;;:::i;:::-;-1:-1:-1;7841:9:1;;7728:128::o;10597:401::-;10799:2;10781:21;;;10838:2;10818:18;;;10811:30;10877:34;10872:2;10857:18;;10850:62;-1:-1:-1;;;10943:2:1;10928:18;;10921:35;10988:3;10973:19;;10597:401::o;11003:399::-;11205:2;11187:21;;;11244:2;11224:18;;;11217:30;11283:34;11278:2;11263:18;;11256:62;-1:-1:-1;;;11349:2:1;11334:18;;11327:33;11392:3;11377:19;;11003:399::o;14179:125::-;14219:4;14247:1;14244;14241:8;14238:34;;;14252:18;;:::i;:::-;-1:-1:-1;14289:9:1;;14179:125::o;16116:127::-;16177:10;16172:3;16168:20;16165:1;16158:31;16208:4;16205:1;16198:15;16232:4;16229:1;16222:15;16248:251;16318:6;16371:2;16359:9;16350:7;16346:23;16342:32;16339:52;;;16387:1;16384;16377:12;16339:52;16419:9;16413:16;16438:31;16463:5;16438:31;:::i;16504:980::-;16766:4;16814:3;16803:9;16799:19;16845:6;16834:9;16827:25;16871:2;16909:6;16904:2;16893:9;16889:18;16882:34;16952:3;16947:2;16936:9;16932:18;16925:31;16976:6;17011;17005:13;17042:6;17034;17027:22;17080:3;17069:9;17065:19;17058:26;;17119:2;17111:6;17107:15;17093:29;;17140:1;17150:195;17164:6;17161:1;17158:13;17150:195;;;17229:13;;-1:-1:-1;;;;;17225:39:1;17213:52;;17320:15;;;;17285:12;;;;17261:1;17179:9;17150:195;;;-1:-1:-1;;;;;;;17401:32:1;;;;17396:2;17381:18;;17374:60;-1:-1:-1;;;17465:3:1;17450:19;17443:35;17362:3;16504:980;-1:-1:-1;;;16504:980:1:o;18101:306::-;18189:6;18197;18205;18258:2;18246:9;18237:7;18233:23;18229:32;18226:52;;;18274:1;18271;18264:12;18226:52;18303:9;18297:16;18287:26;;18353:2;18342:9;18338:18;18332:25;18322:35;;18397:2;18386:9;18382:18;18376:25;18366:35;;18101:306;;;;;:::o

Swarm Source

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