ETH Price: $3,504.82 (-0.13%)
Gas: 2 Gwei

Token

Mob Inu (MOB)
 

Overview

Max Total Supply

1,000,000,000,000 MOB

Holders

157

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
405,072.090400499 MOB

Value
$0.00
0xb0cb469dd1185e561e62b31a2b28806e662e6bd1
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MobInu

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Apache-2.0 license

Contract Source Code (Solidity)

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

//SPDX-License-Identifier: MIT

// Mob Inu - https://t.me/MobInuOfficial
// https://mobinutoken.com/

pragma solidity ^0.8.4;

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

    function _msgData() internal view virtual 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;
    }
}

/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = _msgSender();
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

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

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

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

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

    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) private _isExcludedFromFee;
    mapping(address => bool) private _isExcludedFromMaxTx;

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1000000000000 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "Mob Inu";
    string private _symbol = "MOB";
    uint8 private _decimals = 9;
    
    uint256 public _taxFee = 1;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _devFee = 8;
    uint256 private _previousDevFee = _devFee;
    
    uint256 public _liquidityFee = 5;
    uint256 private _previousLiquidityFee = _liquidityFee;

    uint256 public maxTxAmount = _tTotal.mul(20).div(1000); // 2%
    address payable private _devWallet = payable(0x40Ff056ed683cF99c8e6fE51568475D81e2D4bE6);

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    uint256 private minTokensBeforeSwap = 1000000000 * 10**9;
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 liquidityEthBalance,
        uint256 devEthBalance
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
         _;
        inSwapAndLiquify = false;
    }
    
    constructor () {
        _rOwned[_msgSender()] = _rTotal;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
         // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;
        
        //exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;

        // internal exclude from max tx
        _isExcludedFromMaxTx[owner()] = true;
        _isExcludedFromMaxTx[address(this)] = true;
        
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function setRouterAddress(address newRouter) public onlyOwner() {
        IUniswapV2Router02 _newUniswapRouter = IUniswapV2Router02(newRouter);
        uniswapV2Pair = IUniswapV2Factory(_newUniswapRouter.factory()).createPair(address(this), _newUniswapRouter.WETH());
        uniswapV2Router = _newUniswapRouter;
    }

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

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

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

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

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

    function allowance(address owner, address spender) public view override 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 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 isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

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

    function excludeFromReward(address account) public onlyOwner() {
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }
    
    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0));
        require(spender != address(0));

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
    
    function expectedRewards(address _sender) external view returns(uint256){
        uint256 _balance = address(this).balance;
        address sender = _sender;
        uint256 holdersBal = balanceOf(sender);
        uint totalExcludedBal;
        for (uint256 i = 0; i < _excluded.length; i++){
            totalExcludedBal = balanceOf(_excluded[i]).add(totalExcludedBal);   
        }
        uint256 rewards = holdersBal.mul(_balance).div(_tTotal.sub(balanceOf(uniswapV2Pair)).sub(totalExcludedBal));
        return rewards;
    }
    
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        
        if (
            !_isExcludedFromMaxTx[from] &&
            !_isExcludedFromMaxTx[to] // by default false
        ) {
            require(
                amount <= maxTxAmount,
                "Transfer amount exceeds the maxTxAmount."
            );
        }

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeSwap;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            // add liquidity
            swapAndLiquify(contractTokenBalance);
        }
        
        // indicates if fee should be deducted from transfer
        bool takeFee = true;
        
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }
        
        // transfer amount, it will take tax, dev fee, liquidity fee
        _tokenTransfer(from, to, amount, takeFee);
    }
    
    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // balance token fees based on variable percents
        uint256 totalRedirectTokenFee = _devFee.add(_liquidityFee);
        if (totalRedirectTokenFee == 0) return;
        uint256 liquidityTokenBalance = contractTokenBalance.mul(_liquidityFee).div(totalRedirectTokenFee);
        uint256 devTokenBalance = contractTokenBalance.mul(_devFee).div(totalRedirectTokenFee);
        
        // split the liquidity balance into halves
        uint256 halfLiquidity = liquidityTokenBalance.div(2);
        
        // 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 fee events include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;
        
        if (liquidityTokenBalance == 0 && devTokenBalance == 0) return;
        
        // swap tokens for ETH
        swapTokensForEth(devTokenBalance.add(halfLiquidity));
        
        uint256 newBalance = address(this).balance.sub(initialBalance);
        
        if(newBalance > 0) {
            // rebalance ETH fees proportionally to half the liquidity
            uint256 totalRedirectEthFee = _devFee.add(_liquidityFee.div(2));
            uint256 liquidityEthBalance = newBalance.mul(_liquidityFee.div(2)).div(totalRedirectEthFee);
            uint256 devEthBalance = newBalance.mul(_devFee).div(totalRedirectEthFee);

            //
            // for liquidity
            // add to uniswap
            //
    
            addLiquidity(halfLiquidity, liquidityEthBalance);
            
            //
            // for dev fee
            // send to the dev address
            //
            
            sendEthToDevAddress(devEthBalance);
            
            emit SwapAndLiquify(contractTokenBalance, liquidityEthBalance, devEthBalance);
        }
    } 
    
    function sendEthToDevAddress(uint256 amount) private {
        _devWallet.transfer(amount);
    }

    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
            owner(),
            block.timestamp
        );
    }

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
        if(!takeFee) {
            removeAllFee();
        }
        
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
        
        if(!takeFee) {
            restoreAllFee();
        }
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tDev, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeDev(tDev);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tDev, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _takeLiquidity(tLiquidity);
        _takeDev(tDev);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tDev, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _takeLiquidity(tLiquidity);
        _takeDev(tDev);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tDev, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _takeLiquidity(tLiquidity);
        _takeDev(tDev);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tDev, uint256 tLiquidity) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tDev, tLiquidity, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tDev, tLiquidity);
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tDev = calculateDevFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tDev).sub(tLiquidity);
        return (tTransferAmount, tFee, tDev, tLiquidity);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tDev, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rDev = tDev.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rDev).sub(rLiquidity);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
    
    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate =  _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if(_isExcluded[address(this)]) {
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
        }
    }
    
    function _takeDev(uint256 tDev) private {
        uint256 currentRate =  _getRate();
        uint256 rDev = tDev.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rDev);
        if(_isExcluded[address(this)]) {
            _tOwned[address(this)] = _tOwned[address(this)].add(tDev);
        }
    }
    
    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(100);
    }

    function calculateDevFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_devFee).div(100);
    }

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(100);
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _devFee == 0 && _liquidityFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousDevFee = _devFee;
        _previousLiquidityFee = _liquidityFee;
        
        _taxFee = 0;
        _devFee = 0;
        _liquidityFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _devFee = _previousDevFee;
        _liquidityFee = _previousLiquidityFee;
    }
    
    function manualSwap() external onlyOwner() {
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    function manualSend() external onlyOwner() {
        uint256 contractEthBalance = address(this).balance;
        sendEthToDevAddress(contractEthBalance);
    }
    
    function isExcludedFromFee(address account) external view returns(bool) {
        return _isExcludedFromFee[account];
    }
    
    function excludeFromFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    function excludeFromMaxTx(address account) external onlyOwner {
        _isExcludedFromMaxTx[account] = true;
    }
    
    function includeInMaxTx(address account) external onlyOwner {
        _isExcludedFromMaxTx[account] = false;
    }

    // for 0.5% input 5, for 1% input 10
    function setMaxTxPercent(uint256 newMaxTx) external onlyOwner {
        require(newMaxTx >= 5, "Max TX should be above 0.5%");
        maxTxAmount = _tTotal.mul(newMaxTx).div(1000);
    }
    
    function setTaxFeePercent(uint256 taxFee) external onlyOwner {
         require(taxFee <= 8, "Maximum fee limit is 8 percent");
        _taxFee = taxFee;
    }
    
    function setDevFeePercent(uint256 devFee) external onlyOwner {
         require(devFee <= 8, "Maximum fee limit is 8 percent");
        _devFee = devFee;
    }
    
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner {
        require(liquidityFee <= 8, "Maximum fee limit is 8 percent");
        _liquidityFee = liquidityFee;
    }
    
    function setMinTokensBeforeSwap(uint256 tokensBeforeSwap) external onlyOwner {
        minTokensBeforeSwap = tokensBeforeSwap * 10**9;
    }

    function setSwapAndLiquifyEnabled(bool _enabled) external onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
    // to receive ETH from uniswapV2Router when swaping
    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":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":"liquidityEthBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"devEthBalance","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":"_devFee","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":"_taxFee","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":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"}],"name":"expectedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","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":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","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":"tAmount","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":"devFee","type":"uint256"}],"name":"setDevFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokensBeforeSwap","type":"uint256"}],"name":"setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","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":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","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"}]

