ETH Price: $2,956.68 (-1.86%)
Gas: 3 Gwei

Token

PulseNet (PULSE)
 

Overview

Max Total Supply

100,000,000 PULSE

Holders

221

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
51,445.713260495493356033 PULSE

Value
$0.00
0x6548f790ad5ad77e04be18778eeff0425d732d67
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:
PulseNet

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-21
*/

/**
 *Submitted for verification at Etherscan.io on 2022-10-21

PULSENET is a dual network blockchain project that delivers on scalability and security. 
Innovative in its design, fast and eco-friendly. It aims to be one of the most efficient, widely-used cryptocurrencies in the DEFI space.

Our vision is simple, to create fast and effective, secure networks, 
free from the risk of exploitation and aiming to massively reduce scam tokens from launching or rug pulling. 
A public network for engineers and a private network for business, a perpetual evolution in the crypto space.

*/

// Telegram : https://t.me/pulsenet

pragma solidity ^0.6.12;

// SPDX-License-Identifier: Unlicensed
interface IERC20 {
    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;
    }
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        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 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;
    address private _previousOwner;
    uint256 private _lockTime;

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() internal {
        address msgSender = _msgSender();
        _owner = 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;
    }

    function geUnlockTime() public view returns (uint256) {
        return _lockTime;
    }

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = now + time;
        emit OwnershipTransferred(_owner, address(0));
    }

    //Unlocks the contract for owner when _lockTime is exceeds
    function unlock() public virtual {
        require(
            _previousOwner == msg.sender,
            "You don't have permission to unlock"
        );
        require(now > _lockTime, "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}


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

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

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

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



// pragma solidity >=0.6.2;

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

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

contract PulseNet 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 _isExcludedMaxWallet;
    mapping(address => bool) private _isExcludedMaxTransaction;


    mapping(address => bool) public ammPairs;

    mapping(address => bool) private _isExcluded;
    address[] private _excluded;

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 100000000 * 10**18;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "PulseNet";
    string private _symbol = "PULSE";
    uint8 private _decimals = 18;

    uint256 private _buyAdvestisementFee = 10;

    uint256 private _sellAdvestisementFee = 10;

    address public marketingWallet =
        0x26cAAB72eD67ee33d315a9D80563f6aA3B638B39;

    address public stakingWallet =
        0xd8120b28608A06Cc3ACCF74e047259e6b0C3508E;
    
    address public liquidityWallet =
        0x26cAAB72eD67ee33d315a9D80563f6aA3B638B39;

    uint256 public _marketingFee = _buyAdvestisementFee;
    uint256 private _previousAdvestisementFee = _marketingFee;

    uint256 public _feeTransfer = 10;
    uint256 private _previousTransferFee = _feeTransfer;
    uint256 public _rateDivideMarketing = 800; 
    uint256 public _rateDivideStaking = 100; 
    uint256 public _rateDivideLiquidity = 100; 

    uint256 public _maxTxAmount = 1000000 ether;
    uint256 public _maxWalletAmount = 1000000 ether;
    uint256 public numTokensSellToAddToLiquidity = 100000 * 10**18;
    bool public isSwapEnabled = true;

    bool isAntibotModeEnabled = true;
    mapping(address => bool) antibotModeWhitelist;
    mapping(address => bool) public blackList;
    IUniswapV2Router02 public immutable uniswapV2Router;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

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

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

    constructor() public {
        _rOwned[_msgSender()] = _rTotal;
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
       
        uniswapV2Router = _uniswapV2Router;
        
        // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        ammPairs[_uniswapV2Pair] = true;

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

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

    function changeStakeMarketingWallets(address _wallet, address _stakeWallet) public onlyOwner {
        marketingWallet = _wallet;
        stakingWallet = _stakeWallet;
    }

    function changeLpWallet(address _wallet) public onlyOwner {
        liquidityWallet = _wallet;
    }

    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 totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    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 _transferBothExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 tTransferAmount,
            uint256 tAdvertisement,
            uint256 tFee
        ) = _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);
        if(tAdvertisement != 0) {
            uint256 one = tAdvertisement.mul(_rateDivideMarketing).div(10**3);
            uint256 two = tAdvertisement.mul(_rateDivideStaking).div(10**3);
            uint256 three = tAdvertisement.mul(_rateDivideLiquidity).div(10**3);
            _takeAdvertisement(one);
            _takeLiquidity(three);
            _takeStaking(two);
        }
        _takeTransferFee(tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function manageAmmPairs(address pair, bool isAdd) public onlyOwner {
        ammPairs[pair] = isAdd;
    }

    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function excludeMaxWallet(address account, bool isBool) public onlyOwner {
        _isExcludedMaxWallet[account] = isBool;
    }

    function excludeMaxTransaction(address account, bool isBool) public onlyOwner {
        _isExcludedMaxTransaction[account] = isBool;
    }

    function setMarketingStakingFeePercent(
        uint256 buyAdvestisementFee,
        uint256 sellAdvestisementFee
    ) external onlyOwner {
        _marketingFee = buyAdvestisementFee;
        _sellAdvestisementFee = sellAdvestisementFee;
        _buyAdvestisementFee = buyAdvestisementFee;
    }

    function setRateDivide(
        uint256 marketingRate,
        uint256 stakingRate,
        uint256 liqudityRate
    ) external onlyOwner {
        require(marketingRate.add(stakingRate).add(liqudityRate) == 1000, "Rate not valid");
        _rateDivideMarketing = marketingRate;
        _rateDivideStaking = stakingRate;
        _rateDivideLiquidity = liqudityRate;
    }

    function setTransferFee(
        uint256 fee
    ) external onlyOwner {
       _feeTransfer = fee;
    }

    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(10**3);
    }

    function setMaxWalletPercent(uint256 maxTxPercent) external onlyOwner {
        _maxWalletAmount = _tTotal.mul(maxTxPercent).div(10**3);
    }

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

    function _getTValues(uint256 tAmount)
        private
        view
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 tAdvertisement = calculateAdvestisementFee(tAmount);
        uint256 tFee = calculateTransferFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tAdvertisement).sub(tFee);

        return (tTransferAmount, tAdvertisement, tFee);
    }

    function _getRValues(
        uint256 tAmount,
        uint256 tAdvertisement,
        uint256 currentRate,
        uint256 tFee
    )
        private
        pure
        returns (
            uint256,
            uint256
        )
    {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rAdvertisement = tAdvertisement.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rAdvertisement).sub(rFee);
        return (rAmount, rTransferAmount);
    }

    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 _takeAdvertisement(uint256 tAdvertisement) private {
        uint256 currentRate = _getRate();
        uint256 rAdvertisement = tAdvertisement.mul(currentRate);
        _rOwned[marketingWallet] = _rOwned[marketingWallet].add(
            rAdvertisement
        );
        if (_isExcluded[marketingWallet])
            _tOwned[marketingWallet] = _tOwned[marketingWallet].add(
                tAdvertisement
            );
    }

    function _takeTransferFee(uint256 tAdvertisement) private {
        uint256 currentRate = _getRate();
        uint256 rAdvertisement = tAdvertisement.mul(currentRate);
        _rOwned[marketingWallet] = _rOwned[marketingWallet].add(
            rAdvertisement
        );
        if (_isExcluded[marketingWallet])
            _tOwned[marketingWallet] = _tOwned[marketingWallet].add(
                tAdvertisement
            );
    }

    function _takeStaking(uint256 tAdvertisement) private {
        uint256 currentRate = _getRate();
        uint256 rAdvertisement = tAdvertisement.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(
            rAdvertisement
        );
        if (_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(
                tAdvertisement
            );
    }

    function _takeLiquidity(uint256 tAdvertisement) private {
        uint256 currentRate = _getRate();
        uint256 rAdvertisement = tAdvertisement.mul(currentRate);
        _rOwned[liquidityWallet] = _rOwned[liquidityWallet].add(
            rAdvertisement
        );
        if (_isExcluded[liquidityWallet])
            _tOwned[liquidityWallet] = _tOwned[liquidityWallet].add(
                tAdvertisement
            );
    }

    function calculateAdvestisementFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        return _amount.mul(_marketingFee).div(10**3);
    }

    function calculateTransferFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        return _amount.mul(_feeTransfer).div(10**3);
    }

    function removeAllFee() private {
        if (_feeTransfer == 0 && _marketingFee == 0) return;

        _previousAdvestisementFee = _marketingFee;
        _previousTransferFee = _feeTransfer;
        _marketingFee = 0;
        _feeTransfer = 0;
    }

    function restoreAllFee() private {
        _marketingFee = _previousAdvestisementFee;
        _feeTransfer = _previousTransferFee;
    }

    function isExcludedFromFee(address account) public view returns (bool) {
        return _isExcludedFromFee[account];
    }

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

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

    function turnOnOffAntibotMode(bool _isBool) public onlyOwner {
        isAntibotModeEnabled = _isBool;
    }

    function turnOnOffSwap(bool _isBool) public onlyOwner {
        isSwapEnabled = _isBool;
    }

     //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}

    function setAntibotModeWhitelist(
        address[] memory toAddAddesses,
        address[] memory toRemoveAddesses
    ) public onlyOwner {
        for (uint256 i = 0; i < toAddAddesses.length; i++)
            antibotModeWhitelist[toAddAddesses[i]] = true;
        for (uint256 i = 0; i < toRemoveAddesses.length; i++)
            antibotModeWhitelist[toRemoveAddesses[i]] = false;
    }

    function antibotModeCheck(address from, address to) private view {
        if (!isAntibotModeEnabled) return;
        if (from == owner()) return;
        require(
            antibotModeWhitelist[from] && antibotModeWhitelist[to],
            "Address not in antibot mode whitelist"
        );
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        antibotModeCheck(from, to);
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!blackList[from], "ERC20: transfer to the black list address");
        require(!blackList[to], "ERC20: transfer to the black list address");
        require(amount > 0, "Transfer amount must be greater than zero");
        if (from != owner() && to != owner() && !_isExcludedMaxTransaction[from] && !_isExcludedMaxTransaction[to])
            require(
                amount <= _maxTxAmount,
                "Transfer amount exceeds the maxTxAmount."
            );
        if (from != owner() && to != owner() && !_isExcludedMaxWallet[to] && !_isExcludedMaxWallet[from])
            require(
                balanceOf(to).add(amount) <= _maxWalletAmount,
                "Transfer amount exceeds the maxWalletAmount."
            );
        
        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, burn, advertisement fee
        _tokenTransfer(from, to, amount, takeFee);
    }

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee
    ) private {
        bool isBuy = ammPairs[sender];
        bool isSell = ammPairs[recipient];
        if(isBuy || isSell) {
            require(isSwapEnabled, "swap not enabled");
        }
        if (!isBuy && !isSell) {
            _marketingFee = 0;
        } else {
            if (isBuy) {
                _marketingFee = _buyAdvestisementFee;
            } else if (isSell) {
                _marketingFee = _sellAdvestisementFee;
            }
        }
        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);
        }
        // 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 >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            !ammPairs[sender] &&
            !ammPairs[recipient] &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }
        if (!takeFee) restoreAllFee();
    }

    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 tTransferAmount,
            uint256 tAdvertisement,
            uint256 tFee
        ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        if(tAdvertisement != 0) {
            uint256 one = tAdvertisement.mul(_rateDivideMarketing).div(10**3);
            uint256 two = tAdvertisement.mul(_rateDivideStaking).div(10**3);
            uint256 three = tAdvertisement.mul(_rateDivideLiquidity).div(10**3);
            _takeAdvertisement(one);
            _takeLiquidity(three);
            _takeStaking(two);
        }
        _takeTransferFee(tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 tTransferAmount,
            uint256 tAdvertisement,
            uint256 tFee
        ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        if(tAdvertisement != 0) {
            uint256 one = tAdvertisement.mul(_rateDivideMarketing).div(10**3);
            uint256 two = tAdvertisement.mul(_rateDivideStaking).div(10**3);
            uint256 three = tAdvertisement.mul(_rateDivideLiquidity).div(10**3);
            _takeAdvertisement(one);
            _takeLiquidity(three);
            _takeStaking(two);
        }
        _takeTransferFee(tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 tTransferAmount,
            uint256 tAdvertisement,
            uint256 tFee
        ) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        if(tAdvertisement != 0) {
            uint256 one = tAdvertisement.mul(_rateDivideMarketing).div(10**3);
            uint256 two = tAdvertisement.mul(_rateDivideStaking).div(10**3);
            uint256 three = tAdvertisement.mul(_rateDivideLiquidity).div(10**3);
            _takeAdvertisement(one);
            _takeLiquidity(three);
            _takeStaking(two);
        }
        _takeTransferFee(tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function modifyBlackList(
        address[] memory newBlackList,
        address[] memory removedBlackList
    ) public onlyOwner {
        for (uint256 index; index < newBlackList.length; index++) {
            blackList[newBlackList[index]] = true;
        }
        for (uint256 index; index < removedBlackList.length; index++) {
            blackList[removedBlackList[index]] = false;
        }
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    function setNumTokensSellToAddToLiquidity(uint256 _amount) public onlyOwner {
        numTokensSellToAddToLiquidity = _amount;
    }

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

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

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

        emit SwapAndLiquify(contractTokenBalance, newBalance);
    }

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

     /**
     * @dev Withdraw bnb from this contract (Callable by owner only)
     */
    function handleForfeitedBalance(
        address coinAddress,
        uint256 value,
        address payable to
    ) public onlyOwner {
        if (coinAddress == address(0)) {
            return to.transfer(value);
        }
        IERC20(coinAddress).transfer(to, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"_feeTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_rateDivideLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_rateDivideMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_rateDivideStaking","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":"","type":"address"}],"name":"ammPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"blackList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"changeLpWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"address","name":"_stakeWallet","type":"address"}],"name":"changeStakeMarketingWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isBool","type":"bool"}],"name":"excludeMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isBool","type":"bool"}],"name":"excludeMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"coinAddress","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"address payable","name":"to","type":"address"}],"name":"handleForfeitedBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","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":[],"name":"isSwapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"isAdd","type":"bool"}],"name":"manageAmmPairs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"newBlackList","type":"address[]"},{"internalType":"address[]","name":"removedBlackList","type":"address[]"}],"name":"modifyBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address[]","name":"toAddAddesses","type":"address[]"},{"internalType":"address[]","name":"toRemoveAddesses","type":"address[]"}],"name":"setAntibotModeWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyAdvestisementFee","type":"uint256"},{"internalType":"uint256","name":"sellAdvestisementFee","type":"uint256"}],"name":"setMarketingStakingFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxWalletPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingRate","type":"uint256"},{"internalType":"uint256","name":"stakingRate","type":"uint256"},{"internalType":"uint256","name":"liqudityRate","type":"uint256"}],"name":"setRateDivide","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setTransferFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"bool","name":"_isBool","type":"bool"}],"name":"turnOnOffAntibotMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isBool","type":"bool"}],"name":"turnOnOffSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6a52b7d2dcc80cd2e4000000600c556a34f8e1f3adab5d4bffffff19600d5560e0604052600860a081905267141d5b1cd953995d60c21b60c09081526200004a91600f91906200046a565b506040805180820190915260058082526450554c534560d81b602090920191825262000079916010916200046a565b506011805460ff199081166012908117909255600a918290556013829055601480546001600160a01b03199081167326caab72ed67ee33d315a9d80563f6aa3b638b3990811790925560158054821673d8120b28608a06cc3accf74e047259e6b0c3508e179055601680549091169091179055601782905560188290556019829055601a91909155610320601b556064601c819055601d5569d3c21bcecceda1000000601e819055601f5569152d02c7e14af68000006020556021805461ff001992166001178216610100908117909155602480549092161790553480156200016157600080fd5b5060006200016e62000457565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600d5460036000620001c962000457565b6001600160a01b0316815260208082019290925260409081016000908120939093557f7a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000608052805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d9392849263c45a01559260048083019392829003018186803b1580156200025857600080fd5b505afa1580156200026d573d6000803e3d6000fd5b505050506040513d60208110156200028457600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929187169163ad5c464891600480820192602092909190829003018186803b158015620002d557600080fd5b505afa158015620002ea573d6000803e3d6000fd5b505050506040513d60208110156200030157600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200035457600080fd5b505af115801562000369573d6000803e3d6000fd5b505050506040513d60208110156200038057600080fd5b50516001600160a01b0381166000908152600960205260408120805460ff19166001908117909155919250600690620003b86200045b565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260069092529020805490911660011790556200040262000457565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600c546040518082815260200191505060405180910390a3505062000506565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004ad57805160ff1916838001178555620004dd565b82800160010185558215620004dd579182015b82811115620004dd578251825591602001919060010190620004c0565b50620004eb929150620004ef565b5090565b5b80821115620004eb5760008155600101620004f0565b60805160601c61392b62000533600039806110ab528061349f5280613557528061357e525061392b6000f3fe60806040526004361061036f5760003560e01c8063715018a6116101c6578063ba916883116100f7578063dd46706411610095578063ea0b0fa11161006f578063ea0b0fa114610e03578063ea2f0b3714610e3e578063f0f165af14610e71578063f2fde38b14610e9b57610376565b8063dd46706414610d6e578063dd62ed3e14610d98578063dd74d14514610dd357610376565b8063d12a7688116100d1578063d12a768814610bea578063d469801614610bff578063d543dbeb14610c14578063d5e4064914610c3e57610376565b8063ba91688314610b57578063c49b9a8014610b92578063c7d53b5014610bbe57610376565b80638f02bb5b11610164578063a69df4b51161013e578063a69df4b514610ac1578063a72905a214610ad6578063a9059cbb14610b09578063b6c5232414610b4257610376565b80638f02bb5b14610a4957806395d89b4114610a73578063a457c2d714610a8857610376565b80637d1db4a5116101a05780637d1db4a5146109e05780637f17af47146109f557806382bf293c14610a0a5780638da5cb5b14610a3457610376565b8063715018a61461098357806375f0a8741461099857806378f7e492146109ad57610376565b8063351a964d116102a05780634dd04c7f1161023e5780635342acb4116102185780635342acb4146108f35780636c0a24eb146109265780636e91ed731461093b57806370a082311461095057610376565b80634dd04c7f1461084e5780634e6f5b6014610884578063525bf097146108c757610376565b8063437823ec1161027a578063437823ec146107a15780634549b039146107d45780634838d165146108065780634a74bb021461083957610376565b8063351a964d1461062357806339509351146106385780633977d9371461067157610376565b806313114a9d1161030d57806322976e0d116102e757806322976e0d1461057657806323b872dd1461058b5780632d838119146105ce578063313ce567146105f857610376565b806313114a9d146105375780631694505e1461054c57806318160ddd1461056157610376565b8063095ea7b311610349578063095ea7b31461047357806309d59a30146104c05780630b38dd3e146104e75780630c77a8f6146104fc57610376565b806301a6b10d1461037b57806306ee6ad8146103b857806306fdde03146103e957610376565b3661037657005b600080fd5b34801561038757600080fd5b506103b66004803603604081101561039e57600080fd5b506001600160a01b0381351690602001351515610ece565b005b3480156103c457600080fd5b506103cd610f51565b604080516001600160a01b039092168252519081900360200190f35b3480156103f557600080fd5b506103fe610f60565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610438578181015183820152602001610420565b50505050905090810190601f1680156104655780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561047f57600080fd5b506104ac6004803603604081101561049657600080fd5b506001600160a01b038135169060200135610ff6565b604080519115158252519081900360200190f35b3480156104cc57600080fd5b506104d5611014565b60408051918252519081900360200190f35b3480156104f357600080fd5b506104d561101a565b34801561050857600080fd5b506103b66004803603604081101561051f57600080fd5b506001600160a01b0381351690602001351515611020565b34801561054357600080fd5b506104d56110a3565b34801561055857600080fd5b506103cd6110a9565b34801561056d57600080fd5b506104d56110cd565b34801561058257600080fd5b506104d56110d3565b34801561059757600080fd5b506104ac600480360360608110156105ae57600080fd5b506001600160a01b038135811691602081013590911690604001356110d9565b3480156105da57600080fd5b506104d5600480360360208110156105f157600080fd5b5035611160565b34801561060457600080fd5b5061060d6111c2565b6040805160ff9092168252519081900360200190f35b34801561062f57600080fd5b506104ac6111cb565b34801561064457600080fd5b506104ac6004803603604081101561065b57600080fd5b506001600160a01b0381351690602001356111d4565b34801561067d57600080fd5b506103b66004803603604081101561069457600080fd5b810190602081018135600160201b8111156106ae57600080fd5b8201836020820111156106c057600080fd5b803590602001918460208302840111600160201b831117156106e157600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561073057600080fd5b82018360208201111561074257600080fd5b803590602001918460208302840111600160201b8311171561076357600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611222945050505050565b3480156107ad57600080fd5b506103b6600480360360208110156107c457600080fd5b50356001600160a01b0316611330565b3480156107e057600080fd5b506104d5600480360360408110156107f757600080fd5b508035906020013515156113ac565b34801561081257600080fd5b506104ac6004803603602081101561082957600080fd5b50356001600160a01b031661143c565b34801561084557600080fd5b506104ac611451565b34801561085a57600080fd5b506103b66004803603606081101561087157600080fd5b508035906020810135906040013561145f565b34801561089057600080fd5b506103b6600480360360608110156108a757600080fd5b506001600160a01b0381358116916020810135916040909101351661151f565b3480156108d357600080fd5b506103b6600480360360208110156108ea57600080fd5b50351515611649565b3480156108ff57600080fd5b506104ac6004803603602081101561091657600080fd5b50356001600160a01b03166116b4565b34801561093257600080fd5b506104d56116d2565b34801561094757600080fd5b506104d56116d8565b34801561095c57600080fd5b506104d56004803603602081101561097357600080fd5b50356001600160a01b03166116de565b34801561098f57600080fd5b506103b6611740565b3480156109a457600080fd5b506103cd6117d0565b3480156109b957600080fd5b506103b6600480360360208110156109d057600080fd5b50356001600160a01b03166117df565b3480156109ec57600080fd5b506104d5611859565b348015610a0157600080fd5b506104d561185f565b348015610a1657600080fd5b506103b660048036036020811015610a2d57600080fd5b5035611865565b348015610a4057600080fd5b506103cd6118e4565b348015610a5557600080fd5b506103b660048036036020811015610a6c57600080fd5b50356118f3565b348015610a7f57600080fd5b506103fe611950565b348015610a9457600080fd5b506104ac60048036036040811015610aab57600080fd5b506001600160a01b0381351690602001356119b1565b348015610acd57600080fd5b506103b6611a19565b348015610ae257600080fd5b506104ac60048036036020811015610af957600080fd5b50356001600160a01b0316611b07565b348015610b1557600080fd5b506104ac60048036036040811015610b2c57600080fd5b506001600160a01b038135169060200135611b1c565b348015610b4e57600080fd5b506104d5611b30565b348015610b6357600080fd5b506103b660048036036040811015610b7a57600080fd5b506001600160a01b0381358116916020013516611b36565b348015610b9e57600080fd5b506103b660048036036020811015610bb557600080fd5b50351515611bbc565b348015610bca57600080fd5b506103b660048036036020811015610be157600080fd5b50351515611c63565b348015610bf657600080fd5b506104d5611cd5565b348015610c0b57600080fd5b506103cd611cdb565b348015610c2057600080fd5b506103b660048036036020811015610c3757600080fd5b5035611cea565b348015610c4a57600080fd5b506103b660048036036040811015610c6157600080fd5b810190602081018135600160201b811115610c7b57600080fd5b820183602082011115610c8d57600080fd5b803590602001918460208302840111600160201b83111715610cae57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b811115610cfd57600080fd5b820183602082011115610d0f57600080fd5b803590602001918460208302840111600160201b83111715610d3057600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611d63945050505050565b348015610d7a57600080fd5b506103b660048036036020811015610d9157600080fd5b5035611e6c565b348015610da457600080fd5b506104d560048036036040811015610dbb57600080fd5b506001600160a01b0381358116916020013516611f0a565b348015610ddf57600080fd5b506103b660048036036040811015610df657600080fd5b5080359060200135611f35565b348015610e0f57600080fd5b506103b660048036036040811015610e2657600080fd5b506001600160a01b0381351690602001351515611f9a565b348015610e4a57600080fd5b506103b660048036036020811015610e6157600080fd5b50356001600160a01b031661201d565b348015610e7d57600080fd5b506103b660048036036020811015610e9457600080fd5b5035612096565b348015610ea757600080fd5b506103b660048036036020811015610ebe57600080fd5b50356001600160a01b03166120f3565b610ed66121d9565b6000546001600160a01b03908116911614610f26576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6015546001600160a01b031681565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610fec5780601f10610fc157610100808354040283529160200191610fec565b820191906000526020600020905b815481529060010190602001808311610fcf57829003601f168201915b5050505050905090565b600061100a6110036121d9565b84846121dd565b5060015b92915050565b601c5481565b60195481565b6110286121d9565b6000546001600160a01b03908116911614611078576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b600e5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c5490565b60175481565b60006110e68484846122c9565b611156846110f26121d9565b61115185604051806060016040528060288152602001613783602891396001600160a01b038a166000908152600560205260408120906111306121d9565b6001600160a01b031681526020810191909152604001600020549190612659565b6121dd565b5060019392505050565b6000600d548211156111a35760405162461bcd60e51b815260040180806020018281038252602a81526020018061369f602a913960400191505060405180910390fd5b60006111ad6126f0565b90506111b98382612713565b9150505b919050565b60115460ff1690565b60215460ff1681565b600061100a6111e16121d9565b8461115185600560006111f26121d9565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061275c565b61122a6121d9565b6000546001600160a01b0390811691161461127a576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b60005b82518110156112d25760016022600085848151811061129857fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905560010161127d565b5060005b815181101561132b576000602260008484815181106112f157fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790556001016112d6565b505050565b6113386121d9565b6000546001600160a01b03908116911614611388576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600c54831115611405576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81611423576000611415846127b6565b5092945061100e9350505050565b600061142e846127b6565b5091945061100e9350505050565b60236020526000908152604090205460ff1681565b602454610100900460ff1681565b6114676121d9565b6000546001600160a01b039081169116146114b7576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b6114cb816114c5858561275c565b9061275c565b6103e814611511576040805162461bcd60e51b815260206004820152600e60248201526d14985d19481b9bdd081d985b1a5960921b604482015290519081900360640190fd5b601b92909255601c55601d55565b6115276121d9565b6000546001600160a01b03908116911614611577576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b6001600160a01b0383166115c1576040516001600160a01b0382169083156108fc029084906000818181858888f193505050501580156115bb573d6000803e3d6000fd5b5061132b565b826001600160a01b031663a9059cbb82846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561161857600080fd5b505af115801561162c573d6000803e3d6000fd5b505050506040513d602081101561164257600080fd5b5050505050565b6116516121d9565b6000546001600160a01b039081169116146116a1576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b6021805460ff1916911515919091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b601f5481565b601b5481565b6001600160a01b0381166000908152600a602052604081205460ff161561171e57506001600160a01b0381166000908152600460205260409020546111bd565b6001600160a01b03821660009081526003602052604090205461100e90611160565b6117486121d9565b6000546001600160a01b03908116911614611798576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116906000805160206137cb833981519152908390a3600080546001600160a01b0319169055565b6014546001600160a01b031681565b6117e76121d9565b6000546001600160a01b03908116911614611837576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b601680546001600160a01b0319166001600160a01b0392909216919091179055565b601e5481565b601d5481565b61186d6121d9565b6000546001600160a01b039081169116146118bd576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b6118de6103e86118d883600c546127fd90919063ffffffff16565b90612713565b601f5550565b6000546001600160a01b031690565b6118fb6121d9565b6000546001600160a01b0390811691161461194b576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b601955565b60108054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610fec5780601f10610fc157610100808354040283529160200191610fec565b600061100a6119be6121d9565b84611151856040518060600160405280602581526020016138d160259139600560006119e86121d9565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612659565b6001546001600160a01b03163314611a625760405162461bcd60e51b81526004018080602001828103825260238152602001806138ae6023913960400191505060405180910390fd5b6002544211611ab8576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116916000805160206137cb83398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60096020526000908152604090205460ff1681565b600061100a611b296121d9565b84846122c9565b60025490565b611b3e6121d9565b6000546001600160a01b03908116911614611b8e576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b601480546001600160a01b039384166001600160a01b03199182161790915560158054929093169116179055565b611bc46121d9565b6000546001600160a01b03908116911614611c14576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b60248054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611c6b6121d9565b6000546001600160a01b03908116911614611cbb576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b602180549115156101000261ff0019909216919091179055565b60205481565b6016546001600160a01b031681565b611cf26121d9565b6000546001600160a01b03908116911614611d42576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b611d5d6103e86118d883600c546127fd90919063ffffffff16565b601e5550565b611d6b6121d9565b6000546001600160a01b03908116911614611dbb576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b60005b8251811015611e1357600160236000858481518110611dd957fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101611dbe565b5060005b815181101561132b57600060236000848481518110611e3257fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101611e17565b611e746121d9565b6000546001600160a01b03908116911614611ec4576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b0384161790915516815542820160025560405181906000805160206137cb833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611f3d6121d9565b6000546001600160a01b03908116911614611f8d576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b6017829055601355601255565b611fa26121d9565b6000546001600160a01b03908116911614611ff2576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6120256121d9565b6000546001600160a01b03908116911614612075576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b61209e6121d9565b6000546001600160a01b039081169116146120ee576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b602055565b6120fb6121d9565b6000546001600160a01b0390811691161461214b576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b6001600160a01b0381166121905760405162461bcd60e51b81526004018080602001828103825260268152602001806136c96026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216916000805160206137cb83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166122225760405162461bcd60e51b815260040180806020018281038252602481526020018061388a6024913960400191505060405180910390fd5b6001600160a01b0382166122675760405162461bcd60e51b81526004018080602001828103825260228152602001806136ef6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6122d38383612856565b6001600160a01b0383166123185760405162461bcd60e51b81526004018080602001828103825260258152602001806138396025913960400191505060405180910390fd5b6001600160a01b03821661235d5760405162461bcd60e51b815260040180806020018281038252602381526020018061367c6023913960400191505060405180910390fd5b6001600160a01b03831660009081526023602052604090205460ff16156123b55760405162461bcd60e51b81526004018080602001828103825260298152602001806137116029913960400191505060405180910390fd5b6001600160a01b03821660009081526023602052604090205460ff161561240d5760405162461bcd60e51b81526004018080602001828103825260298152602001806137116029913960400191505060405180910390fd5b6000811161244c5760405162461bcd60e51b81526004018080602001828103825260298152602001806137eb6029913960400191505060405180910390fd5b6124546118e4565b6001600160a01b0316836001600160a01b03161415801561248e57506124786118e4565b6001600160a01b0316826001600160a01b031614155b80156124b357506001600160a01b03831660009081526008602052604090205460ff16155b80156124d857506001600160a01b03821660009081526008602052604090205460ff16155b1561251e57601e5481111561251e5760405162461bcd60e51b815260040180806020018281038252602881526020018061373a6028913960400191505060405180910390fd5b6125266118e4565b6001600160a01b0316836001600160a01b031614158015612560575061254a6118e4565b6001600160a01b0316826001600160a01b031614155b801561258557506001600160a01b03821660009081526007602052604090205460ff16155b80156125aa57506001600160a01b03831660009081526007602052604090205460ff16155b156125fc57601f546125bf826114c5856116de565b11156125fc5760405162461bcd60e51b815260040180806020018281038252602c81526020018061385e602c913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205460019060ff168061263e57506001600160a01b03831660009081526006602052604090205460ff165b15612647575060005b6126538484848461290f565b50505050565b600081848411156126e85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156126ad578181015183820152602001612695565b50505050905090810190601f1680156126da5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006126fd612bd7565b909250905061270c8282612713565b9250505090565b600061275583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612d3a565b9392505050565b600082820183811015612755576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806127cb89612d9f565b9250925092506000806127e78b856127e16126f0565b86612de1565b909c909b50949950929750909550919350505050565b60008261280c5750600061100e565b8282028284828161281957fe5b04146127555760405162461bcd60e51b81526004018080602001828103825260218152602001806137626021913960400191505060405180910390fd5b602154610100900460ff1661286a5761290b565b6128726118e4565b6001600160a01b0316826001600160a01b031614156128905761290b565b6001600160a01b03821660009081526022602052604090205460ff1680156128d057506001600160a01b03811660009081526022602052604090205460ff165b61290b5760405162461bcd60e51b81526004018080602001828103825260258152602001806138146025913960400191505060405180910390fd5b5050565b6001600160a01b0380851660009081526009602052604080822054928616825290205460ff918216911681806129425750805b156129915760215460ff16612991576040805162461bcd60e51b815260206004820152601060248201526f1cddd85c081b9bdd08195b98589b195960821b604482015290519081900360640190fd5b8115801561299d575080155b156129ac5760006017556129ca565b81156129bd576012546017556129ca565b80156129ca576013546017555b826129d7576129d7612e2e565b6001600160a01b0386166000908152600a602052604090205460ff168015612a1857506001600160a01b0385166000908152600a602052604090205460ff16155b15612a2d57612a28868686612e60565b612b2b565b6001600160a01b0386166000908152600a602052604090205460ff16158015612a6e57506001600160a01b0385166000908152600a602052604090205460ff165b15612a7e57612a28868686612ff8565b6001600160a01b0386166000908152600a602052604090205460ff16158015612ac057506001600160a01b0385166000908152600a602052604090205460ff16155b15612ad057612a2886868661309e565b6001600160a01b0386166000908152600a602052604090205460ff168015612b1057506001600160a01b0385166000908152600a602052604090205460ff165b15612b2057612a288686866130df565b612b2b86868661309e565b6000612b36306116de565b60205490915081108015908190612b50575060245460ff16155b8015612b7557506001600160a01b03881660009081526009602052604090205460ff16155b8015612b9a57506001600160a01b03871660009081526009602052604090205460ff16155b8015612bad5750602454610100900460ff165b15612bc0576020549150612bc08261314f565b84612bcd57612bcd6131bf565b5050505050505050565b600d54600c546000918291825b600b54811015612d08578260036000600b8481548110612c0057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612c6557508160046000600b8481548110612c3e57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612c7c57600d54600c5494509450505050612d36565b612cbc60036000600b8481548110612c9057fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906131cd565b9250612cfe60046000600b8481548110612cd257fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906131cd565b9150600101612be4565b50600c54600d54612d1891612713565b821015612d3057600d54600c54935093505050612d36565b90925090505b9091565b60008183612d895760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156126ad578181015183820152602001612695565b506000838581612d9557fe5b0495945050505050565b600080600080612dae8561320f565b90506000612dbb8661322c565b90506000612dd382612dcd89866131cd565b906131cd565b979296509094509092505050565b60008080612def87866127fd565b90506000612dfd87876127fd565b90506000612e0b86886127fd565b90506000612e1d82612dcd86866131cd565b939a93995092975050505050505050565b601954158015612e3e5750601754155b15612e4857612e5e565b6017805460185560198054601a55600091829055555b565b6000806000806000612e71866127b6565b6001600160a01b038d1660009081526004602052604090205494995092975090955093509150612ea190876131cd565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612ed090866131cd565b6001600160a01b03808a166000908152600360205260408082209390935590891681522054612eff908561275c565b6001600160a01b0388166000908152600360205260409020558115612f9a576000612f3b6103e86118d8601b54866127fd90919063ffffffff16565b90506000612f5a6103e86118d8601c54876127fd90919063ffffffff16565b90506000612f796103e86118d8601d54886127fd90919063ffffffff16565b9050612f8483613249565b612f8d81613308565b612f96826133c7565b5050505b612fa381613249565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a35050505050505050565b6000806000806000613009866127b6565b6001600160a01b038d166000908152600360205260409020549499509297509095509350915061303990866131cd565b6001600160a01b03808a16600090815260036020908152604080832094909455918a1681526004909152205461306f908461275c565b6001600160a01b038816600090815260046020908152604080832093909355600390522054612eff908561275c565b60008060008060006130af866127b6565b6001600160a01b038d1660009081526003602052604090205494995092975090955093509150612ed090866131cd565b60008060008060006130f0866127b6565b6001600160a01b038d166000908152600460205260409020549499509297509095509350915061312090876131cd565b6001600160a01b03891660009081526004602090815260408083209390935560039052205461303990866131cd565b6024805460ff19166001179055476131668261344f565b600061317247836131cd565b604080518581526020810183905281519293507f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486929081900390910190a150506024805460ff1916905550565b601854601755601a54601955565b600061275583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612659565b600061100e6103e86118d8601754856127fd90919063ffffffff16565b600061100e6103e86118d8601954856127fd90919063ffffffff16565b60006132536126f0565b9050600061326183836127fd565b6014546001600160a01b0316600090815260036020526040902054909150613289908261275c565b601480546001600160a01b0390811660009081526003602090815260408083209590955592549091168152600a909152205460ff161561132b576014546001600160a01b03166000908152600460205260409020546132e8908461275c565b6014546001600160a01b0316600090815260046020526040902055505050565b60006133126126f0565b9050600061332083836127fd565b6016546001600160a01b0316600090815260036020526040902054909150613348908261275c565b601680546001600160a01b0390811660009081526003602090815260408083209590955592549091168152600a909152205460ff161561132b576016546001600160a01b03166000908152600460205260409020546133a7908461275c565b6016546001600160a01b0316600090815260046020526040902055505050565b60006133d16126f0565b905060006133df83836127fd565b306000908152600360205260409020549091506133fc908261275c565b30600090815260036020908152604080832093909355600a9052205460ff161561132b573060009081526004602052604090205461343a908461275c565b30600090815260046020526040902055505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061347d57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156134f657600080fd5b505afa15801561350a573d6000803e3d6000fd5b505050506040513d602081101561352057600080fd5b505181518290600190811061353157fe5b60200260200101906001600160a01b031690816001600160a01b03168152505061357c307f0000000000000000000000000000000000000000000000000000000000000000846121dd565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac94783600084601560009054906101000a90046001600160a01b0316426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561363657818101518382015260200161361e565b505050509050019650505050505050600060405180830381600087803b15801561365f57600080fd5b505af1158015613673573d6000803e3d6000fd5b50505050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220746f2074686520626c61636b206c69737420616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f41646472657373206e6f7420696e20616e7469626f74206d6f64652077686974656c69737445524332303a207472616e736665722066726f6d20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d617857616c6c6574416d6f756e742e45524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202462d1d3855b0697e42fabc75ad4425b0c8abbc6a079253a4c83ea369d5e74e264736f6c634300060c0033

