ETH Price: $3,321.69 (+2.21%)
Gas: 4 Gwei

Token

TomorrowWontExist (TWE)
 

Overview

Max Total Supply

954,505,990,899.63186023911492806 TWE

Holders

989 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
icryptologist.eth
Balance
3,940,967.873310361596712564 TWE

Value
$0.00
0x2eee8dd4e662e324d7d4f749720f2e8214efc209
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A complete production to build Safe Home Communities in the case that the user's home or grid system can no longer support the current situation or environment.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TomorrowWontExist

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-06-06
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal virtual view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal virtual view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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
    );
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be 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;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
    
    function ceil(uint256 a, uint256 m) internal pure returns (uint256) {
    uint256 c = add(a,m);
    uint256 d = sub(c,1);
    return mul(div(d,m),m);
  }
}

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;


            bytes32 accountHash
         = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint256 weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: weiValue}(
            data
        );
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
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() internal {
        address msgSender = _msgSender();
        _owner = 0x147612b77ff82418dddeF7D3B1f3146A14fCbb0e;
        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;
    }
}


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

interface IUniswapV2Pair {
    function sync() external;
}

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);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
      address token,
      uint liquidity,
      uint amountTokenMin,
      uint amountETHMin,
      address to,
      uint deadline
    ) external returns (uint amountETH);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    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;
}

contract RewardWallet {
    constructor() public {
    }
}

contract Balancer {
    constructor() public {
    }
}