6080604052683635c9adc5dea000006008819055620000219060001962000741565b6200002f90600019620006ea565b600955604080518082019091526007808252664d6f6220496e7560c81b60209092019182526200006291600b916200058c565b506040805180820190915260038082526226a7a160e91b60209092019182526200008f91600c916200058c565b50600d8054600960ff199091161790556001600e819055600f556008601081905560118190556005601281905560135554620000f6906103e890620000e290601462000472602090811b6200174617901c565b6200050660201b620017c51790919060201c565b601455601580546001600160a01b0319167340ff056ed683cf99c8e6fe51568475d81e2d4be61790556017805460ff60a81b1916600160a81b179055670de0b6b3a76400006018553480156200014b57600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506009543360009081526001602090815260409182902092909255805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a01559260048083019392829003018186803b158015620001ef57600080fd5b505afa15801562000204573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022a919062000632565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027357600080fd5b505afa15801562000288573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ae919062000632565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620002f757600080fd5b505af11580156200030c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000332919062000632565b601780546001600160a01b03199081166001600160a01b0393841617909155601680549091169183169190911790556001600460006200037a6000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526004909252812080549092166001908117909255600590620003d36000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260059092529020805490911660011790556200041b3390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6008546040516200046391815260200190565b60405180910390a35062000784565b600082620004835750600062000500565b6000620004918385620006c8565b905082620004a08583620006b1565b14620004fd5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b90505b92915050565b6000620004fd83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200055060201b60201c565b60008183620005745760405162461bcd60e51b8152600401620004f491906200065b565b506000620005838486620006b1565b95945050505050565b8280546200059a9062000704565b90600052602060002090601f016020900481019282620005be576000855562000609565b82601f10620005d957805160ff191683800117855562000609565b8280016001018555821562000609579182015b8281111562000609578251825591602001919060010190620005ec565b50620006179291506200061b565b5090565b5b808211156200061757600081556001016200061c565b60006020828403121562000644578081fd5b81516001600160a01b0381168114620004fd578182fd5b6000602080835283518082850152825b8181101562000689578581018301518582016040015282016200066b565b818111156200069b5783604083870101525b50601f01601f1916929092016040019392505050565b600082620006c357620006c36200076e565b500490565b6000816000190483118215151615620006e557620006e562000758565b500290565b600082821015620006ff57620006ff62000758565b500390565b600181811c908216806200071957607f821691505b602082108114156200073b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000826200075357620007536200076e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b612d1980620007946000396000f3fe6080604052600436106102605760003560e01c806351bc3c851161014457806395d89b41116100b6578063d543dbeb1161007a578063d543dbeb1461071f578063db4cf1e01461073f578063dd62ed3e1461075f578063ea2f0b37146107a5578063f2fde38b146107c5578063f4293890146107e557600080fd5b806395d89b4114610694578063a457c2d7146106a9578063a9059cbb146106c9578063aa45026b146106e9578063c49b9a80146106ff57600080fd5b8063715018a611610108578063715018a6146105d257806377e5006f146105e757806388f82020146106075780638c0b5e22146106405780638da5cb5b146106565780638ee88c531461067457600080fd5b806351bc3c851461052e57806352390c02146105435780635342acb4146105635780636bc87c3a1461059c57806370a08231146105b257600080fd5b80633685d419116101dd57806341cb87fc116101a157806341cb87fc1461046d578063437823ec1461048d5780634549b039146104ad57806348a46473146104cd57806349bd5a5e146104ed5780634a74bb021461050d57600080fd5b80633685d419146103d7578063379e2919146103f757806339509351146104175780633b124fe7146104375780633bd5d1731461044d57600080fd5b806318160ddd1161022457806318160ddd1461034057806318621fe51461035557806323b872dd146103755780632d83811914610395578063313ce567146103b557600080fd5b8063061c82d01461026c57806306fdde031461028e578063095ea7b3146102b957806313114a9d146102e95780631694505e1461030857600080fd5b3661026757005b600080fd5b34801561027857600080fd5b5061028c610287366004612a08565b6107fa565b005b34801561029a57600080fd5b506102a3610853565b6040516102b09190612a78565b60405180910390f35b3480156102c557600080fd5b506102d96102d43660046129c3565b6108e5565b60405190151581526020016102b0565b3480156102f557600080fd5b50600a545b6040519081526020016102b0565b34801561031457600080fd5b50601654610328906001600160a01b031681565b6040516001600160a01b0390911681526020016102b0565b34801561034c57600080fd5b506008546102fa565b34801561036157600080fd5b5061028c610370366004612913565b6108fc565b34801561038157600080fd5b506102d9610390366004612983565b610947565b3480156103a157600080fd5b506102fa6103b0366004612a08565b6109b0565b3480156103c157600080fd5b50600d5460405160ff90911681526020016102b0565b3480156103e357600080fd5b5061028c6103f2366004612913565b610a34565b34801561040357600080fd5b5061028c610412366004612a08565b610c23565b34801561042357600080fd5b506102d96104323660046129c3565b610c73565b34801561044357600080fd5b506102fa600e5481565b34801561045957600080fd5b5061028c610468366004612a08565b610ca9565b34801561047957600080fd5b5061028c610488366004612913565b610d95565b34801561049957600080fd5b5061028c6104a8366004612913565b610f67565b3480156104b957600080fd5b506102fa6104c8366004612a20565b610fb5565b3480156104d957600080fd5b5061028c6104e8366004612a08565b611044565b3480156104f957600080fd5b50601754610328906001600160a01b031681565b34801561051957600080fd5b506017546102d990600160a81b900460ff1681565b34801561053a57600080fd5b5061028c611082565b34801561054f57600080fd5b5061028c61055e366004612913565b6110c5565b34801561056f57600080fd5b506102d961057e366004612913565b6001600160a01b031660009081526004602052604090205460ff1690565b3480156105a857600080fd5b506102fa60125481565b3480156105be57600080fd5b506102fa6105cd366004612913565b611218565b3480156105de57600080fd5b5061028c611277565b3480156105f357600080fd5b506102fa610602366004612913565b6112eb565b34801561061357600080fd5b506102d9610622366004612913565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561064c57600080fd5b506102fa60145481565b34801561066257600080fd5b506000546001600160a01b0316610328565b34801561068057600080fd5b5061028c61068f366004612a08565b6113b6565b3480156106a057600080fd5b506102a3611406565b3480156106b557600080fd5b506102d96106c43660046129c3565b611415565b3480156106d557600080fd5b506102d96106e43660046129c3565b611464565b3480156106f557600080fd5b506102fa60105481565b34801561070b57600080fd5b5061028c61071a3660046129ee565b611471565b34801561072b57600080fd5b5061028c61073a366004612a08565b6114f3565b34801561074b57600080fd5b5061028c61075a366004612913565b61158f565b34801561076b57600080fd5b506102fa61077a36600461294b565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b3480156107b157600080fd5b5061028c6107c0366004612913565b6115dd565b3480156107d157600080fd5b5061028c6107e0366004612913565b611628565b3480156107f157600080fd5b5061028c611712565b6000546001600160a01b0316331461082d5760405162461bcd60e51b815260040161082490612acb565b60405180910390fd5b600881111561084e5760405162461bcd60e51b815260040161082490612b00565b600e55565b6060600b805461086290612c15565b80601f016020809104026020016040519081016040528092919081815260200182805461088e90612c15565b80156108db5780601f106108b0576101008083540402835291602001916108db565b820191906000526020600020905b8154815290600101906020018083116108be57829003601f168201915b5050505050905090565b60006108f2338484611807565b5060015b92915050565b6000546001600160a01b031633146109265760405162461bcd60e51b815260040161082490612acb565b6001600160a01b03166000908152600560205260409020805460ff19169055565b600061095484848461188e565b6109a684336109a185604051806060016040528060288152602001612c97602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190611b28565b611807565b5060019392505050565b6000600954821115610a175760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610824565b6000610a21611b62565b9050610a2d83826117c5565b9392505050565b6000546001600160a01b03163314610a5e5760405162461bcd60e51b815260040161082490612acb565b6001600160a01b03811660009081526006602052604090205460ff16610ac65760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610824565b60005b600754811015610c1f57816001600160a01b031660078281548110610afe57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610c0d5760078054610b2990600190612bfe565b81548110610b4757634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600780546001600160a01b039092169183908110610b8157634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600690925220805460ff191690556007805480610be757634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610c1781612c50565b915050610ac9565b5050565b6000546001600160a01b03163314610c4d5760405162461bcd60e51b815260040161082490612acb565b6008811115610c6e5760405162461bcd60e51b815260040161082490612b00565b601055565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916108f29185906109a19086611b85565b3360008181526006602052604090205460ff1615610d1e5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610824565b6000610d2983611be4565b5050506001600160a01b038616600090815260016020526040902054939450610d5793925084915050611c3f565b6001600160a01b038316600090815260016020526040902055600954610d7d9082611c3f565b600955600a54610d8d9084611b85565b600a55505050565b6000546001600160a01b03163314610dbf5760405162461bcd60e51b815260040161082490612acb565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610dfd57600080fd5b505afa158015610e11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e35919061292f565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610e7d57600080fd5b505afa158015610e91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb5919061292f565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015610efd57600080fd5b505af1158015610f11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f35919061292f565b601780546001600160a01b039283166001600160a01b0319918216179091556016805493909216921691909117905550565b6000546001600160a01b03163314610f915760405162461bcd60e51b815260040161082490612acb565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b60006008548311156110095760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610824565b8161102957600061101984611be4565b509496506108f695505050505050565b600061103484611be4565b509396506108f695505050505050565b6000546001600160a01b0316331461106e5760405162461bcd60e51b815260040161082490612acb565b61107c81633b9aca00612bdf565b60185550565b6000546001600160a01b031633146110ac5760405162461bcd60e51b815260040161082490612acb565b60006110b730611218565b90506110c281611c81565b50565b6000546001600160a01b031633146110ef5760405162461bcd60e51b815260040161082490612acb565b6001600160a01b03811660009081526006602052604090205460ff16156111585760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610824565b6001600160a01b038116600090815260016020526040902054156111b2576001600160a01b038116600090815260016020526040902054611198906109b0565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6001600160a01b03811660009081526006602052604081205460ff161561125557506001600160a01b031660009081526002602052604090205490565b6001600160a01b0382166000908152600160205260409020546108f6906109b0565b6000546001600160a01b031633146112a15760405162461bcd60e51b815260040161082490612acb565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60004782826112f982611218565b90506000805b600754811015611365576113518261134b6007848154811061133157634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316611218565b90611b85565b91508061135d81612c50565b9150506112ff565b506017546000906113ab9061139b9084906113959061138c906001600160a01b0316611218565b60085490611c3f565b90611c3f565b6113a58588611746565b906117c5565b979650505050505050565b6000546001600160a01b031633146113e05760405162461bcd60e51b815260040161082490612acb565b60088111156114015760405162461bcd60e51b815260040161082490612b00565b601255565b6060600c805461086290612c15565b60006108f233846109a185604051806060016040528060258152602001612cbf602591393360009081526003602090815260408083206001600160a01b038d1684529091529020549190611b28565b60006108f233848461188e565b6000546001600160a01b0316331461149b5760405162461bcd60e51b815260040161082490612acb565b60178054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906114e890831515815260200190565b60405180910390a150565b6000546001600160a01b0316331461151d5760405162461bcd60e51b815260040161082490612acb565b600581101561156e5760405162461bcd60e51b815260206004820152601b60248201527f4d61782054582073686f756c642062652061626f766520302e352500000000006044820152606401610824565b6115896103e86113a58360085461174690919063ffffffff16565b60145550565b6000546001600160a01b031633146115b95760405162461bcd60e51b815260040161082490612acb565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6000546001600160a01b031633146116075760405162461bcd60e51b815260040161082490612acb565b6001600160a01b03166000908152600460205260409020805460ff19169055565b6000546001600160a01b031633146116525760405162461bcd60e51b815260040161082490612acb565b6001600160a01b0381166116b75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610824565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461173c5760405162461bcd60e51b815260040161082490612acb565b476110c281611dfe565b600082611755575060006108f6565b60006117618385612bdf565b90508261176e8583612bbf565b14610a2d5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610824565b6000610a2d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e38565b6001600160a01b03831661181a57600080fd5b6001600160a01b03821661182d57600080fd5b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166118f25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610824565b6001600160a01b0382166119545760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610824565b600081116119b65760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610824565b6001600160a01b03831660009081526005602052604090205460ff161580156119f857506001600160a01b03821660009081526005602052604090205460ff16155b15611a6057601454811115611a605760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610824565b6000611a6b30611218565b60185490915081108015908190611a8c5750601754600160a01b900460ff16155b8015611aa657506017546001600160a01b03868116911614155b8015611abb5750601754600160a81b900460ff165b15611ac957611ac982611e66565b6001600160a01b03851660009081526004602052604090205460019060ff1680611b0b57506001600160a01b03851660009081526004602052604090205460ff165b15611b14575060005b611b2086868684611ffe565b505050505050565b60008184841115611b4c5760405162461bcd60e51b81526004016108249190612a78565b506000611b598486612bfe565b95945050505050565b6000806000611b6f612181565b9092509050611b7e82826117c5565b9250505090565b600080611b928385612ba7565b905083811015610a2d5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610824565b6000806000806000806000806000806000611bfe8c61233b565b93509350935093506000806000611c1f8f878787611c1a611b62565b61238a565b919f509d509b509599509397509195509350505050919395979092949650565b6000610a2d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b28565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611cc457634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611d1857600080fd5b505afa158015611d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d50919061292f565b81600181518110611d7157634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601654611d979130911684611807565b60165460405163791ac94760e01b81526001600160a01b039091169063791ac94790611dd0908590600090869030904290600401612b37565b600060405180830381600087803b158015611dea57600080fd5b505af1158015611b20573d6000803e3d6000fd5b6015546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610c1f573d6000803e3d6000fd5b60008183611e595760405162461bcd60e51b81526004016108249190612a78565b506000611b598486612bbf565b6017805460ff60a01b1916600160a01b179055601254601054600091611e8c9190611b85565b905080611e995750611fee565b6000611eb4826113a56012548661174690919063ffffffff16565b90506000611ed1836113a56010548761174690919063ffffffff16565b90506000611ee08360026117c5565b90504783158015611eef575082155b15611efe575050505050611fee565b611f10611f0b8484611b85565b611c81565b6000611f1c4783611c3f565b90508015611fe7576000611f48611f3f60026012546117c590919063ffffffff16565b60105490611b85565b90506000611f70826113a5611f6960026012546117c590919063ffffffff16565b8690611746565b90506000611f8d836113a56010548761174690919063ffffffff16565b9050611f9986836123ec565b611fa281611dfe565b604080518b8152602081018490529081018290527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050505b5050505050505b506017805460ff60a01b19169055565b8061200b5761200b6124d0565b6001600160a01b03841660009081526006602052604090205460ff16801561204c57506001600160a01b03831660009081526006602052604090205460ff16155b156120615761205c848484612515565b61215f565b6001600160a01b03841660009081526006602052604090205460ff161580156120a257506001600160a01b03831660009081526006602052604090205460ff165b156120b25761205c84848461265b565b6001600160a01b03841660009081526006602052604090205460ff161580156120f457506001600160a01b03831660009081526006602052604090205460ff16155b156121045761205c84848461271a565b6001600160a01b03841660009081526006602052604090205460ff16801561214457506001600160a01b03831660009081526006602052604090205460ff165b156121545761205c848484612774565b61215f84848461271a565b8061217b5761217b600f54600e55601154601055601354601255565b50505050565b6009546008546000918291825b60075481101561230b578260016000600784815481106121be57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612237575081600260006007848154811061221057634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561224d57600954600854945094505050509091565b6122a1600160006007848154811061227557634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611c3f565b92506122f760026000600784815481106122cb57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611c3f565b91508061230381612c50565b91505061218e565b5060085460095461231b916117c5565b821015612332576009546008549350935050509091565b90939092509050565b600080600080600061234c866127fd565b9050600061235987612819565b9050600061236688612835565b9050600061237a8261139585818d89611c3f565b9993985091965094509092505050565b60008080806123998986611746565b905060006123a78987611746565b905060006123b58988611746565b905060006123c38989611746565b905060006123d78261139585818989611c3f565b949d949c50929a509298505050505050505050565b6016546124049030906001600160a01b031684611807565b6016546001600160a01b031663f305d71982308560008061242d6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561249057600080fd5b505af11580156124a4573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906124c99190612a4b565b5050505050565b600e541580156124e05750601054155b80156124ec5750601254155b156124f357565b600e8054600f5560108054601155601280546013556000928390559082905555565b600080600080600080600061252988611be4565b965096509650965096509650965061256f88600260008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611c3f90919063ffffffff16565b6001600160a01b038b1660009081526002602090815260408083209390935560019052205461259e9088611c3f565b6001600160a01b03808c1660009081526001602052604080822093909355908b16815220546125cd9087611b85565b6001600160a01b038a166000908152600160205260409020556125ef81612851565b6125f882612851565b61260285846128da565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161264791815260200190565b60405180910390a350505050505050505050565b600080600080600080600061266f88611be4565b96509650965096509650965096506126b587600160008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611c3f90919063ffffffff16565b6001600160a01b03808c16600090815260016020908152604080832094909455918c168152600290915220546126eb9085611b85565b6001600160a01b038a166000908152600260209081526040808320939093556001905220546125cd9087611b85565b600080600080600080600061272e88611be4565b965096509650965096509650965061259e87600160008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611c3f90919063ffffffff16565b600080600080600080600061278888611be4565b96509650965096509650965096506127ce88600260008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611c3f90919063ffffffff16565b6001600160a01b038b166000908152600260209081526040808320939093556001905220546126b59088611c3f565b60006108f660646113a5600e548561174690919063ffffffff16565b60006108f660646113a56010548561174690919063ffffffff16565b60006108f660646113a56012548561174690919063ffffffff16565b600061285b611b62565b905060006128698383611746565b306000908152600160205260409020549091506128869082611b85565b3060009081526001602090815260408083209390935560069052205460ff16156128d557306000908152600260205260409020546128c49084611b85565b306000908152600260205260409020555b505050565b6009546128e79083611c3f565b600955600a546128f79082611b85565b600a555050565b8035801515811461290e57600080fd5b919050565b600060208284031215612924578081fd5b8135610a2d81612c81565b600060208284031215612940578081fd5b8151610a2d81612c81565b6000806040838503121561295d578081fd5b823561296881612c81565b9150602083013561297881612c81565b809150509250929050565b600080600060608486031215612997578081fd5b83356129a281612c81565b925060208401356129b281612c81565b929592945050506040919091013590565b600080604083850312156129d5578182fd5b82356129e081612c81565b946020939093013593505050565b6000602082840312156129ff578081fd5b610a2d826128fe565b600060208284031215612a19578081fd5b5035919050565b60008060408385031215612a32578182fd5b82359150612a42602084016128fe565b90509250929050565b600080600060608486031215612a5f578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b81811015612aa457858101830151858201604001528201612a88565b81811115612ab55783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f4d6178696d756d20666565206c696d697420697320382070657263656e740000604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b81811015612b865784516001600160a01b031683529383019391830191600101612b61565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612bba57612bba612c6b565b500190565b600082612bda57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612bf957612bf9612c6b565b500290565b600082821015612c1057612c10612c6b565b500390565b600181811c90821680612c2957607f821691505b60208210811415612c4a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c6457612c64612c6b565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146110c257600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208f73b499bdc3df1a60b968f40da04b45468fd1901c3aa890846a76f5509ab32564736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102605760003560e01c806351bc3c851161014457806395d89b41116100b6578063d543dbeb1161007a578063d543dbeb1461071f578063db4cf1e01461073f578063dd62ed3e1461075f578063ea2f0b37146107a5578063f2fde38b146107c5578063f4293890146107e557600080fd5b806395d89b4114610694578063a457c2d7146106a9578063a9059cbb146106c9578063aa45026b146106e9578063c49b9a80146106ff57600080fd5b8063715018a611610108578063715018a6146105d257806377e5006f146105e757806388f82020146106075780638c0b5e22146106405780638da5cb5b146106565780638ee88c531461067457600080fd5b806351bc3c851461052e57806352390c02146105435780635342acb4146105635780636bc87c3a1461059c57806370a08231146105b257600080fd5b80633685d419116101dd57806341cb87fc116101a157806341cb87fc1461046d578063437823ec1461048d5780634549b039146104ad57806348a46473146104cd57806349bd5a5e146104ed5780634a74bb021461050d57600080fd5b80633685d419146103d7578063379e2919146103f757806339509351146104175780633b124fe7146104375780633bd5d1731461044d57600080fd5b806318160ddd1161022457806318160ddd1461034057806318621fe51461035557806323b872dd146103755780632d83811914610395578063313ce567146103b557600080fd5b8063061c82d01461026c57806306fdde031461028e578063095ea7b3146102b957806313114a9d146102e95780631694505e1461030857600080fd5b3661026757005b600080fd5b34801561027857600080fd5b5061028c610287366004612a08565b6107fa565b005b34801561029a57600080fd5b506102a3610853565b6040516102b09190612a78565b60405180910390f35b3480156102c557600080fd5b506102d96102d43660046129c3565b6108e5565b60405190151581526020016102b0565b3480156102f557600080fd5b50600a545b6040519081526020016102b0565b34801561031457600080fd5b50601654610328906001600160a01b031681565b6040516001600160a01b0390911681526020016102b0565b34801561034c57600080fd5b506008546102fa565b34801561036157600080fd5b5061028c610370366004612913565b6108fc565b34801561038157600080fd5b506102d9610390366004612983565b610947565b3480156103a157600080fd5b506102fa6103b0366004612a08565b6109b0565b3480156103c157600080fd5b50600d5460405160ff90911681526020016102b0565b3480156103e357600080fd5b5061028c6103f2366004612913565b610a34565b34801561040357600080fd5b5061028c610412366004612a08565b610c23565b34801561042357600080fd5b506102d96104323660046129c3565b610c73565b34801561044357600080fd5b506102fa600e5481565b34801561045957600080fd5b5061028c610468366004612a08565b610ca9565b34801561047957600080fd5b5061028c610488366004612913565b610d95565b34801561049957600080fd5b5061028c6104a8366004612913565b610f67565b3480156104b957600080fd5b506102fa6104c8366004612a20565b610fb5565b3480156104d957600080fd5b5061028c6104e8366004612a08565b611044565b3480156104f957600080fd5b50601754610328906001600160a01b031681565b34801561051957600080fd5b506017546102d990600160a81b900460ff1681565b34801561053a57600080fd5b5061028c611082565b34801561054f57600080fd5b5061028c61055e366004612913565b6110c5565b34801561056f57600080fd5b506102d961057e366004612913565b6001600160a01b031660009081526004602052604090205460ff1690565b3480156105a857600080fd5b506102fa60125481565b3480156105be57600080fd5b506102fa6105cd366004612913565b611218565b3480156105de57600080fd5b5061028c611277565b3480156105f357600080fd5b506102fa610602366004612913565b6112eb565b34801561061357600080fd5b506102d9610622366004612913565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561064c57600080fd5b506102fa60145481565b34801561066257600080fd5b506000546001600160a01b0316610328565b34801561068057600080fd5b5061028c61068f366004612a08565b6113b6565b3480156106a057600080fd5b506102a3611406565b3480156106b557600080fd5b506102d96106c43660046129c3565b611415565b3480156106d557600080fd5b506102d96106e43660046129c3565b611464565b3480156106f557600080fd5b506102fa60105481565b34801561070b57600080fd5b5061028c61071a3660046129ee565b611471565b34801561072b57600080fd5b5061028c61073a366004612a08565b6114f3565b34801561074b57600080fd5b5061028c61075a366004612913565b61158f565b34801561076b57600080fd5b506102fa61077a36600461294b565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b3480156107b157600080fd5b5061028c6107c0366004612913565b6115dd565b3480156107d157600080fd5b5061028c6107e0366004612913565b611628565b3480156107f157600080fd5b5061028c611712565b6000546001600160a01b0316331461082d5760405162461bcd60e51b815260040161082490612acb565b60405180910390fd5b600881111561084e5760405162461bcd60e51b815260040161082490612b00565b600e55565b6060600b805461086290612c15565b80601f016020809104026020016040519081016040528092919081815260200182805461088e90612c15565b80156108db5780601f106108b0576101008083540402835291602001916108db565b820191906000526020600020905b8154815290600101906020018083116108be57829003601f168201915b5050505050905090565b60006108f2338484611807565b5060015b92915050565b6000546001600160a01b031633146109265760405162461bcd60e51b815260040161082490612acb565b6001600160a01b03166000908152600560205260409020805460ff19169055565b600061095484848461188e565b6109a684336109a185604051806060016040528060288152602001612c97602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190611b28565b611807565b5060019392505050565b6000600954821115610a175760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610824565b6000610a21611b62565b9050610a2d83826117c5565b9392505050565b6000546001600160a01b03163314610a5e5760405162461bcd60e51b815260040161082490612acb565b6001600160a01b03811660009081526006602052604090205460ff16610ac65760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610824565b60005b600754811015610c1f57816001600160a01b031660078281548110610afe57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610c0d5760078054610b2990600190612bfe565b81548110610b4757634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600780546001600160a01b039092169183908110610b8157634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600690925220805460ff191690556007805480610be757634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610c1781612c50565b915050610ac9565b5050565b6000546001600160a01b03163314610c4d5760405162461bcd60e51b815260040161082490612acb565b6008811115610c6e5760405162461bcd60e51b815260040161082490612b00565b601055565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916108f29185906109a19086611b85565b3360008181526006602052604090205460ff1615610d1e5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610824565b6000610d2983611be4565b5050506001600160a01b038616600090815260016020526040902054939450610d5793925084915050611c3f565b6001600160a01b038316600090815260016020526040902055600954610d7d9082611c3f565b600955600a54610d8d9084611b85565b600a55505050565b6000546001600160a01b03163314610dbf5760405162461bcd60e51b815260040161082490612acb565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610dfd57600080fd5b505afa158015610e11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e35919061292f565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610e7d57600080fd5b505afa158015610e91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb5919061292f565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015610efd57600080fd5b505af1158015610f11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f35919061292f565b601780546001600160a01b039283166001600160a01b0319918216179091556016805493909216921691909117905550565b6000546001600160a01b03163314610f915760405162461bcd60e51b815260040161082490612acb565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b60006008548311156110095760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610824565b8161102957600061101984611be4565b509496506108f695505050505050565b600061103484611be4565b509396506108f695505050505050565b6000546001600160a01b0316331461106e5760405162461bcd60e51b815260040161082490612acb565b61107c81633b9aca00612bdf565b60185550565b6000546001600160a01b031633146110ac5760405162461bcd60e51b815260040161082490612acb565b60006110b730611218565b90506110c281611c81565b50565b6000546001600160a01b031633146110ef5760405162461bcd60e51b815260040161082490612acb565b6001600160a01b03811660009081526006602052604090205460ff16156111585760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610824565b6001600160a01b038116600090815260016020526040902054156111b2576001600160a01b038116600090815260016020526040902054611198906109b0565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6001600160a01b03811660009081526006602052604081205460ff161561125557506001600160a01b031660009081526002602052604090205490565b6001600160a01b0382166000908152600160205260409020546108f6906109b0565b6000546001600160a01b031633146112a15760405162461bcd60e51b815260040161082490612acb565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60004782826112f982611218565b90506000805b600754811015611365576113518261134b6007848154811061133157634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316611218565b90611b85565b91508061135d81612c50565b9150506112ff565b506017546000906113ab9061139b9084906113959061138c906001600160a01b0316611218565b60085490611c3f565b90611c3f565b6113a58588611746565b906117c5565b979650505050505050565b6000546001600160a01b031633146113e05760405162461bcd60e51b815260040161082490612acb565b60088111156114015760405162461bcd60e51b815260040161082490612b00565b601255565b6060600c805461086290612c15565b60006108f233846109a185604051806060016040528060258152602001612cbf602591393360009081526003602090815260408083206001600160a01b038d1684529091529020549190611b28565b60006108f233848461188e565b6000546001600160a01b0316331461149b5760405162461bcd60e51b815260040161082490612acb565b60178054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906114e890831515815260200190565b60405180910390a150565b6000546001600160a01b0316331461151d5760405162461bcd60e51b815260040161082490612acb565b600581101561156e5760405162461bcd60e51b815260206004820152601b60248201527f4d61782054582073686f756c642062652061626f766520302e352500000000006044820152606401610824565b6115896103e86113a58360085461174690919063ffffffff16565b60145550565b6000546001600160a01b031633146115b95760405162461bcd60e51b815260040161082490612acb565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6000546001600160a01b031633146116075760405162461bcd60e51b815260040161082490612acb565b6001600160a01b03166000908152600460205260409020805460ff19169055565b6000546001600160a01b031633146116525760405162461bcd60e51b815260040161082490612acb565b6001600160a01b0381166116b75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610824565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461173c5760405162461bcd60e51b815260040161082490612acb565b476110c281611dfe565b600082611755575060006108f6565b60006117618385612bdf565b90508261176e8583612bbf565b14610a2d5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610824565b6000610a2d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e38565b6001600160a01b03831661181a57600080fd5b6001600160a01b03821661182d57600080fd5b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166118f25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610824565b6001600160a01b0382166119545760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610824565b600081116119b65760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610824565b6001600160a01b03831660009081526005602052604090205460ff161580156119f857506001600160a01b03821660009081526005602052604090205460ff16155b15611a6057601454811115611a605760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610824565b6000611a6b30611218565b60185490915081108015908190611a8c5750601754600160a01b900460ff16155b8015611aa657506017546001600160a01b03868116911614155b8015611abb5750601754600160a81b900460ff165b15611ac957611ac982611e66565b6001600160a01b03851660009081526004602052604090205460019060ff1680611b0b57506001600160a01b03851660009081526004602052604090205460ff165b15611b14575060005b611b2086868684611ffe565b505050505050565b60008184841115611b4c5760405162461bcd60e51b81526004016108249190612a78565b506000611b598486612bfe565b95945050505050565b6000806000611b6f612181565b9092509050611b7e82826117c5565b9250505090565b600080611b928385612ba7565b905083811015610a2d5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610824565b6000806000806000806000806000806000611bfe8c61233b565b93509350935093506000806000611c1f8f878787611c1a611b62565b61238a565b919f509d509b509599509397509195509350505050919395979092949650565b6000610a2d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b28565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611cc457634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611d1857600080fd5b505afa158015611d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d50919061292f565b81600181518110611d7157634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601654611d979130911684611807565b60165460405163791ac94760e01b81526001600160a01b039091169063791ac94790611dd0908590600090869030904290600401612b37565b600060405180830381600087803b158015611dea57600080fd5b505af1158015611b20573d6000803e3d6000fd5b6015546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610c1f573d6000803e3d6000fd5b60008183611e595760405162461bcd60e51b81526004016108249190612a78565b506000611b598486612bbf565b6017805460ff60a01b1916600160a01b179055601254601054600091611e8c9190611b85565b905080611e995750611fee565b6000611eb4826113a56012548661174690919063ffffffff16565b90506000611ed1836113a56010548761174690919063ffffffff16565b90506000611ee08360026117c5565b90504783158015611eef575082155b15611efe575050505050611fee565b611f10611f0b8484611b85565b611c81565b6000611f1c4783611c3f565b90508015611fe7576000611f48611f3f60026012546117c590919063ffffffff16565b60105490611b85565b90506000611f70826113a5611f6960026012546117c590919063ffffffff16565b8690611746565b90506000611f8d836113a56010548761174690919063ffffffff16565b9050611f9986836123ec565b611fa281611dfe565b604080518b8152602081018490529081018290527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050505b5050505050505b506017805460ff60a01b19169055565b8061200b5761200b6124d0565b6001600160a01b03841660009081526006602052604090205460ff16801561204c57506001600160a01b03831660009081526006602052604090205460ff16155b156120615761205c848484612515565b61215f565b6001600160a01b03841660009081526006602052604090205460ff161580156120a257506001600160a01b03831660009081526006602052604090205460ff165b156120b25761205c84848461265b565b6001600160a01b03841660009081526006602052604090205460ff161580156120f457506001600160a01b03831660009081526006602052604090205460ff16155b156121045761205c84848461271a565b6001600160a01b03841660009081526006602052604090205460ff16801561214457506001600160a01b03831660009081526006602052604090205460ff165b156121545761205c848484612774565b61215f84848461271a565b8061217b5761217b600f54600e55601154601055601354601255565b50505050565b6009546008546000918291825b60075481101561230b578260016000600784815481106121be57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612237575081600260006007848154811061221057634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561224d57600954600854945094505050509091565b6122a1600160006007848154811061227557634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611c3f565b92506122f760026000600784815481106122cb57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611c3f565b91508061230381612c50565b91505061218e565b5060085460095461231b916117c5565b821015612332576009546008549350935050509091565b90939092509050565b600080600080600061234c866127fd565b9050600061235987612819565b9050600061236688612835565b9050600061237a8261139585818d89611c3f565b9993985091965094509092505050565b60008080806123998986611746565b905060006123a78987611746565b905060006123b58988611746565b905060006123c38989611746565b905060006123d78261139585818989611c3f565b949d949c50929a509298505050505050505050565b6016546124049030906001600160a01b031684611807565b6016546001600160a01b031663f305d71982308560008061242d6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561249057600080fd5b505af11580156124a4573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906124c99190612a4b565b5050505050565b600e541580156124e05750601054155b80156124ec5750601254155b156124f357565b600e8054600f5560108054601155601280546013556000928390559082905555565b600080600080600080600061252988611be4565b965096509650965096509650965061256f88600260008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611c3f90919063ffffffff16565b6001600160a01b038b1660009081526002602090815260408083209390935560019052205461259e9088611c3f565b6001600160a01b03808c1660009081526001602052604080822093909355908b16815220546125cd9087611b85565b6001600160a01b038a166000908152600160205260409020556125ef81612851565b6125f882612851565b61260285846128da565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161264791815260200190565b60405180910390a350505050505050505050565b600080600080600080600061266f88611be4565b96509650965096509650965096506126b587600160008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611c3f90919063ffffffff16565b6001600160a01b03808c16600090815260016020908152604080832094909455918c168152600290915220546126eb9085611b85565b6001600160a01b038a166000908152600260209081526040808320939093556001905220546125cd9087611b85565b600080600080600080600061272e88611be4565b965096509650965096509650965061259e87600160008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611c3f90919063ffffffff16565b600080600080600080600061278888611be4565b96509650965096509650965096506127ce88600260008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611c3f90919063ffffffff16565b6001600160a01b038b166000908152600260209081526040808320939093556001905220546126b59088611c3f565b60006108f660646113a5600e548561174690919063ffffffff16565b60006108f660646113a56010548561174690919063ffffffff16565b60006108f660646113a56012548561174690919063ffffffff16565b600061285b611b62565b905060006128698383611746565b306000908152600160205260409020549091506128869082611b85565b3060009081526001602090815260408083209390935560069052205460ff16156128d557306000908152600260205260409020546128c49084611b85565b306000908152600260205260409020555b505050565b6009546128e79083611c3f565b600955600a546128f79082611b85565b600a555050565b8035801515811461290e57600080fd5b919050565b600060208284031215612924578081fd5b8135610a2d81612c81565b600060208284031215612940578081fd5b8151610a2d81612c81565b6000806040838503121561295d578081fd5b823561296881612c81565b9150602083013561297881612c81565b809150509250929050565b600080600060608486031215612997578081fd5b83356129a281612c81565b925060208401356129b281612c81565b929592945050506040919091013590565b600080604083850312156129d5578182fd5b82356129e081612c81565b946020939093013593505050565b6000602082840312156129ff578081fd5b610a2d826128fe565b600060208284031215612a19578081fd5b5035919050565b60008060408385031215612a32578182fd5b82359150612a42602084016128fe565b90509250929050565b600080600060608486031215612a5f578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b81811015612aa457858101830151858201604001528201612a88565b81811115612ab55783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f4d6178696d756d20666565206c696d697420697320382070657263656e740000604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b81811015612b865784516001600160a01b031683529383019391830191600101612b61565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612bba57612bba612c6b565b500190565b600082612bda57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612bf957612bf9612c6b565b500290565b600082821015612c1057612c10612c6b565b500390565b600181811c90821680612c2957607f821691505b60208210811415612c4a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c6457612c64612c6b565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146110c257600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208f73b499bdc3df1a60b968f40da04b45468fd1901c3aa890846a76f5509ab32564736f6c63430008040033

