ETH Price: $3,105.14 (-6.01%)
Gas: 7 Gwei

Token

VariStableCapital (VSC)
 

Overview

Max Total Supply

1,000,000,000,000 VSC

Holders

1,002

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
11,899,805.917874555 VSC

Value
$0.00
0xc8f14ffa47fbb4056669ce2e08b5040143a617e8
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Vari-Stable Capital $VSC is a deflationary DeFi-as-a-service (DaaS) token with 60% supply burned to 0x0dEaD.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
VariStableCapital

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// Vari-Stable Capital: $VSC
// Deflationary DeFi-as-a-Service (DaaS) Token, with 60% supply burned to 0x0dEaD
// You buy on Ethereum, we execute algorithmic stablecoin strategies on various chains and return the profits to $VSC holders.

//Initial Supply: 1,000,000,000,000 $VSC 
//60% of $VSC burned to 0x0dEaD
//10% of each buy goes to existing holders.
//10% of each sell goes into various-chain algorithmic stablecoin investing to add to the treasury and buy back $VSC tokens.

// Twitter: https://twitter.com/VariStableCap
// Website: https://varistablecapital.link/
// Medium: https://varistablecapital.medium.com/
// Telegram: https://t.me/varistablecapital

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

    /**
     * @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 a - b;
    }

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @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) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @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");

        (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");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: contracts/varistablecapital.sol

// Vari-Stable Capital: $VSC
// Deflationary DeFi-as-a-Service (DaaS) Token, with 60% supply burned to 0x0dEaD
// You buy on Ethereum, we execute algorithmic stablecoin strategies on various chains and return the profits to $VSC holders.

//Initial Supply: 1,000,000,000,000 $VSC 
//60% of $VSC burned to 0x0dEaD
//10% of each buy goes to existing holders.
//10% of each sell goes into various-chain algorithmic stablecoin investing to add to the treasury and buy back $VSC tokens.

// Twitter: https://twitter.com/VariStableCap
// Website: https://varistablecapital.link/
// Medium: https://varistablecapital.medium.com/
// Telegram: https://t.me/varistablecapital

    interface IUniswapV2Factory {
        event PairCreated(address indexed token0, address indexed token1, address pair, uint);

        function feeTo() external view returns (address);
        function feeToSetter() external view returns (address);

        function getPair(address tokenA, address tokenB) external view returns (address pair);
        function allPairs(uint) external view returns (address pair);
        function allPairsLength() external view returns (uint);

        function createPair(address tokenA, address tokenB) external returns (address pair);

        function setFeeTo(address) external;
        function setFeeToSetter(address) external;
    }

    interface IUniswapV2Pair {
        event Approval(address indexed owner, address indexed spender, uint value);
        event Transfer(address indexed from, address indexed to, uint value);

        function name() external pure returns (string memory);
        function symbol() external pure returns (string memory);
        function decimals() external pure returns (uint8);
        function totalSupply() external view returns (uint);
        function balanceOf(address owner) external view returns (uint);
        function allowance(address owner, address spender) external view returns (uint);

        function approve(address spender, uint value) external returns (bool);
        function transfer(address to, uint value) external returns (bool);
        function transferFrom(address from, address to, uint value) external returns (bool);

        function DOMAIN_SEPARATOR() external view returns (bytes32);
        function PERMIT_TYPEHASH() external pure returns (bytes32);
        function nonces(address owner) external view returns (uint);

        function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

        event Mint(address indexed sender, uint amount0, uint amount1);
        event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
        event Swap(
            address indexed sender,
            uint amount0In,
            uint amount1In,
            uint amount0Out,
            uint amount1Out,
            address indexed to
        );
        event Sync(uint112 reserve0, uint112 reserve1);

        function MINIMUM_LIQUIDITY() external pure returns (uint);
        function factory() external view returns (address);
        function token0() external view returns (address);
        function token1() external view returns (address);
        function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
        function price0CumulativeLast() external view returns (uint);
        function price1CumulativeLast() external view returns (uint);
        function kLast() external view returns (uint);

        function mint(address to) external returns (uint liquidity);
        function burn(address to) external returns (uint amount0, uint amount1);
        function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
        function skim(address to) external;
        function sync() external;

        function initialize(address, address) external;
    }

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

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

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


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

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

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






    contract VariStableCapital 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 _isExcluded;
        address[] private _excluded;

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

        string private _name = 'VariStableCapital';
        string private _symbol = 'VSC';
        uint8 private _decimals = 9;

        uint256 private _taxFee = 10;
        uint256 private _teamFee = 10;
        uint256 private _previousTaxFee = _taxFee;
        uint256 private _previousTeamFee = _teamFee;

        address payable public _VSCWalletAddress;
        address payable public _marketingWalletAddress;

        IUniswapV2Router02 public immutable uniswapV2Router;
        address public immutable uniswapV2Pair;

        bool inSwap = false;
        bool public swapEnabled = true;

        uint256 private _maxTxAmount = 100000000000000e9;
        // We will set a minimum amount of tokens to be swaped => 5M
        uint256 private _numOfTokensToExchangeForTeam = 5 * 10**3 * 10**9;

        event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
        event SwapEnabledUpdated(bool enabled);

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

        constructor (address payable VSCWalletAddress, address payable marketingWalletAddress) {
            _VSCWalletAddress = VSCWalletAddress;
            _marketingWalletAddress = marketingWalletAddress;
            _rOwned[_msgSender()] = _rTotal;

            IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // UniswapV2 for Ethereum network
            // Create a uniswap pair for this new token
            uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
                .createPair(address(this), _uniswapV2Router.WETH());

            // set the rest of the contract variables
            uniswapV2Router = _uniswapV2Router;

            // Exclude owner and this contract from fee
            _isExcludedFromFee[owner()] = true;
            _isExcludedFromFee[address(this)] = true;

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

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

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

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

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

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

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

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

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

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

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

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

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

        function setExcludeFromFee(address account, bool excluded) external onlyOwner() {
            _isExcludedFromFee[account] = excluded;
        }

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

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

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

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

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

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

        function removeAllFee() private {
            if(_taxFee == 0 && _teamFee == 0) return;

            _previousTaxFee = _taxFee;
            _previousTeamFee = _teamFee;

            _taxFee = 0;
            _teamFee = 0;
        }

        function restoreAllFee() private {
            _taxFee = _previousTaxFee;
            _teamFee = _previousTeamFee;
        }

        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 _transfer(address sender, address recipient, uint256 amount) private {
            require(sender != address(0), "ERC20: transfer from the zero address");
            require(recipient != address(0), "ERC20: transfer to the zero address");
            require(amount > 0, "Transfer amount must be greater than zero");

            if(sender != owner() && recipient != owner())
                require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");

            // is the token balance of this contract address over the min number of
            // tokens that we need to initiate a swap?
            // also, don't get caught in a circular team event.
            // also, don't swap if sender is uniswap pair.
            uint256 contractTokenBalance = balanceOf(address(this));

            if(contractTokenBalance >= _maxTxAmount)
            {
                contractTokenBalance = _maxTxAmount;
            }

            bool overMinTokenBalance = contractTokenBalance >= _numOfTokensToExchangeForTeam;
            if (!inSwap && swapEnabled && overMinTokenBalance && sender != uniswapV2Pair) {
                // We need to swap the current tokens to ETH and send to the team wallet
                swapTokensForEth(contractTokenBalance);

                uint256 contractETHBalance = address(this).balance;
                if(contractETHBalance > 0) {
                    sendETHToTeam(address(this).balance);
                }
            }

            //indicates if fee should be deducted from transfer
            bool takeFee = true;

            //if any account belongs to _isExcludedFromFee account then remove the fee
            if(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]){
                takeFee = false;
            }

            //transfer amount, it will take tax and team fee
            _tokenTransfer(sender,recipient,amount,takeFee);
        }

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

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

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

        function sendETHToTeam(uint256 amount) private {
            _VSCWalletAddress.transfer(amount.div(2));
            _marketingWalletAddress.transfer(amount.div(2));
        }

        // We are exposing these functions to be able to manual swap and send
        // in case the token is highly valued and 5M becomes too much
        function manualSwap() external onlyOwner() {
            uint256 contractBalance = balanceOf(address(this));
            swapTokensForEth(contractBalance);
        }

        function manualSend() external onlyOwner() {
            uint256 contractETHBalance = address(this).balance;
            sendETHToTeam(contractETHBalance);
        }

        function setSwapEnabled(bool enabled) external onlyOwner(){
            swapEnabled = enabled;
        }

        function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private {
            if(!takeFee)
                removeAllFee();

            if (_isExcluded[sender] && !_isExcluded[recipient]) {
                _transferFromExcluded(sender, recipient, amount);
            } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
                _transferToExcluded(sender, recipient, amount);
            } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
                _transferStandard(sender, recipient, amount);
            } else if (_isExcluded[sender] && _isExcluded[recipient]) {
                _transferBothExcluded(sender, recipient, amount);
            } else {
                _transferStandard(sender, recipient, amount);
            }

            if(!takeFee)
                restoreAllFee();
        }

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

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

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

        function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _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);
            _takeTeam(tTeam);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _takeTeam(uint256 tTeam) private {
            uint256 currentRate =  _getRate();
            uint256 rTeam = tTeam.mul(currentRate);
            _rOwned[address(this)] = _rOwned[address(this)].add(rTeam);
            if(_isExcluded[address(this)])
                _tOwned[address(this)] = _tOwned[address(this)].add(tTeam);
        }

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

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

        function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
            (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(tAmount, _taxFee, _teamFee);
            uint256 currentRate =  _getRate();
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate);
            return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam);
        }

        function _getTValues(uint256 tAmount, uint256 taxFee, uint256 teamFee) private pure returns (uint256, uint256, uint256) {
            uint256 tFee = tAmount.mul(taxFee).div(100);
            uint256 tTeam = tAmount.mul(teamFee).div(100);
            uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam);
            return (tTransferAmount, tFee, tTeam);
        }

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

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

        function _getCurrentSupply() private view returns(uint256, uint256) {
            uint256 rSupply = _rTotal;
            uint256 tSupply = _tTotal;
            for (uint256 i = 0; i < _excluded.length; i++) {
                if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
                rSupply = rSupply.sub(_rOwned[_excluded[i]]);
                tSupply = tSupply.sub(_tOwned[_excluded[i]]);
            }
            if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
            return (rSupply, tSupply);
        }

        function _getTaxFee() private view returns(uint256) {
            return _taxFee;
        }

        function _getMaxTxAmount() private view returns(uint256) {
            return _maxTxAmount;
        }

        function _getETHBalance() public view returns(uint256 balance) {
            return address(this).balance;
        }

        function _setTaxFee(uint256 taxFee) external onlyOwner() {
            require(taxFee >= 1 && taxFee <= 25, 'taxFee should be in 1 - 25');
            _taxFee = taxFee;
        }

        function _setTeamFee(uint256 teamFee) external onlyOwner() {
            require(teamFee >= 1 && teamFee <= 25, 'teamFee should be in 1 - 25');
            _teamFee = teamFee;
        }

        function _setVSCWallet(address payable VSCWalletAddress) external onlyOwner() {
            _VSCWalletAddress = VSCWalletAddress;
        }

        function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
            require(maxTxAmount >= 100000000000000e9 , 'maxTxAmount should be greater than 100000000000000e9');
            _maxTxAmount = maxTxAmount;
        }
    }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"VSCWalletAddress","type":"address"},{"internalType":"address payable","name":"marketingWalletAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","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":"_VSCWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"teamFee","type":"uint256"}],"name":"_setTeamFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"VSCWalletAddress","type":"address"}],"name":"_setVSCWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052683635c9adc5dea0000060078190556200002190600019620005af565b6200002f906000196200054c565b6008556040805180820190915260118082527015985c9a54dd18589b1950d85c1a5d185b607a1b60209092019182526200006c91600a9162000440565b506040805180820190915260038082526256534360e81b60209092019182526200009991600b9162000440565b50600c805460ff19166009179055600a600d819055600e819055600f8190556010556012805461ffff60a01b1916600160a81b17905569152d02c7e14af680000060135565048c27395000601455348015620000f457600080fd5b5060405162002b6138038062002b6183398101604081905262000117916200050d565b6200012233620003f0565b601180546001600160a01b038085166001600160a01b031992831617909255601280549284169290911691909117905560085460016000620001613390565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001d857600080fd5b505afa158015620001ed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002139190620004e6565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200025c57600080fd5b505afa15801562000271573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002979190620004e6565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620002e057600080fd5b505af1158015620002f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200031b9190620004e6565b6001600160601b0319606091821b811660a0529082901b166080526001600460006200034f6000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526004909252902080549091166001179055620003973390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600754604051620003df91815260200190565b60405180910390a3505050620005eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200044e9062000572565b90600052602060002090601f016020900481019282620004725760008555620004bd565b82601f106200048d57805160ff1916838001178555620004bd565b82800160010185558215620004bd579182015b82811115620004bd578251825591602001919060010190620004a0565b50620004cb929150620004cf565b5090565b5b80821115620004cb5760008155600101620004d0565b600060208284031215620004f957600080fd5b81516200050681620005d2565b9392505050565b600080604083850312156200052157600080fd5b82516200052e81620005d2565b60208401519092506200054181620005d2565b809150509250929050565b6000828210156200056d57634e487b7160e01b600052601160045260246000fd5b500390565b600181811c908216806200058757607f821691505b60208210811415620005a957634e487b7160e01b600052602260045260246000fd5b50919050565b600082620005cd57634e487b7160e01b600052601260045260246000fd5b500690565b6001600160a01b0381168114620005e857600080fd5b50565b60805160601c60a05160601c61252e620006336000396000818161045001526115ce0152600081816102ab015281816117bb0152818161188301526118bf015261252e6000f3fe6080604052600436106102135760003560e01c80635880b87311610118578063c0072488116100a0578063f2cc0c181161006f578063f2cc0c1814610688578063f2fde38b146106a8578063f4293890146106c8578063f815a842146106dd578063f84354f1146106f057600080fd5b8063c0072488146105c9578063cba0e996146105e9578063dd62ed3e14610622578063e01af92c1461066857600080fd5b80638da5cb5b116100e75780638da5cb5b1461053657806395d89b4114610554578063a457c2d714610569578063a9059cbb14610589578063af9549e0146105a957600080fd5b80635880b873146104c05780636ddd1713146104e057806370a0823114610501578063715018a61461052157600080fd5b80632d8381191161019b5780634144d9e41161016a5780634144d9e4146103fe5780634549b0391461041e57806349bd5a5e1461043e57806351bc3c85146104725780635342acb41461048757600080fd5b80632d8381191461037c578063313ce5671461039c57806339509351146103be5780633bd5d173146103de57600080fd5b806318160ddd116101e257806318160ddd146102e55780631bbae6e0146102fa57806323b872dd1461031c578063286671621461033c5780632abe39ec1461035c57600080fd5b806306fdde031461021f578063095ea7b31461024a57806313114a9d1461027a5780631694505e1461029957600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b50610234610710565b6040516102419190612293565b60405180910390f35b34801561025657600080fd5b5061026a610265366004612210565b6107a2565b6040519015158152602001610241565b34801561028657600080fd5b506009545b604051908152602001610241565b3480156102a557600080fd5b506102cd7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610241565b3480156102f157600080fd5b5060075461028b565b34801561030657600080fd5b5061031a610315366004612257565b6107b9565b005b34801561032857600080fd5b5061026a61033736600461219a565b610868565b34801561034857600080fd5b5061031a610357366004612257565b6108d1565b34801561036857600080fd5b506011546102cd906001600160a01b031681565b34801561038857600080fd5b5061028b610397366004612257565b61095e565b3480156103a857600080fd5b50600c5460405160ff9091168152602001610241565b3480156103ca57600080fd5b5061026a6103d9366004612210565b6109e2565b3480156103ea57600080fd5b5061031a6103f9366004612257565b610a18565b34801561040a57600080fd5b506012546102cd906001600160a01b031681565b34801561042a57600080fd5b5061028b610439366004612270565b610b02565b34801561044a57600080fd5b506102cd7f000000000000000000000000000000000000000000000000000000000000000081565b34801561047e57600080fd5b5061031a610b8f565b34801561049357600080fd5b5061026a6104a2366004612127565b6001600160a01b031660009081526004602052604090205460ff1690565b3480156104cc57600080fd5b5061031a6104db366004612257565b610bd2565b3480156104ec57600080fd5b5060125461026a90600160a81b900460ff1681565b34801561050d57600080fd5b5061028b61051c366004612127565b610c5f565b34801561052d57600080fd5b5061031a610cbe565b34801561054257600080fd5b506000546001600160a01b03166102cd565b34801561056057600080fd5b50610234610cf4565b34801561057557600080fd5b5061026a610584366004612210565b610d03565b34801561059557600080fd5b5061026a6105a4366004612210565b610d52565b3480156105b557600080fd5b5061031a6105c43660046121db565b610d5f565b3480156105d557600080fd5b5061031a6105e4366004612127565b610db4565b3480156105f557600080fd5b5061026a610604366004612127565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561062e57600080fd5b5061028b61063d366004612161565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b34801561067457600080fd5b5061031a61068336600461223c565b610e00565b34801561069457600080fd5b5061031a6106a3366004612127565b610e48565b3480156106b457600080fd5b5061031a6106c3366004612127565b611013565b3480156106d457600080fd5b5061031a6110ab565b3480156106e957600080fd5b504761028b565b3480156106fc57600080fd5b5061031a61070b366004612127565b6110df565b6060600a805461071f906123fe565b80601f016020809104026020016040519081016040528092919081815260200182805461074b906123fe565b80156107985780601f1061076d57610100808354040283529160200191610798565b820191906000526020600020905b81548152906001019060200180831161077b57829003601f168201915b5050505050905090565b60006107af338484611296565b5060015b92915050565b6000546001600160a01b031633146107ec5760405162461bcd60e51b81526004016107e3906122e8565b60405180910390fd5b69152d02c7e14af68000008110156108635760405162461bcd60e51b815260206004820152603460248201527f6d61785478416d6f756e742073686f756c642062652067726561746572207468604482015273616e20313030303030303030303030303030653960601b60648201526084016107e3565b601355565b60006108758484846113ba565b6108c784336108c2856040518060600160405280602881526020016124ac602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190611682565b611296565b5060019392505050565b6000546001600160a01b031633146108fb5760405162461bcd60e51b81526004016107e3906122e8565b6001811015801561090d575060198111155b6109595760405162461bcd60e51b815260206004820152601b60248201527f7465616d4665652073686f756c6420626520696e2031202d203235000000000060448201526064016107e3565b600e55565b60006008548211156109c55760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016107e3565b60006109cf6116ae565b90506109db83826116d1565b9392505050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916107af9185906108c290866116dd565b3360008181526005602052604090205460ff1615610a8d5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016107e3565b6000610a98836116e9565b505050506001600160a01b038416600090815260016020526040902054919250610ac491905082611745565b6001600160a01b038316600090815260016020526040902055600854610aea9082611745565b600855600954610afa90846116dd565b600955505050565b6000600754831115610b565760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016107e3565b81610b75576000610b66846116e9565b509395506107b3945050505050565b6000610b80846116e9565b509295506107b3945050505050565b6000546001600160a01b03163314610bb95760405162461bcd60e51b81526004016107e3906122e8565b6000610bc430610c5f565b9050610bcf81611751565b50565b6000546001600160a01b03163314610bfc5760405162461bcd60e51b81526004016107e3906122e8565b60018110158015610c0e575060198111155b610c5a5760405162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d20323500000000000060448201526064016107e3565b600d55565b6001600160a01b03811660009081526005602052604081205460ff1615610c9c57506001600160a01b031660009081526002602052604090205490565b6001600160a01b0382166000908152600160205260409020546107b39061095e565b6000546001600160a01b03163314610ce85760405162461bcd60e51b81526004016107e3906122e8565b610cf26000611940565b565b6060600b805461071f906123fe565b60006107af33846108c2856040518060600160405280602581526020016124d4602591393360009081526003602090815260408083206001600160a01b038d1684529091529020549190611682565b60006107af3384846113ba565b6000546001600160a01b03163314610d895760405162461bcd60e51b81526004016107e3906122e8565b6001600160a01b03919091166000908152600460205260409020805460ff1916911515919091179055565b6000546001600160a01b03163314610dde5760405162461bcd60e51b81526004016107e3906122e8565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610e2a5760405162461bcd60e51b81526004016107e3906122e8565b60128054911515600160a81b0260ff60a81b19909216919091179055565b6000546001600160a01b03163314610e725760405162461bcd60e51b81526004016107e3906122e8565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610eea5760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f757465604482015261391760f11b60648201526084016107e3565b6001600160a01b03811660009081526005602052604090205460ff1615610f535760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016107e3565b6001600160a01b03811660009081526001602052604090205415610fad576001600160a01b038116600090815260016020526040902054610f939061095e565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600560205260408120805460ff191660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319169091179055565b6000546001600160a01b0316331461103d5760405162461bcd60e51b81526004016107e3906122e8565b6001600160a01b0381166110a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e3565b610bcf81611940565b6000546001600160a01b031633146110d55760405162461bcd60e51b81526004016107e3906122e8565b47610bcf81611990565b6000546001600160a01b031633146111095760405162461bcd60e51b81526004016107e3906122e8565b6001600160a01b03811660009081526005602052604090205460ff166111715760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016107e3565b60005b60065481101561129257816001600160a01b03166006828154811061119b5761119b612480565b6000918252602090912001546001600160a01b0316141561128057600680546111c6906001906123e7565b815481106111d6576111d6612480565b600091825260209091200154600680546001600160a01b03909216918390811061120257611202612480565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600590925220805460ff19169055600680548061125a5761125a61246a565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b8061128a81612439565b915050611174565b5050565b6001600160a01b0383166112f85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107e3565b6001600160a01b0382166113595760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107e3565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661141e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107e3565b6001600160a01b0382166114805760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107e3565b600081116114e25760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107e3565b6000546001600160a01b0384811691161480159061150e57506000546001600160a01b03838116911614155b15611576576013548111156115765760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016107e3565b600061158130610c5f565b9050601354811061159157506013545b6014546012549082101590600160a01b900460ff161580156115bc5750601254600160a81b900460ff165b80156115c55750805b801561160357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b156116235761161182611751565b4780156116215761162147611990565b505b6001600160a01b03851660009081526004602052604090205460019060ff168061166557506001600160a01b03851660009081526004602052604090205460ff165b1561166e575060005b61167a86868684611a15565b505050505050565b600081848411156116a65760405162461bcd60e51b81526004016107e39190612293565b505050900390565b60008060006116bb611b92565b90925090506116ca82826116d1565b9250505090565b60006109db82846123a6565b60006109db828461238e565b60008060008060008060008060006117068a600d54600e54611d14565b92509250925060006117166116ae565b905060008060006117288e8786611d69565b919e509c509a509598509396509194505050505091939550919395565b60006109db82846123e7565b6012805460ff60a01b1916600160a01b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061179957611799612480565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561181257600080fd5b505afa158015611826573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184a9190612144565b8160018151811061185d5761185d612480565b60200260200101906001600160a01b031690816001600160a01b0316815250506118a8307f000000000000000000000000000000000000000000000000000000000000000084611296565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906118fd90859060009086903090429060040161231d565b600060405180830381600087803b15801561191757600080fd5b505af115801561192b573d6000803e3d6000fd5b50506012805460ff60a01b1916905550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6011546001600160a01b03166108fc6119aa8360026116d1565b6040518115909202916000818181858888f193505050501580156119d2573d6000803e3d6000fd5b506012546001600160a01b03166108fc6119ed8360026116d1565b6040518115909202916000818181858888f19350505050158015611292573d6000803e3d6000fd5b80611a2257611a22611da5565b6001600160a01b03841660009081526005602052604090205460ff168015611a6357506001600160a01b03831660009081526005602052604090205460ff16155b15611a7857611a73848484611dd3565b611b76565b6001600160a01b03841660009081526005602052604090205460ff16158015611ab957506001600160a01b03831660009081526005602052604090205460ff165b15611ac957611a73848484611ef9565b6001600160a01b03841660009081526005602052604090205460ff16158015611b0b57506001600160a01b03831660009081526005602052604090205460ff16155b15611b1b57611a73848484611fa2565b6001600160a01b03841660009081526005602052604090205460ff168015611b5b57506001600160a01b03831660009081526005602052604090205460ff165b15611b6b57611a73848484611fe6565b611b76848484611fa2565b80611b8c57611b8c600f54600d55601054600e55565b50505050565b6008546007546000918291825b600654811015611ce457826001600060068481548110611bc157611bc1612480565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611c2c5750816002600060068481548110611c0557611c05612480565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611c4257600854600754945094505050509091565b611c886001600060068481548110611c5c57611c5c612480565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611745565b9250611cd06002600060068481548110611ca457611ca4612480565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611745565b915080611cdc81612439565b915050611b9f565b50600754600854611cf4916116d1565b821015611d0b576008546007549350935050509091565b90939092509050565b6000808080611d2e6064611d288989612059565b906116d1565b90506000611d416064611d288a89612059565b90506000611d5982611d538b86611745565b90611745565b9992985090965090945050505050565b6000808080611d788786612059565b90506000611d868787612059565b90506000611d948383611745565b929992985090965090945050505050565b600d54158015611db55750600e54155b15611dbc57565b600d8054600f55600e805460105560009182905555565b600080600080600080611de5876116e9565b6001600160a01b038f16600090815260026020526040902054959b50939950919750955093509150611e179088611745565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054611e469087611745565b6001600160a01b03808b1660009081526001602052604080822093909355908a1681522054611e7590866116dd565b6001600160a01b038916600090815260016020526040902055611e9781612065565b611ea184836120ee565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611ee691815260200190565b60405180910390a3505050505050505050565b600080600080600080611f0b876116e9565b6001600160a01b038f16600090815260016020526040902054959b50939950919750955093509150611f3d9087611745565b6001600160a01b03808b16600090815260016020908152604080832094909455918b16815260029091522054611f7390846116dd565b6001600160a01b038916600090815260026020908152604080832093909355600190522054611e7590866116dd565b600080600080600080611fb4876116e9565b6001600160a01b038f16600090815260016020526040902054959b50939950919750955093509150611e469087611745565b600080600080600080611ff8876116e9565b6001600160a01b038f16600090815260026020526040902054959b5093995091975095509350915061202a9088611745565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054611f3d9087611745565b60006109db82846123c8565b600061206f6116ae565b9050600061207d8383612059565b3060009081526001602052604090205490915061209a90826116dd565b3060009081526001602090815260408083209390935560059052205460ff16156120e957306000908152600260205260409020546120d890846116dd565b306000908152600260205260409020555b505050565b6008546120fb9083611745565b60085560095461210b90826116dd565b6009555050565b8035801515811461212257600080fd5b919050565b60006020828403121561213957600080fd5b81356109db81612496565b60006020828403121561215657600080fd5b81516109db81612496565b6000806040838503121561217457600080fd5b823561217f81612496565b9150602083013561218f81612496565b809150509250929050565b6000806000606084860312156121af57600080fd5b83356121ba81612496565b925060208401356121ca81612496565b929592945050506040919091013590565b600080604083850312156121ee57600080fd5b82356121f981612496565b915061220760208401612112565b90509250929050565b6000806040838503121561222357600080fd5b823561222e81612496565b946020939093013593505050565b60006020828403121561224e57600080fd5b6109db82612112565b60006020828403121561226957600080fd5b5035919050565b6000806040838503121561228357600080fd5b8235915061220760208401612112565b600060208083528351808285015260005b818110156122c0578581018301518582016040015282016122a4565b818111156122d2576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561236d5784516001600160a01b031683529383019391830191600101612348565b50506001600160a01b03969096166060850152505050608001529392505050565b600082198211156123a1576123a1612454565b500190565b6000826123c357634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156123e2576123e2612454565b500290565b6000828210156123f9576123f9612454565b500390565b600181811c9082168061241257607f821691505b6020821081141561243357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561244d5761244d612454565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114610bcf57600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c3ec05674b016250d59ca9fa06ff2b7a2acdf2d568e31dc59cd2f6403e6fa76464736f6c6343000807003300000000000000000000000060a7130c8a432250bab63ba2ee71484ac022e60e0000000000000000000000003361d6fca601a802e9a49d9e053ffb3f052a5f86

Deployed Bytecode

0x6080604052600436106102135760003560e01c80635880b87311610118578063c0072488116100a0578063f2cc0c181161006f578063f2cc0c1814610688578063f2fde38b146106a8578063f4293890146106c8578063f815a842146106dd578063f84354f1146106f057600080fd5b8063c0072488146105c9578063cba0e996146105e9578063dd62ed3e14610622578063e01af92c1461066857600080fd5b80638da5cb5b116100e75780638da5cb5b1461053657806395d89b4114610554578063a457c2d714610569578063a9059cbb14610589578063af9549e0146105a957600080fd5b80635880b873146104c05780636ddd1713146104e057806370a0823114610501578063715018a61461052157600080fd5b80632d8381191161019b5780634144d9e41161016a5780634144d9e4146103fe5780634549b0391461041e57806349bd5a5e1461043e57806351bc3c85146104725780635342acb41461048757600080fd5b80632d8381191461037c578063313ce5671461039c57806339509351146103be5780633bd5d173146103de57600080fd5b806318160ddd116101e257806318160ddd146102e55780631bbae6e0146102fa57806323b872dd1461031c578063286671621461033c5780632abe39ec1461035c57600080fd5b806306fdde031461021f578063095ea7b31461024a57806313114a9d1461027a5780631694505e1461029957600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b50610234610710565b6040516102419190612293565b60405180910390f35b34801561025657600080fd5b5061026a610265366004612210565b6107a2565b6040519015158152602001610241565b34801561028657600080fd5b506009545b604051908152602001610241565b3480156102a557600080fd5b506102cd7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610241565b3480156102f157600080fd5b5060075461028b565b34801561030657600080fd5b5061031a610315366004612257565b6107b9565b005b34801561032857600080fd5b5061026a61033736600461219a565b610868565b34801561034857600080fd5b5061031a610357366004612257565b6108d1565b34801561036857600080fd5b506011546102cd906001600160a01b031681565b34801561038857600080fd5b5061028b610397366004612257565b61095e565b3480156103a857600080fd5b50600c5460405160ff9091168152602001610241565b3480156103ca57600080fd5b5061026a6103d9366004612210565b6109e2565b3480156103ea57600080fd5b5061031a6103f9366004612257565b610a18565b34801561040a57600080fd5b506012546102cd906001600160a01b031681565b34801561042a57600080fd5b5061028b610439366004612270565b610b02565b34801561044a57600080fd5b506102cd7f000000000000000000000000cf39a2945d6915325f96a17cb93bf70b942c183981565b34801561047e57600080fd5b5061031a610b8f565b34801561049357600080fd5b5061026a6104a2366004612127565b6001600160a01b031660009081526004602052604090205460ff1690565b3480156104cc57600080fd5b5061031a6104db366004612257565b610bd2565b3480156104ec57600080fd5b5060125461026a90600160a81b900460ff1681565b34801561050d57600080fd5b5061028b61051c366004612127565b610c5f565b34801561052d57600080fd5b5061031a610cbe565b34801561054257600080fd5b506000546001600160a01b03166102cd565b34801561056057600080fd5b50610234610cf4565b34801561057557600080fd5b5061026a610584366004612210565b610d03565b34801561059557600080fd5b5061026a6105a4366004612210565b610d52565b3480156105b557600080fd5b5061031a6105c43660046121db565b610d5f565b3480156105d557600080fd5b5061031a6105e4366004612127565b610db4565b3480156105f557600080fd5b5061026a610604366004612127565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561062e57600080fd5b5061028b61063d366004612161565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b34801561067457600080fd5b5061031a61068336600461223c565b610e00565b34801561069457600080fd5b5061031a6106a3366004612127565b610e48565b3480156106b457600080fd5b5061031a6106c3366004612127565b611013565b3480156106d457600080fd5b5061031a6110ab565b3480156106e957600080fd5b504761028b565b3480156106fc57600080fd5b5061031a61070b366004612127565b6110df565b6060600a805461071f906123fe565b80601f016020809104026020016040519081016040528092919081815260200182805461074b906123fe565b80156107985780601f1061076d57610100808354040283529160200191610798565b820191906000526020600020905b81548152906001019060200180831161077b57829003601f168201915b5050505050905090565b60006107af338484611296565b5060015b92915050565b6000546001600160a01b031633146107ec5760405162461bcd60e51b81526004016107e3906122e8565b60405180910390fd5b69152d02c7e14af68000008110156108635760405162461bcd60e51b815260206004820152603460248201527f6d61785478416d6f756e742073686f756c642062652067726561746572207468604482015273616e20313030303030303030303030303030653960601b60648201526084016107e3565b601355565b60006108758484846113ba565b6108c784336108c2856040518060600160405280602881526020016124ac602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190611682565b611296565b5060019392505050565b6000546001600160a01b031633146108fb5760405162461bcd60e51b81526004016107e3906122e8565b6001811015801561090d575060198111155b6109595760405162461bcd60e51b815260206004820152601b60248201527f7465616d4665652073686f756c6420626520696e2031202d203235000000000060448201526064016107e3565b600e55565b60006008548211156109c55760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016107e3565b60006109cf6116ae565b90506109db83826116d1565b9392505050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916107af9185906108c290866116dd565b3360008181526005602052604090205460ff1615610a8d5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016107e3565b6000610a98836116e9565b505050506001600160a01b038416600090815260016020526040902054919250610ac491905082611745565b6001600160a01b038316600090815260016020526040902055600854610aea9082611745565b600855600954610afa90846116dd565b600955505050565b6000600754831115610b565760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016107e3565b81610b75576000610b66846116e9565b509395506107b3945050505050565b6000610b80846116e9565b509295506107b3945050505050565b6000546001600160a01b03163314610bb95760405162461bcd60e51b81526004016107e3906122e8565b6000610bc430610c5f565b9050610bcf81611751565b50565b6000546001600160a01b03163314610bfc5760405162461bcd60e51b81526004016107e3906122e8565b60018110158015610c0e575060198111155b610c5a5760405162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d20323500000000000060448201526064016107e3565b600d55565b6001600160a01b03811660009081526005602052604081205460ff1615610c9c57506001600160a01b031660009081526002602052604090205490565b6001600160a01b0382166000908152600160205260409020546107b39061095e565b6000546001600160a01b03163314610ce85760405162461bcd60e51b81526004016107e3906122e8565b610cf26000611940565b565b6060600b805461071f906123fe565b60006107af33846108c2856040518060600160405280602581526020016124d4602591393360009081526003602090815260408083206001600160a01b038d1684529091529020549190611682565b60006107af3384846113ba565b6000546001600160a01b03163314610d895760405162461bcd60e51b81526004016107e3906122e8565b6001600160a01b03919091166000908152600460205260409020805460ff1916911515919091179055565b6000546001600160a01b03163314610dde5760405162461bcd60e51b81526004016107e3906122e8565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610e2a5760405162461bcd60e51b81526004016107e3906122e8565b60128054911515600160a81b0260ff60a81b19909216919091179055565b6000546001600160a01b03163314610e725760405162461bcd60e51b81526004016107e3906122e8565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610eea5760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f757465604482015261391760f11b60648201526084016107e3565b6001600160a01b03811660009081526005602052604090205460ff1615610f535760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016107e3565b6001600160a01b03811660009081526001602052604090205415610fad576001600160a01b038116600090815260016020526040902054610f939061095e565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600560205260408120805460ff191660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319169091179055565b6000546001600160a01b0316331461103d5760405162461bcd60e51b81526004016107e3906122e8565b6001600160a01b0381166110a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e3565b610bcf81611940565b6000546001600160a01b031633146110d55760405162461bcd60e51b81526004016107e3906122e8565b47610bcf81611990565b6000546001600160a01b031633146111095760405162461bcd60e51b81526004016107e3906122e8565b6001600160a01b03811660009081526005602052604090205460ff166111715760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016107e3565b60005b60065481101561129257816001600160a01b03166006828154811061119b5761119b612480565b6000918252602090912001546001600160a01b0316141561128057600680546111c6906001906123e7565b815481106111d6576111d6612480565b600091825260209091200154600680546001600160a01b03909216918390811061120257611202612480565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600590925220805460ff19169055600680548061125a5761125a61246a565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b8061128a81612439565b915050611174565b5050565b6001600160a01b0383166112f85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107e3565b6001600160a01b0382166113595760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107e3565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661141e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107e3565b6001600160a01b0382166114805760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107e3565b600081116114e25760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107e3565b6000546001600160a01b0384811691161480159061150e57506000546001600160a01b03838116911614155b15611576576013548111156115765760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016107e3565b600061158130610c5f565b9050601354811061159157506013545b6014546012549082101590600160a01b900460ff161580156115bc5750601254600160a81b900460ff165b80156115c55750805b801561160357507f000000000000000000000000cf39a2945d6915325f96a17cb93bf70b942c18396001600160a01b0316856001600160a01b031614155b156116235761161182611751565b4780156116215761162147611990565b505b6001600160a01b03851660009081526004602052604090205460019060ff168061166557506001600160a01b03851660009081526004602052604090205460ff165b1561166e575060005b61167a86868684611a15565b505050505050565b600081848411156116a65760405162461bcd60e51b81526004016107e39190612293565b505050900390565b60008060006116bb611b92565b90925090506116ca82826116d1565b9250505090565b60006109db82846123a6565b60006109db828461238e565b60008060008060008060008060006117068a600d54600e54611d14565b92509250925060006117166116ae565b905060008060006117288e8786611d69565b919e509c509a509598509396509194505050505091939550919395565b60006109db82846123e7565b6012805460ff60a01b1916600160a01b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061179957611799612480565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561181257600080fd5b505afa158015611826573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184a9190612144565b8160018151811061185d5761185d612480565b60200260200101906001600160a01b031690816001600160a01b0316815250506118a8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611296565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906118fd90859060009086903090429060040161231d565b600060405180830381600087803b15801561191757600080fd5b505af115801561192b573d6000803e3d6000fd5b50506012805460ff60a01b1916905550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6011546001600160a01b03166108fc6119aa8360026116d1565b6040518115909202916000818181858888f193505050501580156119d2573d6000803e3d6000fd5b506012546001600160a01b03166108fc6119ed8360026116d1565b6040518115909202916000818181858888f19350505050158015611292573d6000803e3d6000fd5b80611a2257611a22611da5565b6001600160a01b03841660009081526005602052604090205460ff168015611a6357506001600160a01b03831660009081526005602052604090205460ff16155b15611a7857611a73848484611dd3565b611b76565b6001600160a01b03841660009081526005602052604090205460ff16158015611ab957506001600160a01b03831660009081526005602052604090205460ff165b15611ac957611a73848484611ef9565b6001600160a01b03841660009081526005602052604090205460ff16158015611b0b57506001600160a01b03831660009081526005602052604090205460ff16155b15611b1b57611a73848484611fa2565b6001600160a01b03841660009081526005602052604090205460ff168015611b5b57506001600160a01b03831660009081526005602052604090205460ff165b15611b6b57611a73848484611fe6565b611b76848484611fa2565b80611b8c57611b8c600f54600d55601054600e55565b50505050565b6008546007546000918291825b600654811015611ce457826001600060068481548110611bc157611bc1612480565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611c2c5750816002600060068481548110611c0557611c05612480565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611c4257600854600754945094505050509091565b611c886001600060068481548110611c5c57611c5c612480565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611745565b9250611cd06002600060068481548110611ca457611ca4612480565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611745565b915080611cdc81612439565b915050611b9f565b50600754600854611cf4916116d1565b821015611d0b576008546007549350935050509091565b90939092509050565b6000808080611d2e6064611d288989612059565b906116d1565b90506000611d416064611d288a89612059565b90506000611d5982611d538b86611745565b90611745565b9992985090965090945050505050565b6000808080611d788786612059565b90506000611d868787612059565b90506000611d948383611745565b929992985090965090945050505050565b600d54158015611db55750600e54155b15611dbc57565b600d8054600f55600e805460105560009182905555565b600080600080600080611de5876116e9565b6001600160a01b038f16600090815260026020526040902054959b50939950919750955093509150611e179088611745565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054611e469087611745565b6001600160a01b03808b1660009081526001602052604080822093909355908a1681522054611e7590866116dd565b6001600160a01b038916600090815260016020526040902055611e9781612065565b611ea184836120ee565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611ee691815260200190565b60405180910390a3505050505050505050565b600080600080600080611f0b876116e9565b6001600160a01b038f16600090815260016020526040902054959b50939950919750955093509150611f3d9087611745565b6001600160a01b03808b16600090815260016020908152604080832094909455918b16815260029091522054611f7390846116dd565b6001600160a01b038916600090815260026020908152604080832093909355600190522054611e7590866116dd565b600080600080600080611fb4876116e9565b6001600160a01b038f16600090815260016020526040902054959b50939950919750955093509150611e469087611745565b600080600080600080611ff8876116e9565b6001600160a01b038f16600090815260026020526040902054959b5093995091975095509350915061202a9088611745565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054611f3d9087611745565b60006109db82846123c8565b600061206f6116ae565b9050600061207d8383612059565b3060009081526001602052604090205490915061209a90826116dd565b3060009081526001602090815260408083209390935560059052205460ff16156120e957306000908152600260205260409020546120d890846116dd565b306000908152600260205260409020555b505050565b6008546120fb9083611745565b60085560095461210b90826116dd565b6009555050565b8035801515811461212257600080fd5b919050565b60006020828403121561213957600080fd5b81356109db81612496565b60006020828403121561215657600080fd5b81516109db81612496565b6000806040838503121561217457600080fd5b823561217f81612496565b9150602083013561218f81612496565b809150509250929050565b6000806000606084860312156121af57600080fd5b83356121ba81612496565b925060208401356121ca81612496565b929592945050506040919091013590565b600080604083850312156121ee57600080fd5b82356121f981612496565b915061220760208401612112565b90509250929050565b6000806040838503121561222357600080fd5b823561222e81612496565b946020939093013593505050565b60006020828403121561224e57600080fd5b6109db82612112565b60006020828403121561226957600080fd5b5035919050565b6000806040838503121561228357600080fd5b8235915061220760208401612112565b600060208083528351808285015260005b818110156122c0578581018301518582016040015282016122a4565b818111156122d2576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561236d5784516001600160a01b031683529383019391830191600101612348565b50506001600160a01b03969096166060850152505050608001529392505050565b600082198211156123a1576123a1612454565b500190565b6000826123c357634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156123e2576123e2612454565b500290565b6000828210156123f9576123f9612454565b500390565b600181811c9082168061241257607f821691505b6020821081141561243357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561244d5761244d612454565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114610bcf57600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c3ec05674b016250d59ca9fa06ff2b7a2acdf2d568e31dc59cd2f6403e6fa76464736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000060a7130c8a432250bab63ba2ee71484ac022e60e0000000000000000000000003361d6fca601a802e9a49d9e053ffb3f052a5f86

-----Decoded View---------------
Arg [0] : VSCWalletAddress (address): 0x60a7130c8a432250bAB63bA2Ee71484aC022e60E
Arg [1] : marketingWalletAddress (address): 0x3361d6fCa601a802e9a49d9e053FFb3f052A5f86

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000060a7130c8a432250bab63ba2ee71484ac022e60e
Arg [1] : 0000000000000000000000003361d6fca601a802e9a49d9e053ffb3f052a5f86


Deployed Bytecode Sourcemap

31670:18842:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34397:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35401:173;;;;;;;;;;-1:-1:-1;35401:173:0;;;;;:::i;:::-;;:::i;:::-;;;3661:14:1;;3654:22;3636:41;;3624:2;3609:18;35401:173:0;3496:187:1;36749:95:0;;;;;;;;;;-1:-1:-1;36822:10:0;;36749:95;;;10951:25:1;;;10939:2;10924:18;36749:95:0;10805:177:1;32805:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3228:32:1;;;3210:51;;3198:2;3183:18;32805:51:0;3064:203:1;34710:103:0;;;;;;;;;;-1:-1:-1;34794:7:0;;34710:103;;50272:233;;;;;;;;;;-1:-1:-1;50272:233:0;;;;;:::i;:::-;;:::i;:::-;;35586:329;;;;;;;;;;-1:-1:-1;35586:329:0;;;;;:::i;:::-;;:::i;49919:188::-;;;;;;;;;;-1:-1:-1;49919:188:0;;;;;:::i;:::-;;:::i;32695:40::-;;;;;;;;;;-1:-1:-1;32695:40:0;;;;-1:-1:-1;;;;;32695:40:0;;;37757:269;;;;;;;;;;-1:-1:-1;37757:269:0;;;;;:::i;:::-;;:::i;34607:91::-;;;;;;;;;;-1:-1:-1;34677:9:0;;34607:91;;34677:9;;;;12114:36:1;;12102:2;12087:18;34607:91:0;11972:184:1;35927:230:0;;;;;;;;;;-1:-1:-1;35927:230:0;;;;;:::i;:::-;;:::i;36856:405::-;;;;;;;;;;-1:-1:-1;36856:405:0;;;;;:::i;:::-;;:::i;32746:46::-;;;;;;;;;;-1:-1:-1;32746:46:0;;;;-1:-1:-1;;;;;32746:46:0;;;37273:472;;;;;;;;;;-1:-1:-1;37273:472:0;;;;;:::i;:::-;;:::i;32867:38::-;;;;;;;;;;;;;;;42943:168;;;;;;;;;;;;;:::i;39448:131::-;;;;;;;;;;-1:-1:-1;39448:131:0;;;;;:::i;:::-;-1:-1:-1;;;;;39540:27:0;39512:4;39540:27;;;:18;:27;;;;;;;;;39448:131;49726:181;;;;;;;;;;-1:-1:-1;49726:181:0;;;;;:::i;:::-;;:::i;32948:30::-;;;;;;;;;;-1:-1:-1;32948:30:0;;;;-1:-1:-1;;;32948:30:0;;;;;;34825:210;;;;;;;;;;-1:-1:-1;34825:210:0;;;;;:::i;:::-;;:::i;13212:103::-;;;;;;;;;;;;;:::i;12561:87::-;;;;;;;;;;-1:-1:-1;12607:7:0;12634:6;-1:-1:-1;;;;;12634:6:0;12561:87;;34500:95;;;;;;;;;;;;;:::i;36169:281::-;;;;;;;;;;-1:-1:-1;36169:281:0;;;;;:::i;:::-;;:::i;35047:179::-;;;;;;;;;;-1:-1:-1;35047:179:0;;;;;:::i;:::-;;:::i;36592:145::-;;;;;;;;;;-1:-1:-1;36592:145:0;;;;;:::i;:::-;;:::i;50119:141::-;;;;;;;;;;-1:-1:-1;50119:141:0;;;;;:::i;:::-;;:::i;36462:118::-;;;;;;;;;;-1:-1:-1;36462:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;36548:20:0;36520:4;36548:20;;;:11;:20;;;;;;;;;36462:118;35238:151;;;;;;;;;;-1:-1:-1;35238:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;35350:18:0;;;35319:7;35350:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;35238:151;43303:106;;;;;;;;;;-1:-1:-1;43303:106:0;;;;;:::i;:::-;;:::i;38038:475::-;;;;;;;;;;-1:-1:-1;38038:475:0;;;;;:::i;:::-;;:::i;13470:201::-;;;;;;;;;;-1:-1:-1;13470:201:0;;;;;:::i;:::-;;:::i;43123:168::-;;;;;;;;;;;;;:::i;49596:118::-;;;;;;;;;;-1:-1:-1;49681:21:0;49596:118;;38525:522;;;;;;;;;;-1:-1:-1;38525:522:0;;;;;:::i;:::-;;:::i;34397:91::-;34434:13;34471:5;34464:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34397:91;:::o;35401:173::-;35476:4;35497:39;11365:10;35520:7;35529:6;35497:8;:39::i;:::-;-1:-1:-1;35558:4:0;35401:173;;;;;:::o;50272:233::-;12607:7;12634:6;-1:-1:-1;;;;;12634:6:0;11365:10;12781:23;12773:68;;;;-1:-1:-1;;;12773:68:0;;;;;;;:::i;:::-;;;;;;;;;50377:17:::1;50362:11;:32;;50354:98;;;::::0;-1:-1:-1;;;50354:98:0;;7064:2:1;50354:98:0::1;::::0;::::1;7046:21:1::0;7103:2;7083:18;;;7076:30;7142:34;7122:18;;;7115:62;-1:-1:-1;;;7193:18:1;;;7186:50;7253:19;;50354:98:0::1;6862:416:1::0;50354:98:0::1;50467:12;:26:::0;50272:233::o;35586:329::-;35684:4;35705:36;35715:6;35723:9;35734:6;35705:9;:36::i;:::-;35756:121;35765:6;11365:10;35787:89;35825:6;35787:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35787:19:0;;;;;;:11;:19;;;;;;;;11365:10;35787:33;;;;;;;;;;:37;:89::i;:::-;35756:8;:121::i;:::-;-1:-1:-1;35899:4:0;35586:329;;;;;:::o;49919:188::-;12607:7;12634:6;-1:-1:-1;;;;;12634:6:0;11365:10;12781:23;12773:68;;;;-1:-1:-1;;;12773:68:0;;;;;;;:::i;:::-;50012:1:::1;50001:7;:12;;:29;;;;;50028:2;50017:7;:13;;50001:29;49993:69;;;::::0;-1:-1:-1;;;49993:69:0;;6352:2:1;49993:69:0::1;::::0;::::1;6334:21:1::0;6391:2;6371:18;;;6364:30;6430:29;6410:18;;;6403:57;6477:18;;49993:69:0::1;6150:351:1::0;49993:69:0::1;50077:8;:18:::0;49919:188::o;37757:269::-;37823:7;37866;;37855;:18;;37847:73;;;;-1:-1:-1;;;37847:73:0;;5131:2:1;37847:73:0;;;5113:21:1;5170:2;5150:18;;;5143:30;5209:34;5189:18;;;5182:62;-1:-1:-1;;;5260:18:1;;;5253:40;5310:19;;37847:73:0;4929:406:1;37847:73:0;37935:19;37958:10;:8;:10::i;:::-;37935:33;-1:-1:-1;37990:24:0;:7;37935:33;37990:11;:24::i;:::-;37983:31;37757:269;-1:-1:-1;;;37757:269:0:o;35927:230::-;11365:10;36015:4;36068:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;36068:34:0;;;;;;;;;;36015:4;;36036:83;;36059:7;;36068:50;;36107:10;36068:38;:50::i;36856:405::-;11365:10;36912:14;36965:19;;;:11;:19;;;;;;;;36964:20;36956:77;;;;-1:-1:-1;;;36956:77:0;;10594:2:1;36956:77:0;;;10576:21:1;10633:2;10613:18;;;10606:30;10672:34;10652:18;;;10645:62;-1:-1:-1;;;10723:18:1;;;10716:42;10775:19;;36956:77:0;10392:408:1;36956:77:0;37049:15;37073:19;37084:7;37073:10;:19::i;:::-;-1:-1:-1;;;;;;;;;37125:15:0;;;;;;:7;:15;;;;;;37048:44;;-1:-1:-1;37125:28:0;;:15;-1:-1:-1;37048:44:0;37125:19;:28::i;:::-;-1:-1:-1;;;;;37107:15:0;;;;;;:7;:15;;;;;:46;37178:7;;:20;;37190:7;37178:11;:20::i;:::-;37168:7;:30;37226:10;;:23;;37241:7;37226:14;:23::i;:::-;37213:10;:36;-1:-1:-1;;;36856:405:0:o;37273:472::-;37363:7;37406;;37395;:18;;37387:62;;;;-1:-1:-1;;;37387:62:0;;7485:2:1;37387:62:0;;;7467:21:1;7524:2;7504:18;;;7497:30;7563:33;7543:18;;;7536:61;7614:18;;37387:62:0;7283:355:1;37387:62:0;37469:17;37464:270;;37508:15;37532:19;37543:7;37532:10;:19::i;:::-;-1:-1:-1;37507:44:0;;-1:-1:-1;37570:14:0;;-1:-1:-1;;;;;37570:14:0;37464:270;37627:23;37658:19;37669:7;37658:10;:19::i;:::-;-1:-1:-1;37625:52:0;;-1:-1:-1;37696:22:0;;-1:-1:-1;;;;;37696:22:0;42943:168;12607:7;12634:6;-1:-1:-1;;;;;12634:6:0;11365:10;12781:23;12773:68;;;;-1:-1:-1;;;12773:68:0;;;;;;;:::i;:::-;43001:23:::1;43027:24;43045:4;43027:9;:24::i;:::-;43001:50;;43066:33;43083:15;43066:16;:33::i;:::-;42986:125;42943:168::o:0;49726:181::-;12607:7;12634:6;-1:-1:-1;;;;;12634:6:0;11365:10;12781:23;12773:68;;;;-1:-1:-1;;;12773:68:0;;;;;;;:::i;:::-;49816:1:::1;49806:6;:11;;:27;;;;;49831:2;49821:6;:12;;49806:27;49798:66;;;::::0;-1:-1:-1;;;49798:66:0;;9836:2:1;49798:66:0::1;::::0;::::1;9818:21:1::0;9875:2;9855:18;;;9848:30;9914:28;9894:18;;;9887:56;9960:18;;49798:66:0::1;9634:350:1::0;49798:66:0::1;49879:7;:16:::0;49726:181::o;34825:210::-;-1:-1:-1;;;;;34919:20:0;;34891:7;34919:20;;;:11;:20;;;;;;;;34915:49;;;-1:-1:-1;;;;;;34948:16:0;;;;;:7;:16;;;;;;;34825:210::o;34915:49::-;-1:-1:-1;;;;;35006:16:0;;;;;;:7;:16;;;;;;34986:37;;:19;:37::i;13212:103::-;12607:7;12634:6;-1:-1:-1;;;;;12634:6:0;11365:10;12781:23;12773:68;;;;-1:-1:-1;;;12773:68:0;;;;;;;:::i;:::-;13277:30:::1;13304:1;13277:18;:30::i;:::-;13212:103::o:0;34500:95::-;34539:13;34576:7;34569:14;;;;;:::i;36169:281::-;36262:4;36283:129;11365:10;36306:7;36315:96;36354:15;36315:96;;;;;;;;;;;;;;;;;11365:10;36315:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;36315:34:0;;;;;;;;;;;;:38;:96::i;35047:179::-;35125:4;35146:42;11365:10;35170:9;35181:6;35146:9;:42::i;36592:145::-;12607:7;12634:6;-1:-1:-1;;;;;12634:6:0;11365:10;12781:23;12773:68;;;;-1:-1:-1;;;12773:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36687:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;36687:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36592:145::o;50119:141::-;12607:7;12634:6;-1:-1:-1;;;;;12634:6:0;11365:10;12781:23;12773:68;;;;-1:-1:-1;;;12773:68:0;;;;;;;:::i;:::-;50212:17:::1;:36:::0;;-1:-1:-1;;;;;;50212:36:0::1;-1:-1:-1::0;;;;;50212:36:0;;;::::1;::::0;;;::::1;::::0;;50119:141::o;43303:106::-;12607:7;12634:6;-1:-1:-1;;;;;12634:6:0;11365:10;12781:23;12773:68;;;;-1:-1:-1;;;12773:68:0;;;;;;;:::i;:::-;43376:11:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;43376:21:0::1;-1:-1:-1::0;;;;43376:21:0;;::::1;::::0;;;::::1;::::0;;43303:106::o;38038:475::-;12607:7;12634:6;-1:-1:-1;;;;;12634:6:0;11365:10;12781:23;12773:68;;;;-1:-1:-1;;;12773:68:0;;;;;;;:::i;:::-;38134:42:::1;-1:-1:-1::0;;;;;38123:53:0;::::1;;;38115:100;;;::::0;-1:-1:-1;;;38115:100:0;;10191:2:1;38115:100:0::1;::::0;::::1;10173:21:1::0;10230:2;10210:18;;;10203:30;10269:34;10249:18;;;10242:62;-1:-1:-1;;;10320:18:1;;;10313:32;10362:19;;38115:100:0::1;9989:398:1::0;38115:100:0::1;-1:-1:-1::0;;;;;38239:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;38238:21;38230:61;;;::::0;-1:-1:-1;;;38230:61:0;;6708:2:1;38230:61:0::1;::::0;::::1;6690:21:1::0;6747:2;6727:18;;;6720:30;6786:29;6766:18;;;6759:57;6833:18;;38230:61:0::1;6506:351:1::0;38230:61:0::1;-1:-1:-1::0;;;;;38309:16:0;::::1;38328:1;38309:16:::0;;;:7:::1;:16;::::0;;;;;:20;38306:116:::1;;-1:-1:-1::0;;;;;38389:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;38369:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;38350:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;38306:116:::1;-1:-1:-1::0;;;;;38436:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;38436:27:0::1;38459:4;38436:27:::0;;::::1;::::0;;;38478:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;38478:23:0::1;::::0;;::::1;::::0;;38038:475::o;13470:201::-;12607:7;12634:6;-1:-1:-1;;;;;12634:6:0;11365:10;12781:23;12773:68;;;;-1:-1:-1;;;12773:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13559:22:0;::::1;13551:73;;;::::0;-1:-1:-1;;;13551:73:0;;5542:2:1;13551:73:0::1;::::0;::::1;5524:21:1::0;5581:2;5561:18;;;5554:30;5620:34;5600:18;;;5593:62;-1:-1:-1;;;5671:18:1;;;5664:36;5717:19;;13551:73:0::1;5340:402:1::0;13551:73:0::1;13635:28;13654:8;13635:18;:28::i;43123:168::-:0;12607:7;12634:6;-1:-1:-1;;;;;12634:6:0;11365:10;12781:23;12773:68;;;;-1:-1:-1;;;12773:68:0;;;;;;;:::i;:::-;43210:21:::1;43246:33;43210:21:::0;43246:13:::1;:33::i;38525:522::-:0;12607:7;12634:6;-1:-1:-1;;;;;12634:6:0;11365:10;12781:23;12773:68;;;;-1:-1:-1;;;12773:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38610:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;38602:60;;;::::0;-1:-1:-1;;;38602:60:0;;6708:2:1;38602:60:0::1;::::0;::::1;6690:21:1::0;6747:2;6727:18;;;6720:30;6786:29;6766:18;;;6759:57;6833:18;;38602:60:0::1;6506:351:1::0;38602:60:0::1;38682:9;38677:359;38701:9;:16:::0;38697:20;::::1;38677:359;;;38763:7;-1:-1:-1::0;;;;;38747:23:0::1;:9;38757:1;38747:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;38747:12:0::1;:23;38743:278;;;38810:9;38820:16:::0;;:20:::1;::::0;38839:1:::1;::::0;38820:20:::1;:::i;:::-;38810:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;38795:9:::1;:12:::0;;-1:-1:-1;;;;;38810:31:0;;::::1;::::0;38805:1;;38795:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;38795:46:0::1;-1:-1:-1::0;;;;;38795:46:0;;::::1;;::::0;;38864:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;38907:11:::1;:20:::0;;;;:28;;-1:-1:-1;;38907:28:0::1;::::0;;38958:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;38958:15:0;;;;;-1:-1:-1;;;;;;38958:15:0::1;::::0;;;;;38677:359:::1;38525:522:::0;:::o;38743:278::-:1;38719:3:::0;::::1;::::0;::::1;:::i;:::-;;;;38677:359;;;;38525:522:::0;:::o;39591:357::-;-1:-1:-1;;;;;39688:19:0;;39680:68;;;;-1:-1:-1;;;39680:68:0;;9431:2:1;39680:68:0;;;9413:21:1;9470:2;9450:18;;;9443:30;9509:34;9489:18;;;9482:62;-1:-1:-1;;;9560:18:1;;;9553:34;9604:19;;39680:68:0;9229:400:1;39680:68:0;-1:-1:-1;;;;;39771:21:0;;39763:68;;;;-1:-1:-1;;;39763:68:0;;5949:2:1;39763:68:0;;;5931:21:1;5988:2;5968:18;;;5961:30;6027:34;6007:18;;;6000:62;-1:-1:-1;;;6078:18:1;;;6071:32;6120:19;;39763:68:0;5747:398:1;39763:68:0;-1:-1:-1;;;;;39848:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;39904:32;;10951:25:1;;;39904:32:0;;10924:18:1;39904:32:0;;;;;;;39591:357;;;:::o;39960:1964::-;-1:-1:-1;;;;;40061:20:0;;40053:70;;;;-1:-1:-1;;;40053:70:0;;9025:2:1;40053:70:0;;;9007:21:1;9064:2;9044:18;;;9037:30;9103:34;9083:18;;;9076:62;-1:-1:-1;;;9154:18:1;;;9147:35;9199:19;;40053:70:0;8823:401:1;40053:70:0;-1:-1:-1;;;;;40146:23:0;;40138:71;;;;-1:-1:-1;;;40138:71:0;;4727:2:1;40138:71:0;;;4709:21:1;4766:2;4746:18;;;4739:30;4805:34;4785:18;;;4778:62;-1:-1:-1;;;4856:18:1;;;4849:33;4899:19;;40138:71:0;4525:399:1;40138:71:0;40241:1;40232:6;:10;40224:64;;;;-1:-1:-1;;;40224:64:0;;8615:2:1;40224:64:0;;;8597:21:1;8654:2;8634:18;;;8627:30;8693:34;8673:18;;;8666:62;-1:-1:-1;;;8744:18:1;;;8737:39;8793:19;;40224:64:0;8413:405:1;40224:64:0;12607:7;12634:6;-1:-1:-1;;;;;40308:17:0;;;12634:6;;40308:17;;;;:41;;-1:-1:-1;12607:7:0;12634:6;-1:-1:-1;;;;;40329:20:0;;;12634:6;;40329:20;;40308:41;40305:138;;;40386:12;;40376:6;:22;;40368:75;;;;-1:-1:-1;;;40368:75:0;;7845:2:1;40368:75:0;;;7827:21:1;7884:2;7864:18;;;7857:30;7923:34;7903:18;;;7896:62;-1:-1:-1;;;7974:18:1;;;7967:38;8022:19;;40368:75:0;7643:404:1;40368:75:0;40726:28;40757:24;40775:4;40757:9;:24::i;:::-;40726:55;;40825:12;;40801:20;:36;40798:124;;-1:-1:-1;40894:12:0;;40798:124;40989:29;;41038:6;;40965:53;;;;;-1:-1:-1;;;41038:6:0;;;;41037:7;:22;;;;-1:-1:-1;41048:11:0;;-1:-1:-1;;;41048:11:0;;;;41037:22;:45;;;;;41063:19;41037:45;:72;;;;;41096:13;-1:-1:-1;;;;;41086:23:0;:6;-1:-1:-1;;;;;41086:23:0;;;41037:72;41033:436;;;41220:38;41237:20;41220:16;:38::i;:::-;41308:21;41351:22;;41348:106;;41398:36;41412:21;41398:13;:36::i;:::-;41111:358;41033:436;-1:-1:-1;;;;;41677:26:0;;41550:12;41677:26;;;:18;:26;;;;;;41565:4;;41677:26;;;:59;;-1:-1:-1;;;;;;41707:29:0;;;;;;:18;:29;;;;;;;;41677:59;41674:113;;;-1:-1:-1;41766:5:0;41674:113;41865:47;41880:6;41887:9;41897:6;41904:7;41865:14;:47::i;:::-;40038:1886;;;39960:1964;;;:::o;5824:240::-;5944:7;6005:12;5997:6;;;;5989:29;;;;-1:-1:-1;;;5989:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;6040:5:0;;;5824:240::o;48582:175::-;48623:7;48648:15;48665;48684:19;:17;:19::i;:::-;48647:56;;-1:-1:-1;48647:56:0;-1:-1:-1;48725:20:0;48647:56;;48725:11;:20::i;:::-;48718:27;;;;48582:175;:::o;4682:98::-;4740:7;4767:5;4771:1;4767;:5;:::i;3545:98::-;3603:7;3630:5;3634:1;3630;:5;:::i;47340:481::-;47399:7;47408;47417;47426;47435;47444;47469:23;47494:12;47508:13;47525:39;47537:7;47546;;47555:8;;47525:11;:39::i;:::-;47468:96;;;;;;47579:19;47602:10;:8;:10::i;:::-;47579:33;;47628:15;47645:23;47670:12;47686:39;47698:7;47707:4;47713:11;47686;:39::i;:::-;47627:98;;-1:-1:-1;47627:98:0;-1:-1:-1;47627:98:0;-1:-1:-1;47780:15:0;;-1:-1:-1;47797:4:0;;-1:-1:-1;47803:5:0;;-1:-1:-1;;;;;47340:481:0;;;;;;;:::o;3926:98::-;3984:7;4011:5;4015:1;4011;:5;:::i;41936:656::-;33357:6;:13;;-1:-1:-1;;;;33357:13:0;-1:-1:-1;;;33357:13:0;;;42105:16:::1;::::0;;42119:1:::1;42105:16:::0;;;;;::::1;::::0;;-1:-1:-1;;42105:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;42105:16:0::1;42081:40;;42154:4;42136;42141:1;42136:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;42136:23:0::1;;;-1:-1:-1::0;;;;;42136:23:0::1;;;::::0;::::1;42184:15;-1:-1:-1::0;;;;;42184:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42174:4;42179:1;42174:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;42174:32:0::1;;;-1:-1:-1::0;;;;;42174:32:0::1;;;::::0;::::1;42223:62;42240:4;42255:15;42273:11;42223:8;:62::i;:::-;42332:248;::::0;-1:-1:-1;;;42332:248:0;;-1:-1:-1;;;;;42332:15:0::1;:66;::::0;::::1;::::0;:248:::1;::::0;42417:11;;42447:1:::1;::::0;42495:4;;42526::::1;::::0;42550:15:::1;::::0;42332:248:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;33401:6:0;:14;;-1:-1:-1;;;;33401:14:0;;;-1:-1:-1;;;;41936:656:0:o;13831:191::-;13905:16;13924:6;;-1:-1:-1;;;;;13941:17:0;;;-1:-1:-1;;;;;;13941:17:0;;;;;;13974:40;;13924:6;;;;;;;13974:40;;13905:16;13974:40;13894:128;13831:191;:::o;42604:177::-;42666:17;;-1:-1:-1;;;;;42666:17:0;:41;42693:13;:6;42704:1;42693:10;:13::i;:::-;42666:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42722:23:0;;-1:-1:-1;;;;;42722:23:0;:47;42755:13;:6;42766:1;42755:10;:13::i;:::-;42722:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43421:883;43537:7;43533:44;;43563:14;:12;:14::i;:::-;-1:-1:-1;;;;;43598:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;43622:22:0;;;;;;:11;:22;;;;;;;;43621:23;43598:46;43594:637;;;43665:48;43687:6;43695:9;43706:6;43665:21;:48::i;:::-;43594:637;;;-1:-1:-1;;;;;43740:19:0;;;;;;:11;:19;;;;;;;;43739:20;:46;;;;-1:-1:-1;;;;;;43763:22:0;;;;;;:11;:22;;;;;;;;43739:46;43735:496;;;43806:46;43826:6;43834:9;43845:6;43806:19;:46::i;43735:496::-;-1:-1:-1;;;;;43879:19:0;;;;;;:11;:19;;;;;;;;43878:20;:47;;;;-1:-1:-1;;;;;;43903:22:0;;;;;;:11;:22;;;;;;;;43902:23;43878:47;43874:357;;;43946:44;43964:6;43972:9;43983:6;43946:17;:44::i;43874:357::-;-1:-1:-1;;;;;44016:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;44039:22:0;;;;;;:11;:22;;;;;;;;44016:45;44012:219;;;44082:48;44104:6;44112:9;44123:6;44082:21;:48::i;44012:219::-;44171:44;44189:6;44197:9;44208:6;44171:17;:44::i;:::-;44251:7;44247:45;;44277:15;39367;;39357:7;:25;39408:16;;39397:8;:27;39309:127;44277:15;43421:883;;;;:::o;48769:595::-;48870:7;;48910;;48819;;;;;48932:305;48956:9;:16;48952:20;;48932:305;;;49026:7;49002;:21;49010:9;49020:1;49010:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;49010:12:0;49002:21;;;;;;;;;;;;;:31;;:66;;;49061:7;49037;:21;49045:9;49055:1;49045:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;49045:12:0;49037:21;;;;;;;;;;;;;:31;49002:66;48998:97;;;49078:7;;49087;;49070:25;;;;;;;48769:595;;:::o;48998:97::-;49124:34;49136:7;:21;49144:9;49154:1;49144:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;49144:12:0;49136:21;;;;;;;;;;;;;49124:7;;:11;:34::i;:::-;49114:44;;49187:34;49199:7;:21;49207:9;49217:1;49207:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;49207:12:0;49199:21;;;;;;;;;;;;;49187:7;;:11;:34::i;:::-;49177:44;-1:-1:-1;48974:3:0;;;;:::i;:::-;;;;48932:305;;;-1:-1:-1;49277:7:0;;49265;;:20;;:11;:20::i;:::-;49255:7;:30;49251:61;;;49295:7;;49304;;49287:25;;;;;;48769:595;;:::o;49251:61::-;49335:7;;49344;;-1:-1:-1;48769:595:0;-1:-1:-1;48769:595:0:o;47833:371::-;47926:7;;;;47983:28;48007:3;47983:19;:7;47995:6;47983:11;:19::i;:::-;:23;;:28::i;:::-;47968:43;-1:-1:-1;48026:13:0;48042:29;48067:3;48042:20;:7;48054;48042:11;:20::i;:29::-;48026:45;-1:-1:-1;48086:23:0;48112:28;48026:45;48112:17;:7;48124:4;48112:11;:17::i;:::-;:21;;:28::i;:::-;48086:54;48180:4;;-1:-1:-1;48186:5:0;;-1:-1:-1;47833:371:0;;-1:-1:-1;;;;;47833:371:0:o;48216:354::-;48311:7;;;;48371:24;:7;48383:11;48371;:24::i;:::-;48353:42;-1:-1:-1;48410:12:0;48425:21;:4;48434:11;48425:8;:21::i;:::-;48410:36;-1:-1:-1;48461:23:0;48487:17;:7;48410:36;48487:11;:17::i;:::-;48527:7;;;;-1:-1:-1;48553:4:0;;-1:-1:-1;48216:354:0;;-1:-1:-1;;;;;48216:354:0:o;39059:238::-;39109:7;;:12;:29;;;;-1:-1:-1;39125:8:0;;:13;39109:29;39106:41;;;39059:238::o;39106:41::-;39181:7;;;39163:15;:25;39222:8;;;39203:16;:27;-1:-1:-1;39247:11:0;;;;39273:12;39059:238::o;45447:580::-;45554:15;45571:23;45596:12;45610:23;45635:12;45649:13;45666:19;45677:7;45666:10;:19::i;:::-;-1:-1:-1;;;;;45718:15:0;;;;;;:7;:15;;;;;;45553:132;;-1:-1:-1;45553:132:0;;-1:-1:-1;45553:132:0;;-1:-1:-1;45553:132:0;-1:-1:-1;45553:132:0;-1:-1:-1;45553:132:0;-1:-1:-1;45718:28:0;;45738:7;45718:19;:28::i;:::-;-1:-1:-1;;;;;45700:15:0;;;;;;:7;:15;;;;;;;;:46;;;;45779:7;:15;;;;:28;;45799:7;45779:19;:28::i;:::-;-1:-1:-1;;;;;45761:15:0;;;;;;;:7;:15;;;;;;:46;;;;45843:18;;;;;;;:39;;45866:15;45843:22;:39::i;:::-;-1:-1:-1;;;;;45822:18:0;;;;;;:7;:18;;;;;:60;45897:16;45907:5;45897:9;:16::i;:::-;45928:23;45940:4;45946;45928:11;:23::i;:::-;45988:9;-1:-1:-1;;;;;45971:44:0;45980:6;-1:-1:-1;;;;;45971:44:0;;45999:15;45971:44;;;;10951:25:1;;10939:2;10924:18;;10805:177;45971:44:0;;;;;;;;45538:489;;;;;;45447:580;;;:::o;44843:592::-;44948:15;44965:23;44990:12;45004:23;45029:12;45043:13;45060:19;45071:7;45060:10;:19::i;:::-;-1:-1:-1;;;;;45112:15:0;;;;;;:7;:15;;;;;;44947:132;;-1:-1:-1;44947:132:0;;-1:-1:-1;44947:132:0;;-1:-1:-1;44947:132:0;-1:-1:-1;44947:132:0;-1:-1:-1;44947:132:0;-1:-1:-1;45112:28:0;;44947:132;45112:19;:28::i;:::-;-1:-1:-1;;;;;45094:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;45176:18;;;;;:7;:18;;;;;:39;;45199:15;45176:22;:39::i;:::-;-1:-1:-1;;;;;45155:18:0;;;;;;:7;:18;;;;;;;;:60;;;;45251:7;:18;;;;:39;;45274:15;45251:22;:39::i;44316:515::-;44419:15;44436:23;44461:12;44475:23;44500:12;44514:13;44531:19;44542:7;44531:10;:19::i;:::-;-1:-1:-1;;;;;44583:15:0;;;;;;:7;:15;;;;;;44418:132;;-1:-1:-1;44418:132:0;;-1:-1:-1;44418:132:0;;-1:-1:-1;44418:132:0;-1:-1:-1;44418:132:0;-1:-1:-1;44418:132:0;-1:-1:-1;44583:28:0;;44418:132;44583:19;:28::i;46039:655::-;46146:15;46163:23;46188:12;46202:23;46227:12;46241:13;46258:19;46269:7;46258:10;:19::i;:::-;-1:-1:-1;;;;;46310:15:0;;;;;;:7;:15;;;;;;46145:132;;-1:-1:-1;46145:132:0;;-1:-1:-1;46145:132:0;;-1:-1:-1;46145:132:0;-1:-1:-1;46145:132:0;-1:-1:-1;46145:132:0;-1:-1:-1;46310:28:0;;46330:7;46310:19;:28::i;:::-;-1:-1:-1;;;;;46292:15:0;;;;;;:7;:15;;;;;;;;:46;;;;46371:7;:15;;;;:28;;46391:7;46371:19;:28::i;4283:98::-;4341:7;4368:5;4372:1;4368;:5;:::i;46706:349::-;46763:19;46786:10;:8;:10::i;:::-;46763:33;-1:-1:-1;46811:13:0;46827:22;:5;46763:33;46827:9;:22::i;:::-;46905:4;46889:22;;;;:7;:22;;;;;;46811:38;;-1:-1:-1;46889:33:0;;46811:38;46889:26;:33::i;:::-;46880:4;46864:22;;;;:7;:22;;;;;;;;:58;;;;46940:11;:26;;;;;;46937:106;;;47026:4;47010:22;;;;:7;:22;;;;;;:33;;47037:5;47010:26;:33::i;:::-;47001:4;46985:22;;;;:7;:22;;;;;:58;46937:106;46748:307;;46706:349;:::o;47067:159::-;47149:7;;:17;;47161:4;47149:11;:17::i;:::-;47139:7;:27;47194:10;;:20;;47209:4;47194:14;:20::i;:::-;47181:10;:33;-1:-1:-1;;47067:159:0:o;14:160:1:-;79:20;;135:13;;128:21;118:32;;108:60;;164:1;161;154:12;108:60;14:160;;;:::o;179:247::-;238:6;291:2;279:9;270:7;266:23;262:32;259:52;;;307:1;304;297:12;259:52;346:9;333:23;365:31;390:5;365:31;:::i;431:251::-;501:6;554:2;542:9;533:7;529:23;525:32;522:52;;;570:1;567;560:12;522:52;602:9;596:16;621:31;646:5;621:31;:::i;947:388::-;1015:6;1023;1076:2;1064:9;1055:7;1051:23;1047:32;1044:52;;;1092:1;1089;1082:12;1044:52;1131:9;1118:23;1150:31;1175:5;1150:31;:::i;:::-;1200:5;-1:-1:-1;1257:2:1;1242:18;;1229:32;1270:33;1229:32;1270:33;:::i;:::-;1322:7;1312:17;;;947:388;;;;;:::o;1340:456::-;1417:6;1425;1433;1486:2;1474:9;1465:7;1461:23;1457:32;1454:52;;;1502:1;1499;1492:12;1454:52;1541:9;1528:23;1560:31;1585:5;1560:31;:::i;:::-;1610:5;-1:-1:-1;1667:2:1;1652:18;;1639:32;1680:33;1639:32;1680:33;:::i;:::-;1340:456;;1732:7;;-1:-1:-1;;;1786:2:1;1771:18;;;;1758:32;;1340:456::o;1801:315::-;1866:6;1874;1927:2;1915:9;1906:7;1902:23;1898:32;1895:52;;;1943:1;1940;1933:12;1895:52;1982:9;1969:23;2001:31;2026:5;2001:31;:::i;:::-;2051:5;-1:-1:-1;2075:35:1;2106:2;2091:18;;2075:35;:::i;:::-;2065:45;;1801:315;;;;;:::o;2121:::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2305:9;2292:23;2324:31;2349:5;2324:31;:::i;:::-;2374:5;2426:2;2411:18;;;;2398:32;;-1:-1:-1;;;2121:315:1:o;2441:180::-;2497:6;2550:2;2538:9;2529:7;2525:23;2521:32;2518:52;;;2566:1;2563;2556:12;2518:52;2589:26;2605:9;2589:26;:::i;2626:180::-;2685:6;2738:2;2726:9;2717:7;2713:23;2709:32;2706:52;;;2754:1;2751;2744:12;2706:52;-1:-1:-1;2777:23:1;;2626:180;-1:-1:-1;2626:180:1:o;2811:248::-;2876:6;2884;2937:2;2925:9;2916:7;2912:23;2908:32;2905:52;;;2953:1;2950;2943:12;2905:52;2989:9;2976:23;2966:33;;3018:35;3049:2;3038:9;3034:18;3018:35;:::i;3923:597::-;4035:4;4064:2;4093;4082:9;4075:21;4125:6;4119:13;4168:6;4163:2;4152:9;4148:18;4141:34;4193:1;4203:140;4217:6;4214:1;4211:13;4203:140;;;4312:14;;;4308:23;;4302:30;4278:17;;;4297:2;4274:26;4267:66;4232:10;;4203:140;;;4361:6;4358:1;4355:13;4352:91;;;4431:1;4426:2;4417:6;4406:9;4402:22;4398:31;4391:42;4352:91;-1:-1:-1;4504:2:1;4483:15;-1:-1:-1;;4479:29:1;4464:45;;;;4511:2;4460:54;;3923:597;-1:-1:-1;;;3923:597:1:o;8052:356::-;8254:2;8236:21;;;8273:18;;;8266:30;8332:34;8327:2;8312:18;;8305:62;8399:2;8384:18;;8052:356::o;10987:980::-;11249:4;11297:3;11286:9;11282:19;11328:6;11317:9;11310:25;11354:2;11392:6;11387:2;11376:9;11372:18;11365:34;11435:3;11430:2;11419:9;11415:18;11408:31;11459:6;11494;11488:13;11525:6;11517;11510:22;11563:3;11552:9;11548:19;11541:26;;11602:2;11594:6;11590:15;11576:29;;11623:1;11633:195;11647:6;11644:1;11641:13;11633:195;;;11712:13;;-1:-1:-1;;;;;11708:39:1;11696:52;;11803:15;;;;11768:12;;;;11744:1;11662:9;11633:195;;;-1:-1:-1;;;;;;;11884:32:1;;;;11879:2;11864:18;;11857:60;-1:-1:-1;;;11948:3:1;11933:19;11926:35;11845:3;10987:980;-1:-1:-1;;;10987:980:1:o;12161:128::-;12201:3;12232:1;12228:6;12225:1;12222:13;12219:39;;;12238:18;;:::i;:::-;-1:-1:-1;12274:9:1;;12161:128::o;12294:217::-;12334:1;12360;12350:132;;12404:10;12399:3;12395:20;12392:1;12385:31;12439:4;12436:1;12429:15;12467:4;12464:1;12457:15;12350:132;-1:-1:-1;12496:9:1;;12294:217::o;12516:168::-;12556:7;12622:1;12618;12614:6;12610:14;12607:1;12604:21;12599:1;12592:9;12585:17;12581:45;12578:71;;;12629:18;;:::i;:::-;-1:-1:-1;12669:9:1;;12516:168::o;12689:125::-;12729:4;12757:1;12754;12751:8;12748:34;;;12762:18;;:::i;:::-;-1:-1:-1;12799:9:1;;12689:125::o;12819:380::-;12898:1;12894:12;;;;12941;;;12962:61;;13016:4;13008:6;13004:17;12994:27;;12962:61;13069:2;13061:6;13058:14;13038:18;13035:38;13032:161;;;13115:10;13110:3;13106:20;13103:1;13096:31;13150:4;13147:1;13140:15;13178:4;13175:1;13168:15;13032:161;;12819:380;;;:::o;13204:135::-;13243:3;-1:-1:-1;;13264:17:1;;13261:43;;;13284:18;;:::i;:::-;-1:-1:-1;13331:1:1;13320:13;;13204:135::o;13344:127::-;13405:10;13400:3;13396:20;13393:1;13386:31;13436:4;13433:1;13426:15;13460:4;13457:1;13450:15;13476:127;13537:10;13532:3;13528:20;13525:1;13518:31;13568:4;13565:1;13558:15;13592:4;13589:1;13582:15;13608:127;13669:10;13664:3;13660:20;13657:1;13650:31;13700:4;13697:1;13690:15;13724:4;13721:1;13714:15;13872:131;-1:-1:-1;;;;;13947:31:1;;13937:42;;13927:70;;13993:1;13990;13983:12

Swarm Source

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