ETH Price: $2,677.95 (-2.17%)

Token

Ordinal Tsunami (OT)
 

Overview

Max Total Supply

1,000,000,000 OT

Holders

110

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
480,881.706107899483955035 OT

Value
$0.00
0xDf4cbf2E27C8187B72CAAe219468Cb0dB5207519
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:
OrdinalTsunami

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// website: ordinaltsunami.com
// telegram: https://t.me/OrdinalTsunami

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}

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

        mapping(address => uint256) private _balances;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return c;
    }

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

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

        return c;
    }

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

contract OrdinalTsunami is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable router;
    address public uniswapV2Pair;

    // addresses
    address private developmentWallet;
    address private marketingWallet;

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

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

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

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

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

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

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

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

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

    constructor() ERC20("Ordinal Tsunami", "OT") {
 
        router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

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

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

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

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

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

        marketingWallet = address(0x9767569BAb168b3262Ce8C78224fB0c2310EA0b5);
        developmentWallet = address(0x9767569BAb168b3262Ce8C78224fB0c2310EA0b5);

        // exclude from paying fees or having max transaction amount

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

    receive() external payable {

    }


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


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

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

    function updateMaxTxnAmount(uint256 newMaxBuy, uint256 newMaxSell) public onlyOwner {
        maxBuyAmount = (totalSupply() * newMaxBuy) / 1000;
        maxSellAmount = (totalSupply() * newMaxSell) / 1000;
    }

    function updateMaxWalletAmount(uint256 newPercentage) public onlyOwner {
        maxWalletAmount = (totalSupply() * newPercentage) / 1000;
    }

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

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

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

    function removeLimits() external onlyOwner {
        updateMaxTxnAmount(1000,1000);
        updateMaxWalletAmount(1000);
    }

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

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

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

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        
        if (amount == 0) {
            super._transfer(sender, recipient, 0);
            return;
        }

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

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

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

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

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

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

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

            amount -= fees;

        }

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

    function swapTokensForEth(uint256 tAmount) private {

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

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

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

    }

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

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

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

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

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

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

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


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


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

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

}

Contract Security Audit

Contract ABI

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