Deployed Bytecode

0x60806040526004361061036f5760003560e01c8063715018a6116101c6578063ba916883116100f7578063dd46706411610095578063ea0b0fa11161006f578063ea0b0fa114610e03578063ea2f0b3714610e3e578063f0f165af14610e71578063f2fde38b14610e9b57610376565b8063dd46706414610d6e578063dd62ed3e14610d98578063dd74d14514610dd357610376565b8063d12a7688116100d1578063d12a768814610bea578063d469801614610bff578063d543dbeb14610c14578063d5e4064914610c3e57610376565b8063ba91688314610b57578063c49b9a8014610b92578063c7d53b5014610bbe57610376565b80638f02bb5b11610164578063a69df4b51161013e578063a69df4b514610ac1578063a72905a214610ad6578063a9059cbb14610b09578063b6c5232414610b4257610376565b80638f02bb5b14610a4957806395d89b4114610a73578063a457c2d714610a8857610376565b80637d1db4a5116101a05780637d1db4a5146109e05780637f17af47146109f557806382bf293c14610a0a5780638da5cb5b14610a3457610376565b8063715018a61461098357806375f0a8741461099857806378f7e492146109ad57610376565b8063351a964d116102a05780634dd04c7f1161023e5780635342acb4116102185780635342acb4146108f35780636c0a24eb146109265780636e91ed731461093b57806370a082311461095057610376565b80634dd04c7f1461084e5780634e6f5b6014610884578063525bf097146108c757610376565b8063437823ec1161027a578063437823ec146107a15780634549b039146107d45780634838d165146108065780634a74bb021461083957610376565b8063351a964d1461062357806339509351146106385780633977d9371461067157610376565b806313114a9d1161030d57806322976e0d116102e757806322976e0d1461057657806323b872dd1461058b5780632d838119146105ce578063313ce567146105f857610376565b806313114a9d146105375780631694505e1461054c57806318160ddd1461056157610376565b8063095ea7b311610349578063095ea7b31461047357806309d59a30146104c05780630b38dd3e146104e75780630c77a8f6146104fc57610376565b806301a6b10d1461037b57806306ee6ad8146103b857806306fdde03146103e957610376565b3661037657005b600080fd5b34801561038757600080fd5b506103b66004803603604081101561039e57600080fd5b506001600160a01b0381351690602001351515610ece565b005b3480156103c457600080fd5b506103cd610f51565b604080516001600160a01b039092168252519081900360200190f35b3480156103f557600080fd5b506103fe610f60565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610438578181015183820152602001610420565b50505050905090810190601f1680156104655780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561047f57600080fd5b506104ac6004803603604081101561049657600080fd5b506001600160a01b038135169060200135610ff6565b604080519115158252519081900360200190f35b3480156104cc57600080fd5b506104d5611014565b60408051918252519081900360200190f35b3480156104f357600080fd5b506104d561101a565b34801561050857600080fd5b506103b66004803603604081101561051f57600080fd5b506001600160a01b0381351690602001351515611020565b34801561054357600080fd5b506104d56110a3565b34801561055857600080fd5b506103cd6110a9565b34801561056d57600080fd5b506104d56110cd565b34801561058257600080fd5b506104d56110d3565b34801561059757600080fd5b506104ac600480360360608110156105ae57600080fd5b506001600160a01b038135811691602081013590911690604001356110d9565b3480156105da57600080fd5b506104d5600480360360208110156105f157600080fd5b5035611160565b34801561060457600080fd5b5061060d6111c2565b6040805160ff9092168252519081900360200190f35b34801561062f57600080fd5b506104ac6111cb565b34801561064457600080fd5b506104ac6004803603604081101561065b57600080fd5b506001600160a01b0381351690602001356111d4565b34801561067d57600080fd5b506103b66004803603604081101561069457600080fd5b810190602081018135600160201b8111156106ae57600080fd5b8201836020820111156106c057600080fd5b803590602001918460208302840111600160201b831117156106e157600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561073057600080fd5b82018360208201111561074257600080fd5b803590602001918460208302840111600160201b8311171561076357600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611222945050505050565b3480156107ad57600080fd5b506103b6600480360360208110156107c457600080fd5b50356001600160a01b0316611330565b3480156107e057600080fd5b506104d5600480360360408110156107f757600080fd5b508035906020013515156113ac565b34801561081257600080fd5b506104ac6004803603602081101561082957600080fd5b50356001600160a01b031661143c565b34801561084557600080fd5b506104ac611451565b34801561085a57600080fd5b506103b66004803603606081101561087157600080fd5b508035906020810135906040013561145f565b34801561089057600080fd5b506103b6600480360360608110156108a757600080fd5b506001600160a01b0381358116916020810135916040909101351661151f565b3480156108d357600080fd5b506103b6600480360360208110156108ea57600080fd5b50351515611649565b3480156108ff57600080fd5b506104ac6004803603602081101561091657600080fd5b50356001600160a01b03166116b4565b34801561093257600080fd5b506104d56116d2565b34801561094757600080fd5b506104d56116d8565b34801561095c57600080fd5b506104d56004803603602081101561097357600080fd5b50356001600160a01b03166116de565b34801561098f57600080fd5b506103b6611740565b3480156109a457600080fd5b506103cd6117d0565b3480156109b957600080fd5b506103b6600480360360208110156109d057600080fd5b50356001600160a01b03166117df565b3480156109ec57600080fd5b506104d5611859565b348015610a0157600080fd5b506104d561185f565b348015610a1657600080fd5b506103b660048036036020811015610a2d57600080fd5b5035611865565b348015610a4057600080fd5b506103cd6118e4565b348015610a5557600080fd5b506103b660048036036020811015610a6c57600080fd5b50356118f3565b348015610a7f57600080fd5b506103fe611950565b348015610a9457600080fd5b506104ac60048036036040811015610aab57600080fd5b506001600160a01b0381351690602001356119b1565b348015610acd57600080fd5b506103b6611a19565b348015610ae257600080fd5b506104ac60048036036020811015610af957600080fd5b50356001600160a01b0316611b07565b348015610b1557600080fd5b506104ac60048036036040811015610b2c57600080fd5b506001600160a01b038135169060200135611b1c565b348015610b4e57600080fd5b506104d5611b30565b348015610b6357600080fd5b506103b660048036036040811015610b7a57600080fd5b506001600160a01b0381358116916020013516611b36565b348015610b9e57600080fd5b506103b660048036036020811015610bb557600080fd5b50351515611bbc565b348015610bca57600080fd5b506103b660048036036020811015610be157600080fd5b50351515611c63565b348015610bf657600080fd5b506104d5611cd5565b348015610c0b57600080fd5b506103cd611cdb565b348015610c2057600080fd5b506103b660048036036020811015610c3757600080fd5b5035611cea565b348015610c4a57600080fd5b506103b660048036036040811015610c6157600080fd5b810190602081018135600160201b811115610c7b57600080fd5b820183602082011115610c8d57600080fd5b803590602001918460208302840111600160201b83111715610cae57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b811115610cfd57600080fd5b820183602082011115610d0f57600080fd5b803590602001918460208302840111600160201b83111715610d3057600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611d63945050505050565b348015610d7a57600080fd5b506103b660048036036020811015610d9157600080fd5b5035611e6c565b348015610da457600080fd5b506104d560048036036040811015610dbb57600080fd5b506001600160a01b0381358116916020013516611f0a565b348015610ddf57600080fd5b506103b660048036036040811015610df657600080fd5b5080359060200135611f35565b348015610e0f57600080fd5b506103b660048036036040811015610e2657600080fd5b506001600160a01b0381351690602001351515611f9a565b348015610e4a57600080fd5b506103b660048036036020811015610e6157600080fd5b50356001600160a01b031661201d565b348015610e7d57600080fd5b506103b660048036036020811015610e9457600080fd5b5035612096565b348015610ea757600080fd5b506103b660048036036020811015610ebe57600080fd5b50356001600160a01b03166120f3565b610ed66121d9565b6000546001600160a01b03908116911614610f26576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6015546001600160a01b031681565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610fec5780601f10610fc157610100808354040283529160200191610fec565b820191906000526020600020905b815481529060010190602001808311610fcf57829003601f168201915b5050505050905090565b600061100a6110036121d9565b84846121dd565b5060015b92915050565b601c5481565b60195481565b6110286121d9565b6000546001600160a01b03908116911614611078576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b600e5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600c5490565b60175481565b60006110e68484846122c9565b611156846110f26121d9565b61115185604051806060016040528060288152602001613783602891396001600160a01b038a166000908152600560205260408120906111306121d9565b6001600160a01b031681526020810191909152604001600020549190612659565b6121dd565b5060019392505050565b6000600d548211156111a35760405162461bcd60e51b815260040180806020018281038252602a81526020018061369f602a913960400191505060405180910390fd5b60006111ad6126f0565b90506111b98382612713565b9150505b919050565b60115460ff1690565b60215460ff1681565b600061100a6111e16121d9565b8461115185600560006111f26121d9565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061275c565b61122a6121d9565b6000546001600160a01b0390811691161461127a576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b60005b82518110156112d25760016022600085848151811061129857fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905560010161127d565b5060005b815181101561132b576000602260008484815181106112f157fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790556001016112d6565b505050565b6113386121d9565b6000546001600160a01b03908116911614611388576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600c54831115611405576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81611423576000611415846127b6565b5092945061100e9350505050565b600061142e846127b6565b5091945061100e9350505050565b60236020526000908152604090205460ff1681565b602454610100900460ff1681565b6114676121d9565b6000546001600160a01b039081169116146114b7576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b6114cb816114c5858561275c565b9061275c565b6103e814611511576040805162461bcd60e51b815260206004820152600e60248201526d14985d19481b9bdd081d985b1a5960921b604482015290519081900360640190fd5b601b92909255601c55601d55565b6115276121d9565b6000546001600160a01b03908116911614611577576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b6001600160a01b0383166115c1576040516001600160a01b0382169083156108fc029084906000818181858888f193505050501580156115bb573d6000803e3d6000fd5b5061132b565b826001600160a01b031663a9059cbb82846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561161857600080fd5b505af115801561162c573d6000803e3d6000fd5b505050506040513d602081101561164257600080fd5b5050505050565b6116516121d9565b6000546001600160a01b039081169116146116a1576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b6021805460ff1916911515919091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b601f5481565b601b5481565b6001600160a01b0381166000908152600a602052604081205460ff161561171e57506001600160a01b0381166000908152600460205260409020546111bd565b6001600160a01b03821660009081526003602052604090205461100e90611160565b6117486121d9565b6000546001600160a01b03908116911614611798576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116906000805160206137cb833981519152908390a3600080546001600160a01b0319169055565b6014546001600160a01b031681565b6117e76121d9565b6000546001600160a01b03908116911614611837576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b601680546001600160a01b0319166001600160a01b0392909216919091179055565b601e5481565b601d5481565b61186d6121d9565b6000546001600160a01b039081169116146118bd576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b6118de6103e86118d883600c546127fd90919063ffffffff16565b90612713565b601f5550565b6000546001600160a01b031690565b6118fb6121d9565b6000546001600160a01b0390811691161461194b576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b601955565b60108054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610fec5780601f10610fc157610100808354040283529160200191610fec565b600061100a6119be6121d9565b84611151856040518060600160405280602581526020016138d160259139600560006119e86121d9565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612659565b6001546001600160a01b03163314611a625760405162461bcd60e51b81526004018080602001828103825260238152602001806138ae6023913960400191505060405180910390fd5b6002544211611ab8576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116916000805160206137cb83398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60096020526000908152604090205460ff1681565b600061100a611b296121d9565b84846122c9565b60025490565b611b3e6121d9565b6000546001600160a01b03908116911614611b8e576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b601480546001600160a01b039384166001600160a01b03199182161790915560158054929093169116179055565b611bc46121d9565b6000546001600160a01b03908116911614611c14576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b60248054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611c6b6121d9565b6000546001600160a01b03908116911614611cbb576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b602180549115156101000261ff0019909216919091179055565b60205481565b6016546001600160a01b031681565b611cf26121d9565b6000546001600160a01b03908116911614611d42576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b611d5d6103e86118d883600c546127fd90919063ffffffff16565b601e5550565b611d6b6121d9565b6000546001600160a01b03908116911614611dbb576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b60005b8251811015611e1357600160236000858481518110611dd957fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101611dbe565b5060005b815181101561132b57600060236000848481518110611e3257fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101611e17565b611e746121d9565b6000546001600160a01b03908116911614611ec4576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b0384161790915516815542820160025560405181906000805160206137cb833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611f3d6121d9565b6000546001600160a01b03908116911614611f8d576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b6017829055601355601255565b611fa26121d9565b6000546001600160a01b03908116911614611ff2576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6120256121d9565b6000546001600160a01b03908116911614612075576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b61209e6121d9565b6000546001600160a01b039081169116146120ee576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b602055565b6120fb6121d9565b6000546001600160a01b0390811691161461214b576040805162461bcd60e51b815260206004820181905260248201526000805160206137ab833981519152604482015290519081900360640190fd5b6001600160a01b0381166121905760405162461bcd60e51b81526004018080602001828103825260268152602001806136c96026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216916000805160206137cb83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166122225760405162461bcd60e51b815260040180806020018281038252602481526020018061388a6024913960400191505060405180910390fd5b6001600160a01b0382166122675760405162461bcd60e51b81526004018080602001828103825260228152602001806136ef6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6122d38383612856565b6001600160a01b0383166123185760405162461bcd60e51b81526004018080602001828103825260258152602001806138396025913960400191505060405180910390fd5b6001600160a01b03821661235d5760405162461bcd60e51b815260040180806020018281038252602381526020018061367c6023913960400191505060405180910390fd5b6001600160a01b03831660009081526023602052604090205460ff16156123b55760405162461bcd60e51b81526004018080602001828103825260298152602001806137116029913960400191505060405180910390fd5b6001600160a01b03821660009081526023602052604090205460ff161561240d5760405162461bcd60e51b81526004018080602001828103825260298152602001806137116029913960400191505060405180910390fd5b6000811161244c5760405162461bcd60e51b81526004018080602001828103825260298152602001806137eb6029913960400191505060405180910390fd5b6124546118e4565b6001600160a01b0316836001600160a01b03161415801561248e57506124786118e4565b6001600160a01b0316826001600160a01b031614155b80156124b357506001600160a01b03831660009081526008602052604090205460ff16155b80156124d857506001600160a01b03821660009081526008602052604090205460ff16155b1561251e57601e5481111561251e5760405162461bcd60e51b815260040180806020018281038252602881526020018061373a6028913960400191505060405180910390fd5b6125266118e4565b6001600160a01b0316836001600160a01b031614158015612560575061254a6118e4565b6001600160a01b0316826001600160a01b031614155b801561258557506001600160a01b03821660009081526007602052604090205460ff16155b80156125aa57506001600160a01b03831660009081526007602052604090205460ff16155b156125fc57601f546125bf826114c5856116de565b11156125fc5760405162461bcd60e51b815260040180806020018281038252602c81526020018061385e602c913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205460019060ff168061263e57506001600160a01b03831660009081526006602052604090205460ff165b15612647575060005b6126538484848461290f565b50505050565b600081848411156126e85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156126ad578181015183820152602001612695565b50505050905090810190601f1680156126da5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006126fd612bd7565b909250905061270c8282612713565b9250505090565b600061275583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612d3a565b9392505050565b600082820183811015612755576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806127cb89612d9f565b9250925092506000806127e78b856127e16126f0565b86612de1565b909c909b50949950929750909550919350505050565b60008261280c5750600061100e565b8282028284828161281957fe5b04146127555760405162461bcd60e51b81526004018080602001828103825260218152602001806137626021913960400191505060405180910390fd5b602154610100900460ff1661286a5761290b565b6128726118e4565b6001600160a01b0316826001600160a01b031614156128905761290b565b6001600160a01b03821660009081526022602052604090205460ff1680156128d057506001600160a01b03811660009081526022602052604090205460ff165b61290b5760405162461bcd60e51b81526004018080602001828103825260258152602001806138146025913960400191505060405180910390fd5b5050565b6001600160a01b0380851660009081526009602052604080822054928616825290205460ff918216911681806129425750805b156129915760215460ff16612991576040805162461bcd60e51b815260206004820152601060248201526f1cddd85c081b9bdd08195b98589b195960821b604482015290519081900360640190fd5b8115801561299d575080155b156129ac5760006017556129ca565b81156129bd576012546017556129ca565b80156129ca576013546017555b826129d7576129d7612e2e565b6001600160a01b0386166000908152600a602052604090205460ff168015612a1857506001600160a01b0385166000908152600a602052604090205460ff16155b15612a2d57612a28868686612e60565b612b2b565b6001600160a01b0386166000908152600a602052604090205460ff16158015612a6e57506001600160a01b0385166000908152600a602052604090205460ff165b15612a7e57612a28868686612ff8565b6001600160a01b0386166000908152600a602052604090205460ff16158015612ac057506001600160a01b0385166000908152600a602052604090205460ff16155b15612ad057612a2886868661309e565b6001600160a01b0386166000908152600a602052604090205460ff168015612b1057506001600160a01b0385166000908152600a602052604090205460ff165b15612b2057612a288686866130df565b612b2b86868661309e565b6000612b36306116de565b60205490915081108015908190612b50575060245460ff16155b8015612b7557506001600160a01b03881660009081526009602052604090205460ff16155b8015612b9a57506001600160a01b03871660009081526009602052604090205460ff16155b8015612bad5750602454610100900460ff165b15612bc0576020549150612bc08261314f565b84612bcd57612bcd6131bf565b5050505050505050565b600d54600c546000918291825b600b54811015612d08578260036000600b8481548110612c0057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612c6557508160046000600b8481548110612c3e57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612c7c57600d54600c5494509450505050612d36565b612cbc60036000600b8481548110612c9057fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906131cd565b9250612cfe60046000600b8481548110612cd257fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906131cd565b9150600101612be4565b50600c54600d54612d1891612713565b821015612d3057600d54600c54935093505050612d36565b90925090505b9091565b60008183612d895760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156126ad578181015183820152602001612695565b506000838581612d9557fe5b0495945050505050565b600080600080612dae8561320f565b90506000612dbb8661322c565b90506000612dd382612dcd89866131cd565b906131cd565b979296509094509092505050565b60008080612def87866127fd565b90506000612dfd87876127fd565b90506000612e0b86886127fd565b90506000612e1d82612dcd86866131cd565b939a93995092975050505050505050565b601954158015612e3e5750601754155b15612e4857612e5e565b6017805460185560198054601a55600091829055555b565b6000806000806000612e71866127b6565b6001600160a01b038d1660009081526004602052604090205494995092975090955093509150612ea190876131cd565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612ed090866131cd565b6001600160a01b03808a166000908152600360205260408082209390935590891681522054612eff908561275c565b6001600160a01b0388166000908152600360205260409020558115612f9a576000612f3b6103e86118d8601b54866127fd90919063ffffffff16565b90506000612f5a6103e86118d8601c54876127fd90919063ffffffff16565b90506000612f796103e86118d8601d54886127fd90919063ffffffff16565b9050612f8483613249565b612f8d81613308565b612f96826133c7565b5050505b612fa381613249565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a35050505050505050565b6000806000806000613009866127b6565b6001600160a01b038d166000908152600360205260409020549499509297509095509350915061303990866131cd565b6001600160a01b03808a16600090815260036020908152604080832094909455918a1681526004909152205461306f908461275c565b6001600160a01b038816600090815260046020908152604080832093909355600390522054612eff908561275c565b60008060008060006130af866127b6565b6001600160a01b038d1660009081526003602052604090205494995092975090955093509150612ed090866131cd565b60008060008060006130f0866127b6565b6001600160a01b038d166000908152600460205260409020549499509297509095509350915061312090876131cd565b6001600160a01b03891660009081526004602090815260408083209390935560039052205461303990866131cd565b6024805460ff19166001179055476131668261344f565b600061317247836131cd565b604080518581526020810183905281519293507f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486929081900390910190a150506024805460ff1916905550565b601854601755601a54601955565b600061275583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612659565b600061100e6103e86118d8601754856127fd90919063ffffffff16565b600061100e6103e86118d8601954856127fd90919063ffffffff16565b60006132536126f0565b9050600061326183836127fd565b6014546001600160a01b0316600090815260036020526040902054909150613289908261275c565b601480546001600160a01b0390811660009081526003602090815260408083209590955592549091168152600a909152205460ff161561132b576014546001600160a01b03166000908152600460205260409020546132e8908461275c565b6014546001600160a01b0316600090815260046020526040902055505050565b60006133126126f0565b9050600061332083836127fd565b6016546001600160a01b0316600090815260036020526040902054909150613348908261275c565b601680546001600160a01b0390811660009081526003602090815260408083209590955592549091168152600a909152205460ff161561132b576016546001600160a01b03166000908152600460205260409020546133a7908461275c565b6016546001600160a01b0316600090815260046020526040902055505050565b60006133d16126f0565b905060006133df83836127fd565b306000908152600360205260409020549091506133fc908261275c565b30600090815260036020908152604080832093909355600a9052205460ff161561132b573060009081526004602052604090205461343a908461275c565b30600090815260046020526040902055505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061347d57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156134f657600080fd5b505afa15801561350a573d6000803e3d6000fd5b505050506040513d602081101561352057600080fd5b505181518290600190811061353157fe5b60200260200101906001600160a01b031690816001600160a01b03168152505061357c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846121dd565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac94783600084601560009054906101000a90046001600160a01b0316426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561363657818101518382015260200161361e565b505050509050019650505050505050600060405180830381600087803b15801561365f57600080fd5b505af1158015613673573d6000803e3d6000fd5b50505050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220746f2074686520626c61636b206c69737420616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f41646472657373206e6f7420696e20616e7469626f74206d6f64652077686974656c69737445524332303a207472616e736665722066726f6d20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d617857616c6c6574416d6f756e742e45524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202462d1d3855b0697e42fabc75ad4425b0c8abbc6a079253a4c83ea369d5e74e264736f6c634300060c0033