Deployed Bytecode Sourcemap

17663:22533:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39221:162;;;;;;;;;;-1:-1:-1;39221:162:0;;;;;:::i;:::-;;:::i;:::-;;20724:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21636:161;;;;;;;;;;-1:-1:-1;21636:161:0;;;;;:::i;:::-;;:::i;:::-;;;4179:14:1;;4172:22;4154:41;;4142:2;4127:18;21636:161:0;4109:92:1;22757:87:0;;;;;;;;;;-1:-1:-1;22826:10:0;;22757:87;;;10604:25:1;;;10592:2;10577:18;22757:87:0;10559:76:1;18920:41:0;;;;;;;;;;-1:-1:-1;18920:41:0;;;;-1:-1:-1;;;;;18920:41:0;;;;;;-1:-1:-1;;;;;3049:32:1;;;3031:51;;3019:2;3004:18;18920:41:0;2986:102:1;21001:95:0;;;;;;;;;;-1:-1:-1;21081:7:0;;21001:95;;38853:116;;;;;;;;;;-1:-1:-1;38853:116:0;;;;;:::i;:::-;;:::i;21805:313::-;;;;;;;;;;-1:-1:-1;21805:313:0;;;;;:::i;:::-;;:::i;23684:253::-;;;;;;;;;;-1:-1:-1;23684:253:0;;;;;:::i;:::-;;:::i;20910:83::-;;;;;;;;;;-1:-1:-1;20976:9:0;;20910:83;;20976:9;;;;12094:36:1;;12082:2;12067:18;20910:83:0;12049:87:1;24286:479:0;;;;;;;;;;-1:-1:-1;24286:479:0;;;;;:::i;:::-;;:::i;39395:162::-;;;;;;;;;;-1:-1:-1;39395:162:0;;;;;:::i;:::-;;:::i;22126:218::-;;;;;;;;;;-1:-1:-1;22126:218:0;;;;;:::i;:::-;;:::i;18481:26::-;;;;;;;;;;;;;;;;22852:378;;;;;;;;;;-1:-1:-1;22852:378:0;;;;;:::i;:::-;;:::i;20394:322::-;;;;;;;;;;-1:-1:-1;20394:322:0;;;;;:::i;:::-;;:::i;38475:113::-;;;;;;;;;;-1:-1:-1;38475:113:0;;;;;:::i;:::-;;:::i;23238:438::-;;;;;;;;;;-1:-1:-1;23238:438:0;;;;;:::i;:::-;;:::i;39772:142::-;;;;;;;;;;-1:-1:-1;39772:142:0;;;;;:::i;:::-;;:::i;18968:28::-;;;;;;;;;;-1:-1:-1;18968:28:0;;;;-1:-1:-1;;;;;18968:28:0;;;19037:40;;;;;;;;;;-1:-1:-1;19037:40:0;;;;-1:-1:-1;;;19037:40:0;;;;;;38000:156;;;;;;;;;;;;;:::i;23945:333::-;;;;;;;;;;-1:-1:-1;23945:333:0;;;;;:::i;:::-;;:::i;38338:125::-;;;;;;;;;;-1:-1:-1;38338:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;38428:27:0;38404:4;38428:27;;;:18;:27;;;;;;;;;38338:125;18655:32;;;;;;;;;;;;;;;;21104:198;;;;;;;;;;-1:-1:-1;21104:198:0;;;;;:::i;:::-;;:::i;16339:148::-;;;;;;;;;;;;;:::i;25048:540::-;;;;;;;;;;-1:-1:-1;25048:540:0;;;;;:::i;:::-;;:::i;22629:120::-;;;;;;;;;;-1:-1:-1;22629:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;22721:20:0;22697:4;22721:20;;;:11;:20;;;;;;;;;22629:120;18756:54;;;;;;;;;;;;;;;;15696:79;;;;;;;;;;-1:-1:-1;15734:7:0;15761:6;-1:-1:-1;;;;;15761:6:0;15696:79;;39569:191;;;;;;;;;;-1:-1:-1;39569:191:0;;;;;:::i;:::-;;:::i;20815:87::-;;;;;;;;;;;;;:::i;22352:269::-;;;;;;;;;;-1:-1:-1;22352:269:0;;;;;:::i;:::-;;:::i;21310:167::-;;;;;;;;;;-1:-1:-1;21310:167:0;;;;;:::i;:::-;;:::i;18568:26::-;;;;;;;;;;;;;;;;39922:173;;;;;;;;;;-1:-1:-1;39922:173:0;;;;;:::i;:::-;;:::i;39019:190::-;;;;;;;;;;-1:-1:-1;39019:190:0;;;;;:::i;:::-;;:::i;38724:117::-;;;;;;;;;;-1:-1:-1;38724:117:0;;;;;:::i;:::-;;:::i;21485:143::-;;;;;;;;;;-1:-1:-1;21485:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;21593:18:0;;;21566:7;21593:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21485:143;38600:112;;;;;;;;;;-1:-1:-1;38600:112:0;;;;;:::i;:::-;;:::i;16642:244::-;;;;;;;;;;-1:-1:-1;16642:244:0;;;;;:::i;:::-;;:::i;38164:162::-;;;;;;;;;;;;;:::i;39221:::-;15908:6;;-1:-1:-1;;;;;15908:6:0;247:10;15908:22;15900:67;;;;-1:-1:-1;;;15900:67:0;;;;;;;:::i;:::-;;;;;;;;;39312:1:::1;39302:6;:11;;39294:54;;;;-1:-1:-1::0;;;39294:54:0::1;;;;;;;:::i;:::-;39359:7;:16:::0;39221:162::o;20724:83::-;20761:13;20794:5;20787:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20724:83;:::o;21636:161::-;21711:4;21728:39;247:10;21751:7;21760:6;21728:8;:39::i;:::-;-1:-1:-1;21785:4:0;21636:161;;;;;:::o;38853:116::-;15908:6;;-1:-1:-1;;;;;15908:6:0;247:10;15908:22;15900:67;;;;-1:-1:-1;;;15900:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38924:29:0::1;38956:5;38924:29:::0;;;:20:::1;:29;::::0;;;;:37;;-1:-1:-1;;38924:37:0::1;::::0;;38853:116::o;21805:313::-;21903:4;21920:36;21930:6;21938:9;21949:6;21920:9;:36::i;:::-;21967:121;21976:6;247:10;21998:89;22036:6;21998:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21998:19:0;;;;;;:11;:19;;;;;;;;247:10;21998:33;;;;;;;;;;:37;:89::i;:::-;21967:8;:121::i;:::-;-1:-1:-1;22106:4:0;21805:313;;;;;:::o;23684:253::-;23750:7;23789;;23778;:18;;23770:73;;;;-1:-1:-1;;;23770:73:0;;5654:2:1;23770:73:0;;;5636:21:1;5693:2;5673:18;;;5666:30;5732:34;5712:18;;;5705:62;-1:-1:-1;;;5783:18:1;;;5776:40;5833:19;;23770:73:0;5626:232:1;23770:73:0;23854:19;23877:10;:8;:10::i;:::-;23854:33;-1:-1:-1;23905:24:0;:7;23854:33;23905:11;:24::i;:::-;23898:31;23684:253;-1:-1:-1;;;23684:253:0:o;24286:479::-;15908:6;;-1:-1:-1;;;;;15908:6:0;247:10;15908:22;15900:67;;;;-1:-1:-1;;;15900:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24368:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;24360:60;;;::::0;-1:-1:-1;;;24360:60:0;;6828:2:1;24360:60:0::1;::::0;::::1;6810:21:1::0;6867:2;6847:18;;;6840:30;6906:29;6886:18;;;6879:57;6953:18;;24360:60:0::1;6800:177:1::0;24360:60:0::1;24436:9;24431:327;24455:9;:16:::0;24451:20;::::1;24431:327;;;24513:7;-1:-1:-1::0;;;;;24497:23:0::1;:9;24507:1;24497:12;;;;;;-1:-1:-1::0;;;24497:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;24497:12:0::1;:23;24493:254;;;24556:9;24566:16:::0;;:20:::1;::::0;24585:1:::1;::::0;24566:20:::1;:::i;:::-;24556:31;;;;;;-1:-1:-1::0;;;24556:31:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;24541:9:::1;:12:::0;;-1:-1:-1;;;;;24556:31:0;;::::1;::::0;24551:1;;24541:12;::::1;;;-1:-1:-1::0;;;24541:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;24541:46:0::1;-1:-1:-1::0;;;;;24541:46:0;;::::1;;::::0;;24606:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;24645:11:::1;:20:::0;;;;:28;;-1:-1:-1;;24645:28:0::1;::::0;;24692:9:::1;:15:::0;;;::::1;;-1:-1:-1::0;;;24692:15:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;24692:15:0;;;;;-1:-1:-1;;;;;;24692:15:0::1;::::0;;;;;24431:327:::1;24286:479:::0;:::o;24493:254::-:1;24473:3:::0;::::1;::::0;::::1;:::i;:::-;;;;24431:327;;;;24286:479:::0;:::o;39395:162::-;15908:6;;-1:-1:-1;;;;;15908:6:0;247:10;15908:22;15900:67;;;;-1:-1:-1;;;15900:67:0;;;;;;;:::i;:::-;39486:1:::1;39476:6;:11;;39468:54;;;;-1:-1:-1::0;;;39468:54:0::1;;;;;;;:::i;:::-;39533:7;:16:::0;39395:162::o;22126:218::-;247:10;22214:4;22263:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;22263:34:0;;;;;;;;;;22214:4;;22231:83;;22254:7;;22263:50;;22302:10;22263:38;:50::i;22852:378::-;247:10;22904:14;22953:19;;;:11;:19;;;;;;;;22952:20;22944:77;;;;-1:-1:-1;;;22944:77:0;;10247:2:1;22944:77:0;;;10229:21:1;10286:2;10266:18;;;10259:30;10325:34;10305:18;;;10298:62;-1:-1:-1;;;10376:18:1;;;10369:42;10428:19;;22944:77:0;10219:234:1;22944:77:0;23033:15;23058:19;23069:7;23058:10;:19::i;:::-;-1:-1:-1;;;;;;;;23106:15:0;;;;;;:7;:15;;;;;;23032:45;;-1:-1:-1;23106:28:0;;:15;-1:-1:-1;23032:45:0;;-1:-1:-1;;23106:19:0;:28::i;:::-;-1:-1:-1;;;;;23088:15:0;;;;;;:7;:15;;;;;:46;23155:7;;:20;;23167:7;23155:11;:20::i;:::-;23145:7;:30;23199:10;;:23;;23214:7;23199:14;:23::i;:::-;23186:10;:36;-1:-1:-1;;;22852:378:0:o;20394:322::-;15908:6;;-1:-1:-1;;;;;15908:6:0;247:10;15908:22;15900:67;;;;-1:-1:-1;;;15900:67:0;;;;;;;:::i;:::-;20469:36:::1;20527:9;20469:68;;20582:17;-1:-1:-1::0;;;;;20582:25:0::1;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;20564:57:0::1;;20630:4;20637:17;-1:-1:-1::0;;;;;20637:22:0::1;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20564:98;::::0;-1:-1:-1;;;;;;20564:98:0::1;::::0;;;;;;-1:-1:-1;;;;;3323:15:1;;;20564:98:0::1;::::0;::::1;3305:34:1::0;3375:15;;3355:18;;;3348:43;3240:18;;20564:98:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20548:13;:114:::0;;-1:-1:-1;;;;;20548:114:0;;::::1;-1:-1:-1::0;;;;;;20548:114:0;;::::1;;::::0;;;20673:15:::1;:35:::0;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;-1:-1:-1;20394:322:0:o;38475:113::-;15908:6;;-1:-1:-1;;;;;15908:6:0;247:10;15908:22;15900:67;;;;-1:-1:-1;;;15900:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38546:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;38546:34:0::1;38576:4;38546:34;::::0;;38475:113::o;23238:438::-;23328:7;23367;;23356;:18;;23348:62;;;;-1:-1:-1;;;23348:62:0;;7184:2:1;23348:62:0;;;7166:21:1;7223:2;7203:18;;;7196:30;7262:33;7242:18;;;7235:61;7313:18;;23348:62:0;7156:181:1;23348:62:0;23426:17;23421:248;;23461:15;23486:19;23497:7;23486:10;:19::i;:::-;-1:-1:-1;23460:45:0;;-1:-1:-1;23520:14:0;;-1:-1:-1;;;;;;23520:14:0;23421:248;23569:23;23601:19;23612:7;23601:10;:19::i;:::-;-1:-1:-1;23567:53:0;;-1:-1:-1;23635:22:0;;-1:-1:-1;;;;;;23635:22:0;39772:142;15908:6;;-1:-1:-1;;;;;15908:6:0;247:10;15908:22;15900:67;;;;-1:-1:-1;;;15900:67:0;;;;;;;:::i;:::-;39882:24:::1;:16:::0;39901:5:::1;39882:24;:::i;:::-;39860:19;:46:::0;-1:-1:-1;39772:142:0:o;38000:156::-;15908:6;;-1:-1:-1;;;;;15908:6:0;247:10;15908:22;15900:67;;;;-1:-1:-1;;;15900:67:0;;;;;;;:::i;:::-;38054:23:::1;38080:24;38098:4;38080:9;:24::i;:::-;38054:50;;38115:33;38132:15;38115:16;:33::i;:::-;15978:1;38000:156::o:0;23945:333::-;15908:6;;-1:-1:-1;;;;;15908:6:0;247:10;15908:22;15900:67;;;;-1:-1:-1;;;15900:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24028:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;24027:21;24019:61;;;::::0;-1:-1:-1;;;24019:61:0;;6828:2:1;24019:61:0::1;::::0;::::1;6810:21:1::0;6867:2;6847:18;;;6840:30;6906:29;6886:18;;;6879:57;6953:18;;24019:61:0::1;6800:177:1::0;24019:61:0::1;-1:-1:-1::0;;;;;24094:16:0;::::1;24113:1;24094:16:::0;;;:7:::1;:16;::::0;;;;;:20;24091:108:::1;;-1:-1:-1::0;;;;;24170:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;24150:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;24131:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;24091:108:::1;-1:-1:-1::0;;;;;24209:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;24209:27:0::1;24232:4;24209:27:::0;;::::1;::::0;;;24247:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;24247:23:0::1;::::0;;::::1;::::0;;23945:333::o;21104:198::-;-1:-1:-1;;;;;21194:20:0;;21170:7;21194:20;;;:11;:20;;;;;;;;21190:49;;;-1:-1:-1;;;;;;21223:16:0;;;;;:7;:16;;;;;;;21104:198::o;21190:49::-;-1:-1:-1;;;;;21277:16:0;;;;;;:7;:16;;;;;;21257:37;;:19;:37::i;16339:148::-;15908:6;;-1:-1:-1;;;;;15908:6:0;247:10;15908:22;15900:67;;;;-1:-1:-1;;;15900:67:0;;;;;;;:::i;:::-;16446:1:::1;16430:6:::0;;16409:40:::1;::::0;-1:-1:-1;;;;;16430:6:0;;::::1;::::0;16409:40:::1;::::0;16446:1;;16409:40:::1;16477:1;16460:19:::0;;-1:-1:-1;;;;;;16460:19:0::1;::::0;;16339:148::o;25048:540::-;25112:7;25150:21;25199:7;25112;25238:17;25199:7;25238:9;:17::i;:::-;25217:38;-1:-1:-1;25266:21:0;;25298:140;25322:9;:16;25318:20;;25298:140;;;25378:45;25406:16;25378:23;25388:9;25398:1;25388:12;;;;;;-1:-1:-1;;;25388:12:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25388:12:0;25378:9;:23::i;:::-;:27;;:45::i;:::-;25359:64;-1:-1:-1;25340:3:0;;;;:::i;:::-;;;;25298:140;;;-1:-1:-1;25517:13:0;;25448:15;;25466:89;;25495:59;;25537:16;;25495:37;;25507:24;;-1:-1:-1;;;;;25517:13:0;25507:9;:24::i;:::-;25495:7;;;:11;:37::i;:::-;:41;;:59::i;:::-;25466:24;:10;25481:8;25466:14;:24::i;:::-;:28;;:89::i;:::-;25448:107;25048:540;-1:-1:-1;;;;;;;25048:540:0:o;39569:191::-;15908:6;;-1:-1:-1;;;;;15908:6:0;247:10;15908:22;15900:67;;;;-1:-1:-1;;;15900:67:0;;;;;;;:::i;:::-;39677:1:::1;39661:12;:17;;39653:60;;;;-1:-1:-1::0;;;39653:60:0::1;;;;;;;:::i;:::-;39724:13;:28:::0;39569:191::o;20815:87::-;20854:13;20887:7;20880:14;;;;;:::i;22352:269::-;22445:4;22462:129;247:10;22485:7;22494:96;22533:15;22494:96;;;;;;;;;;;;;;;;;247:10;22494:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;22494:34:0;;;;;;;;;;;;:38;:96::i;21310:167::-;21388:4;21405:42;247:10;21429:9;21440:6;21405:9;:42::i;39922:173::-;15908:6;;-1:-1:-1;;;;;15908:6:0;247:10;15908:22;15900:67;;;;-1:-1:-1;;;15900:67:0;;;;;;;:::i;:::-;40001:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;40001:32:0::1;-1:-1:-1::0;;;;40001:32:0;;::::1;;::::0;;40049:38:::1;::::0;::::1;::::0;::::1;::::0;40025:8;4179:14:1;4172:22;4154:41;;4142:2;4127:18;;4109:92;40049:38:0::1;;;;;;;;39922:173:::0;:::o;39019:190::-;15908:6;;-1:-1:-1;;;;;15908:6:0;247:10;15908:22;15900:67;;;;-1:-1:-1;;;15900:67:0;;;;;;;:::i;:::-;39112:1:::1;39100:8;:13;;39092:53;;;::::0;-1:-1:-1;;;39092:53:0;;7953:2:1;39092:53:0::1;::::0;::::1;7935:21:1::0;7992:2;7972:18;;;7965:30;8031:29;8011:18;;;8004:57;8078:18;;39092:53:0::1;7925:177:1::0;39092:53:0::1;39170:31;39196:4;39170:21;39182:8;39170:7;;:11;;:21;;;;:::i;:31::-;39156:11;:45:::0;-1:-1:-1;39019:190:0:o;38724:117::-;15908:6;;-1:-1:-1;;;;;15908:6:0;247:10;15908:22;15900:67;;;;-1:-1:-1;;;15900:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38797:29:0::1;;::::0;;;:20:::1;:29;::::0;;;;:36;;-1:-1:-1;;38797:36:0::1;38829:4;38797:36;::::0;;38724:117::o;38600:112::-;15908:6;;-1:-1:-1;;;;;15908:6:0;247:10;15908:22;15900:67;;;;-1:-1:-1;;;15900:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38669:27:0::1;38699:5;38669:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;38669:35:0::1;::::0;;38600:112::o;16642:244::-;15908:6;;-1:-1:-1;;;;;15908:6:0;247:10;15908:22;15900:67;;;;-1:-1:-1;;;15900:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16731:22:0;::::1;16723:73;;;::::0;-1:-1:-1;;;16723:73:0;;6065:2:1;16723:73:0::1;::::0;::::1;6047:21:1::0;6104:2;6084:18;;;6077:30;6143:34;6123:18;;;6116:62;-1:-1:-1;;;6194:18:1;;;6187:36;6240:19;;16723:73:0::1;6037:228:1::0;16723:73:0::1;16833:6;::::0;;16812:38:::1;::::0;-1:-1:-1;;;;;16812:38:0;;::::1;::::0;16833:6;::::1;::::0;16812:38:::1;::::0;::::1;16861:6;:17:::0;;-1:-1:-1;;;;;;16861:17:0::1;-1:-1:-1::0;;;;;16861:17:0;;;::::1;::::0;;;::::1;::::0;;16642:244::o;38164:162::-;15908:6;;-1:-1:-1;;;;;15908:6:0;247:10;15908:22;15900:67;;;;-1:-1:-1;;;15900:67:0;;;;;;;:::i;:::-;38247:21:::1;38279:39;38247:21:::0;38279:19:::1;:39::i;5429:471::-:0;5487:7;5732:6;5728:47;;-1:-1:-1;5762:1:0;5755:8;;5728:47;5787:9;5799:5;5803:1;5799;:5;:::i;:::-;5787:17;-1:-1:-1;5832:1:0;5823:5;5827:1;5787:17;5823:5;:::i;:::-;:10;5815:56;;;;-1:-1:-1;;;5815:56:0;;8309:2:1;5815:56:0;;;8291:21:1;8348:2;8328:18;;;8321:30;8387:34;8367:18;;;8360:62;-1:-1:-1;;;8438:18:1;;;8431:31;8479:19;;5815:56:0;8281:223:1;6376:132:0;6434:7;6461:39;6465:1;6468;6461:39;;;;;;;;;;;;;;;;;:3;:39::i;24777:259::-;-1:-1:-1;;;;;24870:19:0;;24862:28;;;;;;-1:-1:-1;;;;;24909:21:0;;24901:30;;;;;;-1:-1:-1;;;;;24944:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24996:32;;10604:25:1;;;24996:32:0;;10577:18:1;24996:32:0;;;;;;;24777:259;;;:::o;25600:1757::-;-1:-1:-1;;;;;25722:18:0;;25714:68;;;;-1:-1:-1;;;25714:68:0;;9841:2:1;25714:68:0;;;9823:21:1;9880:2;9860:18;;;9853:30;9919:34;9899:18;;;9892:62;-1:-1:-1;;;9970:18:1;;;9963:35;10015:19;;25714:68:0;9813:227:1;25714:68:0;-1:-1:-1;;;;;25801:16:0;;25793:64;;;;-1:-1:-1;;;25793:64:0;;5250:2:1;25793:64:0;;;5232:21:1;5289:2;5269:18;;;5262:30;5328:34;5308:18;;;5301:62;-1:-1:-1;;;5379:18:1;;;5372:33;5422:19;;25793:64:0;5222:225:1;25793:64:0;25885:1;25876:6;:10;25868:64;;;;-1:-1:-1;;;25868:64:0;;9072:2:1;25868:64:0;;;9054:21:1;9111:2;9091:18;;;9084:30;9150:34;9130:18;;;9123:62;-1:-1:-1;;;9201:18:1;;;9194:39;9250:19;;25868:64:0;9044:231:1;25868:64:0;-1:-1:-1;;;;;25972:26:0;;;;;;:20;:26;;;;;;;;25971:27;:69;;;;-1:-1:-1;;;;;;26016:24:0;;;;;;:20;:24;;;;;;;;26015:25;25971:69;25953:269;;;26123:11;;26113:6;:21;;26087:123;;;;-1:-1:-1;;;26087:123:0;;7544:2:1;26087:123:0;;;7526:21:1;7583:2;7563:18;;;7556:30;7622:34;7602:18;;;7595:62;-1:-1:-1;;;7673:18:1;;;7666:38;7721:19;;26087:123:0;7516:230:1;26087:123:0;26516:28;26547:24;26565:4;26547:9;:24::i;:::-;26633:19;;26516:55;;-1:-1:-1;26609:43:0;;;;;;;26681:53;;-1:-1:-1;26718:16:0;;-1:-1:-1;;;26718:16:0;;;;26717:17;26681:53;:91;;;;-1:-1:-1;26759:13:0;;-1:-1:-1;;;;;26751:21:0;;;26759:13;;26751:21;;26681:91;:129;;;;-1:-1:-1;26789:21:0;;-1:-1:-1;;;26789:21:0;;;;26681:129;26663:252;;;26867:36;26882:20;26867:14;:36::i;:::-;-1:-1:-1;;;;;27125:24:0;;26997:12;27125:24;;;:18;:24;;;;;;27012:4;;27125:24;;;:50;;-1:-1:-1;;;;;;27153:22:0;;;;;;:18;:22;;;;;;;;27125:50;27122:96;;;-1:-1:-1;27201:5:0;27122:96;27308:41;27323:4;27329:2;27333:6;27341:7;27308:14;:41::i;:::-;25600:1757;;;;;;:::o;4978:192::-;5064:7;5100:12;5092:6;;;;5084:29;;;;-1:-1:-1;;;5084:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5124:9:0;5136:5;5140:1;5136;:5;:::i;:::-;5124:17;4978:192;-1:-1:-1;;;;;4978:192:0:o;35599:163::-;35640:7;35661:15;35678;35697:19;:17;:19::i;:::-;35660:56;;-1:-1:-1;35660:56:0;-1:-1:-1;35734:20:0;35660:56;;35734:11;:20::i;:::-;35727:27;;;;35599:163;:::o;4075:181::-;4133:7;;4165:5;4169:1;4165;:5;:::i;:::-;4153:17;;4194:1;4189;:6;;4181:46;;;;-1:-1:-1;;;4181:46:0;;6472:2:1;4181:46:0;;;6454:21:1;6511:2;6491:18;;;6484:30;6550:29;6530:18;;;6523:57;6597:18;;4181:46:0;6444:177:1;34216:454:0;34275:7;34284;34293;34302;34311;34320;34329;34350:23;34375:12;34389;34403:18;34425:20;34437:7;34425:11;:20::i;:::-;34349:96;;;;;;;;34457:15;34474:23;34499:12;34515:56;34527:7;34536:4;34542;34548:10;34560;:8;:10::i;:::-;34515:11;:56::i;:::-;34456:115;;-1:-1:-1;34456:115:0;-1:-1:-1;34456:115:0;-1:-1:-1;34622:15:0;;-1:-1:-1;34639:4:0;;-1:-1:-1;34645:4:0;;-1:-1:-1;34651:10:0;-1:-1:-1;;;;34216:454:0;;;;;;;;;:::o;4539:136::-;4597:7;4624:43;4628:1;4631;4624:43;;;;;;;;;;;;;;;;;:3;:43::i;29517:589::-;29667:16;;;29681:1;29667:16;;;;;;;;29643:21;;29667:16;;;;;;;;;;-1:-1:-1;29667:16:0;29643:40;;29712:4;29694;29699:1;29694:7;;;;;;-1:-1:-1;;;29694:7:0;;;;;;;;;-1:-1:-1;;;;;29694:23:0;;;:7;;;;;;;;;;:23;;;;29738:15;;:22;;;-1:-1:-1;;;29738:22:0;;;;:15;;;;;:20;;:22;;;;;29694:7;;29738:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29728:4;29733:1;29728:7;;;;;;-1:-1:-1;;;29728:7:0;;;;;;;;;-1:-1:-1;;;;;29728:32:0;;;:7;;;;;;;;;:32;29805:15;;29773:62;;29790:4;;29805:15;29823:11;29773:8;:62::i;:::-;29874:15;;:224;;-1:-1:-1;;;29874:224:0;;-1:-1:-1;;;;;29874:15:0;;;;:66;;:224;;29955:11;;29874:15;;30025:4;;30052;;30072:15;;29874:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29410:99;29474:10;;:27;;-1:-1:-1;;;;;29474:10:0;;;;:27;;;;;29494:6;;29474:10;:27;:10;:27;29494:6;29474:10;:27;;;;;;;;;;;;;;;;;;;7004:278;7090:7;7125:12;7118:5;7110:28;;;;-1:-1:-1;;;7110:28:0;;;;;;;;:::i;:::-;-1:-1:-1;7149:9:0;7161:5;7165:1;7161;:5;:::i;27369:2028::-;19450:16;:23;;-1:-1:-1;;;;19450:23:0;-1:-1:-1;;;19450:23:0;;;27556:13:::1;::::0;27544:7:::1;::::0;19450:23;;27544:26:::1;::::0;:7;:11:::1;:26::i;:::-;27512:58:::0;-1:-1:-1;27585:26:0;27581:39:::1;;27613:7;;;27581:39;27630:29;27662:66;27706:21;27662:39;27687:13;;27662:20;:24;;:39;;;;:::i;:66::-;27630:98;;27739:23;27765:60;27803:21;27765:33;27790:7;;27765:20;:24;;:33;;;;:::i;:60::-;27739:86:::0;-1:-1:-1;27898:21:0::1;27922:28;:21:::0;27948:1:::1;27922:25;:28::i;:::-;27898:52:::0;-1:-1:-1;28256:21:0::1;28302:26:::0;;:50;::::1;;;-1:-1:-1::0;28332:20:0;;28302:50:::1;28298:63;;;28354:7;;;;;;;28298:63;28413:52;28430:34;:15:::0;28450:13;28430:19:::1;:34::i;:::-;28413:16;:52::i;:::-;28486:18;28507:41;:21;28533:14:::0;28507:25:::1;:41::i;:::-;28486:62:::0;-1:-1:-1;28572:14:0;;28569:821:::1;;28675:27;28705:33;28717:20;28735:1;28717:13;;:17;;:20;;;;:::i;:::-;28705:7;::::0;;:11:::1;:33::i;:::-;28675:63;;28753:27;28783:61;28824:19;28783:36;28798:20;28816:1;28798:13;;:17;;:20;;;;:::i;:::-;28783:10:::0;;:14:::1;:36::i;:61::-;28753:91;;28859:21;28883:48;28911:19;28883:23;28898:7;;28883:10;:14;;:23;;;;:::i;:48::-;28859:72;;29047:48;29060:13;29075:19;29047:12;:48::i;:::-;29238:34;29258:13;29238:19;:34::i;:::-;29306:72;::::0;;11830:25:1;;;11886:2;11871:18;;11864:34;;;11914:18;;;11907:34;;;29306:72:0::1;::::0;11818:2:1;11803:18;29306:72:0::1;;;;;;;28569:821;;;;19485:1;;;;;;;-1:-1:-1::0;19497:16:0;:24;;-1:-1:-1;;;;19497:24:0;;;27369:2028::o;30709:860::-;30820:7;30816:54;;30844:14;:12;:14::i;:::-;-1:-1:-1;;;;;30894:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;30918:22:0;;;;;;:11;:22;;;;;;;;30917:23;30894:46;30890:597;;;30957:48;30979:6;30987:9;30998:6;30957:21;:48::i;:::-;30890:597;;;-1:-1:-1;;;;;31028:19:0;;;;;;:11;:19;;;;;;;;31027:20;:46;;;;-1:-1:-1;;;;;;31051:22:0;;;;;;:11;:22;;;;;;;;31027:46;31023:464;;;31090:46;31110:6;31118:9;31129:6;31090:19;:46::i;31023:464::-;-1:-1:-1;;;;;31159:19:0;;;;;;:11;:19;;;;;;;;31158:20;:47;;;;-1:-1:-1;;;;;;31183:22:0;;;;;;:11;:22;;;;;;;;31182:23;31158:47;31154:333;;;31222:44;31240:6;31248:9;31259:6;31222:17;:44::i;31154:333::-;-1:-1:-1;;;;;31288:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;31311:22:0;;;;;;:11;:22;;;;;;;;31288:45;31284:203;;;31350:48;31372:6;31380:9;31391:6;31350:21;:48::i;31284:203::-;31431:44;31449:6;31457:9;31468:6;31431:17;:44::i;:::-;31511:7;31507:55;;31535:15;37881;;37871:7;:25;37917:15;;37907:7;:25;37959:21;;37943:13;:37;37827:161;31535:15;30709:860;;;;:::o;35770:561::-;35867:7;;35903;;35820;;;;;35927:289;35951:9;:16;35947:20;;35927:289;;;36017:7;35993;:21;36001:9;36011:1;36001:12;;;;;;-1:-1:-1;;;36001:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36001:12:0;35993:21;;;;;;;;;;;;;:31;;:66;;;36052:7;36028;:21;36036:9;36046:1;36036:12;;;;;;-1:-1:-1;;;36036:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36036:12:0;36028:21;;;;;;;;;;;;;:31;35993:66;35989:97;;;36069:7;;36078;;36061:25;;;;;;;35770:561;;:::o;35989:97::-;36111:34;36123:7;:21;36131:9;36141:1;36131:12;;;;;;-1:-1:-1;;;36131:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36131:12:0;36123:21;;;;;;;;;;;;;36111:7;;:11;:34::i;:::-;36101:44;;36170:34;36182:7;:21;36190:9;36200:1;36190:12;;;;;;-1:-1:-1;;;36190:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36190:12:0;36182:21;;;;;;;;;;;;;36170:7;;:11;:34::i;:::-;36160:44;-1:-1:-1;35969:3:0;;;;:::i;:::-;;;;35927:289;;;-1:-1:-1;36252:7:0;;36240;;:20;;:11;:20::i;:::-;36230:7;:30;36226:61;;;36270:7;;36279;;36262:25;;;;;;35770:561;;:::o;36226:61::-;36306:7;;36315;;-1:-1:-1;35770:561:0;-1:-1:-1;35770:561:0:o;34678:405::-;34738:7;34747;34756;34765;34785:12;34800:24;34816:7;34800:15;:24::i;:::-;34785:39;;34835:12;34850:24;34866:7;34850:15;:24::i;:::-;34835:39;;34885:18;34906:30;34928:7;34906:21;:30::i;:::-;34885:51;-1:-1:-1;34947:23:0;34973:43;34885:51;34973:27;34995:4;34973:27;:7;34985:4;34973:11;:17::i;:43::-;34947:69;35052:4;;-1:-1:-1;35058:4:0;;-1:-1:-1;35058:4:0;-1:-1:-1;34678:405:0;;-1:-1:-1;;;34678:405:0:o;35091:500::-;35220:7;;;;35276:24;:7;35288:11;35276;:24::i;:::-;35258:42;-1:-1:-1;35311:12:0;35326:21;:4;35335:11;35326:8;:21::i;:::-;35311:36;-1:-1:-1;35358:12:0;35373:21;:4;35382:11;35373:8;:21::i;:::-;35358:36;-1:-1:-1;35405:18:0;35426:27;:10;35441:11;35426:14;:27::i;:::-;35405:48;-1:-1:-1;35464:23:0;35490:43;35405:48;35490:27;35512:4;35490:27;:7;35502:4;35490:11;:17::i;:43::-;35552:7;;;;-1:-1:-1;35578:4:0;;-1:-1:-1;35091:500:0;;-1:-1:-1;;;;;;;;;35091:500:0:o;30114:514::-;30294:15;;30262:62;;30279:4;;-1:-1:-1;;;;;30294:15:0;30312:11;30262:8;:62::i;:::-;30367:15;;-1:-1:-1;;;;;30367:15:0;:31;30406:9;30440:4;30460:11;30367:15;;30572:7;15734;15761:6;-1:-1:-1;;;;;15761:6:0;;15696:79;30572:7;30367:253;;;;;;-1:-1:-1;;;;;;30367:253:0;;;-1:-1:-1;;;;;3761:15:1;;;30367:253:0;;;3743:34:1;3793:18;;;3786:34;;;;3836:18;;;3829:34;;;;3879:18;;;3872:34;3943:15;;;3922:19;;;3915:44;30594:15:0;3975:19:1;;;3968:35;3677:19;;30367:253:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;30114:514;;:::o;37491:324::-;37537:7;;:12;:28;;;;-1:-1:-1;37553:7:0;;:12;37537:28;:50;;;;-1:-1:-1;37569:13:0;;:18;37537:50;37534:62;;;37491:324::o;37534:62::-;37634:7;;;37616:15;:25;37670:7;;;37652:15;:25;37712:13;;;37688:21;:37;-1:-1:-1;37746:11:0;;;;37768;;;;37790:17;37491:324::o;32759:605::-;32862:15;32879:23;32904:12;32918:23;32943:12;32957;32971:18;32993:19;33004:7;32993:10;:19::i;:::-;32861:151;;;;;;;;;;;;;;33041:28;33061:7;33041;:15;33049:6;-1:-1:-1;;;;;33041:15:0;-1:-1:-1;;;;;33041:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;33023:15:0;;;;;;:7;:15;;;;;;;;:46;;;;33098:7;:15;;;;:28;;33118:7;33098:19;:28::i;:::-;-1:-1:-1;;;;;33080:15:0;;;;;;;:7;:15;;;;;;:46;;;;33158:18;;;;;;;:39;;33181:15;33158:22;:39::i;:::-;-1:-1:-1;;;;;33137:18:0;;;;;;:7;:18;;;;;:60;33211:26;33226:10;33211:14;:26::i;:::-;33248:14;33257:4;33248:8;:14::i;:::-;33273:23;33285:4;33291;33273:11;:23::i;:::-;33329:9;-1:-1:-1;;;;;33312:44:0;33321:6;-1:-1:-1;;;;;33312:44:0;;33340:15;33312:44;;;;10604:25:1;;10592:2;10577:18;;10559:76;33312:44:0;;;;;;;;32759:605;;;;;;;;;;:::o;32126:625::-;32227:15;32244:23;32269:12;32283:23;32308:12;32322;32336:18;32358:19;32369:7;32358:10;:19::i;:::-;32226:151;;;;;;;;;;;;;;32406:28;32426:7;32406;:15;32414:6;-1:-1:-1;;;;;32406:15:0;-1:-1:-1;;;;;32406:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;32388:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;32466:18;;;;;:7;:18;;;;;:39;;32489:15;32466:22;:39::i;:::-;-1:-1:-1;;;;;32445:18:0;;;;;;:7;:18;;;;;;;;:60;;;;32537:7;:18;;;;:39;;32560:15;32537:22;:39::i;31577:541::-;31676:15;31693:23;31718:12;31732:23;31757:12;31771;31785:18;31807:19;31818:7;31807:10;:19::i;:::-;31675:151;;;;;;;;;;;;;;31855:28;31875:7;31855;:15;31863:6;-1:-1:-1;;;;;31855:15:0;-1:-1:-1;;;;;31855:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;33372:681::-;33475:15;33492:23;33517:12;33531:23;33556:12;33570;33584:18;33606:19;33617:7;33606:10;:19::i;:::-;33474:151;;;;;;;;;;;;;;33654:28;33674:7;33654;:15;33662:6;-1:-1:-1;;;;;33654:15:0;-1:-1:-1;;;;;33654:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;33636:15:0;;;;;;:7;:15;;;;;;;;:46;;;;33711:7;:15;;;;:28;;33731:7;33711:19;:28::i;37067:128::-;37131:7;37158:29;37183:3;37158:20;37170:7;;37158;:11;;:20;;;;:::i;37203:128::-;37267:7;37294:29;37319:3;37294:20;37306:7;;37294;:11;;:20;;;;:::i;37339:140::-;37409:7;37436:35;37467:3;37436:26;37448:13;;37436:7;:11;;:26;;;;:::i;36343:368::-;36406:19;36429:10;:8;:10::i;:::-;36406:33;-1:-1:-1;36450:18:0;36471:27;:10;36406:33;36471:14;:27::i;:::-;36550:4;36534:22;;;;:7;:22;;;;;;36450:48;;-1:-1:-1;36534:38:0;;36450:48;36534:26;:38::i;:::-;36525:4;36509:22;;;;:7;:22;;;;;;;;:63;;;;36586:11;:26;;;;;;36583:121;;;36670:4;36654:22;;;;:7;:22;;;;;;:38;;36681:10;36654:26;:38::i;:::-;36645:4;36629:22;;;;:7;:22;;;;;:63;36583:121;36343:368;;;:::o;34061:147::-;34139:7;;:17;;34151:4;34139:11;:17::i;:::-;34129:7;:27;34180:10;;:20;;34195:4;34180:14;:20::i;:::-;34167:10;:33;-1:-1:-1;;34061:147:0:o;14:160:1:-;79:20;;135:13;;128:21;118:32;;108:2;;164:1;161;154:12;108:2;60:114;;;:::o;179:257::-;238:6;291:2;279:9;270:7;266:23;262:32;259:2;;;312:6;304;297:22;259:2;356:9;343:23;375:31;400:5;375:31;:::i;441:261::-;511:6;564:2;552:9;543:7;539:23;535:32;532:2;;;585:6;577;570:22;532:2;622:9;616:16;641:31;666:5;641:31;:::i;707:398::-;775:6;783;836:2;824:9;815:7;811:23;807:32;804:2;;;857:6;849;842:22;804:2;901:9;888:23;920:31;945:5;920:31;:::i;:::-;970:5;-1:-1:-1;1027:2:1;1012:18;;999:32;1040:33;999:32;1040:33;:::i;:::-;1092:7;1082:17;;;794:311;;;;;:::o;1110:466::-;1187:6;1195;1203;1256:2;1244:9;1235:7;1231:23;1227:32;1224:2;;;1277:6;1269;1262:22;1224:2;1321:9;1308:23;1340:31;1365:5;1340:31;:::i;:::-;1390:5;-1:-1:-1;1447:2:1;1432:18;;1419:32;1460:33;1419:32;1460:33;:::i;:::-;1214:362;;1512:7;;-1:-1:-1;;;1566:2:1;1551:18;;;;1538:32;;1214:362::o;1581:325::-;1649:6;1657;1710:2;1698:9;1689:7;1685:23;1681:32;1678:2;;;1731:6;1723;1716:22;1678:2;1775:9;1762:23;1794:31;1819:5;1794:31;:::i;:::-;1844:5;1896:2;1881:18;;;;1868:32;;-1:-1:-1;;;1668:238:1:o;1911:190::-;1967:6;2020:2;2008:9;1999:7;1995:23;1991:32;1988:2;;;2041:6;2033;2026:22;1988:2;2069:26;2085:9;2069:26;:::i;2106:190::-;2165:6;2218:2;2206:9;2197:7;2193:23;2189:32;2186:2;;;2239:6;2231;2224:22;2186:2;-1:-1:-1;2267:23:1;;2176:120;-1:-1:-1;2176:120:1:o;2301:258::-;2366:6;2374;2427:2;2415:9;2406:7;2402:23;2398:32;2395:2;;;2448:6;2440;2433:22;2395:2;2489:9;2476:23;2466:33;;2518:35;2549:2;2538:9;2534:18;2518:35;:::i;:::-;2508:45;;2385:174;;;;;:::o;2564:316::-;2652:6;2660;2668;2721:2;2709:9;2700:7;2696:23;2692:32;2689:2;;;2742:6;2734;2727:22;2689:2;2776:9;2770:16;2760:26;;2826:2;2815:9;2811:18;2805:25;2795:35;;2870:2;2859:9;2855:18;2849:25;2839:35;;2679:201;;;;;:::o;4440:603::-;4552:4;4581:2;4610;4599:9;4592:21;4642:6;4636:13;4685:6;4680:2;4669:9;4665:18;4658:34;4710:4;4723:140;4737:6;4734:1;4731:13;4723:140;;;4832:14;;;4828:23;;4822:30;4798:17;;;4817:2;4794:26;4787:66;4752:10;;4723:140;;;4881:6;4878:1;4875:13;4872:2;;;4951:4;4946:2;4937:6;4926:9;4922:22;4918:31;4911:45;4872:2;-1:-1:-1;5027:2:1;5006:15;-1:-1:-1;;5002:29:1;4987:45;;;;5034:2;4983:54;;4561:482;-1:-1:-1;;;4561:482:1:o;8509:356::-;8711:2;8693:21;;;8730:18;;;8723:30;8789:34;8784:2;8769:18;;8762:62;8856:2;8841:18;;8683:182::o;9280:354::-;9482:2;9464:21;;;9521:2;9501:18;;;9494:30;9560:32;9555:2;9540:18;;9533:60;9625:2;9610:18;;9454:180::o;10640:983::-;10902:4;10950:3;10939:9;10935:19;10981:6;10970:9;10963:25;11007:2;11045:6;11040:2;11029:9;11025:18;11018:34;11088:3;11083:2;11072:9;11068:18;11061:31;11112:6;11147;11141:13;11178:6;11170;11163:22;11216:3;11205:9;11201:19;11194:26;;11255:2;11247:6;11243:15;11229:29;;11276:4;11289:195;11303:6;11300:1;11297:13;11289:195;;;11368:13;;-1:-1:-1;;;;;11364:39:1;11352:52;;11459:15;;;;11424:12;;;;11400:1;11318:9;11289:195;;;-1:-1:-1;;;;;;;11540:32:1;;;;11535:2;11520:18;;11513:60;-1:-1:-1;;;11604:3:1;11589:19;11582:35;11501:3;10911:712;-1:-1:-1;;;10911:712:1:o;12141:128::-;12181:3;12212:1;12208:6;12205:1;12202:13;12199:2;;;12218:18;;:::i;:::-;-1:-1:-1;12254:9:1;;12189:80::o;12274:217::-;12314:1;12340;12330:2;;-1:-1:-1;;;12365:31:1;;12419:4;12416:1;12409:15;12447:4;12372:1;12437:15;12330:2;-1:-1:-1;12476:9:1;;12320:171::o;12496:168::-;12536:7;12602:1;12598;12594:6;12590:14;12587:1;12584:21;12579:1;12572:9;12565:17;12561:45;12558:2;;;12609:18;;:::i;:::-;-1:-1:-1;12649:9:1;;12548:116::o;12669:125::-;12709:4;12737:1;12734;12731:8;12728:2;;;12742:18;;:::i;:::-;-1:-1:-1;12779:9:1;;12718:76::o;12799:380::-;12878:1;12874:12;;;;12921;;;12942:2;;12996:4;12988:6;12984:17;12974:27;;12942:2;13049;13041:6;13038:14;13018:18;13015:38;13012:2;;;13095:10;13090:3;13086:20;13083:1;13076:31;13130:4;13127:1;13120:15;13158:4;13155:1;13148:15;13012:2;;12854:325;;;:::o;13184:135::-;13223:3;-1:-1:-1;;13244:17:1;;13241:2;;;13264:18;;:::i;:::-;-1:-1:-1;13311:1:1;13300:13;;13231:88::o;13324:127::-;13385:10;13380:3;13376:20;13373:1;13366:31;13416:4;13413:1;13406:15;13440:4;13437:1;13430:15;13456:131;-1:-1:-1;;;;;13531:31:1;;13521:42;;13511:2;;13577:1;13574;13567:12

Swarm Source

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