600d805461ffff191690556101a0604052600060a081905260c081905260e0819052610100819052610120819052610140819052610160819052610180819052600e819055600f819055601081905560118190556012819055601381905560148190556015553480156200007257600080fd5b50604080518082018252600f81526e4f7264696e616c205473756e616d6960881b60208083019182528351808501909452600284526113d560f21b908401528151919291620000c49160039162000618565b508051620000da90600490602084019062000618565b5050506000620000ef6200043160201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526000908152601b60208190527f737a8aa320b777139cfebe450e173d90b49df21bdde0d83dcfdff4abee7622ee805460ff1916600190811790915591620001a66005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152601b909252812080548316600190811790915561dead82527f6790d4910a095e0e04c8daa388834616a295bac3f59038957b6d0b93a2d2168480549093168117909255601a906200022e6005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152601a909252812080549092166001908117909255601c90620002876005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055601c9092527fa48bd8e7b1565515cde2859b6cc48308ba05b5325bcf90fb096b9ac0b8087dfc80548416600190811790915530835291208054909216179055608051620003039060001962000435565b506b033b2e3c9fd0803ce8000000606462000320826002620006d4565b6200032c9190620006f6565b60095560646200033e826001620006d4565b6200034a9190620006f6565b600a5560646200035c826002620006d4565b620003689190620006f6565b600b556103e86200037b826001620006d4565b620003879190620006f6565b600c55600f80805560006011819055600a601081905591620003aa919062000719565b620003b6919062000719565b600e556019601381905560006015819055601480805591620003d9919062000719565b620003e5919062000719565b60125560088054739767569bab168b3262ce8c78224fb0c2310ea0b56001600160a01b031991821681179092556007805490911690911790556200042a33826200044d565b5062000770565b3390565b6000620004443384846200054d565b50600192915050565b6001600160a01b038216620004a95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620004c581600254620005ae60201b6200122b1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620004f89183906200122b620005ae821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600080620005bd838562000719565b905083811015620006115760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620004a0565b9392505050565b828054620006269062000734565b90600052602060002090601f0160209004810192826200064a576000855562000695565b82601f106200066557805160ff191683800117855562000695565b8280016001018555821562000695579182015b828111156200069557825182559160200191906001019062000678565b50620006a3929150620006a7565b5090565b5b80821115620006a35760008155600101620006a8565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620006f157620006f1620006be565b500290565b6000826200071457634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156200072f576200072f620006be565b500190565b600181811c908216806200074957607f821691505b6020821081036200076a57634e487b7160e01b600052602260045260246000fd5b50919050565b6080516124c3620007bd600039600081816107bd01528181610cdb01528181610d6c01528181611dd601528181611e8f01528181611ecb01528181611f3d0152611f9901526124c36000f3fe6080604052600436106102345760003560e01c806378e0edd71161012e578063c16dd4a4116100ab578063e16830a81161006f578063e16830a814610725578063ef8700e514610745578063f2fde38b1461075b578063f5b3c3bf1461077b578063f887ea40146107ab57600080fd5b8063c16dd4a414610611578063c18bc19514610631578063d212a69a14610651578063d3f6a157146106bf578063dd62ed3e146106df57600080fd5b80639e78fb4f116100f25780639e78fb4f1461057c578063a457c2d714610591578063a9059cbb146105b1578063b8863115146105d1578063c0246668146105f157600080fd5b806378e0edd7146104e45780638da5cb5b146104f957806395d89b411461051757806396880b171461052c578063992c58e41461055c57600080fd5b8063313ce567116101bc5780636ddd1713116101805780636ddd17131461044557806370a0823114610464578063715018a61461049a578063751039fc146104af5780637571336a146104c457600080fd5b8063313ce56714610378578063395093511461039457806349bd5a5e146103b45780634fbee193146103ec578063555467a11461042557600080fd5b806318160ddd1161020357806318160ddd146102ed5780631a8145bb1461030c5780631c6e8a75146103225780631f3fed8f1461034257806323b872dd1461035857600080fd5b806306fdde0314610240578063095ea7b31461026b57806310d5de531461029b57806311a582c3146102cb57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b506102556107df565b6040516102629190612045565b60405180910390f35b34801561027757600080fd5b5061028b6102863660046120b2565b610871565b6040519015158152602001610262565b3480156102a757600080fd5b5061028b6102b63660046120de565b601b6020526000908152604090205460ff1681565b3480156102d757600080fd5b506102eb6102e63660046120fb565b610888565b005b3480156102f957600080fd5b506002545b604051908152602001610262565b34801561031857600080fd5b506102fe60175481565b34801561032e57600080fd5b506102eb61033d36600461212d565b610907565b34801561034e57600080fd5b506102fe60165481565b34801561036457600080fd5b5061028b610373366004612148565b61094b565b34801561038457600080fd5b5060405160128152602001610262565b3480156103a057600080fd5b5061028b6103af3660046120b2565b6109b4565b3480156103c057600080fd5b506006546103d4906001600160a01b031681565b6040516001600160a01b039091168152602001610262565b3480156103f857600080fd5b5061028b6104073660046120de565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561043157600080fd5b5061028b610440366004612189565b6109ea565b34801561045157600080fd5b50600d5461028b90610100900460ff1681565b34801561047057600080fd5b506102fe61047f3660046120de565b6001600160a01b031660009081526020819052604090205490565b3480156104a657600080fd5b506102eb610a25565b3480156104bb57600080fd5b506102eb610a99565b3480156104d057600080fd5b506102eb6104df3660046121a2565b610adc565b3480156104f057600080fd5b506102eb610b31565b34801561050557600080fd5b506005546001600160a01b03166103d4565b34801561052357600080fd5b50610255610b7a565b34801561053857600080fd5b5061028b6105473660046120de565b601c6020526000908152604090205460ff1681565b34801561056857600080fd5b506102eb6105773660046121d7565b610b89565b34801561058857600080fd5b506102eb610caf565b34801561059d57600080fd5b5061028b6105ac3660046120b2565b610ecb565b3480156105bd57600080fd5b5061028b6105cc3660046120b2565b610f1a565b3480156105dd57600080fd5b50600d5461028b9062010000900460ff1681565b3480156105fd57600080fd5b506102eb61060c3660046121a2565b610f27565b34801561061d57600080fd5b506102eb61062c3660046121a2565b610f7c565b34801561063d57600080fd5b506102eb61064c366004612189565b611042565b34801561065d57600080fd5b50600e54600f54601054601154601254601354601454601554610684979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610262565b3480156106cb57600080fd5b506102eb6106da36600461221a565b611093565b3480156106eb57600080fd5b506102fe6106fa36600461221a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561073157600080fd5b506102eb6107403660046121a2565b6110eb565b34801561075157600080fd5b506102fe60185481565b34801561076757600080fd5b506102eb6107763660046120de565b611140565b34801561078757600080fd5b5061028b6107963660046120de565b601d6020526000908152604090205460ff1681565b3480156107b757600080fd5b506103d47f000000000000000000000000000000000000000000000000000000000000000081565b6060600380546107ee90612253565b80601f016020809104026020016040519081016040528092919081815260200182805461081a90612253565b80156108675780601f1061083c57610100808354040283529160200191610867565b820191906000526020600020905b81548152906001019060200180831161084a57829003601f168201915b5050505050905090565b600061087e338484611291565b5060015b92915050565b6005546001600160a01b031633146108bb5760405162461bcd60e51b81526004016108b29061228d565b60405180910390fd5b6103e8826108c860025490565b6108d291906122d8565b6108dc91906122f7565b6009556103e8816108ec60025490565b6108f691906122d8565b61090091906122f7565b600a555050565b6005546001600160a01b031633146109315760405162461bcd60e51b81526004016108b29061228d565b600d80549115156101000261ff0019909216919091179055565b60006109588484846112f3565b6109aa84336109a585604051806060016040528060288152602001612466602891396001600160a01b038a166000908152600160209081526040808320338452909152902054919061194f565b611291565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161087e9185906109a5908661122b565b6005546000906001600160a01b03163314610a175760405162461bcd60e51b81526004016108b29061228d565b50600c81905560015b919050565b6005546001600160a01b03163314610a4f5760405162461bcd60e51b81526004016108b29061228d565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610ac35760405162461bcd60e51b81526004016108b29061228d565b610acf6103e880610888565b610ada6103e8611042565b565b6005546001600160a01b03163314610b065760405162461bcd60e51b81526004016108b29061228d565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b5b5760405162461bcd60e51b81526004016108b29061228d565b600d805461ffff1916610101179055610b75436000612319565b601955565b6060600480546107ee90612253565b6005546001600160a01b03163314610bb35760405162461bcd60e51b81526004016108b29061228d565b600f8690556011859055601084905583610bcd8688612319565b610bd79190612319565b600e5560138390556015829055601481905580610bf48385612319565b610bfe9190612319565b601255600e5460281015610c545760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420343025206f72206c65737300000060448201526064016108b2565b60125460281015610ca75760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420343025206f72206c65737300000060448201526064016108b2565b505050505050565b6005546001600160a01b03163314610cd95760405162461bcd60e51b81526004016108b29061228d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5b9190612331565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dc8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dec9190612331565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610e39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5d9190612331565b600680546001600160a01b0319166001600160a01b0392831690811782556000908152601b60209081526040808320805460ff199081166001908117909255855487168552601c8452828520805482168317905594549095168352601d909152902080549091169091179055565b600061087e33846109a58560405180606001604052806025815260200161241b602591393360009081526001602090815260408083206001600160a01b038d168452909152902054919061194f565b600061087e3384846112f3565b6005546001600160a01b03163314610f515760405162461bcd60e51b81526004016108b29061228d565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fa65760405162461bcd60e51b81526004016108b29061228d565b6006546001600160a01b03908116908316036110175760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526936b0b935b2ba2830b4b960b11b60648201526084016108b2565b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461106c5760405162461bcd60e51b81526004016108b29061228d565b6103e88161107960025490565b61108391906122d8565b61108d91906122f7565b600b5550565b6005546001600160a01b031633146110bd5760405162461bcd60e51b81526004016108b29061228d565b600880546001600160a01b039384166001600160a01b03199182161790915560078054929093169116179055565b6005546001600160a01b031633146111155760405162461bcd60e51b81526004016108b29061228d565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461116a5760405162461bcd60e51b81526004016108b29061228d565b6001600160a01b0381166111cf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b2565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806112388385612319565b90508381101561128a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108b2565b9392505050565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b8060000361130c5761130783836000611989565b505050565b6005546001600160a01b0384811691161480159061133857506005546001600160a01b03838116911614155b801561134d5750600d5462010000900460ff16155b156115dc57600d5460ff166113e0576001600160a01b0383166000908152601a602052604090205460ff168061139b57506001600160a01b0382166000908152601a602052604090205460ff165b6113e05760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108b2565b6001600160a01b0383166000908152601d602052604090205460ff16801561142157506001600160a01b0382166000908152601b602052604090205460ff16155b1561149b576009548111156114965760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108b2565b611552565b6001600160a01b0382166000908152601d602052604090205460ff1680156114dc57506001600160a01b0383166000908152601b602052604090205460ff16155b1561155257600a548111156115525760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108b2565b6001600160a01b0382166000908152601c602052604090205460ff166115dc57600b546001600160a01b0383166000908152602081905260409020546115989083612319565b11156115dc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108b2565b30600090815260208190526040902054600c54811080159081906116075750600d54610100900460ff165b801561161c5750600d5462010000900460ff16155b801561164057506001600160a01b0384166000908152601d602052604090205460ff165b801561166557506001600160a01b0385166000908152601a602052604090205460ff16155b801561168a57506001600160a01b0384166000908152601a602052604090205460ff16155b156116b557600d805462ff00001916620100001790556116a8611a46565b600d805462ff0000191690555b600d546001600160a01b0386166000908152601a602052604090205460ff6201000090920482161591168061170257506001600160a01b0385166000908152601a602052604090205460ff165b1561170b575060005b801561194457600060195443101561179657611733606461172d876063611c79565b90611cfb565b9050606361174282605e6122d8565b61174c91906122f7565b6016600082825461175d9190612319565b90915550606390506117708260056122d8565b61177a91906122f7565b6018600082825461178b9190612319565b909155506119259050565b6001600160a01b0386166000908152601d602052604090205460ff1680156117bf575060125415155b1561184d576012546117d99060649061172d908890611c79565b601254601554919250906117ed90836122d8565b6117f791906122f7565b601760008282546118089190612319565b909155505060125460135461181d90836122d8565b61182791906122f7565b601660008282546118389190612319565b909155505060125460145461177090836122d8565b6001600160a01b0387166000908152601d602052604090205460ff1680156118765750600e5415155b1561192557600e546118909060649061172d908890611c79565b600e54601154919250906118a490836122d8565b6118ae91906122f7565b601760008282546118bf9190612319565b9091555050600e54600f546118d490836122d8565b6118de91906122f7565b601660008282546118ef9190612319565b9091555050600e5460105461190490836122d8565b61190e91906122f7565b6018600082825461191f9190612319565b90915550505b801561193657611936873083611989565b611940818661234e565b9450505b610ca7868686611989565b600081848411156119735760405162461bcd60e51b81526004016108b29190612045565b506000611980848661234e565b95945050505050565b6119c681604051806060016040528060268152602001612440602691396001600160a01b038616600090815260208190526040902054919061194f565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546119f5908261122b565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016112e6565b3060009081526020819052604081205490506000601854601654601754611a6d9190612319565b611a779190612319565b90506000821580611a86575081155b15611a9057505050565b600c54611a9e9060146122d8565b831115611ab657600c54611ab39060146122d8565b92505b600060028360175486611ac991906122d8565b611ad391906122f7565b611add91906122f7565b90506000611aeb8583611d3d565b905047611af782611d7f565b6000611b034783611d3d565b90506000611b208761172d60165485611c7990919063ffffffff16565b90506000611b3d8861172d60185486611c7990919063ffffffff16565b90506000611b4b8284612319565b611b55908561234e565b60006017819055601681905560185590508615801590611b755750600081115b15611bbe57611b848782611f37565b60408051878152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b6007546001600160a01b0316611bd4844761234e565b604051600081818185875af1925050503d8060008114611c10576040519150601f19603f3d011682016040523d82523d6000602084013e611c15565b606091505b50506008546040519199506001600160a01b0316904790600081818185875af1925050503d8060008114611c65576040519150601f19603f3d011682016040523d82523d6000602084013e611c6a565b606091505b50505050505050505050505050565b600082600003611c8b57506000610882565b6000611c9783856122d8565b905082611ca485836122f7565b1461128a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108b2565b600061128a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612017565b600061128a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061194f565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611db457611db4612365565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e569190612331565b81600181518110611e6957611e69612365565b60200260200101906001600160a01b031690816001600160a01b031681525050611eb4307f000000000000000000000000000000000000000000000000000000000000000084611291565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611f0990859060009086903090429060040161237b565b600060405180830381600087803b158015611f2357600080fd5b505af1158015610ca7573d6000803e3d6000fd5b611f62307f000000000000000000000000000000000000000000000000000000000000000084611291565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611feb573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061201091906123ec565b5050505050565b600081836120385760405162461bcd60e51b81526004016108b29190612045565b50600061198084866122f7565b600060208083528351808285015260005b8181101561207257858101830151858201604001528201612056565b81811115612084576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146120af57600080fd5b50565b600080604083850312156120c557600080fd5b82356120d08161209a565b946020939093013593505050565b6000602082840312156120f057600080fd5b813561128a8161209a565b6000806040838503121561210e57600080fd5b50508035926020909101359150565b80358015158114610a2057600080fd5b60006020828403121561213f57600080fd5b61128a8261211d565b60008060006060848603121561215d57600080fd5b83356121688161209a565b925060208401356121788161209a565b929592945050506040919091013590565b60006020828403121561219b57600080fd5b5035919050565b600080604083850312156121b557600080fd5b82356121c08161209a565b91506121ce6020840161211d565b90509250929050565b60008060008060008060c087890312156121f057600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b6000806040838503121561222d57600080fd5b82356122388161209a565b915060208301356122488161209a565b809150509250929050565b600181811c9082168061226757607f821691505b60208210810361228757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156122f2576122f26122c2565b500290565b60008261231457634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561232c5761232c6122c2565b500190565b60006020828403121561234357600080fd5b815161128a8161209a565b600082821015612360576123606122c2565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123cb5784516001600160a01b0316835293830193918301916001016123a6565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561240157600080fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122065ee0f40b1c8af1ef6d455967d496efa96f24bce0e8db498fe998b895fc367b264736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106102345760003560e01c806378e0edd71161012e578063c16dd4a4116100ab578063e16830a81161006f578063e16830a814610725578063ef8700e514610745578063f2fde38b1461075b578063f5b3c3bf1461077b578063f887ea40146107ab57600080fd5b8063c16dd4a414610611578063c18bc19514610631578063d212a69a14610651578063d3f6a157146106bf578063dd62ed3e146106df57600080fd5b80639e78fb4f116100f25780639e78fb4f1461057c578063a457c2d714610591578063a9059cbb146105b1578063b8863115146105d1578063c0246668146105f157600080fd5b806378e0edd7146104e45780638da5cb5b146104f957806395d89b411461051757806396880b171461052c578063992c58e41461055c57600080fd5b8063313ce567116101bc5780636ddd1713116101805780636ddd17131461044557806370a0823114610464578063715018a61461049a578063751039fc146104af5780637571336a146104c457600080fd5b8063313ce56714610378578063395093511461039457806349bd5a5e146103b45780634fbee193146103ec578063555467a11461042557600080fd5b806318160ddd1161020357806318160ddd146102ed5780631a8145bb1461030c5780631c6e8a75146103225780631f3fed8f1461034257806323b872dd1461035857600080fd5b806306fdde0314610240578063095ea7b31461026b57806310d5de531461029b57806311a582c3146102cb57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b506102556107df565b6040516102629190612045565b60405180910390f35b34801561027757600080fd5b5061028b6102863660046120b2565b610871565b6040519015158152602001610262565b3480156102a757600080fd5b5061028b6102b63660046120de565b601b6020526000908152604090205460ff1681565b3480156102d757600080fd5b506102eb6102e63660046120fb565b610888565b005b3480156102f957600080fd5b506002545b604051908152602001610262565b34801561031857600080fd5b506102fe60175481565b34801561032e57600080fd5b506102eb61033d36600461212d565b610907565b34801561034e57600080fd5b506102fe60165481565b34801561036457600080fd5b5061028b610373366004612148565b61094b565b34801561038457600080fd5b5060405160128152602001610262565b3480156103a057600080fd5b5061028b6103af3660046120b2565b6109b4565b3480156103c057600080fd5b506006546103d4906001600160a01b031681565b6040516001600160a01b039091168152602001610262565b3480156103f857600080fd5b5061028b6104073660046120de565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561043157600080fd5b5061028b610440366004612189565b6109ea565b34801561045157600080fd5b50600d5461028b90610100900460ff1681565b34801561047057600080fd5b506102fe61047f3660046120de565b6001600160a01b031660009081526020819052604090205490565b3480156104a657600080fd5b506102eb610a25565b3480156104bb57600080fd5b506102eb610a99565b3480156104d057600080fd5b506102eb6104df3660046121a2565b610adc565b3480156104f057600080fd5b506102eb610b31565b34801561050557600080fd5b506005546001600160a01b03166103d4565b34801561052357600080fd5b50610255610b7a565b34801561053857600080fd5b5061028b6105473660046120de565b601c6020526000908152604090205460ff1681565b34801561056857600080fd5b506102eb6105773660046121d7565b610b89565b34801561058857600080fd5b506102eb610caf565b34801561059d57600080fd5b5061028b6105ac3660046120b2565b610ecb565b3480156105bd57600080fd5b5061028b6105cc3660046120b2565b610f1a565b3480156105dd57600080fd5b50600d5461028b9062010000900460ff1681565b3480156105fd57600080fd5b506102eb61060c3660046121a2565b610f27565b34801561061d57600080fd5b506102eb61062c3660046121a2565b610f7c565b34801561063d57600080fd5b506102eb61064c366004612189565b611042565b34801561065d57600080fd5b50600e54600f54601054601154601254601354601454601554610684979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610262565b3480156106cb57600080fd5b506102eb6106da36600461221a565b611093565b3480156106eb57600080fd5b506102fe6106fa36600461221a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561073157600080fd5b506102eb6107403660046121a2565b6110eb565b34801561075157600080fd5b506102fe60185481565b34801561076757600080fd5b506102eb6107763660046120de565b611140565b34801561078757600080fd5b5061028b6107963660046120de565b601d6020526000908152604090205460ff1681565b3480156107b757600080fd5b506103d47f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6060600380546107ee90612253565b80601f016020809104026020016040519081016040528092919081815260200182805461081a90612253565b80156108675780601f1061083c57610100808354040283529160200191610867565b820191906000526020600020905b81548152906001019060200180831161084a57829003601f168201915b5050505050905090565b600061087e338484611291565b5060015b92915050565b6005546001600160a01b031633146108bb5760405162461bcd60e51b81526004016108b29061228d565b60405180910390fd5b6103e8826108c860025490565b6108d291906122d8565b6108dc91906122f7565b6009556103e8816108ec60025490565b6108f691906122d8565b61090091906122f7565b600a555050565b6005546001600160a01b031633146109315760405162461bcd60e51b81526004016108b29061228d565b600d80549115156101000261ff0019909216919091179055565b60006109588484846112f3565b6109aa84336109a585604051806060016040528060288152602001612466602891396001600160a01b038a166000908152600160209081526040808320338452909152902054919061194f565b611291565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161087e9185906109a5908661122b565b6005546000906001600160a01b03163314610a175760405162461bcd60e51b81526004016108b29061228d565b50600c81905560015b919050565b6005546001600160a01b03163314610a4f5760405162461bcd60e51b81526004016108b29061228d565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610ac35760405162461bcd60e51b81526004016108b29061228d565b610acf6103e880610888565b610ada6103e8611042565b565b6005546001600160a01b03163314610b065760405162461bcd60e51b81526004016108b29061228d565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b5b5760405162461bcd60e51b81526004016108b29061228d565b600d805461ffff1916610101179055610b75436000612319565b601955565b6060600480546107ee90612253565b6005546001600160a01b03163314610bb35760405162461bcd60e51b81526004016108b29061228d565b600f8690556011859055601084905583610bcd8688612319565b610bd79190612319565b600e5560138390556015829055601481905580610bf48385612319565b610bfe9190612319565b601255600e5460281015610c545760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420343025206f72206c65737300000060448201526064016108b2565b60125460281015610ca75760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420343025206f72206c65737300000060448201526064016108b2565b505050505050565b6005546001600160a01b03163314610cd95760405162461bcd60e51b81526004016108b29061228d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5b9190612331565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dc8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dec9190612331565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610e39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5d9190612331565b600680546001600160a01b0319166001600160a01b0392831690811782556000908152601b60209081526040808320805460ff199081166001908117909255855487168552601c8452828520805482168317905594549095168352601d909152902080549091169091179055565b600061087e33846109a58560405180606001604052806025815260200161241b602591393360009081526001602090815260408083206001600160a01b038d168452909152902054919061194f565b600061087e3384846112f3565b6005546001600160a01b03163314610f515760405162461bcd60e51b81526004016108b29061228d565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fa65760405162461bcd60e51b81526004016108b29061228d565b6006546001600160a01b03908116908316036110175760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526936b0b935b2ba2830b4b960b11b60648201526084016108b2565b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461106c5760405162461bcd60e51b81526004016108b29061228d565b6103e88161107960025490565b61108391906122d8565b61108d91906122f7565b600b5550565b6005546001600160a01b031633146110bd5760405162461bcd60e51b81526004016108b29061228d565b600880546001600160a01b039384166001600160a01b03199182161790915560078054929093169116179055565b6005546001600160a01b031633146111155760405162461bcd60e51b81526004016108b29061228d565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461116a5760405162461bcd60e51b81526004016108b29061228d565b6001600160a01b0381166111cf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b2565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806112388385612319565b90508381101561128a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108b2565b9392505050565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b8060000361130c5761130783836000611989565b505050565b6005546001600160a01b0384811691161480159061133857506005546001600160a01b03838116911614155b801561134d5750600d5462010000900460ff16155b156115dc57600d5460ff166113e0576001600160a01b0383166000908152601a602052604090205460ff168061139b57506001600160a01b0382166000908152601a602052604090205460ff165b6113e05760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108b2565b6001600160a01b0383166000908152601d602052604090205460ff16801561142157506001600160a01b0382166000908152601b602052604090205460ff16155b1561149b576009548111156114965760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108b2565b611552565b6001600160a01b0382166000908152601d602052604090205460ff1680156114dc57506001600160a01b0383166000908152601b602052604090205460ff16155b1561155257600a548111156115525760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108b2565b6001600160a01b0382166000908152601c602052604090205460ff166115dc57600b546001600160a01b0383166000908152602081905260409020546115989083612319565b11156115dc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108b2565b30600090815260208190526040902054600c54811080159081906116075750600d54610100900460ff165b801561161c5750600d5462010000900460ff16155b801561164057506001600160a01b0384166000908152601d602052604090205460ff165b801561166557506001600160a01b0385166000908152601a602052604090205460ff16155b801561168a57506001600160a01b0384166000908152601a602052604090205460ff16155b156116b557600d805462ff00001916620100001790556116a8611a46565b600d805462ff0000191690555b600d546001600160a01b0386166000908152601a602052604090205460ff6201000090920482161591168061170257506001600160a01b0385166000908152601a602052604090205460ff165b1561170b575060005b801561194457600060195443101561179657611733606461172d876063611c79565b90611cfb565b9050606361174282605e6122d8565b61174c91906122f7565b6016600082825461175d9190612319565b90915550606390506117708260056122d8565b61177a91906122f7565b6018600082825461178b9190612319565b909155506119259050565b6001600160a01b0386166000908152601d602052604090205460ff1680156117bf575060125415155b1561184d576012546117d99060649061172d908890611c79565b601254601554919250906117ed90836122d8565b6117f791906122f7565b601760008282546118089190612319565b909155505060125460135461181d90836122d8565b61182791906122f7565b601660008282546118389190612319565b909155505060125460145461177090836122d8565b6001600160a01b0387166000908152601d602052604090205460ff1680156118765750600e5415155b1561192557600e546118909060649061172d908890611c79565b600e54601154919250906118a490836122d8565b6118ae91906122f7565b601760008282546118bf9190612319565b9091555050600e54600f546118d490836122d8565b6118de91906122f7565b601660008282546118ef9190612319565b9091555050600e5460105461190490836122d8565b61190e91906122f7565b6018600082825461191f9190612319565b90915550505b801561193657611936873083611989565b611940818661234e565b9450505b610ca7868686611989565b600081848411156119735760405162461bcd60e51b81526004016108b29190612045565b506000611980848661234e565b95945050505050565b6119c681604051806060016040528060268152602001612440602691396001600160a01b038616600090815260208190526040902054919061194f565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546119f5908261122b565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016112e6565b3060009081526020819052604081205490506000601854601654601754611a6d9190612319565b611a779190612319565b90506000821580611a86575081155b15611a9057505050565b600c54611a9e9060146122d8565b831115611ab657600c54611ab39060146122d8565b92505b600060028360175486611ac991906122d8565b611ad391906122f7565b611add91906122f7565b90506000611aeb8583611d3d565b905047611af782611d7f565b6000611b034783611d3d565b90506000611b208761172d60165485611c7990919063ffffffff16565b90506000611b3d8861172d60185486611c7990919063ffffffff16565b90506000611b4b8284612319565b611b55908561234e565b60006017819055601681905560185590508615801590611b755750600081115b15611bbe57611b848782611f37565b60408051878152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b6007546001600160a01b0316611bd4844761234e565b604051600081818185875af1925050503d8060008114611c10576040519150601f19603f3d011682016040523d82523d6000602084013e611c15565b606091505b50506008546040519199506001600160a01b0316904790600081818185875af1925050503d8060008114611c65576040519150601f19603f3d011682016040523d82523d6000602084013e611c6a565b606091505b50505050505050505050505050565b600082600003611c8b57506000610882565b6000611c9783856122d8565b905082611ca485836122f7565b1461128a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108b2565b600061128a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612017565b600061128a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061194f565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611db457611db4612365565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e569190612331565b81600181518110611e6957611e69612365565b60200260200101906001600160a01b031690816001600160a01b031681525050611eb4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611291565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611f0990859060009086903090429060040161237b565b600060405180830381600087803b158015611f2357600080fd5b505af1158015610ca7573d6000803e3d6000fd5b611f62307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611291565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611feb573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061201091906123ec565b5050505050565b600081836120385760405162461bcd60e51b81526004016108b29190612045565b50600061198084866122f7565b600060208083528351808285015260005b8181101561207257858101830151858201604001528201612056565b81811115612084576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146120af57600080fd5b50565b600080604083850312156120c557600080fd5b82356120d08161209a565b946020939093013593505050565b6000602082840312156120f057600080fd5b813561128a8161209a565b6000806040838503121561210e57600080fd5b50508035926020909101359150565b80358015158114610a2057600080fd5b60006020828403121561213f57600080fd5b61128a8261211d565b60008060006060848603121561215d57600080fd5b83356121688161209a565b925060208401356121788161209a565b929592945050506040919091013590565b60006020828403121561219b57600080fd5b5035919050565b600080604083850312156121b557600080fd5b82356121c08161209a565b91506121ce6020840161211d565b90509250929050565b60008060008060008060c087890312156121f057600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b6000806040838503121561222d57600080fd5b82356122388161209a565b915060208301356122488161209a565b809150509250929050565b600181811c9082168061226757607f821691505b60208210810361228757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156122f2576122f26122c2565b500290565b60008261231457634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561232c5761232c6122c2565b500190565b60006020828403121561234357600080fd5b815161128a8161209a565b600082821015612360576123606122c2565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123cb5784516001600160a01b0316835293830193918301916001016123a6565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561240157600080fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122065ee0f40b1c8af1ef6d455967d496efa96f24bce0e8db498fe998b895fc367b264736f6c634300080d0033