Deployed Bytecode Sourcemap

23927:25227:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32163:140;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32163:140:0;;;;;;;;;;:::i;:::-;;25047:82;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;25047:82:0;;;;;;;;;;;;;;27020:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28299:193;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28299:193:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;25505:39;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;25359:32;;;;;;;;;;;;;:::i;32025:130::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32025:130:0;;;;;;;;;;:::i;29670:87::-;;;;;;;;;;;;;:::i;25956:51::-;;;;;;;;;;;;;:::i;27591:95::-;;;;;;;;;;;;;:::i;25235:51::-;;;;;;;;;;;;;:::i;28500:446::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28500:446:0;;;;;;;;;;;;;;;;;:::i;30246:322::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30246:322:0;;:::i;27500:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25776:32;;;;;;;;;;;;;:::i;28954:300::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28954:300:0;;;;;;;;:::i;39303:397::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;39303:397:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;39303:397:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39303:397:0;;;;;;;;-1:-1:-1;39303:397:0;;-1:-1:-1;;;;;39303:397:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;39303:397:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39303:397:0;;-1:-1:-1;39303:397:0;;-1:-1:-1;;;;;39303:397:0:i;31672:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31672:111:0;-1:-1:-1;;;;;31672:111:0;;:::i;29765:473::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29765:473:0;;;;;;;;;:::i;25908:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25908:41:0;-1:-1:-1;;;;;25908:41:0;;:::i;26044:40::-;;;;;;;;;;;;;:::i;32623:380::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32623:380:0;;;;;;;;;;;;:::i;48861:290::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;48861:290:0;;;;;;;;;;;;;;;;;:::i;39105:96::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39105:96:0;;;;:::i;38476:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38476:124:0;-1:-1:-1;;;;;38476:124:0;;:::i;25653:47::-;;;;;;;;;;;;;:::i;25456:41::-;;;;;;;;;;;;;:::i;27694:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27694:198:0;-1:-1:-1;;;;;27694:198:0;;:::i;17506:148::-;;;;;;;;;;;;;:::i;24954:84::-;;;;;;;;;;;;;:::i;27295:102::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27295:102:0;-1:-1:-1;;;;;27295:102:0;;:::i;25603:43::-;;;;;;;;;;;;;:::i;25552:41::-;;;;;;;;;;;;;:::i;33271:144::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33271:144:0;;:::i;16864:79::-;;;;;;;;;;;;;:::i;33011:108::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33011:108:0;;:::i;27405:87::-;;;;;;;;;;;;;:::i;29262:400::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29262:400:0;;;;;;;;:::i;18549:329::-;;;;;;;;;;;;;:::i;24410:40::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24410:40:0;-1:-1:-1;;;;;24410:40:0;;:::i;27900:199::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27900:199:0;;;;;;;;:::i;18098:89::-;;;;;;;;;;;;;:::i;27111:176::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27111:176:0;;;;;;;;;;:::i;47108:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47108:171:0;;;;:::i;38987:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38987:110:0;;;;:::i;25707:62::-;;;;;;;;;;;;;:::i;25142:84::-;;;;;;;;;;;;;:::i;33127:136::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33127:136:0;;:::i;46686:414::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;46686:414:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;46686:414:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46686:414:0;;;;;;;;-1:-1:-1;46686:414:0;;-1:-1:-1;;;;;46686:414:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;46686:414:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46686:414:0;;-1:-1:-1;46686:414:0;;-1:-1:-1;;;;;46686:414:0:i;18263:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18263:214:0;;:::i;28107:184::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28107:184:0;;;;;;;;;;:::i;32311:304::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32311:304:0;;;;;;;:::i;31791:108::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31791:108:0;;;;;;;;;;:::i;31907:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31907:110:0;-1:-1:-1;;;;;31907:110:0;;:::i;47287:134::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47287:134:0;;:::i;17809:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17809:281:0;-1:-1:-1;;;;;17809:281:0;;:::i;32163:140::-;17086:12;:10;:12::i;:::-;17076:6;;-1:-1:-1;;;;;17076:6:0;;;:22;;;17068:67;;;;;-1:-1:-1;;;17068:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17068:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32252:34:0;;;::::1;;::::0;;;:25:::1;:34;::::0;;;;:43;;-1:-1:-1;;32252:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32163:140::o;25047:82::-;;;-1:-1:-1;;;;;25047:82:0;;:::o;27020:83::-;27090:5;27083:12;;;;;;;;-1:-1:-1;;27083:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27057:13;;27083:12;;27090:5;;27083:12;;27090:5;27083:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27020:83;:::o;28299:193::-;28401:4;28423:39;28432:12;:10;:12::i;:::-;28446:7;28455:6;28423:8;:39::i;:::-;-1:-1:-1;28480:4:0;28299:193;;;;;:::o;25505:39::-;;;;:::o;25359:32::-;;;;:::o;32025:130::-;17086:12;:10;:12::i;:::-;17076:6;;-1:-1:-1;;;;;17076:6:0;;;:22;;;17068:67;;;;;-1:-1:-1;;;17068:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17068:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32109:29:0;;;::::1;;::::0;;;:20:::1;:29;::::0;;;;:38;;-1:-1:-1;;32109:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32025:130::o;29670:87::-;29739:10;;29670:87;:::o;25956:51::-;;;:::o;27591:95::-;27671:7;;27591:95;:::o;25235:51::-;;;;:::o;28500:446::-;28632:4;28649:36;28659:6;28667:9;28678:6;28649:9;:36::i;:::-;28696:220;28719:6;28740:12;:10;:12::i;:::-;28767:138;28823:6;28767:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28767:19:0;;;;;;:11;:19;;;;;;28787:12;:10;:12::i;:::-;-1:-1:-1;;;;;28767:33:0;;;;;;;;;;;;-1:-1:-1;28767:33:0;;;:138;:37;:138::i;:::-;28696:8;:220::i;:::-;-1:-1:-1;28934:4:0;28500:446;;;;;:::o;30246:322::-;30340:7;30398;;30387;:18;;30365:110;;;;-1:-1:-1;;;30365:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30486:19;30508:10;:8;:10::i;:::-;30486:32;-1:-1:-1;30536:24:0;:7;30486:32;30536:11;:24::i;:::-;30529:31;;;30246:322;;;;:::o;27500:83::-;27566:9;;;;27500:83;:::o;25776:32::-;;;;;;:::o;28954:300::-;29069:4;29091:133;29114:12;:10;:12::i;:::-;29141:7;29163:50;29202:10;29163:11;:25;29175:12;:10;:12::i;:::-;-1:-1:-1;;;;;29163:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29163:25:0;;;:34;;;;;;;;;;;:38;:50::i;39303:397::-;17086:12;:10;:12::i;:::-;17076:6;;-1:-1:-1;;;;;17076:6:0;;;:22;;;17068:67;;;;;-1:-1:-1;;;17068:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17068:67:0;;;;;;;;;;;;;;;39461:9:::1;39456:109;39480:13;:20;39476:1;:24;39456:109;;;39561:4;39520:20;:38;39541:13;39555:1;39541:16;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;39520:38:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;39520:38:0;:45;;-1:-1:-1;;39520:45:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;39502:3:0::1;39456:109;;;;39581:9;39576:116;39600:16;:23;39596:1;:27;39576:116;;;39687:5;39643:20;:41;39664:16;39681:1;39664:19;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;39643:41:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;39643:41:0;:49;;-1:-1:-1;;39643:49:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;39625:3:0::1;39576:116;;;;39303:397:::0;;:::o;31672:111::-;17086:12;:10;:12::i;:::-;17076:6;;-1:-1:-1;;;;;17076:6:0;;;:22;;;17068:67;;;;;-1:-1:-1;;;17068:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17068:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31741:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;31741:34:0::1;31771:4;31741:34;::::0;;31672:111::o;29765:473::-;29883:7;29927;;29916;:18;;29908:62;;;;;-1:-1:-1;;;29908:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29986:17;29981:250;;30021:15;30047:19;30058:7;30047:10;:19::i;:::-;-1:-1:-1;30020:46:0;;-1:-1:-1;30081:14:0;;-1:-1:-1;;;;30081:14:0;29981:250;30131:23;30163:19;30174:7;30163:10;:19::i;:::-;-1:-1:-1;30128:54:0;;-1:-1:-1;30197:22:0;;-1:-1:-1;;;;30197:22:0;25908:41;;;;;;;;;;;;;;;:::o;26044:40::-;;;;;;;;;:::o;32623:380::-;17086:12;:10;:12::i;:::-;17076:6;;-1:-1:-1;;;;;17076:6:0;;;:22;;;17068:67;;;;;-1:-1:-1;;;17068:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17068:67:0;;;;;;;;;;;;;;;32784:48:::1;32819:12:::0;32784:30:::1;:13:::0;32802:11;32784:17:::1;:30::i;:::-;:34:::0;::::1;:48::i;:::-;32836:4;32784:56;32776:83;;;::::0;;-1:-1:-1;;;32776:83:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;32776:83:0;;;;;;;;;;;;;::::1;;32870:20;:36:::0;;;;32917:18:::1;:32:::0;32960:20:::1;:35:::0;32623:380::o;48861:290::-;17086:12;:10;:12::i;:::-;17076:6;;-1:-1:-1;;;;;17076:6:0;;;:22;;;17068:67;;;;;-1:-1:-1;;;17068:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17068:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;49015:25:0;::::1;49011:83;;49064:18;::::0;-1:-1:-1;;;;;49064:11:0;::::1;::::0;:18;::::1;;;::::0;49076:5;;49064:18:::1;::::0;;;49076:5;49064:11;:18;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;49057:25;;49011:83;49111:11;-1:-1:-1::0;;;;;49104:28:0::1;;49133:2;49137:5;49104:39;;;;;;;;;;;;;-1:-1:-1::0;;;;;49104:39:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;48861:290:0;;;:::o;39105:96::-;17086:12;:10;:12::i;:::-;17076:6;;-1:-1:-1;;;;;17076:6:0;;;:22;;;17068:67;;;;;-1:-1:-1;;;17068:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17068:67:0;;;;;;;;;;;;;;;39170:13:::1;:23:::0;;-1:-1:-1;;39170:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39105:96::o;38476:124::-;-1:-1:-1;;;;;38565:27:0;38541:4;38565:27;;;:18;:27;;;;;;;;;38476:124::o;25653:47::-;;;;:::o;25456:41::-;;;;:::o;27694:198::-;-1:-1:-1;;;;;27784:20:0;;27760:7;27784:20;;;:11;:20;;;;;;;;27780:49;;;-1:-1:-1;;;;;;27813:16:0;;;;;;:7;:16;;;;;;27806:23;;27780:49;-1:-1:-1;;;;;27867:16:0;;;;;;:7;:16;;;;;;27847:37;;:19;:37::i;17506:148::-;17086:12;:10;:12::i;:::-;17076:6;;-1:-1:-1;;;;;17076:6:0;;;:22;;;17068:67;;;;;-1:-1:-1;;;17068:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17068:67:0;;;;;;;;;;;;;;;17613:1:::1;17597:6:::0;;17576:40:::1;::::0;-1:-1:-1;;;;;17597:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;17576:40:0;17613:1;;17576:40:::1;17644:1;17627:19:::0;;-1:-1:-1;;;;;;17627:19:0::1;::::0;;17506:148::o;24954:84::-;;;-1:-1:-1;;;;;24954:84:0;;:::o;27295:102::-;17086:12;:10;:12::i;:::-;17076:6;;-1:-1:-1;;;;;17076:6:0;;;:22;;;17068:67;;;;;-1:-1:-1;;;17068:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17068:67:0;;;;;;;;;;;;;;;27364:15:::1;:25:::0;;-1:-1:-1;;;;;;27364:25:0::1;-1:-1:-1::0;;;;;27364:25:0;;;::::1;::::0;;;::::1;::::0;;27295:102::o;25603:43::-;;;;:::o;25552:41::-;;;;:::o;33271:144::-;17086:12;:10;:12::i;:::-;17076:6;;-1:-1:-1;;;;;17076:6:0;;;:22;;;17068:67;;;;;-1:-1:-1;;;17068:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17068:67:0;;;;;;;;;;;;;;;33371:36:::1;33401:5;33371:25;33383:12;33371:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:36::i;:::-;33352:16;:55:::0;-1:-1:-1;33271:144:0:o;16864:79::-;16902:7;16929:6;-1:-1:-1;;;;;16929:6:0;16864:79;:::o;33011:108::-;17086:12;:10;:12::i;:::-;17076:6;;-1:-1:-1;;;;;17076:6:0;;;:22;;;17068:67;;;;;-1:-1:-1;;;17068:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17068:67:0;;;;;;;;;;;;;;;33093:12:::1;:18:::0;33011:108::o;27405:87::-;27477:7;27470:14;;;;;;;;-1:-1:-1;;27470:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27444:13;;27470:14;;27477:7;;27470:14;;27477:7;27470:14;;;;;;;;;;;;;;;;;;;;;;;;29262:400;29382:4;29404:228;29427:12;:10;:12::i;:::-;29454:7;29476:145;29533:15;29476:145;;;;;;;;;;;;;;;;;:11;:25;29488:12;:10;:12::i;:::-;-1:-1:-1;;;;;29476:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29476:25:0;;;:34;;;;;;;;;;;:145;:38;:145::i;18549:329::-;18615:14;;-1:-1:-1;;;;;18615:14:0;18633:10;18615:28;18593:113;;;;-1:-1:-1;;;18593:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18731:9;;18725:3;:15;18717:59;;;;;-1:-1:-1;;;18717:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18821:14;;;18813:6;;18792:44;;-1:-1:-1;;;;;18821:14:0;;;;18813:6;;;;-1:-1:-1;;;;;;;;;;;18792:44:0;;18856:14;;;18847:23;;-1:-1:-1;;;;;;18847:23:0;-1:-1:-1;;;;;18856:14:0;;;18847:23;;;;;;18549:329::o;24410:40::-;;;;;;;;;;;;;;;:::o;27900:199::-;28005:4;28027:42;28037:12;:10;:12::i;:::-;28051:9;28062:6;28027:9;:42::i;18098:89::-;18170:9;;18098:89;:::o;27111:176::-;17086:12;:10;:12::i;:::-;17076:6;;-1:-1:-1;;;;;17076:6:0;;;:22;;;17068:67;;;;;-1:-1:-1;;;17068:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17068:67:0;;;;;;;;;;;;;;;27215:15:::1;:25:::0;;-1:-1:-1;;;;;27215:25:0;;::::1;-1:-1:-1::0;;;;;;27215:25:0;;::::1;;::::0;;;27251:13:::1;:28:::0;;;;;::::1;::::0;::::1;;::::0;;27111:176::o;47108:171::-;17086:12;:10;:12::i;:::-;17076:6;;-1:-1:-1;;;;;17076:6:0;;;:22;;;17068:67;;;;;-1:-1:-1;;;17068:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17068:67:0;;;;;;;;;;;;;;;47185:21:::1;:32:::0;;;::::1;;;::::0;::::1;-1:-1:-1::0;;47185:32:0;;::::1;::::0;;;::::1;::::0;;;47233:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;47108:171:::0;:::o;38987:110::-;17086:12;:10;:12::i;:::-;17076:6;;-1:-1:-1;;;;;17076:6:0;;;:22;;;17068:67;;;;;-1:-1:-1;;;17068:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17068:67:0;;;;;;;;;;;;;;;39059:20:::1;:30:::0;;;::::1;;;;-1:-1:-1::0;;39059:30:0;;::::1;::::0;;;::::1;::::0;;38987:110::o;25707:62::-;;;;:::o;25142:84::-;;;-1:-1:-1;;;;;25142:84:0;;:::o;33127:136::-;17086:12;:10;:12::i;:::-;17076:6;;-1:-1:-1;;;;;17076:6:0;;;:22;;;17068:67;;;;;-1:-1:-1;;;17068:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17068:67:0;;;;;;;;;;;;;;;33219:36:::1;33249:5;33219:25;33231:12;33219:7;;:11;;:25;;;;:::i;:36::-;33204:12;:51:::0;-1:-1:-1;33127:136:0:o;46686:414::-;17086:12;:10;:12::i;:::-;17076:6;;-1:-1:-1;;;;;17076:6:0;;;:22;;;17068:67;;;;;-1:-1:-1;;;17068:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17068:67:0;;;;;;;;;;;;;;;46835:13:::1;46830:122;46858:12;:19;46850:5;:27;46830:122;;;46936:4;46903:9;:30;46913:12;46926:5;46913:19;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;46903:30:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;46903:30:0;:37;;-1:-1:-1;;46903:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;46879:7:0::1;46830:122;;;;46967:13;46962:131;46990:16;:23;46982:5;:31;46962:131;;;47076:5;47039:9;:34;47049:16;47066:5;47049:23;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;47039:34:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;47039:34:0;:42;;-1:-1:-1;;47039:42:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;47015:7:0::1;46962:131;;18263:214:::0;17086:12;:10;:12::i;:::-;17076:6;;-1:-1:-1;;;;;17076:6:0;;;:22;;;17068:67;;;;;-1:-1:-1;;;17068:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17068:67:0;;;;;;;;;;;;;;;18344:6:::1;::::0;;;18327:23;;-1:-1:-1;;;;;;18327:23:0;;::::1;-1:-1:-1::0;;;;;18344:6:0;::::1;18327:23;::::0;;;18361:19:::1;::::0;;18403:3:::1;:10:::0;::::1;18391:9;:22:::0;18429:40:::1;::::0;18344:6;;-1:-1:-1;;;;;;;;;;;18429:40:0;18344:6;;18429:40:::1;18263:214:::0;:::o;28107:184::-;-1:-1:-1;;;;;28256:18:0;;;28224:7;28256:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28107:184::o;32311:304::-;17086:12;:10;:12::i;:::-;17076:6;;-1:-1:-1;;;;;17076:6:0;;;:22;;;17068:67;;;;;-1:-1:-1;;;17068:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17068:67:0;;;;;;;;;;;;;;;32464:13:::1;:35:::0;;;32510:21:::1;:44:::0;32565:20:::1;:42:::0;32311:304::o;31791:108::-;17086:12;:10;:12::i;:::-;17076:6;;-1:-1:-1;;;;;17076:6:0;;;:22;;;17068:67;;;;;-1:-1:-1;;;17068:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17068:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31869:14:0;;;::::1;;::::0;;;:8:::1;:14;::::0;;;;:22;;-1:-1:-1;;31869:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31791:108::o;31907:110::-;17086:12;:10;:12::i;:::-;17076:6;;-1:-1:-1;;;;;17076:6:0;;;:22;;;17068:67;;;;;-1:-1:-1;;;17068:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17068:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31974:27:0::1;32004:5;31974:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;31974:35:0::1;::::0;;31907:110::o;47287:134::-;17086:12;:10;:12::i;:::-;17076:6;;-1:-1:-1;;;;;17076:6:0;;;:22;;;17068:67;;;;;-1:-1:-1;;;17068:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17068:67:0;;;;;;;;;;;;;;;47374:29:::1;:39:::0;47287:134::o;17809:281::-;17086:12;:10;:12::i;:::-;17076:6;;-1:-1:-1;;;;;17076:6:0;;;:22;;;17068:67;;;;;-1:-1:-1;;;17068:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17068:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17912:22:0;::::1;17890:110;;;;-1:-1:-1::0;;;17890:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18037:6;::::0;;18016:38:::1;::::0;-1:-1:-1;;;;;18016:38:0;;::::1;::::0;18037:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;18016:38:0;::::1;18065:6;:17:::0;;-1:-1:-1;;;;;;18065:17:0::1;-1:-1:-1::0;;;;;18065:17:0;;;::::1;::::0;;;::::1;::::0;;17809:281::o;8822:106::-;8910:10;8822:106;:::o;38608:371::-;-1:-1:-1;;;;;38735:19:0;;38727:68;;;;-1:-1:-1;;;38727:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38814:21:0;;38806:68;;;;-1:-1:-1;;;38806:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38887:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;38939:32;;;;;;;;;;;;;;;;;38608:371;;;:::o;40023:1424::-;40137:26;40154:4;40160:2;40137:16;:26::i;:::-;-1:-1:-1;;;;;40182:18:0;;40174:68;;;;-1:-1:-1;;;40174:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40261:16:0;;40253:64;;;;-1:-1:-1;;;40253:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40337:15:0;;;;;;:9;:15;;;;;;;;40336:16;40328:70;;;;-1:-1:-1;;;40328:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40418:13:0;;;;;;:9;:13;;;;;;;;40417:14;40409:68;;;;-1:-1:-1;;;40409:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40505:1;40496:6;:10;40488:64;;;;-1:-1:-1;;;40488:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40575:7;:5;:7::i;:::-;-1:-1:-1;;;;;40567:15:0;:4;-1:-1:-1;;;;;40567:15:0;;;:32;;;;;40592:7;:5;:7::i;:::-;-1:-1:-1;;;;;40586:13:0;:2;-1:-1:-1;;;;;40586:13:0;;;40567:32;:68;;;;-1:-1:-1;;;;;;40604:31:0;;;;;;:25;:31;;;;;;;;40603:32;40567:68;:102;;;;-1:-1:-1;;;;;;40640:29:0;;;;;;:25;:29;;;;;;;;40639:30;40567:102;40563:245;;;40720:12;;40710:6;:22;;40684:124;;;;-1:-1:-1;;;40684:124:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40831:7;:5;:7::i;:::-;-1:-1:-1;;;;;40823:15:0;:4;-1:-1:-1;;;;;40823:15:0;;;:32;;;;;40848:7;:5;:7::i;:::-;-1:-1:-1;;;;;40842:13:0;:2;-1:-1:-1;;;;;40842:13:0;;;40823:32;:61;;;;-1:-1:-1;;;;;;40860:24:0;;;;;;:20;:24;;;;;;;;40859:25;40823:61;:92;;;;-1:-1:-1;;;;;;40889:26:0;;;;;;:20;:26;;;;;;;;40888:27;40823:92;40819:262;;;40985:16;;40956:25;40974:6;40956:13;40966:2;40956:9;:13::i;:25::-;:45;;40930:151;;;;-1:-1:-1;;;40930:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41222:24:0;;41102:12;41222:24;;;:18;:24;;;;;;41117:4;;41222:24;;;:50;;-1:-1:-1;;;;;;41250:22:0;;;;;;:18;:22;;;;;;;;41222:50;41218:98;;;-1:-1:-1;41299:5:0;41218:98;41398:41;41413:4;41419:2;41423:6;41431:7;41398:14;:41::i;:::-;40023:1424;;;;:::o;5130:226::-;5250:7;5286:12;5278:6;;;;5270:29;;;;-1:-1:-1;;;5270:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5322:5:0;;;5130:226::o;35123:164::-;35165:7;35186:15;35203;35222:19;:17;:19::i;:::-;35185:56;;-1:-1:-1;35185:56:0;-1:-1:-1;35259:20:0;35185:56;;35259:11;:20::i;:::-;35252:27;;;;35123:164;:::o;6562:132::-;6620:7;6647:39;6651:1;6654;6647:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6640:46;6562:132;-1:-1:-1;;;6562:132:0:o;4227:181::-;4285:7;4317:5;;;4341:6;;;;4333:46;;;;;-1:-1:-1;;;4333:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;33423:699;33523:7;33545;33567;33589;33611;33661:23;33699:22;33736:12;33762:20;33774:7;33762:11;:20::i;:::-;33646:136;;;;;;33794:15;33811:23;33838:117;33864:7;33886:14;33915:10;:8;:10::i;:::-;33940:4;33838:11;:117::i;:::-;33793:162;;;;-1:-1:-1;34040:15:0;;-1:-1:-1;34070:14:0;;-1:-1:-1;34099:4:0;;-1:-1:-1;33423:699:0;;-1:-1:-1;;;;33423:699:0:o;5615:471::-;5673:7;5918:6;5914:47;;-1:-1:-1;5948:1:0;5941:8;;5914:47;5985:5;;;5989:1;5985;:5;:1;6009:5;;;;;:10;6001:56;;;;-1:-1:-1;;;6001:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39708:307;39789:20;;;;;;;39784:34;;39811:7;;39784:34;39840:7;:5;:7::i;:::-;-1:-1:-1;;;;;39832:15:0;:4;-1:-1:-1;;;;;39832:15:0;;39828:28;;;39849:7;;39828:28;-1:-1:-1;;;;;39888:26:0;;;;;;:20;:26;;;;;;;;:54;;;;-1:-1:-1;;;;;;39918:24:0;;;;;;:20;:24;;;;;;;;39888:54;39866:141;;;;-1:-1:-1;;;39866:141:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39708:307;;:::o;41528:2124::-;-1:-1:-1;;;;;41692:16:0;;;41679:10;41692:16;;;:8;:16;;;;;;;41733:19;;;;;;;;41692:16;;;;;41733:19;41692:16;;41766:15;;;41775:6;41766:15;41763:89;;;41806:13;;;;41798:42;;;;;-1:-1:-1;;;41798:42:0;;;;;;;;;;;;-1:-1:-1;;;41798:42:0;;;;;;;;;;;;;;;41867:5;41866:6;:17;;;;;41877:6;41876:7;41866:17;41862:271;;;41916:1;41900:13;:17;41862:271;;;41954:5;41950:172;;;41996:20;;41980:13;:36;41950:172;;;42042:6;42038:84;;;42085:21;;42069:13;:37;42038:84;42148:7;42143:55;;42172:14;:12;:14::i;:::-;-1:-1:-1;;;;;42212:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;42236:22:0;;;;;;:11;:22;;;;;;;;42235:23;42212:46;42208:597;;;42275:48;42297:6;42305:9;42316:6;42275:21;:48::i;:::-;42208:597;;;-1:-1:-1;;;;;42346:19:0;;;;;;:11;:19;;;;;;;;42345:20;:46;;;;-1:-1:-1;;;;;;42369:22:0;;;;;;:11;:22;;;;;;;;42345:46;42341:464;;;42408:46;42428:6;42436:9;42447:6;42408:19;:46::i;42341:464::-;-1:-1:-1;;;;;42477:19:0;;;;;;:11;:19;;;;;;;;42476:20;:47;;;;-1:-1:-1;;;;;;42501:22:0;;;;;;:11;:22;;;;;;;;42500:23;42476:47;42472:333;;;42540:44;42558:6;42566:9;42577:6;42540:17;:44::i;42472:333::-;-1:-1:-1;;;;;42606:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;42629:22:0;;;;;;:11;:22;;;;;;;;42606:45;42602:203;;;42668:48;42690:6;42698:9;42709:6;42668:21;:48::i;42602:203::-;42749:44;42767:6;42775:9;42786:6;42749:17;:44::i;:::-;43097:28;43128:24;43146:4;43128:9;:24::i;:::-;43214:29;;43097:55;;-1:-1:-1;43190:53:0;;;;;;;43272;;-1:-1:-1;43309:16:0;;;;43308:17;43272:53;:87;;;;-1:-1:-1;;;;;;43343:16:0;;;;;;:8;:16;;;;;;;;43342:17;43272:87;:124;;;;-1:-1:-1;;;;;;43377:19:0;;;;;;:8;:19;;;;;;;;43376:20;43272:124;:162;;;;-1:-1:-1;43413:21:0;;;;;;;43272:162;43254:351;;;43484:29;;43461:52;;43557:36;43572:20;43557:14;:36::i;:::-;43620:7;43615:29;;43629:15;:13;:15::i;:::-;41528:2124;;;;;;;;:::o;35295:605::-;35393:7;;35429;;35346;;;;;35447:338;35471:9;:16;35467:20;;35447:338;;;35555:7;35531;:21;35539:9;35549:1;35539:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35539:12:0;35531:21;;;;;;;;;;;;;:31;;:83;;;35607:7;35583;:21;35591:9;35601:1;35591:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35591:12:0;35583:21;;;;;;;;;;;;;:31;35531:83;35509:146;;;35638:7;;35647;;35630:25;;;;;;;;;35509:146;35680:34;35692:7;:21;35700:9;35710:1;35700:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35700:12:0;35692:21;;;;;;;;;;;;;35680:7;;:11;:34::i;:::-;35670:44;;35739:34;35751:7;:21;35759:9;35769:1;35759:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35759:12:0;35751:21;;;;;;;;;;;;;35739:7;;:11;:34::i;:::-;35729:44;-1:-1:-1;35489:3:0;;35447:338;;;-1:-1:-1;35821:7:0;;35809;;:20;;:11;:20::i;:::-;35799:7;:30;35795:61;;;35839:7;;35848;;35831:25;;;;;;;;35795:61;35875:7;;-1:-1:-1;35884:7:0;-1:-1:-1;35295:605:0;;;:::o;7190:312::-;7310:7;7345:12;7338:5;7330:28;;;;-1:-1:-1;;;7330:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7369:9;7385:1;7381;:5;;;;;;;7190:312;-1:-1:-1;;;;;7190:312:0:o;34130:435::-;34231:7;34253;34275;34310:22;34335:34;34361:7;34335:25;:34::i;:::-;34310:59;;34380:12;34395:29;34416:7;34395:20;:29::i;:::-;34380:44;-1:-1:-1;34435:23:0;34461:37;34380:44;34461:27;:7;34473:14;34461:11;:27::i;:::-;:31;;:37::i;:::-;34435:63;34536:14;;-1:-1:-1;34552:4:0;;-1:-1:-1;34130:435:0;;-1:-1:-1;;;34130:435:0:o;34573:542::-;34776:7;;;34851:24;:7;34863:11;34851;:24::i;:::-;34833:42;-1:-1:-1;34886:22:0;34911:31;:14;34930:11;34911:18;:31::i;:::-;34886:56;-1:-1:-1;34953:12:0;34968:21;:4;34977:11;34968:8;:21::i;:::-;34953:36;-1:-1:-1;35000:23:0;35026:37;34953:36;35026:27;:7;35038:14;35026:11;:27::i;:37::-;35082:7;;;;-1:-1:-1;34573:542:0;;-1:-1:-1;;;;;;;;34573:542:0:o;38064:257::-;38111:12;;:17;:39;;;;-1:-1:-1;38132:13:0;;:18;38111:39;38107:52;;;38152:7;;38107:52;38199:13;;;38171:25;:41;38246:12;;;38223:20;:35;-1:-1:-1;38269:17:0;;;;38297:16;38064:257;:::o;45661:1017::-;45812:15;45842:23;45880;45918:22;45955:12;45981:19;45992:7;45981:10;:19::i;:::-;-1:-1:-1;;;;;46029:15:0;;;;;;:7;:15;;;;;;45797:203;;-1:-1:-1;45797:203:0;;-1:-1:-1;45797:203:0;;-1:-1:-1;45797:203:0;-1:-1:-1;45797:203:0;-1:-1:-1;46029:28:0;;46049:7;46029:19;:28::i;:::-;-1:-1:-1;;;;;46011:15:0;;;;;;:7;:15;;;;;;;;:46;;;;46086:7;:15;;;;:28;;46106:7;46086:19;:28::i;:::-;-1:-1:-1;;;;;46068:15:0;;;;;;;:7;:15;;;;;;:46;;;;46146:18;;;;;;;:39;;46169:15;46146:22;:39::i;:::-;-1:-1:-1;;;;;46125:18:0;;;;;;:7;:18;;;;;:60;46199:19;;46196:382;;46235:11;46249:51;46294:5;46249:40;46268:20;;46249:14;:18;;:40;;;;:::i;:51::-;46235:65;;46315:11;46329:49;46372:5;46329:38;46348:18;;46329:14;:18;;:38;;;;:::i;:49::-;46315:63;;46393:13;46409:51;46454:5;46409:40;46428:20;;46409:14;:18;;:40;;;;:::i;:51::-;46393:67;;46475:23;46494:3;46475:18;:23::i;:::-;46513:21;46528:5;46513:14;:21::i;:::-;46549:17;46562:3;46549:12;:17::i;:::-;46196:382;;;;46588:22;46605:4;46588:16;:22::i;:::-;46643:9;-1:-1:-1;;;;;46626:44:0;46635:6;-1:-1:-1;;;;;46626:44:0;;46654:15;46626:44;;;;;;;;;;;;;;;;;;45661:1017;;;;;;;;:::o;44624:1029::-;44773:15;44803:23;44841;44879:22;44916:12;44942:19;44953:7;44942:10;:19::i;:::-;-1:-1:-1;;;;;44990:15:0;;;;;;:7;:15;;;;;;44758:203;;-1:-1:-1;44758:203:0;;-1:-1:-1;44758:203:0;;-1:-1:-1;44758:203:0;-1:-1:-1;44758:203:0;-1:-1:-1;44990:28:0;;44758:203;44990:19;:28::i;:::-;-1:-1:-1;;;;;44972:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;45050:18;;;;;:7;:18;;;;;:39;;45073:15;45050:22;:39::i;:::-;-1:-1:-1;;;;;45029:18:0;;;;;;:7;:18;;;;;;;;:60;;;;45121:7;:18;;;;:39;;45144:15;45121:22;:39::i;43660:956::-;43807:15;43837:23;43875;43913:22;43950:12;43976:19;43987:7;43976:10;:19::i;:::-;-1:-1:-1;;;;;44024:15:0;;;;;;:7;:15;;;;;;43792:203;;-1:-1:-1;43792:203:0;;-1:-1:-1;43792:203:0;;-1:-1:-1;43792:203:0;-1:-1:-1;43792:203:0;-1:-1:-1;44024:28:0;;43792:203;44024:19;:28::i;30576:1088::-;30727:15;30757:23;30795;30833:22;30870:12;30896:19;30907:7;30896:10;:19::i;:::-;-1:-1:-1;;;;;30944:15:0;;;;;;:7;:15;;;;;;30712:203;;-1:-1:-1;30712:203:0;;-1:-1:-1;30712:203:0;;-1:-1:-1;30712:203:0;-1:-1:-1;30712:203:0;-1:-1:-1;30944:28:0;;30964:7;30944:19;:28::i;:::-;-1:-1:-1;;;;;30926:15:0;;;;;;:7;:15;;;;;;;;:46;;;;31001:7;:15;;;;:28;;31021:7;31001:19;:28::i;47429:738::-;26278:16;:23;;-1:-1:-1;;26278:23:0;26297:4;26278:23;;;47804:21:::1;47870:38;47887:20:::0;47870:16:::1;:38::i;:::-;48031:18;48052:41;:21;48078:14:::0;48052:25:::1;:41::i;:::-;48111:48;::::0;;;;;::::1;::::0;::::1;::::0;;;;;48031:62;;-1:-1:-1;48111:48:0::1;::::0;;;;;;;;;::::1;-1:-1:-1::0;;26324:16:0;:24;;-1:-1:-1;;26324:24:0;;;-1:-1:-1;47429:738:0:o;38329:139::-;38389:25;;38373:13;:41;38440:20;;38425:12;:35;38329:139::o;4691:136::-;4749:7;4776:43;4780:1;4783;4776:43;;;;;;;;;;;;;;;;;:3;:43::i;37698:178::-;37799:7;37831:37;37862:5;37831:26;37843:13;;37831:7;:11;;:26;;;;:::i;37884:172::-;37980:7;38012:36;38042:5;38012:25;38024:12;;38012:7;:11;;:25;;;;:::i;35908:445::-;35979:19;36001:10;:8;:10::i;:::-;35979:32;-1:-1:-1;36022:22:0;36047:31;:14;35979:32;36047:18;:31::i;:::-;36124:15;;-1:-1:-1;;;;;36124:15:0;36116:24;;;;:7;:24;;;;;;36022:56;;-1:-1:-1;36116:68:0;;36022:56;36116:28;:68::i;:::-;36097:15;;;-1:-1:-1;;;;;36097:15:0;;;36089:24;;;;:7;:24;;;;;;;;:95;;;;36211:15;;;;;36199:28;;:11;:28;;;;;;;36195:150;;;36277:15;;-1:-1:-1;;;;;36277:15:0;36269:24;;;;:7;:24;;;;;;:76;;36316:14;36269:28;:76::i;:::-;36250:15;;-1:-1:-1;;;;;36250:15:0;36242:24;;;;:7;:24;;;;;:103;35908:445;;;:::o;37249:441::-;37316:19;37338:10;:8;:10::i;:::-;37316:32;-1:-1:-1;37359:22:0;37384:31;:14;37316:32;37384:18;:31::i;:::-;37461:15;;-1:-1:-1;;;;;37461:15:0;37453:24;;;;:7;:24;;;;;;37359:56;;-1:-1:-1;37453:68:0;;37359:56;37453:28;:68::i;:::-;37434:15;;;-1:-1:-1;;;;;37434:15:0;;;37426:24;;;;:7;:24;;;;;;;;:95;;;;37548:15;;;;;37536:28;;:11;:28;;;;;;;37532:150;;;37614:15;;-1:-1:-1;;;;;37614:15:0;37606:24;;;;:7;:24;;;;;;:76;;37653:14;37606:28;:76::i;:::-;37587:15;;-1:-1:-1;;;;;37587:15:0;37579:24;;;;:7;:24;;;;;:103;37249:441;;;:::o;36812:429::-;36877:19;36899:10;:8;:10::i;:::-;36877:32;-1:-1:-1;36920:22:0;36945:31;:14;36877:32;36945:18;:31::i;:::-;37028:4;37012:22;;;;:7;:22;;;;;;36920:56;;-1:-1:-1;37012:66:0;;36920:56;37012:26;:66::i;:::-;37003:4;36987:22;;;;:7;:22;;;;;;;;:91;;;;37093:11;:26;;;;;;37089:144;;;37175:4;37159:22;;;;:7;:22;;;;;;:74;;37204:14;37159:26;:74::i;:::-;37150:4;37134:22;;;;:7;:22;;;;;:99;36812:429;;;:::o;48175:589::-;48325:16;;;48339:1;48325:16;;;48301:21;48325:16;;;;;48301:21;48325:16;;;;;;;;;;-1:-1:-1;48325:16:0;48301:40;;48370:4;48352;48357:1;48352:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;48352:23:0;;;-1:-1:-1;;;;;48352:23:0;;;;;48396:15;-1:-1:-1;;;;;48396:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48396:22:0;48386:7;;:4;;48391:1;;48386:7;;;;;;;;;;;:32;-1:-1:-1;;;;;48386:32:0;;;-1:-1:-1;;;;;48386:32:0;;;;;48431:62;48448:4;48463:15;48481:11;48431:8;:62::i;:::-;48532:15;-1:-1:-1;;;;;48532:66:0;;48613:11;48639:1;48683:4;48702:13;;;;;;;;;-1:-1:-1;;;;;48702:13:0;48730:15;48532:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48532:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48175:589;;:::o

Swarm Source

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