contract TomorrowWontExist is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    string private _name = "TomorrowWontExist";
    string private _symbol = "TWE";
    uint256 private _decimals = 18;

    mapping(address => uint256) internal _reflectionBalance;
    mapping(address => uint256) internal _tokenBalance;
    mapping(address => mapping(address => uint256)) internal _allowances;

    uint256 private constant MAX = ~uint256(0);
    uint256 internal _tokenTotal = 1_000_000_000_000 *(10**decimals());
    uint256 internal _reflectionTotal = (MAX - (MAX % _tokenTotal));

    mapping(address => bool) isTaxless;
    mapping(address => bool) internal _isExcluded;
    address[] internal _excluded;
    
    
    uint256 public _feeDecimal = 0; // do not change this value...
    uint256 public _taxFee = 3; // means 3% which distribute to all holders
    uint256 public _liquidityFee = 3; // means 3% add liquidity on each buy and sell
    uint256 public _burnFee = 2; // means 2% burn
    uint256 public devFee = 200; //200 means 2% will send to developer Fee
    
    
    address devAddress = 0x5DD7313dE3786295688484b48D97Ed0D9F11bf73 ; //
    
    uint256 public _taxFeeTotal;
    uint256 public _burnFeeTotal;
    uint256 public _liquidityFeeTotal;

    bool public isFeeActive = true; // should be true
    bool private inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    uint256 public maxTxAmount = 50000000000e18; // 5% of total supply limit
    uint256 public minTokensBeforeSwap = 1_000_000*(10**decimals());
  
    IUniswapV2Router02 public  uniswapV2Router;
    address public  uniswapV2Pair;

    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(uint256 tokensSwapped,uint256 ethReceived, uint256 tokensIntoLiqudity);

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor() public {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // for Ethereum uniswap v2
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        uniswapV2Router = _uniswapV2Router;
      
        isTaxless[owner()] = true;
        isTaxless[address(this)] = true;

        // exlcude pair address from tax rewards
        _isExcluded[address(uniswapV2Pair)] = true;
        _excluded.push(address(uniswapV2Pair));

        _reflectionBalance[owner()] = _reflectionTotal;
        emit Transfer(address(0),owner(), _tokenTotal);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint256) {
        return _decimals;
    }

    function totalSupply() public override view returns (uint256) {
        return _tokenTotal;
    }
    
    
    function find2Percent(uint256 value) internal view returns (uint256)  {
    uint256 roundValue = value.ceil(devFee);
    uint256 onePercent = roundValue.mul(devFee).div(10000);
    return onePercent;
  }
  
    function balanceOf(address account) public override view returns (uint256) {
        if (_isExcluded[account]) return _tokenBalance[account];
        return tokenFromReflection(_reflectionBalance[account]);
    }

    function transfer(address recipient, uint256 amount)
        public
        override
        virtual
        returns (bool)
    {
       _transfer(_msgSender(),recipient,amount);
        return true;
    }

    function allowance(address owner, address spender)
        public
        override
        view
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override virtual returns (bool) {
        _transfer(sender,recipient,amount);
               
        _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub( amount,"ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    function isExcluded(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function reflectionFromToken(uint256 tokenAmount, bool deductTransferFee)
        public
        view
        returns (uint256)
    {
        require(tokenAmount <= _tokenTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            return tokenAmount.mul(_getReflectionRate());
        } else {
            return
                tokenAmount.sub(tokenAmount.mul(_taxFee).div(10** _feeDecimal + 2)).mul(
                    _getReflectionRate()
                );
        }
    }

    function tokenFromReflection(uint256 reflectionAmount)
        public
        view
        returns (uint256)
    {
        require(
            reflectionAmount <= _reflectionTotal,
            "Amount must be less than total reflections"
        );
        uint256 currentRate = _getReflectionRate();
        return reflectionAmount.div(currentRate);
    }

    function excludeAccount(address account) external onlyOwner() {
        require(
            account != address(uniswapV2Router),
            "ERC20: We can not exclude Uniswap router."
        );
        require(!_isExcluded[account], "ERC20: Account is already excluded");
        if (_reflectionBalance[account] > 0) {
            _tokenBalance[account] = tokenFromReflection(
                _reflectionBalance[account]
            );
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeAccount(address account) external onlyOwner() {
        require(_isExcluded[account], "ERC20: Account is already included");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tokenBalance[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        
        if(recipient == uniswapV2Pair){
         require(amount <= maxTxAmount, "Transfer Limit Exceeds for sell");
        }
        
        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeSwap;
        if (!inSwapAndLiquify && overMinTokenBalance && sender != uniswapV2Pair && swapAndLiquifyEnabled) {
            swapAndLiquify(contractTokenBalance);
        }

        uint256 transferAmount = amount;
        uint256 rate = _getReflectionRate();
        uint256 tokensToBurn;
        uint256 tokensToTransfer;

        if(isFeeActive && !isTaxless[_msgSender()] && !isTaxless[recipient] && !inSwapAndLiquify){
            
            tokensToBurn = find2Percent(transferAmount);
            tokensToTransfer = transferAmount.sub(tokensToBurn);
            transferAmount = collectFee(sender,tokensToTransfer,rate);
            
            //Marketing fee
            _reflectionBalance[devAddress] = _reflectionBalance[devAddress].add(tokensToBurn.mul(rate));
        
            emit Transfer(sender, devAddress, tokensToBurn);
        }
        
        

        //transfer reflection
        _reflectionBalance[sender] = _reflectionBalance[sender].sub(amount.mul(rate));
        
        
        _reflectionBalance[recipient] = _reflectionBalance[recipient].add(transferAmount.mul(rate));

        //if any account belongs to the excludedAccount transfer token
        if (_isExcluded[sender]) {
            _tokenBalance[sender] = _tokenBalance[sender].sub(amount);
        }
        if (_isExcluded[recipient]) {
            _tokenBalance[recipient] = _tokenBalance[recipient].add(transferAmount);
            
            emit Transfer(sender, recipient, transferAmount);
        
        return;
        }

        emit Transfer(sender, recipient, transferAmount);
        
    }
    
    function collectFee(address account, uint256 amount, uint256 rate) private returns (uint256) {
        uint256 transferAmount = amount;
        
        //@dev tax fee
        if(_taxFee != 0){
            uint256 taxFee = amount.mul(_taxFee).div(10**(_feeDecimal + 2));
            transferAmount = transferAmount.sub(taxFee);
            _reflectionTotal = _reflectionTotal.sub(taxFee.mul(rate));
            _taxFeeTotal = _taxFeeTotal.add(taxFee);
        }

        //@dev liquidity fee
        if(_liquidityFee != 0){
            uint256 liquidityFee = amount.mul(_liquidityFee).div(10**(_feeDecimal + 2));
            transferAmount = transferAmount.sub(liquidityFee);
            _reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(liquidityFee.mul(rate));
            if(_isExcluded[address(this)]){
                _tokenBalance[address(this)] = _tokenBalance[address(this)].add(liquidityFee);
            }
            _liquidityFeeTotal = _liquidityFeeTotal.add(liquidityFee);
            emit Transfer(account,address(this),liquidityFee);
        }
      
        //@dev burn fee
        if(_burnFee != 0){
            uint256 burnFee = amount.mul(_burnFee).div(10**(_feeDecimal + 2));
            transferAmount = transferAmount.sub(burnFee);
            _tokenTotal = _tokenTotal.sub(burnFee);
            _reflectionTotal = _reflectionTotal.sub(burnFee.mul(rate));
            _burnFeeTotal = _burnFeeTotal.add(burnFee);
            emit Transfer(account,address(0),burnFee);
        }
        
        return transferAmount;
    }

    function _getReflectionRate() private view returns (uint256) {
        uint256 reflectionSupply = _reflectionTotal;
        uint256 tokenSupply = _tokenTotal;
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (
                _reflectionBalance[_excluded[i]] > reflectionSupply ||
                _tokenBalance[_excluded[i]] > tokenSupply
            ) return _reflectionTotal.div(_tokenTotal);
            reflectionSupply = reflectionSupply.sub(
                _reflectionBalance[_excluded[i]]
            );
            tokenSupply = tokenSupply.sub(_tokenBalance[_excluded[i]]);
        }
        if (reflectionSupply < _reflectionTotal.div(_tokenTotal))
            return _reflectionTotal.div(_tokenTotal);
        return reflectionSupply.div(tokenSupply);
    }
    
     function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
         if(contractTokenBalance > maxTxAmount){
             contractTokenBalance = maxTxAmount;
         }
        // split the contract balance into halves
        uint256 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.sub(half);

        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);
        
        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

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

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }
    
    function setPair(address pair) external onlyOwner {
        uniswapV2Pair = pair;
    }

    function setTaxless(address account, bool value) external onlyOwner {
        isTaxless[account] = value;
    }
    
    function setSwapAndLiquifyEnabled(bool enabled) external onlyOwner {
        swapAndLiquifyEnabled = enabled;
        SwapAndLiquifyEnabledUpdated(enabled);
    }
    
    function setFeeActive(bool value) external onlyOwner {
        isFeeActive = value;
    }
    
    function setTaxFee(uint256 fee) external onlyOwner {
        _taxFee = fee;
    }
    
    function setBurnFee(uint256 fee) external onlyOwner {
        _burnFee = fee;
    }
    
    function setLiquidityFee(uint256 fee) external onlyOwner {
        _liquidityFee = fee;
    }
    
    function setDev(uint256 amount) external onlyOwner {
        devFee = amount;
    }
 
    function setMaxTxAmount(uint256 amount) external onlyOwner {
        maxTxAmount = amount;
    }
    
    function setMinTokensBeforeSwap(uint256 amount) external onlyOwner {
        minTokensBeforeSwap = amount;
    }

    receive() external payable {}
}

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"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnFeeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeDecimal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFeeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFeeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","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":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFeeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minTokensBeforeSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setBurnFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setDev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setFeeActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setLiquidityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setTaxless","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","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":"uint256","name":"reflectionAmount","type":"uint256"}],"name":"tokenFromReflection","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":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526011608081905270151bdb5bdc9c9bddd5dbdb9d115e1a5cdd607a1b60a090815262000034916001919062000486565b506040805180820190915260038082526254574560e81b6020909201918252620000619160029162000486565b506012600355620000716200046d565b600a0a64e8d4a5100002600755600754600019816200008c57fe5b06196008556000600c556003600d819055600e556002600f5560c8601055601180546001600160a01b031916735dd7313de3786295688484b48d97ed0d9f11bf731790556015805462ff00001960ff1990911660011716620100001790556ba18f07d736b90be550000000601655620001046200046d565b600a0a620f4240026017553480156200011c57600080fd5b5060006200012962000473565b600080546001600160a01b03191673147612b77ff82418dddef7d3b1f3146a14fcbb0e1781556040519192506001600160a01b038316917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001d957600080fd5b505afa158015620001ee573d6000803e3d6000fd5b505050506040513d60208110156200020557600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200025657600080fd5b505afa1580156200026b573d6000803e3d6000fd5b505050506040513d60208110156200028257600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002d557600080fd5b505af1158015620002ea573d6000803e3d6000fd5b505050506040513d60208110156200030157600080fd5b5051601980546001600160a01b03199081166001600160a01b0393841617909155601880549091169183169190911790556001600960006200034262000477565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600984528281208054861660019081179091556019805484168352600a909552928120805490951683179094559154600b8054928301815584527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db990910180546001600160a01b0319169190921617905560085490600490620003f562000477565b6001600160a01b031681526020810191909152604001600020556200041962000477565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6007546040518082815260200191505060405180910390a35062000522565b60035490565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004c957805160ff1916838001178555620004f9565b82800160010185558215620004f9579182015b82811115620004f9578251825591602001919060010190620004dc565b50620005079291506200050b565b5090565b5b808211156200050757600081556001016200050c565b61283c80620005326000396000f3fe6080604052600436106102605760003560e01c80636bc87c3a11610144578063c0b0fda2116100b6578063e43504da1161007a578063e43504da1461085b578063e5d41c6b14610870578063ec28438a14610885578063f2cc0c18146108af578063f2fde38b146108e2578063f84354f11461091557610267565b8063c0b0fda214610782578063c4081a4c14610797578063c49b9a80146107c1578063cba0e996146107ed578063dd62ed3e1461082057610267565b80638da5cb5b116101085780638da5cb5b146106a557806395d89b41146106ba5780639d46cf8a146106cf578063a457c2d7146106e4578063a9059cbb1461071d578063b7bfff651461075657610267565b80636bc87c3a1461060057806370a0823114610615578063715018a6146106485780638187f5161461065d5780638c0b5e221461069057610267565b8063357bf15c116101dd57806348a46473116101a157806348a464731461054357806349bd5a5e1461056d5780634a74bb02146105825780634bf2c7c9146105975780636827e764146105c157806368683f8a146105d657610267565b8063357bf15c1461045c57806339509351146104885780633b124fe7146104c15780634549b039146104d657806347f2dc5b1461050857610267565b806319db457d1161022457806319db457d146103b057806323b872dd146103c55780632d83811914610408578063313ce56714610432578063355bc60b1461044757610267565b806306fdde031461026c578063095ea7b3146102f65780630d9a5219146103435780631694505e1461036a57806318160ddd1461039b57610267565b3661026757005b600080fd5b34801561027857600080fd5b50610281610948565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102bb5781810151838201526020016102a3565b50505050905090810190601f1680156102e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030257600080fd5b5061032f6004803603604081101561031957600080fd5b506001600160a01b0381351690602001356109de565b604080519115158252519081900360200190f35b34801561034f57600080fd5b506103586109fc565b60408051918252519081900360200190f35b34801561037657600080fd5b5061037f610a02565b604080516001600160a01b039092168252519081900360200190f35b3480156103a757600080fd5b50610358610a11565b3480156103bc57600080fd5b50610358610a17565b3480156103d157600080fd5b5061032f600480360360608110156103e857600080fd5b506001600160a01b03813581169160208101359091169060400135610a1d565b34801561041457600080fd5b506103586004803603602081101561042b57600080fd5b5035610aa4565b34801561043e57600080fd5b50610358610b06565b34801561045357600080fd5b50610358610b0c565b34801561046857600080fd5b506104866004803603602081101561047f57600080fd5b5035610b12565b005b34801561049457600080fd5b5061032f600480360360408110156104ab57600080fd5b506001600160a01b038135169060200135610b6f565b3480156104cd57600080fd5b50610358610bbd565b3480156104e257600080fd5b50610358600480360360408110156104f957600080fd5b50803590602001351515610bc3565b34801561051457600080fd5b506104866004803603604081101561052b57600080fd5b506001600160a01b0381351690602001351515610c7c565b34801561054f57600080fd5b506104866004803603602081101561056657600080fd5b5035610cff565b34801561057957600080fd5b5061037f610d5c565b34801561058e57600080fd5b5061032f610d6b565b3480156105a357600080fd5b50610486600480360360208110156105ba57600080fd5b5035610d7a565b3480156105cd57600080fd5b50610358610dd7565b3480156105e257600080fd5b50610486600480360360208110156105f957600080fd5b5035610ddd565b34801561060c57600080fd5b50610358610e3a565b34801561062157600080fd5b506103586004803603602081101561063857600080fd5b50356001600160a01b0316610e40565b34801561065457600080fd5b50610486610ea2565b34801561066957600080fd5b506104866004803603602081101561068057600080fd5b50356001600160a01b0316610f44565b34801561069c57600080fd5b50610358610fbe565b3480156106b157600080fd5b5061037f610fc4565b3480156106c657600080fd5b50610281610fd3565b3480156106db57600080fd5b50610358611031565b3480156106f057600080fd5b5061032f6004803603604081101561070757600080fd5b506001600160a01b038135169060200135611037565b34801561072957600080fd5b5061032f6004803603604081101561074057600080fd5b506001600160a01b03813516906020013561109f565b34801561076257600080fd5b506104866004803603602081101561077957600080fd5b503515156110b3565b34801561078e57600080fd5b5061035861111e565b3480156107a357600080fd5b50610486600480360360208110156107ba57600080fd5b5035611124565b3480156107cd57600080fd5b50610486600480360360208110156107e457600080fd5b50351515611181565b3480156107f957600080fd5b5061032f6004803603602081101561081057600080fd5b50356001600160a01b031661122a565b34801561082c57600080fd5b506103586004803603604081101561084357600080fd5b506001600160a01b0381358116916020013516611248565b34801561086757600080fd5b5061032f611273565b34801561087c57600080fd5b5061035861127c565b34801561089157600080fd5b50610486600480360360208110156108a857600080fd5b5035611282565b3480156108bb57600080fd5b50610486600480360360208110156108d257600080fd5b50356001600160a01b03166112df565b3480156108ee57600080fd5b506104866004803603602081101561090557600080fd5b50356001600160a01b031661149c565b34801561092157600080fd5b506104866004803603602081101561093857600080fd5b50356001600160a01b0316611594565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156109d35780601f106109a8576101008083540402835291602001916109d3565b820191906000526020600020905b8154815290600101906020018083116109b657829003601f168201915b505050505090505b90565b60006109f26109eb61173f565b8484611743565b5060015b92915050565b60135481565b6018546001600160a01b031681565b60075490565b600c5481565b6000610a2a84848461182f565b610a9a84610a3661173f565b610a95856040518060600160405280602881526020016126bd602891396001600160a01b038a16600090815260066020526040812090610a7461173f565b6001600160a01b031681526020810191909152604001600020549190611caf565b611743565b5060019392505050565b6000600854821115610ae75760405162461bcd60e51b815260040180806020018281038252602a81526020018061262a602a913960400191505060405180910390fd5b6000610af1611d46565b9050610afd8382611ebd565b9150505b919050565b60035490565b60125481565b610b1a61173f565b6000546001600160a01b03908116911614610b6a576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b600e55565b60006109f2610b7c61173f565b84610a958560066000610b8d61173f565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611f06565b600d5481565b6000600754831115610c1c576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610c3a57610c33610c2c611d46565b8490611f60565b90506109f6565b610c33610c45611d46565b610c76610c6f600c54600a0a600201610c69600d5489611f6090919063ffffffff16565b90611ebd565b8690611fb9565b90611f60565b610c8461173f565b6000546001600160a01b03908116911614610cd4576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b610d0761173f565b6000546001600160a01b03908116911614610d57576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b601755565b6019546001600160a01b031681565b60155462010000900460ff1681565b610d8261173f565b6000546001600160a01b03908116911614610dd2576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b600f55565b60105481565b610de561173f565b6000546001600160a01b03908116911614610e35576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b601055565b600e5481565b6001600160a01b0381166000908152600a602052604081205460ff1615610e8057506001600160a01b038116600090815260056020526040902054610b01565b6001600160a01b0382166000908152600460205260409020546109f690610aa4565b610eaa61173f565b6000546001600160a01b03908116911614610efa576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610f4c61173f565b6000546001600160a01b03908116911614610f9c576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b601980546001600160a01b0319166001600160a01b0392909216919091179055565b60165481565b6000546001600160a01b031690565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156109d35780601f106109a8576101008083540402835291602001916109d3565b60145481565b60006109f261104461173f565b84610a95856040518060600160405280602581526020016127e2602591396006600061106e61173f565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611caf565b60006109f26110ac61173f565b848461182f565b6110bb61173f565b6000546001600160a01b0390811691161461110b576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b6015805460ff1916911515919091179055565b600f5481565b61112c61173f565b6000546001600160a01b0390811691161461117c576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b600d55565b61118961173f565b6000546001600160a01b039081169116146111d9576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b6015805482151562010000810262ff0000199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6001600160a01b03166000908152600a602052604090205460ff1690565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b60155460ff1681565b60175481565b61128a61173f565b6000546001600160a01b039081169116146112da576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b601655565b6112e761173f565b6000546001600160a01b03908116911614611337576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b6018546001600160a01b03828116911614156113845760405162461bcd60e51b815260040180806020018281038252602981526020018061272e6029913960400191505060405180910390fd5b6001600160a01b0381166000908152600a602052604090205460ff16156113dc5760405162461bcd60e51b81526004018080602001828103825260228152602001806126086022913960400191505060405180910390fd5b6001600160a01b03811660009081526004602052604090205415611436576001600160a01b03811660009081526004602052604090205461141c90610aa4565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6114a461173f565b6000546001600160a01b039081169116146114f4576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b6001600160a01b0381166115395760405162461bcd60e51b81526004018080602001828103825260268152602001806126546026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b61159c61173f565b6000546001600160a01b039081169116146115ec576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff166116435760405162461bcd60e51b81526004018080602001828103825260228152602001806127c06022913960400191505060405180910390fd5b60005b600b5481101561173b57816001600160a01b0316600b828154811061166757fe5b6000918252602090912001546001600160a01b0316141561173357600b8054600019810190811061169457fe5b600091825260209091200154600b80546001600160a01b0390921691839081106116ba57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600a90925220805460ff19169055600b80548061170c57fe5b600082815260209020810160001990810180546001600160a01b031916905501905561173b565b600101611646565b5050565b3390565b6001600160a01b0383166117885760405162461bcd60e51b815260040180806020018281038252602481526020018061279c6024913960400191505060405180910390fd5b6001600160a01b0382166117cd5760405162461bcd60e51b815260040180806020018281038252602281526020018061267a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166118745760405162461bcd60e51b81526004018080602001828103825260258152602001806127776025913960400191505060405180910390fd5b6001600160a01b0382166118b95760405162461bcd60e51b81526004018080602001828103825260238152602001806125e56023913960400191505060405180910390fd5b600081116118f85760405162461bcd60e51b81526004018080602001828103825260298152602001806127056029913960400191505060405180910390fd5b6019546001600160a01b038381169116141561196557601654811115611965576040805162461bcd60e51b815260206004820152601f60248201527f5472616e73666572204c696d6974204578636565647320666f722073656c6c00604482015290519081900360640190fd5b600061197030610e40565b60175460155491925082101590610100900460ff1615801561198f5750805b80156119a957506019546001600160a01b03868116911614155b80156119bd575060155462010000900460ff165b156119cb576119cb82611ffb565b8260006119d6611d46565b601554909150600090819060ff168015611a165750600960006119f761173f565b6001600160a01b0316815260208101919091526040016000205460ff16155b8015611a3b57506001600160a01b03881660009081526009602052604090205460ff16155b8015611a4f5750601554610100900460ff16155b15611af457611a5d846120aa565b9150611a698483611fb9565b9050611a768982856120e9565b9350611aa6611a858385611f60565b6011546001600160a01b031660009081526004602052604090205490611f06565b601180546001600160a01b039081166000908152600460209081526040918290209490945591548251868152925190821693918d169260008051602061275783398151915292908290030190a35b611b20611b018885611f60565b6001600160a01b038b1660009081526004602052604090205490611fb9565b6001600160a01b038a16600090815260046020526040902055611b65611b468585611f60565b6001600160a01b038a1660009081526004602052604090205490611f06565b6001600160a01b03808a16600090815260046020908152604080832094909455918c168152600a909152205460ff1615611bd6576001600160a01b038916600090815260056020526040902054611bbc9088611fb9565b6001600160a01b038a166000908152600560205260409020555b6001600160a01b0388166000908152600a602052604090205460ff1615611c6a576001600160a01b038816600090815260056020526040902054611c1a9085611f06565b6001600160a01b03808a1660008181526005602090815260409182902094909455805188815290519193928d169260008051602061275783398151915292918290030190a3505050505050611caa565b876001600160a01b0316896001600160a01b0316600080516020612757833981519152866040518082815260200191505060405180910390a35050505050505b505050565b60008184841115611d3e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d03578181015183820152602001611ceb565b50505050905090810190601f168015611d305780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60085460075460009190825b600b54811015611e7d578260046000600b8481548110611d6e57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611dd357508160056000600b8481548110611dac57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611df157600754600854611de791611ebd565b93505050506109db565b611e3160046000600b8481548110611e0557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611fb9565b9250611e7360056000600b8481548110611e4757fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611fb9565b9150600101611d52565b50600754600854611e8d91611ebd565b821015611eac57600754600854611ea391611ebd565b925050506109db565b611eb68282611ebd565b9250505090565b6000611eff83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506122df565b9392505050565b600082820183811015611eff576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082611f6f575060006109f6565b82820282848281611f7c57fe5b0414611eff5760405162461bcd60e51b815260040180806020018281038252602181526020018061269c6021913960400191505060405180910390fd5b6000611eff83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611caf565b6015805461ff00191661010017905560165481111561201957506016545b6000612026826002611ebd565b905060006120348383611fb9565b90504761204083612344565b600061204c4783611fb9565b905061205883826124f2565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506015805461ff0019169055505050565b6000806120c2601054846125aa90919063ffffffff16565b905060006120e1612710610c6960105485611f6090919063ffffffff16565b949350505050565b600d54600090839015612152576000612119600c54600201600a0a610c69600d5488611f6090919063ffffffff16565b90506121258282611fb9565b915061213d6121348286611f60565b60085490611fb9565b60085560125461214d9082611f06565b601255505b600e541561223d57600061217d600c54600201600a0a610c69600e5488611f6090919063ffffffff16565b90506121898282611fb9565b91506121ae6121988286611f60565b3060009081526004602052604090205490611f06565b30600090815260046020908152604080832093909355600a9052205460ff16156121fd57306000908152600560205260409020546121ec9082611f06565b306000908152600560205260409020555b60145461220a9082611f06565b60145560408051828152905130916001600160a01b038916916000805160206127578339815191529181900360200190a3505b600f54156120e1576000612268600c54600201600a0a610c69600f5488611f6090919063ffffffff16565b90506122748282611fb9565b6007549092506122849082611fb9565b6007556122946121348286611f60565b6008556013546122a49082611f06565b6013556040805182815290516000916001600160a01b038916916000805160206127578339815191529181900360200190a350949350505050565b6000818361232e5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611d03578181015183820152602001611ceb565b50600083858161233a57fe5b0495945050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061237257fe5b6001600160a01b03928316602091820292909201810191909152601854604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156123c657600080fd5b505afa1580156123da573d6000803e3d6000fd5b505050506040513d60208110156123f057600080fd5b505181518290600190811061240157fe5b6001600160a01b0392831660209182029290920101526018546124279130911684611743565b60185460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b838110156124ad578181015183820152602001612495565b505050509050019650505050505050600060405180830381600087803b1580156124d657600080fd5b505af11580156124ea573d6000803e3d6000fd5b505050505050565b60185461250a9030906001600160a01b031684611743565b6018546040805163f305d71960e01b8152306004820181905260248201869052600060448301819052606483015260848201524260a482015290516001600160a01b039092169163f305d71991849160c480830192606092919082900301818588803b15801561257957600080fd5b505af115801561258d573d6000803e3d6000fd5b50505050506040513d60608110156125a457600080fd5b50505050565b6000806125b78484611f06565b905060006125c6826001611fb9565b90506125db6125d58286611ebd565b85611f60565b9594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c7265616479206578636c75646564416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722eddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c726561647920696e636c7564656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c82c68740f79dd735683d8588dad0340ceaf119b65698d90727637d9b9ff237b64736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106102605760003560e01c80636bc87c3a11610144578063c0b0fda2116100b6578063e43504da1161007a578063e43504da1461085b578063e5d41c6b14610870578063ec28438a14610885578063f2cc0c18146108af578063f2fde38b146108e2578063f84354f11461091557610267565b8063c0b0fda214610782578063c4081a4c14610797578063c49b9a80146107c1578063cba0e996146107ed578063dd62ed3e1461082057610267565b80638da5cb5b116101085780638da5cb5b146106a557806395d89b41146106ba5780639d46cf8a146106cf578063a457c2d7146106e4578063a9059cbb1461071d578063b7bfff651461075657610267565b80636bc87c3a1461060057806370a0823114610615578063715018a6146106485780638187f5161461065d5780638c0b5e221461069057610267565b8063357bf15c116101dd57806348a46473116101a157806348a464731461054357806349bd5a5e1461056d5780634a74bb02146105825780634bf2c7c9146105975780636827e764146105c157806368683f8a146105d657610267565b8063357bf15c1461045c57806339509351146104885780633b124fe7146104c15780634549b039146104d657806347f2dc5b1461050857610267565b806319db457d1161022457806319db457d146103b057806323b872dd146103c55780632d83811914610408578063313ce56714610432578063355bc60b1461044757610267565b806306fdde031461026c578063095ea7b3146102f65780630d9a5219146103435780631694505e1461036a57806318160ddd1461039b57610267565b3661026757005b600080fd5b34801561027857600080fd5b50610281610948565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102bb5781810151838201526020016102a3565b50505050905090810190601f1680156102e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030257600080fd5b5061032f6004803603604081101561031957600080fd5b506001600160a01b0381351690602001356109de565b604080519115158252519081900360200190f35b34801561034f57600080fd5b506103586109fc565b60408051918252519081900360200190f35b34801561037657600080fd5b5061037f610a02565b604080516001600160a01b039092168252519081900360200190f35b3480156103a757600080fd5b50610358610a11565b3480156103bc57600080fd5b50610358610a17565b3480156103d157600080fd5b5061032f600480360360608110156103e857600080fd5b506001600160a01b03813581169160208101359091169060400135610a1d565b34801561041457600080fd5b506103586004803603602081101561042b57600080fd5b5035610aa4565b34801561043e57600080fd5b50610358610b06565b34801561045357600080fd5b50610358610b0c565b34801561046857600080fd5b506104866004803603602081101561047f57600080fd5b5035610b12565b005b34801561049457600080fd5b5061032f600480360360408110156104ab57600080fd5b506001600160a01b038135169060200135610b6f565b3480156104cd57600080fd5b50610358610bbd565b3480156104e257600080fd5b50610358600480360360408110156104f957600080fd5b50803590602001351515610bc3565b34801561051457600080fd5b506104866004803603604081101561052b57600080fd5b506001600160a01b0381351690602001351515610c7c565b34801561054f57600080fd5b506104866004803603602081101561056657600080fd5b5035610cff565b34801561057957600080fd5b5061037f610d5c565b34801561058e57600080fd5b5061032f610d6b565b3480156105a357600080fd5b50610486600480360360208110156105ba57600080fd5b5035610d7a565b3480156105cd57600080fd5b50610358610dd7565b3480156105e257600080fd5b50610486600480360360208110156105f957600080fd5b5035610ddd565b34801561060c57600080fd5b50610358610e3a565b34801561062157600080fd5b506103586004803603602081101561063857600080fd5b50356001600160a01b0316610e40565b34801561065457600080fd5b50610486610ea2565b34801561066957600080fd5b506104866004803603602081101561068057600080fd5b50356001600160a01b0316610f44565b34801561069c57600080fd5b50610358610fbe565b3480156106b157600080fd5b5061037f610fc4565b3480156106c657600080fd5b50610281610fd3565b3480156106db57600080fd5b50610358611031565b3480156106f057600080fd5b5061032f6004803603604081101561070757600080fd5b506001600160a01b038135169060200135611037565b34801561072957600080fd5b5061032f6004803603604081101561074057600080fd5b506001600160a01b03813516906020013561109f565b34801561076257600080fd5b506104866004803603602081101561077957600080fd5b503515156110b3565b34801561078e57600080fd5b5061035861111e565b3480156107a357600080fd5b50610486600480360360208110156107ba57600080fd5b5035611124565b3480156107cd57600080fd5b50610486600480360360208110156107e457600080fd5b50351515611181565b3480156107f957600080fd5b5061032f6004803603602081101561081057600080fd5b50356001600160a01b031661122a565b34801561082c57600080fd5b506103586004803603604081101561084357600080fd5b506001600160a01b0381358116916020013516611248565b34801561086757600080fd5b5061032f611273565b34801561087c57600080fd5b5061035861127c565b34801561089157600080fd5b50610486600480360360208110156108a857600080fd5b5035611282565b3480156108bb57600080fd5b50610486600480360360208110156108d257600080fd5b50356001600160a01b03166112df565b3480156108ee57600080fd5b506104866004803603602081101561090557600080fd5b50356001600160a01b031661149c565b34801561092157600080fd5b506104866004803603602081101561093857600080fd5b50356001600160a01b0316611594565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156109d35780601f106109a8576101008083540402835291602001916109d3565b820191906000526020600020905b8154815290600101906020018083116109b657829003601f168201915b505050505090505b90565b60006109f26109eb61173f565b8484611743565b5060015b92915050565b60135481565b6018546001600160a01b031681565b60075490565b600c5481565b6000610a2a84848461182f565b610a9a84610a3661173f565b610a95856040518060600160405280602881526020016126bd602891396001600160a01b038a16600090815260066020526040812090610a7461173f565b6001600160a01b031681526020810191909152604001600020549190611caf565b611743565b5060019392505050565b6000600854821115610ae75760405162461bcd60e51b815260040180806020018281038252602a81526020018061262a602a913960400191505060405180910390fd5b6000610af1611d46565b9050610afd8382611ebd565b9150505b919050565b60035490565b60125481565b610b1a61173f565b6000546001600160a01b03908116911614610b6a576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b600e55565b60006109f2610b7c61173f565b84610a958560066000610b8d61173f565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611f06565b600d5481565b6000600754831115610c1c576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610c3a57610c33610c2c611d46565b8490611f60565b90506109f6565b610c33610c45611d46565b610c76610c6f600c54600a0a600201610c69600d5489611f6090919063ffffffff16565b90611ebd565b8690611fb9565b90611f60565b610c8461173f565b6000546001600160a01b03908116911614610cd4576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b610d0761173f565b6000546001600160a01b03908116911614610d57576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b601755565b6019546001600160a01b031681565b60155462010000900460ff1681565b610d8261173f565b6000546001600160a01b03908116911614610dd2576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b600f55565b60105481565b610de561173f565b6000546001600160a01b03908116911614610e35576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b601055565b600e5481565b6001600160a01b0381166000908152600a602052604081205460ff1615610e8057506001600160a01b038116600090815260056020526040902054610b01565b6001600160a01b0382166000908152600460205260409020546109f690610aa4565b610eaa61173f565b6000546001600160a01b03908116911614610efa576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610f4c61173f565b6000546001600160a01b03908116911614610f9c576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b601980546001600160a01b0319166001600160a01b0392909216919091179055565b60165481565b6000546001600160a01b031690565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156109d35780601f106109a8576101008083540402835291602001916109d3565b60145481565b60006109f261104461173f565b84610a95856040518060600160405280602581526020016127e2602591396006600061106e61173f565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611caf565b60006109f26110ac61173f565b848461182f565b6110bb61173f565b6000546001600160a01b0390811691161461110b576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b6015805460ff1916911515919091179055565b600f5481565b61112c61173f565b6000546001600160a01b0390811691161461117c576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b600d55565b61118961173f565b6000546001600160a01b039081169116146111d9576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b6015805482151562010000810262ff0000199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6001600160a01b03166000908152600a602052604090205460ff1690565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b60155460ff1681565b60175481565b61128a61173f565b6000546001600160a01b039081169116146112da576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b601655565b6112e761173f565b6000546001600160a01b03908116911614611337576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b6018546001600160a01b03828116911614156113845760405162461bcd60e51b815260040180806020018281038252602981526020018061272e6029913960400191505060405180910390fd5b6001600160a01b0381166000908152600a602052604090205460ff16156113dc5760405162461bcd60e51b81526004018080602001828103825260228152602001806126086022913960400191505060405180910390fd5b6001600160a01b03811660009081526004602052604090205415611436576001600160a01b03811660009081526004602052604090205461141c90610aa4565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6114a461173f565b6000546001600160a01b039081169116146114f4576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b6001600160a01b0381166115395760405162461bcd60e51b81526004018080602001828103825260268152602001806126546026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b61159c61173f565b6000546001600160a01b039081169116146115ec576040805162461bcd60e51b815260206004820181905260248201526000805160206126e5833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff166116435760405162461bcd60e51b81526004018080602001828103825260228152602001806127c06022913960400191505060405180910390fd5b60005b600b5481101561173b57816001600160a01b0316600b828154811061166757fe5b6000918252602090912001546001600160a01b0316141561173357600b8054600019810190811061169457fe5b600091825260209091200154600b80546001600160a01b0390921691839081106116ba57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600a90925220805460ff19169055600b80548061170c57fe5b600082815260209020810160001990810180546001600160a01b031916905501905561173b565b600101611646565b5050565b3390565b6001600160a01b0383166117885760405162461bcd60e51b815260040180806020018281038252602481526020018061279c6024913960400191505060405180910390fd5b6001600160a01b0382166117cd5760405162461bcd60e51b815260040180806020018281038252602281526020018061267a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166118745760405162461bcd60e51b81526004018080602001828103825260258152602001806127776025913960400191505060405180910390fd5b6001600160a01b0382166118b95760405162461bcd60e51b81526004018080602001828103825260238152602001806125e56023913960400191505060405180910390fd5b600081116118f85760405162461bcd60e51b81526004018080602001828103825260298152602001806127056029913960400191505060405180910390fd5b6019546001600160a01b038381169116141561196557601654811115611965576040805162461bcd60e51b815260206004820152601f60248201527f5472616e73666572204c696d6974204578636565647320666f722073656c6c00604482015290519081900360640190fd5b600061197030610e40565b60175460155491925082101590610100900460ff1615801561198f5750805b80156119a957506019546001600160a01b03868116911614155b80156119bd575060155462010000900460ff165b156119cb576119cb82611ffb565b8260006119d6611d46565b601554909150600090819060ff168015611a165750600960006119f761173f565b6001600160a01b0316815260208101919091526040016000205460ff16155b8015611a3b57506001600160a01b03881660009081526009602052604090205460ff16155b8015611a4f5750601554610100900460ff16155b15611af457611a5d846120aa565b9150611a698483611fb9565b9050611a768982856120e9565b9350611aa6611a858385611f60565b6011546001600160a01b031660009081526004602052604090205490611f06565b601180546001600160a01b039081166000908152600460209081526040918290209490945591548251868152925190821693918d169260008051602061275783398151915292908290030190a35b611b20611b018885611f60565b6001600160a01b038b1660009081526004602052604090205490611fb9565b6001600160a01b038a16600090815260046020526040902055611b65611b468585611f60565b6001600160a01b038a1660009081526004602052604090205490611f06565b6001600160a01b03808a16600090815260046020908152604080832094909455918c168152600a909152205460ff1615611bd6576001600160a01b038916600090815260056020526040902054611bbc9088611fb9565b6001600160a01b038a166000908152600560205260409020555b6001600160a01b0388166000908152600a602052604090205460ff1615611c6a576001600160a01b038816600090815260056020526040902054611c1a9085611f06565b6001600160a01b03808a1660008181526005602090815260409182902094909455805188815290519193928d169260008051602061275783398151915292918290030190a3505050505050611caa565b876001600160a01b0316896001600160a01b0316600080516020612757833981519152866040518082815260200191505060405180910390a35050505050505b505050565b60008184841115611d3e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d03578181015183820152602001611ceb565b50505050905090810190601f168015611d305780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60085460075460009190825b600b54811015611e7d578260046000600b8481548110611d6e57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611dd357508160056000600b8481548110611dac57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611df157600754600854611de791611ebd565b93505050506109db565b611e3160046000600b8481548110611e0557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611fb9565b9250611e7360056000600b8481548110611e4757fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611fb9565b9150600101611d52565b50600754600854611e8d91611ebd565b821015611eac57600754600854611ea391611ebd565b925050506109db565b611eb68282611ebd565b9250505090565b6000611eff83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506122df565b9392505050565b600082820183811015611eff576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082611f6f575060006109f6565b82820282848281611f7c57fe5b0414611eff5760405162461bcd60e51b815260040180806020018281038252602181526020018061269c6021913960400191505060405180910390fd5b6000611eff83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611caf565b6015805461ff00191661010017905560165481111561201957506016545b6000612026826002611ebd565b905060006120348383611fb9565b90504761204083612344565b600061204c4783611fb9565b905061205883826124f2565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506015805461ff0019169055505050565b6000806120c2601054846125aa90919063ffffffff16565b905060006120e1612710610c6960105485611f6090919063ffffffff16565b949350505050565b600d54600090839015612152576000612119600c54600201600a0a610c69600d5488611f6090919063ffffffff16565b90506121258282611fb9565b915061213d6121348286611f60565b60085490611fb9565b60085560125461214d9082611f06565b601255505b600e541561223d57600061217d600c54600201600a0a610c69600e5488611f6090919063ffffffff16565b90506121898282611fb9565b91506121ae6121988286611f60565b3060009081526004602052604090205490611f06565b30600090815260046020908152604080832093909355600a9052205460ff16156121fd57306000908152600560205260409020546121ec9082611f06565b306000908152600560205260409020555b60145461220a9082611f06565b60145560408051828152905130916001600160a01b038916916000805160206127578339815191529181900360200190a3505b600f54156120e1576000612268600c54600201600a0a610c69600f5488611f6090919063ffffffff16565b90506122748282611fb9565b6007549092506122849082611fb9565b6007556122946121348286611f60565b6008556013546122a49082611f06565b6013556040805182815290516000916001600160a01b038916916000805160206127578339815191529181900360200190a350949350505050565b6000818361232e5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611d03578181015183820152602001611ceb565b50600083858161233a57fe5b0495945050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061237257fe5b6001600160a01b03928316602091820292909201810191909152601854604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156123c657600080fd5b505afa1580156123da573d6000803e3d6000fd5b505050506040513d60208110156123f057600080fd5b505181518290600190811061240157fe5b6001600160a01b0392831660209182029290920101526018546124279130911684611743565b60185460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b838110156124ad578181015183820152602001612495565b505050509050019650505050505050600060405180830381600087803b1580156124d657600080fd5b505af11580156124ea573d6000803e3d6000fd5b505050505050565b60185461250a9030906001600160a01b031684611743565b6018546040805163f305d71960e01b8152306004820181905260248201869052600060448301819052606483015260848201524260a482015290516001600160a01b039092169163f305d71991849160c480830192606092919082900301818588803b15801561257957600080fd5b505af115801561258d573d6000803e3d6000fd5b50505050506040513d60608110156125a457600080fd5b50505050565b6000806125b78484611f06565b905060006125c6826001611fb9565b90506125db6125d58286611ebd565b85611f60565b9594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c7265616479206578636c75646564416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722eddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c726561647920696e636c7564656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c82c68740f79dd735683d8588dad0340ceaf119b65698d90727637d9b9ff237b64736f6c634300060c0033

Deployed Bytecode Sourcemap

20234:15829:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22948:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24197:193;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24197:193:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;21502:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;21875:42;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;21875:42:0;;;;;;;;;;;;;;23227:99;;;;;;;;;;;;;:::i;21018:30::-;;;;;;;;;;;;;:::i;24398:368::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24398:368:0;;;;;;;;;;;;;;;;;:::i;26136:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26136:368:0;;:::i;23134:85::-;;;;;;;;;;;;;:::i;21468:27::-;;;;;;;;;;;;;:::i;35598:95::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35598:95:0;;:::i;:::-;;24774:300;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24774:300:0;;;;;;;;:::i;21086:26::-;;;;;;;;;;;;;:::i;25608:520::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25608:520:0;;;;;;;;;:::i;35001:113::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35001:113:0;;;;;;;;;;:::i;35909:114::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35909:114:0;;:::i;21924:29::-;;;;;;;;;;;;;:::i;21670:40::-;;;;;;;;;;;;;:::i;35501:85::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35501:85:0;;:::i;21300:27::-;;;;;;;;;;;;;:::i;35705:85::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35705:85:0;;:::i;21163:32::-;;;;;;;;;;;;;:::i;23561:215::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23561:215:0;-1:-1:-1;;;;;23561:215:0;;:::i;17669:148::-;;;;;;;;;;;;;:::i;34904:89::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34904:89:0;-1:-1:-1;;;;;34904:89:0;;:::i;21723:43::-;;;;;;;;;;;;;:::i;17027:79::-;;;;;;;;;;;;;:::i;23039:87::-;;;;;;;;;;;;;:::i;21537:33::-;;;;;;;;;;;;;:::i;25082:400::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25082:400:0;;;;;;;;:::i;23784:213::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23784:213:0;;;;;;;;:::i;35303:91::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35303:91:0;;;;:::i;21249:27::-;;;;;;;;;;;;;:::i;35406:83::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35406:83:0;;:::i;35126:165::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35126:165:0;;;;:::i;25490:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25490:110:0;-1:-1:-1;;;;;25490:110:0;;:::i;24005:184::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24005:184:0;;;;;;;;;;:::i;21579:30::-;;;;;;;;;;;;;:::i;21801:63::-;;;;;;;;;;;;;:::i;35799:98::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35799:98:0;;:::i;26512:537::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26512:537:0;-1:-1:-1;;;;;26512:537:0;;:::i;17972:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17972:281:0;-1:-1:-1;;;;;17972:281:0;;:::i;27057:491::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27057:491:0;-1:-1:-1;;;;;27057:491:0;;:::i;22948:83::-;23018:5;23011:12;;;;;;;;-1:-1:-1;;23011:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22985:13;;23011:12;;23018:5;;23011:12;;23018:5;23011:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22948:83;;:::o;24197:193::-;24299:4;24321:39;24330:12;:10;:12::i;:::-;24344:7;24353:6;24321:8;:39::i;:::-;-1:-1:-1;24378:4:0;24197:193;;;;;:::o;21502:28::-;;;;:::o;21875:42::-;;;-1:-1:-1;;;;;21875:42:0;;:::o;23227:99::-;23307:11;;23227:99;:::o;21018:30::-;;;;:::o;24398:368::-;24538:4;24555:34;24565:6;24572:9;24582:6;24555:9;:34::i;:::-;24617:119;24626:6;24633:12;:10;:12::i;:::-;24646:89;24685:6;24646:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24646:19:0;;;;;;:11;:19;;;;;;24666:12;:10;:12::i;:::-;-1:-1:-1;;;;;24646:33:0;;;;;;;;;;;;-1:-1:-1;24646:33:0;;;:89;:37;:89::i;:::-;24617:8;:119::i;:::-;-1:-1:-1;24754:4:0;24398:368;;;;;:::o;26136:::-;26239:7;26306:16;;26286;:36;;26264:128;;;;-1:-1:-1;;;26264:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26403:19;26425:20;:18;:20::i;:::-;26403:42;-1:-1:-1;26463:33:0;:16;26403:42;26463:20;:33::i;:::-;26456:40;;;26136:368;;;;:::o;23134:85::-;23202:9;;23134:85;:::o;21468:27::-;;;;:::o;35598:95::-;17249:12;:10;:12::i;:::-;17239:6;;-1:-1:-1;;;;;17239:6:0;;;:22;;;17231:67;;;;;-1:-1:-1;;;17231:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17231:67:0;;;;;;;;;;;;;;;35666:13:::1;:19:::0;35598:95::o;24774:300::-;24889:4;24911:133;24934:12;:10;:12::i;:::-;24961:7;24983:50;25022:10;24983:11;:25;24995:12;:10;:12::i;:::-;-1:-1:-1;;;;;24983:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;24983:25:0;;;:34;;;;;;;;;;;:38;:50::i;21086:26::-;;;;:::o;25608:520::-;25730:7;25778:11;;25763;:26;;25755:70;;;;;-1:-1:-1;;;25755:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25841:17;25836:285;;25882:37;25898:20;:18;:20::i;:::-;25882:11;;:15;:37::i;:::-;25875:44;;;;25836:285;25976:133;26070:20;:18;:20::i;:::-;25976:67;25992:50;26026:11;;26021:2;:16;26040:1;26021:20;25992:24;26008:7;;25992:11;:15;;:24;;;;:::i;:::-;:28;;:50::i;:::-;25976:11;;:15;:67::i;:::-;:71;;:133::i;35001:113::-;17249:12;:10;:12::i;:::-;17239:6;;-1:-1:-1;;;;;17239:6:0;;;:22;;;17231:67;;;;;-1:-1:-1;;;17231:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17231:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35080:18:0;;;::::1;;::::0;;;:9:::1;:18;::::0;;;;:26;;-1:-1:-1;;35080:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35001:113::o;35909:114::-;17249:12;:10;:12::i;:::-;17239:6;;-1:-1:-1;;;;;17239:6:0;;;:22;;;17231:67;;;;;-1:-1:-1;;;17231:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17231:67:0;;;;;;;;;;;;;;;35987:19:::1;:28:::0;35909:114::o;21924:29::-;;;-1:-1:-1;;;;;21924:29:0;;:::o;21670:40::-;;;;;;;;;:::o;35501:85::-;17249:12;:10;:12::i;:::-;17239:6;;-1:-1:-1;;;;;17239:6:0;;;:22;;;17231:67;;;;;-1:-1:-1;;;17231:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17231:67:0;;;;;;;;;;;;;;;35564:8:::1;:14:::0;35501:85::o;21300:27::-;;;;:::o;35705:85::-;17249:12;:10;:12::i;:::-;17239:6;;-1:-1:-1;;;;;17239:6:0;;;:22;;;17231:67;;;;;-1:-1:-1;;;17231:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17231:67:0;;;;;;;;;;;;;;;35767:6:::1;:15:::0;35705:85::o;21163:32::-;;;;:::o;23561:215::-;-1:-1:-1;;;;;23651:20:0;;23627:7;23651:20;;;:11;:20;;;;;;;;23647:55;;;-1:-1:-1;;;;;;23680:22:0;;;;;;:13;:22;;;;;;23673:29;;23647:55;-1:-1:-1;;;;;23740:27:0;;;;;;:18;:27;;;;;;23720:48;;:19;:48::i;17669:148::-;17249:12;:10;:12::i;:::-;17239:6;;-1:-1:-1;;;;;17239:6:0;;;:22;;;17231:67;;;;;-1:-1:-1;;;17231:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17231:67:0;;;;;;;;;;;;;;;17776:1:::1;17760:6:::0;;17739:40:::1;::::0;-1:-1:-1;;;;;17760:6:0;;::::1;::::0;17739:40:::1;::::0;17776:1;;17739:40:::1;17807:1;17790:19:::0;;-1:-1:-1;;;;;;17790:19:0::1;::::0;;17669:148::o;34904:89::-;17249:12;:10;:12::i;:::-;17239:6;;-1:-1:-1;;;;;17239:6:0;;;:22;;;17231:67;;;;;-1:-1:-1;;;17231:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17231:67:0;;;;;;;;;;;;;;;34965:13:::1;:20:::0;;-1:-1:-1;;;;;;34965:20:0::1;-1:-1:-1::0;;;;;34965:20:0;;;::::1;::::0;;;::::1;::::0;;34904:89::o;21723:43::-;;;;:::o;17027:79::-;17065:7;17092:6;-1:-1:-1;;;;;17092:6:0;17027:79;:::o;23039:87::-;23111:7;23104:14;;;;;;;-1:-1:-1;;23104:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23078:13;;23104:14;;23111:7;;23104:14;;23111:7;23104:14;;;;;;;;;;;;;;;;;;;;;;;;21537:33;;;;:::o;25082:400::-;25202:4;25224:228;25247:12;:10;:12::i;:::-;25274:7;25296:145;25353:15;25296:145;;;;;;;;;;;;;;;;;:11;:25;25308:12;:10;:12::i;:::-;-1:-1:-1;;;;;25296:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25296:25:0;;;:34;;;;;;;;;;;:145;:38;:145::i;23784:213::-;23906:4;23927:40;23937:12;:10;:12::i;:::-;23950:9;23960:6;23927:9;:40::i;35303:91::-;17249:12;:10;:12::i;:::-;17239:6;;-1:-1:-1;;;;;17239:6:0;;;:22;;;17231:67;;;;;-1:-1:-1;;;17231:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17231:67:0;;;;;;;;;;;;;;;35367:11:::1;:19:::0;;-1:-1:-1;;35367:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35303:91::o;21249:27::-;;;;:::o;35406:83::-;17249:12;:10;:12::i;:::-;17239:6;;-1:-1:-1;;;;;17239:6:0;;;:22;;;17231:67;;;;;-1:-1:-1;;;17231:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17231:67:0;;;;;;;;;;;;;;;35468:7:::1;:13:::0;35406:83::o;35126:165::-;17249:12;:10;:12::i;:::-;17239:6;;-1:-1:-1;;;;;17239:6:0;;;:22;;;17231:67;;;;;-1:-1:-1;;;17231:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17231:67:0;;;;;;;;;;;;;;;35204:21:::1;:31:::0;;;::::1;;::::0;;::::1;-1:-1:-1::0;;35204:31:0;;::::1;::::0;;;::::1;::::0;;;35246:37:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;35126:165:::0;:::o;25490:110::-;-1:-1:-1;;;;;25572:20:0;25548:4;25572:20;;;:11;:20;;;;;;;;;25490:110::o;24005:184::-;-1:-1:-1;;;;;24154:18:0;;;24122:7;24154:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;24005:184::o;21579:30::-;;;;;;:::o;21801:63::-;;;;:::o;35799:98::-;17249:12;:10;:12::i;:::-;17239:6;;-1:-1:-1;;;;;17239:6:0;;;:22;;;17231:67;;;;;-1:-1:-1;;;17231:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17231:67:0;;;;;;;;;;;;;;;35869:11:::1;:20:::0;35799:98::o;26512:537::-;17249:12;:10;:12::i;:::-;17239:6;;-1:-1:-1;;;;;17239:6:0;;;:22;;;17231:67;;;;;-1:-1:-1;;;17231:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17231:67:0;;;;;;;;;;;;;;;26626:15:::1;::::0;-1:-1:-1;;;;;26607:35:0;;::::1;26626:15:::0;::::1;26607:35;;26585:126;;;;-1:-1:-1::0;;;26585:126:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;26731:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;26730:21;26722:68;;;;-1:-1:-1::0;;;26722:68:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;26805:27:0;::::1;26835:1;26805:27:::0;;;:18:::1;:27;::::0;;;;;:31;26801:169:::1;;-1:-1:-1::0;;;;;26916:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;26878:80:::1;::::0;:19:::1;:80::i;:::-;-1:-1:-1::0;;;;;26853:22:0;::::1;;::::0;;;:13:::1;:22;::::0;;;;:105;26801:169:::1;-1:-1:-1::0;;;;;26980:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;26980:27:0::1;27003:4;26980:27:::0;;::::1;::::0;;;27018:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;27018:23:0::1;::::0;;::::1;::::0;;26512:537::o;17972:281::-;17249:12;:10;:12::i;:::-;17239:6;;-1:-1:-1;;;;;17239:6:0;;;:22;;;17231:67;;;;;-1:-1:-1;;;17231:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17231:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;18075:22:0;::::1;18053:110;;;;-1:-1:-1::0;;;18053:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18200:6;::::0;;18179:38:::1;::::0;-1:-1:-1;;;;;18179:38:0;;::::1;::::0;18200:6;::::1;::::0;18179:38:::1;::::0;::::1;18228:6;:17:::0;;-1:-1:-1;;;;;;18228:17:0::1;-1:-1:-1::0;;;;;18228:17:0;;;::::1;::::0;;;::::1;::::0;;17972:281::o;27057:491::-;17249:12;:10;:12::i;:::-;17239:6;;-1:-1:-1;;;;;17239:6:0;;;:22;;;17231:67;;;;;-1:-1:-1;;;17231:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17231:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;27138:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;27130:67;;;;-1:-1:-1::0;;;27130:67:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27213:9;27208:333;27232:9;:16:::0;27228:20;::::1;27208:333;;;27290:7;-1:-1:-1::0;;;;;27274:23:0::1;:9;27284:1;27274:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;27274:12:0::1;:23;27270:260;;;27333:9;27343:16:::0;;-1:-1:-1;;27343:20:0;;;27333:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;27318:9:::1;:12:::0;;-1:-1:-1;;;;;27333:31:0;;::::1;::::0;27328:1;;27318:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;27318:46:0::1;-1:-1:-1::0;;;;;27318:46:0;;::::1;;::::0;;27383:22;;::::1;::::0;;:13:::1;:22:::0;;;;;;:26;;;27428:11:::1;:20:::0;;;;:28;;-1:-1:-1;;27428:28:0::1;::::0;;27475:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;27475:15:0;;;;;-1:-1:-1;;;;;;27475:15:0::1;::::0;;;;;27509:5:::1;;27270:260;27250:3;;27208:333;;;;27057:491:::0;:::o;606:106::-;694:10;606:106;:::o;27556:371::-;-1:-1:-1;;;;;27683:19:0;;27675:68;;;;-1:-1:-1;;;27675:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27762:21:0;;27754:68;;;;-1:-1:-1;;;27754:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27835:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;27887:32;;;;;;;;;;;;;;;;;27556:371;;;:::o;27935:2292::-;-1:-1:-1;;;;;28066:20:0;;28058:70;;;;-1:-1:-1;;;28058:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28147:23:0;;28139:71;;;;-1:-1:-1;;;28139:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28238:1;28229:6;:10;28221:64;;;;-1:-1:-1;;;28221:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28322:13;;-1:-1:-1;;;;;28309:26:0;;;28322:13;;28309:26;28306:119;;;28366:11;;28356:6;:21;;28348:65;;;;;-1:-1:-1;;;28348:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;28445:28;28476:24;28494:4;28476:9;:24::i;:::-;28562:19;;28597:16;;28445:55;;-1:-1:-1;28538:43:0;;;;28597:16;;;;;28596:17;:40;;;;;28617:19;28596:40;:67;;;;-1:-1:-1;28650:13:0;;-1:-1:-1;;;;;28640:23:0;;;28650:13;;28640:23;;28596:67;:92;;;;-1:-1:-1;28667:21:0;;;;;;;28596:92;28592:161;;;28705:36;28720:20;28705:14;:36::i;:::-;28790:6;28765:22;28822:20;:18;:20::i;:::-;28924:11;;28807:35;;-1:-1:-1;28853:20:0;;;;28924:11;;:39;;;;;28940:9;:23;28950:12;:10;:12::i;:::-;-1:-1:-1;;;;;28940:23:0;;;;;;;;;;;;-1:-1:-1;28940:23:0;;;;28939:24;28924:39;:64;;;;-1:-1:-1;;;;;;28968:20:0;;;;;;:9;:20;;;;;;;;28967:21;28924:64;:85;;;;-1:-1:-1;28993:16:0;;;;;;;28992:17;28924:85;28921:532;;;29054:28;29067:14;29054:12;:28::i;:::-;29039:43;-1:-1:-1;29116:32:0;:14;29039:43;29116:18;:32::i;:::-;29097:51;;29180:40;29191:6;29198:16;29215:4;29180:10;:40::i;:::-;29163:57;-1:-1:-1;29311:58:0;29346:22;:12;29363:4;29346:16;:22::i;:::-;29330:10;;-1:-1:-1;;;;;29330:10:0;29311:30;;;;:18;:30;;;;;;;:34;:58::i;:::-;29297:10;;;-1:-1:-1;;;;;29297:10:0;;;29278:30;;;;:18;:30;;;;;;;;;:91;;;;29416:10;;29399:42;;;;;;;29416:10;;;;29399:42;;;;-1:-1:-1;;;;;;;;;;;29399:42:0;;;;;;;;28921:532;29545:48;29576:16;:6;29587:4;29576:10;:16::i;:::-;-1:-1:-1;;;;;29545:26:0;;;;;;:18;:26;;;;;;;:30;:48::i;:::-;-1:-1:-1;;;;;29516:26:0;;;;;;:18;:26;;;;;:77;29656:59;29690:24;:14;29709:4;29690:18;:24::i;:::-;-1:-1:-1;;;;;29656:29:0;;;;;;:18;:29;;;;;;;:33;:59::i;:::-;-1:-1:-1;;;;;29624:29:0;;;;;;;:18;:29;;;;;;;;:91;;;;29804:19;;;;;:11;:19;;;;;;;29800:109;;;-1:-1:-1;;;;;29864:21:0;;;;;;:13;:21;;;;;;:33;;29890:6;29864:25;:33::i;:::-;-1:-1:-1;;;;;29840:21:0;;;;;;:13;:21;;;;;:57;29800:109;-1:-1:-1;;;;;29923:22:0;;;;;;:11;:22;;;;;;;;29919:230;;;-1:-1:-1;;;;;29989:24:0;;;;;;:13;:24;;;;;;:44;;30018:14;29989:28;:44::i;:::-;-1:-1:-1;;;;;29962:24:0;;;;;;;:13;:24;;;;;;;;;:71;;;;30067:43;;;;;;;29962:24;;30067:43;;;;-1:-1:-1;;;;;;;;;;;30067:43:0;;;;;;;;30131:7;;;;;;;;29919:230;30183:9;-1:-1:-1;;;;;30166:43:0;30175:6;-1:-1:-1;;;;;30166:43:0;-1:-1:-1;;;;;;;;;;;30194:14:0;30166:43;;;;;;;;;;;;;;;;;;27935:2292;;;;;;;;;;:::o;5529:226::-;5649:7;5685:12;5677:6;;;;5669:29;;;;-1:-1:-1;;;5669:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5721:5:0;;;5529:226::o;31850:808::-;31949:16;;31998:11;;31902:7;;31949:16;31902:7;32020:458;32044:9;:16;32040:20;;32020:458;;;32139:16;32104:18;:32;32123:9;32133:1;32123:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32123:12:0;32104:32;;;;;;;;;;;;;:51;;:113;;;32206:11;32176:13;:27;32190:9;32200:1;32190:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32190:12:0;32176:27;;;;;;;;;;;;;:41;32104:113;32082:191;;;32261:11;;32240:16;;:33;;:20;:33::i;:::-;32233:40;;;;;;;32082:191;32307:86;32346:18;:32;32365:9;32375:1;32365:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32365:12:0;32346:32;;;;;;;;;;;;;32307:16;;:20;:86::i;:::-;32288:105;;32422:44;32438:13;:27;32452:9;32462:1;32452:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32452:12:0;32438:27;;;;;;;;;;;;;32422:11;;:15;:44::i;:::-;32408:58;-1:-1:-1;32062:3:0;;32020:458;;;-1:-1:-1;32532:11:0;;32511:16;;:33;;:20;:33::i;:::-;32492:16;:52;32488:111;;;32587:11;;32566:16;;:33;;:20;:33::i;:::-;32559:40;;;;;;32488:111;32617:33;:16;32638:11;32617:20;:33::i;:::-;32610:40;;;;31850:808;:::o;6961:132::-;7019:7;7046:39;7050:1;7053;7046:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;7039:46;6961:132;-1:-1:-1;;;6961:132:0:o;4626:181::-;4684:7;4716:5;;;4740:6;;;;4732:46;;;;;-1:-1:-1;;;4732:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;6014:471;6072:7;6317:6;6313:47;;-1:-1:-1;6347:1:0;6340:8;;6313:47;6384:5;;;6388:1;6384;:5;:1;6408:5;;;;;:10;6400:56;;;;-1:-1:-1;;;6400:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5090:136;5148:7;5175:43;5179:1;5182;5175:43;;;;;;;;;;;;;;;;;:3;:43::i;32671:1097::-;22149:16;:23;;-1:-1:-1;;22149:23:0;;;;;32783:11:::1;::::0;32760:34;::::1;32757:101;;;-1:-1:-1::0;32834:11:0::1;::::0;32757:101:::1;32919:12;32934:27;:20:::0;32959:1:::1;32934:24;:27::i;:::-;32919:42:::0;-1:-1:-1;32972:17:0::1;32992:30;:20:::0;32919:42;32992:24:::1;:30::i;:::-;32972:50:::0;-1:-1:-1;33325:21:0::1;33391:22;33408:4:::0;33391:16:::1;:22::i;:::-;33544:18;33565:41;:21;33591:14:::0;33565:25:::1;:41::i;:::-;33544:62;;33656:35;33669:9;33680:10;33656:12;:35::i;:::-;33717:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;22195:16:0;:24;;-1:-1:-1;;22195:24:0;;;-1:-1:-1;;;32671:1097:0:o;23344:207::-;23404:7;23421:18;23442;23453:6;;23442:5;:10;;:18;;;;:::i;:::-;23421:39;;23467:18;23488:33;23515:5;23488:22;23503:6;;23488:10;:14;;:22;;;;:::i;:33::-;23467:54;23344:207;-1:-1:-1;;;;23344:207:0:o;30239:1603::-;30422:7;;30323;;30368:6;;30422:12;30419:290;;30450:14;30467:46;30496:11;;30510:1;30496:15;30491:2;:21;30467:19;30478:7;;30467:6;:10;;:19;;;;:::i;:46::-;30450:63;-1:-1:-1;30545:26:0;:14;30450:63;30545:18;:26::i;:::-;30528:43;-1:-1:-1;30605:38:0;30626:16;:6;30637:4;30626:10;:16::i;:::-;30605;;;:20;:38::i;:::-;30586:16;:57;30673:12;;:24;;30690:6;30673:16;:24::i;:::-;30658:12;:39;-1:-1:-1;30419:290:0;30754:13;;:18;30751:592;;30788:20;30811:52;30846:11;;30860:1;30846:15;30841:2;:21;30811:25;30822:13;;30811:6;:10;;:25;;;;:::i;:52::-;30788:75;-1:-1:-1;30895:32:0;:14;30788:75;30895:18;:32::i;:::-;30878:49;-1:-1:-1;30978:61:0;31016:22;:12;31033:4;31016:16;:22::i;:::-;31005:4;30978:33;;;;:18;:33;;;;;;;:37;:61::i;:::-;30969:4;30942:33;;;;:18;:33;;;;;;;;:97;;;;31057:11;:26;;;;;;31054:142;;;31156:4;31134:28;;;;:13;:28;;;;;;:46;;31167:12;31134:32;:46::i;:::-;31125:4;31103:28;;;;:13;:28;;;;;:77;31054:142;31231:18;;:36;;31254:12;31231:22;:36::i;:::-;31210:18;:57;31287:44;;;;;;;;31312:4;;-1:-1:-1;;;;;31287:44:0;;;-1:-1:-1;;;;;;;;;;;31287:44:0;;;;;;;;30751:592;;31389:8;;:13;31386:407;;31418:15;31436:47;31466:11;;31480:1;31466:15;31461:2;:21;31436:20;31447:8;;31436:6;:10;;:20;;;;:::i;:47::-;31418:65;-1:-1:-1;31515:27:0;:14;31418:65;31515:18;:27::i;:::-;31571:11;;31498:44;;-1:-1:-1;31571:24:0;;31587:7;31571:15;:24::i;:::-;31557:11;:38;31629:39;31650:17;:7;31662:4;31650:11;:17::i;31629:39::-;31610:16;:58;31699:13;;:26;;31717:7;31699:17;:26::i;:::-;31683:13;:42;31745:36;;;;;;;;31770:1;;-1:-1:-1;;;;;31745:36:0;;;-1:-1:-1;;;;;;;;;;;31745:36:0;;;;;;;;31386:407;31820:14;30239:1603;-1:-1:-1;;;;30239:1603:0:o;7589:312::-;7709:7;7744:12;7737:5;7729:28;;;;-1:-1:-1;;;7729:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7768:9;7784:1;7780;:5;;;;;;;7589:312;-1:-1:-1;;;;;7589:312:0:o;33776:589::-;33926:16;;;33940:1;33926:16;;;33902:21;33926:16;;;;;33902:21;33926:16;;;;;;;;;;-1:-1:-1;33926:16:0;33902:40;;33971:4;33953;33958:1;33953:7;;;;;;;;-1:-1:-1;;;;;33953:23:0;;;:7;;;;;;;;;;:23;;;;33997:15;;:22;;;-1:-1:-1;;;33997:22:0;;;;:15;;;;;:20;;:22;;;;;33953:7;;33997:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33997:22:0;33987:7;;:4;;33992:1;;33987:7;;;;;;-1:-1:-1;;;;;33987:32:0;;;:7;;;;;;;;;:32;34064:15;;34032:62;;34049:4;;34064:15;34082:11;34032:8;:62::i;:::-;34133:15;;:224;;-1:-1:-1;;;34133:224:0;;;;;;;;:15;:224;;;;;;34311:4;34133:224;;;;;;34331:15;34133:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34133:15:0;;;;:66;;34214:11;;34284:4;;34311;34331:15;34133:224;;;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33776:589;;:::o;34373:519::-;34553:15;;34521:62;;34538:4;;-1:-1:-1;;;;;34553:15:0;34571:11;34521:8;:62::i;:::-;34626:15;;:258;;;-1:-1:-1;;;34626:258:0;;34698:4;34626:258;;;;;;;;;;;;:15;:258;;;;;;;;;;;;;;34858:15;34626:258;;;;;;-1:-1:-1;;;;;34626:15:0;;;;:31;;34665:9;;34626:258;;;;;;;;;;;;;;34665:9;34626:15;:258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;34373:519:0:o;9193:157::-;9252:7;9268:9;9280:8;9284:1;9286;9280:3;:8::i;:::-;9268:20;;9295:9;9307:8;9311:1;9313;9307:3;:8::i;:::-;9295:20;;9329:15;9333:8;9337:1;9339;9333:3;:8::i;:::-;9342:1;9329:3;:15::i;:::-;9322:22;9193:157;-1:-1:-1;;;;;9193:157:0:o

Swarm Source

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