Deployed Bytecode Sourcemap

20730:13066:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4314:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6474:168;;;;;;;;;;-1:-1:-1;6474:168:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;6474:168:0;1072:187:1;22148:63:0;;;;;;;;;;-1:-1:-1;22148:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25335:214;;;;;;;;;;-1:-1:-1;25335:214:0;;;;;:::i;:::-;;:::i;:::-;;5431:107;;;;;;;;;;-1:-1:-1;5518:12:0;;5431:107;;;1915:25:1;;;1903:2;1888:18;5431:107:0;1769:177:1;21922:33:0;;;;;;;;;;;;;;;;25799:101;;;;;;;;;;-1:-1:-1;25799:101:0;;;;;:::i;:::-;;:::i;21882:33::-;;;;;;;;;;;;;;;;7124:354;;;;;;;;;;-1:-1:-1;7124:354:0;;;;;:::i;:::-;;:::i;5274:92::-;;;;;;;;;;-1:-1:-1;5274:92:0;;5356:2;2904:36:1;;2892:2;2877:18;5274:92:0;2762:184:1;7887:217:0;;;;;;;;;;-1:-1:-1;7887:217:0;;;;;:::i;:::-;;:::i;20863:28::-;;;;;;;;;;-1:-1:-1;20863:28:0;;;;-1:-1:-1;;;;;20863:28:0;;;;;;-1:-1:-1;;;;;3115:32:1;;;3097:51;;3085:2;3070:18;20863:28:0;2951:203:1;27800:125:0;;;;;;;;;;-1:-1:-1;27800:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;27889:28:0;27865:4;27889:28;;;:19;:28;;;;;;;;;27800:125;25169:158;;;;;;;;;;-1:-1:-1;25169:158:0;;;;;:::i;:::-;;:::i;21231:31::-;;;;;;;;;;-1:-1:-1;21231:31:0;;;;;;;;;;;5601:126;;;;;;;;;;-1:-1:-1;5601:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;5701:18:0;5674:7;5701:18;;;;;;;;;;;;5601:126;13411:148;;;;;;;;;;;;;:::i;27258:129::-;;;;;;;;;;;;;:::i;27106:144::-;;;;;;;;;;-1:-1:-1;27106:144:0;;;;;:::i;:::-;;:::i;24955:::-;;;;;;;;;;;;;:::i;12770:78::-;;;;;;;;;;-1:-1:-1;12834:6:0;;-1:-1:-1;;;;;12834:6:0;12770:78;;4532:103;;;;;;;;;;;;;:::i;22218:58::-;;;;;;;;;;-1:-1:-1;22218:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25908:896;;;;;;;;;;-1:-1:-1;25908:896:0;;;;;:::i;:::-;;:::i;24546:353::-;;;;;;;;;;;;;:::i;8607:268::-;;;;;;;;;;-1:-1:-1;8607:268:0;;;;;:::i;:::-;;:::i;5940:174::-;;;;;;;;;;-1:-1:-1;5940:174:0;;;;;:::i;:::-;;:::i;21269:22::-;;;;;;;;;;-1:-1:-1;21269:22:0;;;;;;;;;;;26816:132;;;;;;;;;;-1:-1:-1;26816:132:0;;;;;:::i;:::-;;:::i;27395:196::-;;;;;;;;;;-1:-1:-1;27395:196:0;;;;;:::i;:::-;;:::i;25557:146::-;;;;;;;;;;-1:-1:-1;25557:146:0;;;;;:::i;:::-;;:::i;21606:267::-;;;;;;;;;;-1:-1:-1;21606:267:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4535:25:1;;;4591:2;4576:18;;4569:34;;;;4619:18;;;4612:34;;;;4677:2;4662:18;;4655:34;;;;4720:3;4705:19;;4698:35;4764:3;4749:19;;4742:35;4808:3;4793:19;;4786:35;4852:3;4837:19;;4830:35;4522:3;4507:19;21606:267:0;4192:679:1;27599:193:0;;;;;;;;;;-1:-1:-1;27599:193:0;;;;;:::i;:::-;;:::i;6177:150::-;;;;;;;;;;-1:-1:-1;6177:150:0;;;;;:::i;:::-;-1:-1:-1;;;;;6292:18:0;;;6265:7;6292:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6177:150;26954:146;;;;;;;;;;-1:-1:-1;26954:146:0;;;;;:::i;:::-;;:::i;21962:35::-;;;;;;;;;;;;;;;;13714:244;;;;;;;;;;-1:-1:-1;13714:244:0;;;;;:::i;:::-;;:::i;22434:42::-;;;;;;;;;;-1:-1:-1;22434:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;20814;;;;;;;;;;;;;;;4314:99;4367:13;4400:5;4393:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4314:99;:::o;6474:168::-;6556:4;6573:39;3466:10;6596:7;6605:6;6573:8;:39::i;:::-;-1:-1:-1;6630:4:0;6474:168;;;;;:::o;25335:214::-;12981:6;;-1:-1:-1;;;;;12981:6:0;3466:10;12981:22;12973:67;;;;-1:-1:-1;;;12973:67:0;;;;;;;:::i;:::-;;;;;;;;;25475:4:::1;25462:9;25446:13;5518:12:::0;;;5431:107;25446:13:::1;:25;;;;:::i;:::-;25445:34;;;;:::i;:::-;25430:12;:49:::0;25537:4:::1;25523:10:::0;25507:13:::1;5518:12:::0;;;5431:107;25507:13:::1;:26;;;;:::i;:::-;25506:35;;;;:::i;:::-;25490:13;:51:::0;-1:-1:-1;;25335:214:0:o;25799:101::-;12981:6;;-1:-1:-1;;;;;12981:6:0;3466:10;12981:22;12973:67;;;;-1:-1:-1;;;12973:67:0;;;;;;;:::i;:::-;25871:11:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;25871:21:0;;::::1;::::0;;;::::1;::::0;;25799:101::o;7124:354::-;7263:4;7280:36;7290:6;7298:9;7309:6;7280:9;:36::i;:::-;7327:121;7336:6;3466:10;7358:89;7396:6;7358:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7358:19:0;;;;;;:11;:19;;;;;;;;3466:10;7358:33;;;;;;;;;;:37;:89::i;:::-;7327:8;:121::i;:::-;-1:-1:-1;7466:4:0;7124:354;;;;;:::o;7887:217::-;3466:10;7974:4;8023:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8023:34:0;;;;;;;;;;7974:4;;7991:83;;8014:7;;8023:50;;8062:10;8023:38;:50::i;25169:158::-;12981:6;;25250:4;;-1:-1:-1;;;;;12981:6:0;3466:10;12981:22;12973:67;;;;-1:-1:-1;;;12973:67:0;;;;;;;:::i;:::-;-1:-1:-1;25266:19:0::1;:31:::0;;;25315:4:::1;13051:1;25169:158:::0;;;:::o;13411:148::-;12981:6;;-1:-1:-1;;;;;12981:6:0;3466:10;12981:22;12973:67;;;;-1:-1:-1;;;12973:67:0;;;;;;;:::i;:::-;13502:6:::1;::::0;13481:40:::1;::::0;13518:1:::1;::::0;-1:-1:-1;;;;;13502:6:0::1;::::0;13481:40:::1;::::0;13518:1;;13481:40:::1;13532:6;:19:::0;;-1:-1:-1;;;;;;13532:19:0::1;::::0;;13411:148::o;27258:129::-;12981:6;;-1:-1:-1;;;;;12981:6:0;3466:10;12981:22;12973:67;;;;-1:-1:-1;;;12973:67:0;;;;;;;:::i;:::-;27312:29:::1;27331:4;27336::::0;27312:18:::1;:29::i;:::-;27352:27;27374:4;27352:21;:27::i;:::-;27258:129::o:0;27106:144::-;12981:6;;-1:-1:-1;;;;;12981:6:0;3466:10;12981:22;12973:67;;;;-1:-1:-1;;;12973:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27196:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;27196:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27106:144::o;24955:::-;12981:6;;-1:-1:-1;;;;;12981:6:0;3466:10;12981:22;12973:67;;;;-1:-1:-1;;;12973:67:0;;;;;;;:::i;:::-;25009:9:::1;:16:::0;;-1:-1:-1;;25036:18:0;;;;;25075:16:::1;:12;-1:-1:-1::0;25075:16:0::1;:::i;:::-;25065:7;:26:::0;24955:144::o;4532:103::-;4587:13;4620:7;4613:14;;;;;:::i;25908:896::-;12981:6;;-1:-1:-1;;;;;12981:6:0;3466:10;12981:22;12973:67;;;;-1:-1:-1;;;12973:67:0;;;;;;;:::i;:::-;26117:21;:40;;;26168:21;:40;;;26219:23;:44;;;26245:18;26295:45:::1;26192:16:::0;26141;26295:45:::1;:::i;:::-;:71;;;;:::i;:::-;26274:5;:92:::0;26379:22;:42;;;26432:22;:42;;;26485:24;:46;;;26512:19;26564:47:::1;26457:17:::0;26404;26564:47:::1;:::i;:::-;:74;;;;:::i;:::-;26542:19:::0;:96;:5:::1;26657:18:::0;26679:2:::1;-1:-1:-1::0;26657:24:0::1;26649:66;;;::::0;-1:-1:-1;;;26649:66:0;;7112:2:1;26649:66:0::1;::::0;::::1;7094:21:1::0;7151:2;7131:18;;;7124:30;7190:31;7170:18;;;7163:59;7239:18;;26649:66:0::1;6910:353:1::0;26649:66:0::1;26737:19:::0;;26760:2:::1;-1:-1:-1::0;26737:25:0::1;26729:67;;;::::0;-1:-1:-1;;;26729:67:0;;7112:2:1;26729:67:0::1;::::0;::::1;7094:21:1::0;7151:2;7131:18;;;7124:30;7190:31;7170:18;;;7163:59;7239:18;;26729:67:0::1;6910:353:1::0;26729:67:0::1;25908:896:::0;;;;;;:::o;24546:353::-;12981:6;;-1:-1:-1;;;;;12981:6:0;3466:10;12981:22;12973:67;;;;-1:-1:-1;;;12973:67:0;;;;;;;:::i;:::-;24632:6:::1;-1:-1:-1::0;;;;;24632:14:0::1;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;24614:46:0::1;;24669:4;24676:6;-1:-1:-1::0;;;;;24676:11:0::1;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24614:76;::::0;-1:-1:-1;;;;;;24614:76:0::1;::::0;;;;;;-1:-1:-1;;;;;7754:15:1;;;24614:76:0::1;::::0;::::1;7736:34:1::0;7806:15;;7786:18;;;7779:43;7671:18;;24614:76:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24598:13;:92:::0;;-1:-1:-1;;;;;;24598:92:0::1;-1:-1:-1::0;;;;;24598:92:0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;24701:55:0;;;:31:::1;:55;::::0;;;;;;;:62;;-1:-1:-1;;24701:62:0;;::::1;-1:-1:-1::0;24701:62:0;;::::1;::::0;;;24817:13;;;::::1;24782:50:::0;;:26:::1;:50:::0;;;;;:57;;;::::1;::::0;::::1;::::0;;24869:13;;;;::::1;24850:34:::0;;:10:::1;:34:::0;;;;;:41;;;;::::1;::::0;;::::1;::::0;;24546:353::o;8607:268::-;8699:4;8716:129;3466:10;8739:7;8748:96;8787:15;8748:96;;;;;;;;;;;;;;;;;3466:10;8748:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8748:34:0;;;;;;;;;;;;:38;:96::i;5940:174::-;6025:4;6042:42;3466:10;6066:9;6077:6;6042:9;:42::i;26816:132::-;12981:6;;-1:-1:-1;;;;;12981:6:0;3466:10;12981:22;12973:67;;;;-1:-1:-1;;;12973:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26901:28:0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:39;;-1:-1:-1;;26901:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26816:132::o;27395:196::-;12981:6;;-1:-1:-1;;;;;12981:6:0;3466:10;12981:22;12973:67;;;;-1:-1:-1;;;12973:67:0;;;;;;;:::i;:::-;27488:13:::1;::::0;-1:-1:-1;;;;;27488:13:0;;::::1;27480:21:::0;;::::1;::::0;27472:76:::1;;;::::0;-1:-1:-1;;;27472:76:0;;8035:2:1;27472:76:0::1;::::0;::::1;8017:21:1::0;8074:2;8054:18;;;8047:30;8113:34;8093:18;;;8086:62;-1:-1:-1;;;8164:18:1;;;8157:40;8214:19;;27472:76:0::1;7833:406:1::0;27472:76:0::1;-1:-1:-1::0;;;;;27559:16:0;;;::::1;;::::0;;;:10:::1;:16;::::0;;;;:24;;-1:-1:-1;;27559:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27395:196::o;25557:146::-;12981:6;;-1:-1:-1;;;;;12981:6:0;3466:10;12981:22;12973:67;;;;-1:-1:-1;;;12973:67:0;;;;;;;:::i;:::-;25691:4:::1;25674:13;25658;5518:12:::0;;;5431:107;25658:13:::1;:29;;;;:::i;:::-;25657:38;;;;:::i;:::-;25639:15;:56:::0;-1:-1:-1;25557:146:0:o;27599:193::-;12981:6;;-1:-1:-1;;;;;12981:6:0;3466:10;12981:22;12973:67;;;;-1:-1:-1;;;12973:67:0;;;;;;;:::i;:::-;27701:15:::1;:34:::0;;-1:-1:-1;;;;;27701:34:0;;::::1;-1:-1:-1::0;;;;;;27701:34:0;;::::1;;::::0;;;27746:17:::1;:38:::0;;;;;::::1;::::0;::::1;;::::0;;27599:193::o;26954:146::-;12981:6;;-1:-1:-1;;;;;12981:6:0;3466:10;12981:22;12973:67;;;;-1:-1:-1;;;12973:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27046:35:0;;;::::1;;::::0;;;:26:::1;:35;::::0;;;;:46;;-1:-1:-1;;27046:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26954:146::o;13714:244::-;12981:6;;-1:-1:-1;;;;;12981:6:0;3466:10;12981:22;12973:67;;;;-1:-1:-1;;;12973:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13803:22:0;::::1;13795:73;;;::::0;-1:-1:-1;;;13795:73:0;;8446:2:1;13795:73:0::1;::::0;::::1;8428:21:1::0;8485:2;8465:18;;;8458:30;8524:34;8504:18;;;8497:62;-1:-1:-1;;;8575:18:1;;;8568:36;8621:19;;13795:73:0::1;8244:402:1::0;13795:73:0::1;13905:6;::::0;13884:38:::1;::::0;-1:-1:-1;;;;;13884:38:0;;::::1;::::0;13905:6:::1;::::0;13884:38:::1;::::0;13905:6:::1;::::0;13884:38:::1;13933:6;:17:::0;;-1:-1:-1;;;;;;13933:17:0::1;-1:-1:-1::0;;;;;13933:17:0;;;::::1;::::0;;;::::1;::::0;;13714:244::o;11035:180::-;11092:7;;11124:5;11128:1;11124;:5;:::i;:::-;11112:17;;11153:1;11148;:6;;11140:46;;;;-1:-1:-1;;;11140:46:0;;8853:2:1;11140:46:0;;;8835:21:1;8892:2;8872:18;;;8865:30;8931:29;8911:18;;;8904:57;8978:18;;11140:46:0;8651:351:1;11140:46:0;11206:1;11035:180;-1:-1:-1;;;11035:180:0:o;10770:220::-;-1:-1:-1;;;;;10898:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10950:32;;1915:25:1;;;10950:32:0;;1888:18:1;10950:32:0;;;;;;;;10770:220;;;:::o;27933:3317::-;28080:6;28090:1;28080:11;28076:102;;28108:37;28124:6;28132:9;28143:1;28108:15;:37::i;:::-;27933:3317;;;:::o;28076:102::-;12834:6;;-1:-1:-1;;;;;28208:17:0;;;12834:6;;28208:17;;;;:54;;-1:-1:-1;12834:6:0;;-1:-1:-1;;;;;28242:20:0;;;12834:6;;28242:20;;28208:54;:82;;;;-1:-1:-1;28280:10:0;;;;;;;28279:11;28208:82;28190:888;;;28324:9;;;;28319:147;;-1:-1:-1;;;;;28362:27:0;;;;;;:19;:27;;;;;;;;;:61;;-1:-1:-1;;;;;;28393:30:0;;;;;;:19;:30;;;;;;;;28362:61;28354:96;;;;-1:-1:-1;;;28354:96:0;;9209:2:1;28354:96:0;;;9191:21:1;9248:2;9228:18;;;9221:30;-1:-1:-1;;;9267:18:1;;;9260:52;9329:18;;28354:96:0;9007:346:1;28354:96:0;-1:-1:-1;;;;;28484:18:0;;;;;;:10;:18;;;;;;;;:65;;;;-1:-1:-1;;;;;;28507:42:0;;;;;;:31;:42;;;;;;;;28506:43;28484:65;28480:410;;;28588:12;;28578:6;:22;;28570:88;;;;-1:-1:-1;;;28570:88:0;;9560:2:1;28570:88:0;;;9542:21:1;9599:2;9579:18;;;9572:30;9638:34;9618:18;;;9611:62;-1:-1:-1;;;9689:18:1;;;9682:51;9750:19;;28570:88:0;9358:417:1;28570:88:0;28480:410;;;-1:-1:-1;;;;;28698:21:0;;;;;;:10;:21;;;;;;;;:65;;;;-1:-1:-1;;;;;;28724:39:0;;;;;;:31;:39;;;;;;;;28723:40;28698:65;28694:196;;;28802:13;;28792:6;:23;;28784:90;;;;-1:-1:-1;;;28784:90:0;;9982:2:1;28784:90:0;;;9964:21:1;10021:2;10001:18;;;9994:30;10060:34;10040:18;;;10033:62;-1:-1:-1;;;10111:18:1;;;10104:52;10173:19;;28784:90:0;9780:418:1;28784:90:0;-1:-1:-1;;;;;28911:37:0;;;;;;:26;:37;;;;;;;;28906:159;;29010:15;;-1:-1:-1;;;;;5701:18:0;;5674:7;5701:18;;;;;;;;;;;28977:29;;:6;:29;:::i;:::-;:48;;28969:80;;;;-1:-1:-1;;;28969:80:0;;10405:2:1;28969:80:0;;;10387:21:1;10444:2;10424:18;;;10417:30;-1:-1:-1;;;10463:18:1;;;10456:49;10522:18;;28969:80:0;10203:343:1;28969:80:0;29140:4;29091:28;5701:18;;;;;;;;;;;29199:19;;29175:43;;;;;;;29249:35;;-1:-1:-1;29273:11:0;;;;;;;29249:35;:63;;;;-1:-1:-1;29302:10:0;;;;;;;29301:11;29249:63;:101;;;;-1:-1:-1;;;;;;29329:21:0;;;;;;:10;:21;;;;;;;;29249:101;:146;;;;-1:-1:-1;;;;;;29368:27:0;;;;;;:19;:27;;;;;;;;29367:28;29249:146;:194;;;;-1:-1:-1;;;;;;29413:30:0;;;;;;:19;:30;;;;;;;;29412:31;29249:194;29231:326;;;29470:10;:17;;-1:-1:-1;;29470:17:0;;;;;29502:10;:8;:10::i;:::-;29527;:18;;-1:-1:-1;;29527:18:0;;;29231:326;29586:10;;-1:-1:-1;;;;;29698:27:0;;29570:12;29698:27;;;:19;:27;;;;;;29586:10;;;;;;;29585:11;;29698:27;;:61;;-1:-1:-1;;;;;;29729:30:0;;;;;;:19;:30;;;;;;;;29698:61;29694:109;;;-1:-1:-1;29786:5:0;29694:109;29904:7;29900:1288;;;29928:12;29977:7;;29962:12;:22;29959:1076;;;30012:23;30031:3;30012:14;:6;30023:2;30012:10;:14::i;:::-;:18;;:23::i;:::-;30005:30;-1:-1:-1;30090:2:0;30077:9;30005:30;30084:2;30077:9;:::i;:::-;30076:16;;;;:::i;:::-;30054:18;;:38;;;;;;;:::i;:::-;;;;-1:-1:-1;30148:2:0;;-1:-1:-1;30136:8:0;:4;30143:1;30136:8;:::i;:::-;30135:15;;;;:::i;:::-;30111:20;;:39;;;;;;;:::i;:::-;;;;-1:-1:-1;29959:1076:0;;-1:-1:-1;29959:1076:0;;-1:-1:-1;;;;;30176:21:0;;;;;;:10;:21;;;;;;;;:48;;;;-1:-1:-1;30201:19:0;;:23;;30176:48;30172:863;;;30263:19;;30252:40;;30288:3;;30252:31;;:6;;:10;:31::i;:40::-;30365:19;;30340:22;;30245:47;;-1:-1:-1;30365:19:0;30333:29;;30245:47;30333:29;:::i;:::-;:51;;;;:::i;:::-;30311:18;;:73;;;;;;;:::i;:::-;;;;-1:-1:-1;;30457:19:0;;30432:22;;30425:29;;:4;:29;:::i;:::-;:51;;;;:::i;:::-;30403:18;;:73;;;;;;;:::i;:::-;;;;-1:-1:-1;;30553:19:0;;30526:24;;30519:31;;:4;:31;:::i;30172:863::-;-1:-1:-1;;;;;30634:18:0;;;;;;:10;:18;;;;;;;;:44;;;;-1:-1:-1;30656:5:0;:18;:22;;30634:44;30630:405;;;30717:5;:18;30706:39;;30741:3;;30706:30;;:6;;:10;:30::i;:39::-;30817:5;:18;30793:21;;30699:46;;-1:-1:-1;30817:18:0;30786:28;;30699:46;30786:28;:::i;:::-;:49;;;;:::i;:::-;30764:18;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;;30907:5:0;:18;30883:21;;30876:28;;:4;:28;:::i;:::-;:49;;;;:::i;:::-;30854:18;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;;31001:5:0;:18;30975:23;;30968:30;;:4;:30;:::i;:::-;:51;;;;:::i;:::-;30944:20;;:75;;;;;;;:::i;:::-;;;;-1:-1:-1;;30630:405:0;31055:8;;31051:93;;31084:44;31100:6;31116:4;31123;31084:15;:44::i;:::-;31160:14;31170:4;31160:14;;:::i;:::-;;;29913:1275;29900:1288;31200:42;31216:6;31224:9;31235:6;31200:15;:42::i;11376:191::-;11461:7;11497:12;11489:6;;;;11481:29;;;;-1:-1:-1;;;11481:29:0;;;;;;;;:::i;:::-;-1:-1:-1;11521:9:0;11533:5;11537:1;11533;:5;:::i;:::-;11521:17;11376:191;-1:-1:-1;;;;;11376:191:0:o;9365:358::-;9527:71;9549:6;9527:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9527:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;9507:17:0;;;:9;:17;;;;;;;;;;;:91;;;;9632:20;;;;;;;:32;;9657:6;9632:24;:32::i;:::-;-1:-1:-1;;;;;9609:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;9680:35;1915:25:1;;;9609:20:0;;9680:35;;;;;;1888:18:1;9680:35:0;1769:177:1;32178:1613:0;32266:4;32217:28;5701:18;;;;;;;;;;;32217:55;;32283:14;32342:20;;32321:18;;32300;;:39;;;;:::i;:::-;:62;;;;:::i;:::-;32283:79;-1:-1:-1;32373:12:0;32402:25;;;:40;;-1:-1:-1;32431:11:0;;32402:40;32398:57;;;32446:7;;;32178:1613::o;32398:57::-;32494:19;;:24;;32516:2;32494:24;:::i;:::-;32471:20;:47;32467:127;;;32558:19;;:24;;32580:2;32558:24;:::i;:::-;32535:47;;32467:127;32655:23;32734:1;32725:6;32704:18;;32681:20;:41;;;;:::i;:::-;:50;;;;:::i;:::-;:54;;;;:::i;:::-;32655:80;-1:-1:-1;32746:26:0;32775:41;:20;32655:80;32775:24;:41::i;:::-;32746:70;-1:-1:-1;32858:21:0;32892:36;32746:70;32892:16;:36::i;:::-;32943:18;32964:44;:21;32990:17;32964:25;:44::i;:::-;32943:65;;33022:23;33048:46;33087:6;33048:34;33063:18;;33048:10;:14;;:34;;;;:::i;:46::-;33022:72;;33105:25;33133:48;33174:6;33133:36;33148:20;;33133:10;:14;;:36;;;;:::i;:48::-;33105:76;-1:-1:-1;33192:23:0;33232:35;33105:76;33232:15;:35;:::i;:::-;33218:50;;:10;:50;:::i;:::-;33304:1;33283:18;:22;;;33316:18;:22;;;33349:20;:24;33192:76;-1:-1:-1;33392:19:0;;;;;:42;;;33433:1;33415:15;:19;33392:42;33388:192;;;33451:46;33464:15;33481;33451:12;:46::i;:::-;33517:51;;;10855:25:1;;;10911:2;10896:18;;10889:34;;;33517:51:0;;10828:18:1;33517:51:0;;;;;;;33388:192;33613:17;;-1:-1:-1;;;;;33613:17:0;33646:39;33670:15;33646:21;:39;:::i;:::-;33605:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33725:15:0;;33717:66;;33592:101;;-1:-1:-1;;;;;;33725:15:0;;33755:21;;33717:66;;;;33755:21;33725:15;33717:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;32178:1613:0:o;11575:256::-;11632:7;11662:1;11667;11662:6;11658:47;;-1:-1:-1;11692:1:0;11685:8;;11658:47;11718:9;11730:5;11734:1;11730;:5;:::i;:::-;11718:17;-1:-1:-1;11763:1:0;11754:5;11758:1;11718:17;11754:5;:::i;:::-;:10;11746:56;;;;-1:-1:-1;;;11746:56:0;;11346:2:1;11746:56:0;;;11328:21:1;11385:2;11365:18;;;11358:30;11424:34;11404:18;;;11397:62;-1:-1:-1;;;11475:18:1;;;11468:31;11516:19;;11746:56:0;11144:397:1;11842:131:0;11899:7;11926:39;11930:1;11933;11926:39;;;;;;;;;;;;;;;;;:3;:39::i;11228:135::-;11285:7;11312:43;11316:1;11319;11312:43;;;;;;;;;;;;;;;;;:3;:43::i;31258:554::-;31406:16;;;31420:1;31406:16;;;;;;;;31382:21;;31406:16;;;;;;;;;;-1:-1:-1;31406:16:0;31382:40;;31451:4;31433;31438:1;31433:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31433:23:0;;;-1:-1:-1;;;;;31433:23:0;;;;;31477:6;-1:-1:-1;;;;;31477:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31467:4;31472:1;31467:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31467:23:0;;;-1:-1:-1;;;;;31467:23:0;;;;;31503:49;31520:4;31535:6;31544:7;31503:8;:49::i;:::-;31591:211;;-1:-1:-1;;;31591:211:0;;-1:-1:-1;;;;;31591:6:0;:57;;;;:211;;31663:7;;31685:1;;31729:4;;31756;;31776:15;;31591:211;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31820:350;31964:49;31981:4;31996:6;32005:7;31964:8;:49::i;:::-;32056:106;;-1:-1:-1;;;32056:106:0;;32108:4;32056:106;;;13136:34:1;;;13186:18;;;13179:34;;;32124:1:0;13229:18:1;;;13222:34;;;13272:18;;;13265:34;13315:19;;;13308:44;32146:15:0;13368:19:1;;;13361:35;32056:6:0;-1:-1:-1;;;;;32056:22:0;;;;32087:9;;13070:19:1;;32056:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31820:350;;:::o;11985:277::-;12070:7;12105:12;12098:5;12090:28;;;;-1:-1:-1;;;12090:28:0;;;;;;;;:::i;:::-;-1:-1:-1;12129:9:0;12141:5;12145:1;12141;:5;:::i;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;671:70;616:131;:::o;752:315::-;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1516:248::-;1584:6;1592;1645:2;1633:9;1624:7;1620:23;1616:32;1613:52;;;1661:1;1658;1651:12;1613:52;-1:-1:-1;;1684:23:1;;;1754:2;1739:18;;;1726:32;;-1:-1:-1;1516:248:1:o;1951:160::-;2016:20;;2072:13;;2065:21;2055:32;;2045:60;;2101:1;2098;2091:12;2116:180;2172:6;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:26;2280:9;2264:26;:::i;2301:456::-;2378:6;2386;2394;2447:2;2435:9;2426:7;2422:23;2418:32;2415:52;;;2463:1;2460;2453:12;2415:52;2502:9;2489:23;2521:31;2546:5;2521:31;:::i;:::-;2571:5;-1:-1:-1;2628:2:1;2613:18;;2600:32;2641:33;2600:32;2641:33;:::i;:::-;2301:456;;2693:7;;-1:-1:-1;;;2747:2:1;2732:18;;;;2719:32;;2301:456::o;3159:180::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;-1:-1:-1;3310:23:1;;3159:180;-1:-1:-1;3159:180:1:o;3344:315::-;3409:6;3417;3470:2;3458:9;3449:7;3445:23;3441:32;3438:52;;;3486:1;3483;3476:12;3438:52;3525:9;3512:23;3544:31;3569:5;3544:31;:::i;:::-;3594:5;-1:-1:-1;3618:35:1;3649:2;3634:18;;3618:35;:::i;:::-;3608:45;;3344:315;;;;;:::o;3664:523::-;3768:6;3776;3784;3792;3800;3808;3861:3;3849:9;3840:7;3836:23;3832:33;3829:53;;;3878:1;3875;3868:12;3829:53;-1:-1:-1;;3901:23:1;;;3971:2;3956:18;;3943:32;;-1:-1:-1;4022:2:1;4007:18;;3994:32;;4073:2;4058:18;;4045:32;;-1:-1:-1;4124:3:1;4109:19;;4096:33;;-1:-1:-1;4176:3:1;4161:19;4148:33;;-1:-1:-1;3664:523:1;-1:-1:-1;3664:523:1:o;4876:388::-;4944:6;4952;5005:2;4993:9;4984:7;4980:23;4976:32;4973:52;;;5021:1;5018;5011:12;4973:52;5060:9;5047:23;5079:31;5104:5;5079:31;:::i;:::-;5129:5;-1:-1:-1;5186:2:1;5171:18;;5158:32;5199:33;5158:32;5199:33;:::i;:::-;5251:7;5241:17;;;4876:388;;;;;:::o;5504:380::-;5583:1;5579:12;;;;5626;;;5647:61;;5701:4;5693:6;5689:17;5679:27;;5647:61;5754:2;5746:6;5743:14;5723:18;5720:38;5717:161;;5800:10;5795:3;5791:20;5788:1;5781:31;5835:4;5832:1;5825:15;5863:4;5860:1;5853:15;5717:161;;5504:380;;;:::o;5889:356::-;6091:2;6073:21;;;6110:18;;;6103:30;6169:34;6164:2;6149:18;;6142:62;6236:2;6221:18;;5889:356::o;6250:127::-;6311:10;6306:3;6302:20;6299:1;6292:31;6342:4;6339:1;6332:15;6366:4;6363:1;6356:15;6382:168;6422:7;6488:1;6484;6480:6;6476:14;6473:1;6470:21;6465:1;6458:9;6451:17;6447:45;6444:71;;;6495:18;;:::i;:::-;-1:-1:-1;6535:9:1;;6382:168::o;6555:217::-;6595:1;6621;6611:132;;6665:10;6660:3;6656:20;6653:1;6646:31;6700:4;6697:1;6690:15;6728:4;6725:1;6718:15;6611:132;-1:-1:-1;6757:9:1;;6555:217::o;6777:128::-;6817:3;6848:1;6844:6;6841:1;6838:13;6835:39;;;6854:18;;:::i;:::-;-1:-1:-1;6890:9:1;;6777:128::o;7268:251::-;7338:6;7391:2;7379:9;7370:7;7366:23;7362:32;7359:52;;;7407:1;7404;7397:12;7359:52;7439:9;7433:16;7458:31;7483:5;7458:31;:::i;10551:125::-;10591:4;10619:1;10616;10613:8;10610:34;;;10624:18;;:::i;:::-;-1:-1:-1;10661:9:1;;10551:125::o;11678:127::-;11739:10;11734:3;11730:20;11727:1;11720:31;11770:4;11767:1;11760:15;11794:4;11791:1;11784:15;11810:980;12072:4;12120:3;12109:9;12105:19;12151:6;12140:9;12133:25;12177:2;12215:6;12210:2;12199:9;12195:18;12188:34;12258:3;12253:2;12242:9;12238:18;12231:31;12282:6;12317;12311:13;12348:6;12340;12333:22;12386:3;12375:9;12371:19;12364:26;;12425:2;12417:6;12413:15;12399:29;;12446:1;12456:195;12470:6;12467:1;12464:13;12456:195;;;12535:13;;-1:-1:-1;;;;;12531:39:1;12519:52;;12626:15;;;;12591:12;;;;12567:1;12485:9;12456:195;;;-1:-1:-1;;;;;;;12707:32:1;;;;12702:2;12687:18;;12680:60;-1:-1:-1;;;12771:3:1;12756:19;12749:35;12668:3;11810:980;-1:-1:-1;;;11810:980:1:o;13407:306::-;13495:6;13503;13511;13564:2;13552:9;13543:7;13539:23;13535:32;13532:52;;;13580:1;13577;13570:12;13532:52;13609:9;13603:16;13593:26;;13659:2;13648:9;13644:18;13638:25;13628:35;;13703:2;13692:9;13688:18;13682:25;13672:35;;13407:306;;;;;:::o

Swarm Source

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