ETH Price: $3,008.11 (+3.63%)
Gas: 3 Gwei

Token

JEFF IN SPACE (JEFF)
 

Overview

Max Total Supply

2,441,441,441,440 JEFF

Holders

697 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
399,854,841.822502693 JEFF

Value
$0.00
0xe4369be6df50aa406db8212ae00cf81917c848ea
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Jeff in space is a meme coin brought to you by experienced developers that came up with the concept when Jeff announced he's going to space!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
JeffInSpace

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

pragma solidity ^0.8.3;
// SPDX-License-Identifier: Unlicensed

/*

JEFF IN SPACE v2

Telegram: https://t.me/jeffinspaceofficial
Website: jeffin.space
*/

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

// 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 no longer needed starting with Solidity 0.8. 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. This function uses a `revert`
    * opcode (which leaves remaining gas untouched) while Solidity uses an
    * invalid opcode to revert (consuming all remaining gas).
    *
    * 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;
        }
    }
}

/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
    * @dev Returns true if `account` is a contract.
    *
    * [IMPORTANT]
    * ====
    * It is unsafe to assume that an address for which this function returns
    * false is an externally-owned account (EOA) and not a contract.
    *
    * Among others, `isContract` will return false for the following
    * types of addresses:
    *
    *  - an externally-owned account
    *  - a contract in construction
    *  - an address where a contract will be created
    *  - an address where a contract lived, but was destroyed
    * ====
    */
    function isContract(address account) internal view returns (bool) {
        // 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;
        // solhint-disable-next-line no-inline-assembly
        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");

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

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

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

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

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

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

interface IUniswapV2Factory {
    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;
}

// contract implementation
contract JeffInSpace is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    uint8 private _decimals = 9;

    // ********************************* START VARIABLES **********************************
    string private _name = "JEFF IN SPACE"; // name
    string private _symbol = "JEFF"; // symbol
    uint256 private _tTotal = 2441441441440 * 10**uint256(_decimals); // total supply

    // % to holders
    uint256 public defaultTaxFee = 2;
    uint256 public _taxFee = defaultTaxFee;
    uint256 private _previousTaxFee = _taxFee;

    // % to swap & send to marketing wallet
    uint256 public defaultMarketingFee = 6;
    uint256 public _marketingFee = defaultMarketingFee;
    uint256 private _previousMarketingFee = _marketingFee;

    uint256 public _marketingFee4Sellers = 6;

    bool public feesOnSellersAndBuyers = true;

    uint256 public _maxTxAmount = _tTotal.div(1).div(100); // max transaction amount
    uint256 public numTokensToExchangeForMarketing = _tTotal.div(100).div(100); // contract balance to trigger swap & send

    address payable private _teamWalletAddress;
    address payable private _marketingWalletAddress;

    // ********************************** END VARIABLES ***********************************

    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;
    
    mapping (address => bool) private _isBlackListedBot;
    address[] private _blackListedBots;

    address[] private _excluded;
    uint256 private constant MAX = ~uint256(0);

    uint256 private _tFeeTotal;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwapAndSend;
    bool public SwapAndSendEnabled = true;        
    bool public tradingEnabled = false;

    event SwapAndSendEnabledUpdated(bool enabled);

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

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

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

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

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

        _isBlackListedBot[address(0x7589319ED0fD750017159fb4E4d96C63966173C1)] = true;
        _blackListedBots.push(address(0x7589319ED0fD750017159fb4E4d96C63966173C1));
        
        _isBlackListedBot[address(0x65A67DF75CCbF57828185c7C050e34De64d859d0)] = true;
        _blackListedBots.push(address(0x65A67DF75CCbF57828185c7C050e34De64d859d0));
        
        _isBlackListedBot[address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)] = true;
        _blackListedBots.push(address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce));
        
        _isBlackListedBot[address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)] = true;
        _blackListedBots.push(address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce));

        _isBlackListedBot[address(0xe516bDeE55b0b4e9bAcaF6285130De15589B1345)] = true;
        _blackListedBots.push(address(0xe516bDeE55b0b4e9bAcaF6285130De15589B1345));

        _isBlackListedBot[address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b)] = true;
        _blackListedBots.push(address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b));

        _isBlackListedBot[address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95)] = true;
        _blackListedBots.push(address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95));

        _isBlackListedBot[address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964)] = true;
        _blackListedBots.push(address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964));

        _isBlackListedBot[address(0xDC81a3450817A58D00f45C86d0368290088db848)] = true;
        _blackListedBots.push(address(0xDC81a3450817A58D00f45C86d0368290088db848));

        _isBlackListedBot[address(0x45fD07C63e5c316540F14b2002B085aEE78E3881)] = true;
        _blackListedBots.push(address(0x45fD07C63e5c316540F14b2002B085aEE78E3881));

        _isBlackListedBot[address(0x27F9Adb26D532a41D97e00206114e429ad58c679)] = true;
        _blackListedBots.push(address(0x27F9Adb26D532a41D97e00206114e429ad58c679));
        
        _isBlackListedBot[address(0x9282dc5c422FA91Ff2F6fF3a0b45B7BF97CF78E7)] = true;
        _blackListedBots.push(address(0x9282dc5c422FA91Ff2F6fF3a0b45B7BF97CF78E7));
        
        _isBlackListedBot[address(0xfad95B6089c53A0D1d861eabFaadd8901b0F8533)] = true;
        _blackListedBots.push(address(0xfad95B6089c53A0D1d861eabFaadd8901b0F8533));
        
        _isBlackListedBot[address(0x1d6E8BAC6EA3730825bde4B005ed7B2B39A2932d)] = true;
        _blackListedBots.push(address(0x1d6E8BAC6EA3730825bde4B005ed7B2B39A2932d));
        
        _isBlackListedBot[address(0x000000000000084e91743124a982076C59f10084)] = true;
        _blackListedBots.push(address(0x000000000000084e91743124a982076C59f10084));

        _isBlackListedBot[address(0x6dA4bEa09C3aA0761b09b19837D9105a52254303)] = true;
        _blackListedBots.push(address(0x6dA4bEa09C3aA0761b09b19837D9105a52254303));
        
        _isBlackListedBot[address(0x323b7F37d382A68B0195b873aF17CeA5B67cd595)] = true;
        _blackListedBots.push(address(0x323b7F37d382A68B0195b873aF17CeA5B67cd595));
        
        _isBlackListedBot[address(0x000000005804B22091aa9830E50459A15E7C9241)] = true;
        _blackListedBots.push(address(0x000000005804B22091aa9830E50459A15E7C9241));
        
        _isBlackListedBot[address(0xA3b0e79935815730d942A444A84d4Bd14A339553)] = true;
        _blackListedBots.push(address(0xA3b0e79935815730d942A444A84d4Bd14A339553));
        
        _isBlackListedBot[address(0xf6da21E95D74767009acCB145b96897aC3630BaD)] = true;
        _blackListedBots.push(address(0xf6da21E95D74767009acCB145b96897aC3630BaD));
        
        _isBlackListedBot[address(0x0000000000007673393729D5618DC555FD13f9aA)] = true;
        _blackListedBots.push(address(0x0000000000007673393729D5618DC555FD13f9aA));
        
        _isBlackListedBot[address(0x00000000000003441d59DdE9A90BFfb1CD3fABf1)] = true;
        _blackListedBots.push(address(0x00000000000003441d59DdE9A90BFfb1CD3fABf1));
        
        _isBlackListedBot[address(0x59903993Ae67Bf48F10832E9BE28935FEE04d6F6)] = true;
        _blackListedBots.push(address(0x59903993Ae67Bf48F10832E9BE28935FEE04d6F6));
        
        _isBlackListedBot[address(0x000000917de6037d52b1F0a306eeCD208405f7cd)] = true;
        _blackListedBots.push(address(0x000000917de6037d52b1F0a306eeCD208405f7cd));
        
        _isBlackListedBot[address(0x7100e690554B1c2FD01E8648db88bE235C1E6514)] = true;
        _blackListedBots.push(address(0x7100e690554B1c2FD01E8648db88bE235C1E6514));
        
        _isBlackListedBot[address(0x72b30cDc1583224381132D379A052A6B10725415)] = true;
        _blackListedBots.push(address(0x72b30cDc1583224381132D379A052A6B10725415));
        
        _isBlackListedBot[address(0x9eDD647D7d6Eceae6bB61D7785Ef66c5055A9bEE)] = true;
        _blackListedBots.push(address(0x9eDD647D7d6Eceae6bB61D7785Ef66c5055A9bEE));

        _isBlackListedBot[address(0xfe9d99ef02E905127239E85A611c29ad32c31c2F)] = true;
        _blackListedBots.push(address(0xfe9d99ef02E905127239E85A611c29ad32c31c2F));
        
        _isBlackListedBot[address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b)] = true;
        _blackListedBots.push(address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b));
        
        _isBlackListedBot[address(0xc496D84215d5018f6F53E7F6f12E45c9b5e8e8A9)] = true;
        _blackListedBots.push(address(0xc496D84215d5018f6F53E7F6f12E45c9b5e8e8A9));

        _isBlackListedBot[address(0x59341Bc6b4f3Ace878574b05914f43309dd678c7)] = true;
        _blackListedBots.push(address(0x59341Bc6b4f3Ace878574b05914f43309dd678c7));

        _isBlackListedBot[address(0xe986d48EfeE9ec1B8F66CD0b0aE8e3D18F091bDF)] = true;
        _blackListedBots.push(address(0xe986d48EfeE9ec1B8F66CD0b0aE8e3D18F091bDF));

        _isBlackListedBot[address(0x4aEB32e16DcaC00B092596ADc6CD4955EfdEE290)] = true;
        _blackListedBots.push(address(0x4aEB32e16DcaC00B092596ADc6CD4955EfdEE290));
        
        _isBlackListedBot[address(0x136F4B5b6A306091b280E3F251fa0E21b1280Cd5)] = true;
        _blackListedBots.push(address(0x136F4B5b6A306091b280E3F251fa0E21b1280Cd5));
        
        _isBlackListedBot[address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b)] = true;
        _blackListedBots.push(address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b));
        
        _isBlackListedBot[address(0x5B83A351500B631cc2a20a665ee17f0dC66e3dB7)] = true;
        _blackListedBots.push(address(0x5B83A351500B631cc2a20a665ee17f0dC66e3dB7));
  
        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 addBotToBlackList(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap router.');
        require(!_isBlackListedBot[account], "Account is already blacklisted");
        _isBlackListedBot[account] = true;
        _blackListedBots.push(account);
    }
    
    function removeBotFromBlackList(address account) external onlyOwner() {
        require(_isBlackListedBot[account], "Account is not blacklisted");
        for (uint256 i = 0; i < _blackListedBots.length; i++) {
            if (_blackListedBots[i] == account) {
                _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1];
                _isBlackListedBot[account] = false;
                _blackListedBots.pop();
                break;
            }
        }
    }

    function isBlackListed(address account) public view returns (bool) {
        return _isBlackListedBot[account];
    }

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

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

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

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

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

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

    function excludeFromReward(address account) public onlyOwner() {
        // require(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 includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

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

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

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

        _previousTaxFee = _taxFee;
        _previousMarketingFee = _marketingFee;

        _taxFee = 0;
        _marketingFee = 0;
    }

    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _marketingFee = _previousMarketingFee;
    }

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

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

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

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tMarketing = calculateMarketingFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tMarketing);
        return (tTransferAmount, tFee, tMarketing);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tMarketing, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rMarketing = tMarketing.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rMarketing);
        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 _takeMarketing(uint256 tMarketing) private {
        uint256 currentRate =  _getRate();
        uint256 rMarketing = tMarketing.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tMarketing);
    }

    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10**2
        );
    }

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

    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 from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(!_isBlackListedBot[to], "You have no power here!");
        require(!_isBlackListedBot[from], "You have no power here!");

        if(from != owner() && to != owner()) {
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
            if (from == uniswapV2Pair || to == uniswapV2Pair) {
                require(tradingEnabled, "Trading is not enabled yet");
            }
        }

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + send lock?
        // also, don't get caught in a circular sending event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinTokenBalance = contractTokenBalance >= numTokensToExchangeForMarketing;

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

        if (
            overMinTokenBalance &&
            !inSwapAndSend &&
            from != uniswapV2Pair &&
            SwapAndSendEnabled
        ) {
            SwapAndSend(contractTokenBalance);
        }

        if(feesOnSellersAndBuyers) {
            setFees(to);
        }

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

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

        _tokenTransfer(from,to,amount,takeFee);
    }

    function setFees(address recipient) private {
        _taxFee = defaultTaxFee;
        _marketingFee = defaultMarketingFee;
        if (recipient == uniswapV2Pair) { // sell
            _marketingFee = _marketingFee4Sellers;
        }
    }

    function SwapAndSend(uint256 contractTokenBalance) 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), contractTokenBalance);

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

        uint256 contractETHBalance = address(this).balance;
        if(contractETHBalance > 0) {
             _teamWalletAddress.transfer(contractETHBalance.div(2));
            _marketingWalletAddress.transfer(contractETHBalance.div(2));
        }
    }

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
        if(!takeFee)
            removeAllFee();

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

        if(!takeFee)
            restoreAllFee();
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tMarketing) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeMarketing(tMarketing);
        _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 tMarketing) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeMarketing(tMarketing);
        _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 tMarketing) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeMarketing(tMarketing);
        _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 tMarketing) = _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);
        _takeMarketing(tMarketing);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function setDefaultMarketingFee(uint256 marketingFee) external onlyOwner() {
        defaultMarketingFee = marketingFee;
    }

    function setMarketingFee4Sellers(uint256 marketingFee4Sellers) external onlyOwner() {
        _marketingFee4Sellers = marketingFee4Sellers;
    }

    function setFeesOnSellersAndBuyers(bool _enabled) public onlyOwner() {
        feesOnSellersAndBuyers = _enabled;
    }

    function setSwapAndSendEnabled(bool _enabled) public onlyOwner() {
        SwapAndSendEnabled = _enabled;
        emit SwapAndSendEnabledUpdated(_enabled);
    }
    
    function LetTradingBegin(bool _tradingEnabled) external onlyOwner() {
         tradingEnabled = _tradingEnabled;
    }

    function setnumTokensToExchangeForMarketing(uint256 _numTokensToExchangeForMarketing) public onlyOwner() {
        numTokensToExchangeForMarketing = _numTokensToExchangeForMarketing;
    }

    function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
        _maxTxAmount = maxTxAmount;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"teamWalletAddress","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":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":"SwapAndSendEnabledUpdated","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":[{"internalType":"bool","name":"_tradingEnabled","type":"bool"}],"name":"LetTradingBegin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"SwapAndSendEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee4Sellers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlackList","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":[],"name":"defaultMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feesOnSellersAndBuyers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlackListed","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensToExchangeForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"setDefaultMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setFeesOnSellersAndBuyers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee4Sellers","type":"uint256"}],"name":"setMarketingFee4Sellers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndSendEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokensToExchangeForMarketing","type":"uint256"}],"name":"setnumTokensToExchangeForMarketing","outputs":[],"stateMutability":"nonpayable","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":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}]

6000805460ff60a01b1916600960a01b179055610100604052600d60c08190526c4a45464620494e20535041434560981b60e090815262000044916001919062000f74565b50604080518082019091526004808252632522a32360e11b6020909201918252620000729160029162000f74565b506000546200008d90600160a01b900460ff16600a620010e0565b6200009f90650238713ff6a06200119c565b60038190556002600481905560058190556006908155600781905560088190556009819055600a55600b8054600160ff1990911681179091556200010c91606491620000f8919062000f5d602090811b6200156b17901c565b62000f5d60201b6200156b1790919060201c565b600c55620001326064620000f8606460035462000f5d60201b6200156b1790919060201c565b600d55600354620001469060001962001215565b6200015490600019620011be565b601955601a805462ffff0019166101001790553480156200017457600080fd5b5060405162003c5f38038062003c5f833981016040819052620001979162001041565b600080546001600160a01b0319163390811782556040519091907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3600e80546001600160a01b038085166001600160a01b031992831617909255600f80549284169290911691909117905560195460106000620002153390565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200028c57600080fd5b505afa158015620002a1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c791906200101a565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031057600080fd5b505afa15801562000325573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034b91906200101a565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200039457600080fd5b505af1158015620003a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003cf91906200101a565b6001600160601b0319606091821b811660a0529082901b16608052600160136000620004036000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526013835290812080548416600190811790915560159092527f2782b68cd8d572b34d3ad974cdd5523841ba714ef10ed09c0e3d7c8699d2f85980548416831790556016805480840182557fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b512428990810180546001600160a01b0319908116737589319ed0fd750017159fb4e4d96c63966173c1179091557f6841cef8cc398322c2720238b6f4b88d48bd6706e943e8d0ed7b57ce55640dea8054871686179055825480860184558201805482167365a67df75ccbf57828185c7c050e34de64d859d01790557f7855f8f5bf8b06e1d8b6ee87925426e99116152f2faf57126057c661a486bcd880548716861781558354808701855583018054831673e031b36b53e53a292a20c5f08fd1658cddf74fce9081179091558154881687179091558354808701855583018054831690911790557f5388c67711c753ccd766491f86194a6bde2350c3b5e50bb7121b8dcefb8f976c80548716861790558254808601845582018054821673e516bdee55b0b4e9bacaf6285130de15589b13451790557f4770273ab56216e38246c6d37f1351ca2660002c514d072d9dabdb7e4aa43d3b80548716861790558254808601845582018054821673a1cec245c456dd1bd9f2815a6955fef44eb4191b1790557fc788ce9cc17678377750a0d14f6637c4a46272b6b7fda68ca90c951949e8bf5880548716861790558254808601845582018054821673d7d3ee77d35d0a56f91542d4905b1a2b1cd7cf951790557f465308e79cb0fcc7bd4bcd60fb8e6961d6cc76cf90c3ec1374cd36bf43232ee080548716861790558254808601845582018054821673fe76f05dc59fec04184fa0245ad0c3cf9a57b9641790557f26837b3e052a9635791040dcc8a0479a43e9ef6f74d9826e76e4691a4706c22580548716861790558254808601845582018054821673dc81a3450817a58d00f45c86d0368290088db8481790557fc3b9bfda4537e64204dfcd972400b41996c2b4c6003c27a52575c04d63ddde868054871686179055825480860184558201805482167345fd07c63e5c316540f14b2002b085aee78e38811790557f9c73021987b8676170518ed86a229474fdd1804ac84a7edfacc05e24a56a02d28054871686179055825480860184558201805482167327f9adb26d532a41d97e00206114e429ad58c6791790557fafd1f0e9fdad8e0ff54fa49912af4ffa244dbc66492235c6d0187f370a8066a6805487168617905582548086018455820180548216739282dc5c422fa91ff2f6ff3a0b45b7bf97cf78e71790557f17e15a2bb5333b5c8243ece708c73b1ffbd72e201e7ae8ae56998a6d18c1adcf80548716861790558254808601845582018054821673fad95b6089c53a0d1d861eabfaadd8901b0f85331790557f7f1abd21091dbed0ec26c54339b1f869c942ffcdffb2884bd60bfb0e574ef222805487168617905582548086018455820180548216731d6e8bac6ea3730825bde4b005ed7b2b39a2932d1790557f31ab191c2c2a3d6190ecb95d7977aac0c24e8e8e2bb81ac20fc196600ce041ca8054871686179055825480860184558201805482166d084e91743124a982076c59f100841790557f9a17213d13a8e8029e28f67849cc4208aa493431662248075fd4a15f4ab652fc805487168617905582548086018455820180548216736da4bea09c3aa0761b09b19837d9105a522543031790557f1fb2787d52cc53c140d34a81b2748e966b9301fb78d759818f359b4a13b24a6d80548716861790558254808601845582018054821673323b7f37d382a68b0195b873af17cea5b67cd5951790557fe9be0c94f93529787dbc41d9b27a4ad01466c5354812d4f6ddbda57baad27c2f8054871686179055825480860184558201805482166f5804b22091aa9830e50459a15e7c92411790557f50e550790250777609fc90e082b2bdb200fa3e20d80723d3fbd11b7d6dc189d480548716861790558254808601845582018054821673a3b0e79935815730d942a444a84d4bd14a3395531790557f90a5844fa8573b179022f84248814d7469a3331b3bb0c8ad233485f09de55ef780548716861790558254808601845582018054821673f6da21e95d74767009accb145b96897ac3630bad1790557f94549ec1bccfbdc2946b8b55985cdebb31325a572679c0daaad5e099f7cb11fb8054871686179055825480860184558201805482166d7673393729d5618dc555fd13f9aa1790557faed1ad07beb26245b99dac88560ce2fb81671e349443ffaf424d5f1878012f318054871686179055825480860184558201805482166d03441d59dde9a90bffb1cd3fabf11790557f2d5f23201ac7a66a22ca9122c191674749baa6ae578e833488d4dfb6f46b32ea8054871686179055825480860184558201805482167359903993ae67bf48f10832e9be28935fee04d6f61790557fbdca664f3c83358dfb5a1aefaa8012a3c16fbb7b5838f3159e30a34f9c278ee680548716861790558254808601845582018054821670917de6037d52b1f0a306eecd208405f7cd1790557f43c34c138f81952dfe96c82f50d4f8218ae63d954fd58056117b8002c130aec2805487168617905582548086018455820180548216737100e690554b1c2fd01e8648db88be235c1e65141790557f3296cf3dded6c901d8770ec02f745fca9946ab0d2d76b508578d8ebc9aa453878054871686179055825480860184558201805482167372b30cdc1583224381132d379a052a6b107254151790557f3987172dcdce4598ac6cb1ba7614ad1327b77c2afd4cfed1b4d84af631fa154e805487168617905582548086018455820180548216739edd647d7d6eceae6bb61d7785ef66c5055a9bee1790557fff76cc2a974554fd85c64d51f449dcdd7c19de654f37b6ed983624d78e4c679680548716861790558254808601845582018054821673fe9d99ef02e905127239e85a611c29ad32c31c2f1790557f155c752ac3e581427091ee0b04fe64ac078cc47a2e5fa886b1bc1c1775c5c3e28054871686178155835480870185558301805483167339608b6f20704889c51c0ae28b1fca8f36a5239b9081179091557f0502122fc48b436f51f0955419ee86ece9ef723d0a438e4f117ebe698a3d118c80548916881790558454808801865584018054841673c496d84215d5018f6f53e7f6f12e45c9b5e8e8a91790557f6968b629f531a93e3e50d759505e69956a7202d7e831fec549995932a3d0ae1f8054891688179055845480880186558401805484167359341bc6b4f3ace878574b05914f43309dd678c71790557febde87668ff372e77e690f9b4ba4fbc889cb01e76f0eb6e38ae65257936c45db80548916881790558454808801865584018054841673e986d48efee9ec1b8f66cd0b0ae8e3d18f091bdf1790557fa397362c79a9d3f26676cca4feae94613a773aecb6554dd11d448459e3955156805489168817905584548088018655840180548416734aeb32e16dcac00b092596adc6cd4955efdee2901790557f83dcb130993ad8decd7b78f1a0beaa4d7e2c52a37adb0efd1bd17d942bf65b9180548916881790558454808801865584018054841673136f4b5b6a306091b280e3f251fa0e21b1280cd51790558154881687179091558354808701855583018054831690911790557fecd016a4932fce8462b8098e02805dde9c64c3564e7835562033c988ccde040d80549096168517909555815493840182559152018054909116735b83a351500b631cc2a20a665ee17f0dc66e3db717905562000f043390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60035460405162000f4c91815260200190565b60405180910390a350505062001271565b600062000f6b828462001080565b90505b92915050565b82805462000f8290620011d8565b90600052602060002090601f01602090048101928262000fa6576000855562000ff1565b82601f1062000fc157805160ff191683800117855562000ff1565b8280016001018555821562000ff1579182015b8281111562000ff157825182559160200191906001019062000fd4565b5062000fff92915062001003565b5090565b5b8082111562000fff576000815560010162001004565b6000602082840312156200102d57600080fd5b81516200103a8162001258565b9392505050565b600080604083850312156200105557600080fd5b8251620010628162001258565b6020840151909250620010758162001258565b809150509250929050565b60008262001092576200109262001242565b500490565b600181815b80851115620010d8578160001904821115620010bc57620010bc6200122c565b80851615620010ca57918102915b93841c93908002906200109c565b509250929050565b600062000f6b8383600082620010f95750600162000f6e565b81620011085750600062000f6e565b81600181146200112157600281146200112c576200114c565b600191505062000f6e565b60ff8411156200114057620011406200122c565b50506001821b62000f6e565b5060208310610133831016604e8410600b841016171562001171575081810a62000f6e565b6200117d838362001097565b80600019048211156200119457620011946200122c565b029392505050565b6000816000190483118215151615620011b957620011b96200122c565b500290565b600082821015620011d357620011d36200122c565b500390565b600181811c90821680620011ed57607f821691505b602082108114156200120f57634e487b7160e01b600052602260045260246000fd5b50919050565b60008262001227576200122762001242565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b6001600160a01b03811681146200126e57600080fd5b50565b60805160601c60a05160601c612991620012ce600039600081816104e90152818161191f0152818161195a01528181611a280152611e2001526000818161030e01528181611bff01528181611cc70152611d0301526129916000f3fe6080604052600436106102765760003560e01c806370a082311161014f578063a457c2d7116100c1578063d54994db1161007a578063d54994db1461078c578063dab522a8146107ac578063dd62ed3e146107cc578063e47d606014610812578063ea2f0b371461084b578063f2fde38b1461086b57600080fd5b8063a457c2d7146106e6578063a9059cbb14610706578063abdef31d14610726578063bc951f9814610746578063c537bd8f1461075c578063cba851b31461077657600080fd5b80638da5cb5b116101135780638da5cb5b1461064857806395d89b41146106665780639f6462141461067b578063a062e3ba14610691578063a08f6760146106b0578063a3864430146106d057600080fd5b806370a08231146105a4578063715018a6146105c45780637d1db4a5146105d95780637ded4d6a146105ef57806388f820201461060f57600080fd5b80633685d419116101e85780634549b039116101ac5780634549b039146104b757806349bd5a5e146104d75780634ada218b1461050b57806352390c021461052b5780635342acb41461054b57806357e0a1d01461058457600080fd5b80633685d4191461042157806339509351146104415780633b124fe7146104615780634303443d14610477578063437823ec1461049757600080fd5b80631bbae6e01161023a5780631bbae6e01461035d57806322976e0d1461037f57806323b872dd146103955780632663236f146103b55780632d838119146103d5578063313ce567146103f557600080fd5b806306fdde0314610282578063095ea7b3146102ad57806313114a9d146102dd5780631694505e146102fc57806318160ddd1461034857600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b5061029761088b565b6040516102a491906126f6565b60405180910390f35b3480156102b957600080fd5b506102cd6102c836600461266a565b61091d565b60405190151581526020016102a4565b3480156102e957600080fd5b506018545b6040519081526020016102a4565b34801561030857600080fd5b506103307f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102a4565b34801561035457600080fd5b506003546102ee565b34801561036957600080fd5b5061037d6103783660046126b1565b610934565b005b34801561038b57600080fd5b506102ee60085481565b3480156103a157600080fd5b506102cd6103b0366004612629565b61096c565b3480156103c157600080fd5b5061037d6103d0366004612696565b6109d5565b3480156103e157600080fd5b506102ee6103f03660046126b1565b610a53565b34801561040157600080fd5b50600054600160a01b900460ff1660405160ff90911681526020016102a4565b34801561042d57600080fd5b5061037d61043c3660046125b6565b610ad7565b34801561044d57600080fd5b506102cd61045c36600461266a565b610c8e565b34801561046d57600080fd5b506102ee60055481565b34801561048357600080fd5b5061037d6104923660046125b6565b610cc4565b3480156104a357600080fd5b5061037d6104b23660046125b6565b610e36565b3480156104c357600080fd5b506102ee6104d23660046126ca565b610e84565b3480156104e357600080fd5b506103307f000000000000000000000000000000000000000000000000000000000000000081565b34801561051757600080fd5b50601a546102cd9062010000900460ff1681565b34801561053757600080fd5b5061037d6105463660046125b6565b610f11565b34801561055757600080fd5b506102cd6105663660046125b6565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561059057600080fd5b5061037d61059f366004612696565b611064565b3480156105b057600080fd5b506102ee6105bf3660046125b6565b6110a1565b3480156105d057600080fd5b5061037d611100565b3480156105e557600080fd5b506102ee600c5481565b3480156105fb57600080fd5b5061037d61060a3660046125b6565b611174565b34801561061b57600080fd5b506102cd61062a3660046125b6565b6001600160a01b031660009081526014602052604090205460ff1690565b34801561065457600080fd5b506000546001600160a01b0316610330565b34801561067257600080fd5b506102976112f8565b34801561068757600080fd5b506102ee60075481565b34801561069d57600080fd5b50601a546102cd90610100900460ff1681565b3480156106bc57600080fd5b5061037d6106cb3660046126b1565b611307565b3480156106dc57600080fd5b506102ee600d5481565b3480156106f257600080fd5b506102cd61070136600461266a565b611336565b34801561071257600080fd5b506102cd61072136600461266a565b611385565b34801561073257600080fd5b5061037d610741366004612696565b611392565b34801561075257600080fd5b506102ee600a5481565b34801561076857600080fd5b50600b546102cd9060ff1681565b34801561078257600080fd5b506102ee60045481565b34801561079857600080fd5b5061037d6107a73660046126b1565b6113d8565b3480156107b857600080fd5b5061037d6107c73660046126b1565b611407565b3480156107d857600080fd5b506102ee6107e73660046125f0565b6001600160a01b03918216600090815260126020908152604080832093909416825291909152205490565b34801561081e57600080fd5b506102cd61082d3660046125b6565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561085757600080fd5b5061037d6108663660046125b6565b611436565b34801561087757600080fd5b5061037d6108863660046125b6565b611481565b60606001805461089a90612861565b80601f01602080910402602001604051908101604052809291908181526020018280546108c690612861565b80156109135780601f106108e857610100808354040283529160200191610913565b820191906000526020600020905b8154815290600101906020018083116108f657829003601f168201915b5050505050905090565b600061092a338484611577565b5060015b92915050565b6000546001600160a01b031633146109675760405162461bcd60e51b815260040161095e9061274b565b60405180910390fd5b600c55565b600061097984848461169b565b6109cb84336109c68560405180606001604052806028815260200161290f602891396001600160a01b038a1660009081526012602090815260408083203384529091529020549190611af1565b611577565b5060019392505050565b6000546001600160a01b031633146109ff5760405162461bcd60e51b815260040161095e9061274b565b601a80548215156101000261ff00199091161790556040517f3efb3f9ce66ef48ce5be6bff57df61c60b91f67f10f414ed7cd767b1c9cdad7d90610a4890831515815260200190565b60405180910390a150565b6000601954821115610aba5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b606482015260840161095e565b6000610ac4611b1d565b9050610ad0838261156b565b9392505050565b6000546001600160a01b03163314610b015760405162461bcd60e51b815260040161095e9061274b565b6001600160a01b03811660009081526014602052604090205460ff16610b695760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161095e565b60005b601754811015610c8a57816001600160a01b031660178281548110610b9357610b936128e3565b6000918252602090912001546001600160a01b03161415610c785760178054610bbe9060019061284a565b81548110610bce57610bce6128e3565b600091825260209091200154601780546001600160a01b039092169183908110610bfa57610bfa6128e3565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152601182526040808220829055601490925220805460ff191690556017805480610c5257610c526128cd565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610c828161289c565b915050610b6c565b5050565b3360008181526012602090815260408083206001600160a01b0387168452909152812054909161092a9185906109c69086611b40565b6000546001600160a01b03163314610cee5760405162461bcd60e51b815260040161095e9061274b565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610d675760405162461bcd60e51b8152602060048201526024808201527f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f756044820152633a32b91760e11b606482015260840161095e565b6001600160a01b03811660009081526015602052604090205460ff1615610dd05760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015260640161095e565b6001600160a01b03166000818152601560205260408120805460ff191660019081179091556016805491820181559091527fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b51242890180546001600160a01b0319169091179055565b6000546001600160a01b03163314610e605760405162461bcd60e51b815260040161095e9061274b565b6001600160a01b03166000908152601360205260409020805460ff19166001179055565b6000600354831115610ed85760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015260640161095e565b81610ef7576000610ee884611b4c565b5093955061092e945050505050565b6000610f0284611b4c565b5092955061092e945050505050565b6000546001600160a01b03163314610f3b5760405162461bcd60e51b815260040161095e9061274b565b6001600160a01b03811660009081526014602052604090205460ff1615610fa45760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161095e565b6001600160a01b03811660009081526010602052604090205415610ffe576001600160a01b038116600090815260106020526040902054610fe490610a53565b6001600160a01b0382166000908152601160205260409020555b6001600160a01b03166000818152601460205260408120805460ff191660019081179091556017805491820181559091527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c150180546001600160a01b0319169091179055565b6000546001600160a01b0316331461108e5760405162461bcd60e51b815260040161095e9061274b565b600b805460ff1916911515919091179055565b6001600160a01b03811660009081526014602052604081205460ff16156110de57506001600160a01b031660009081526011602052604090205490565b6001600160a01b03821660009081526010602052604090205461092e90610a53565b6000546001600160a01b0316331461112a5760405162461bcd60e51b815260040161095e9061274b565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461119e5760405162461bcd60e51b815260040161095e9061274b565b6001600160a01b03811660009081526015602052604090205460ff166112065760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015260640161095e565b60005b601654811015610c8a57816001600160a01b031660168281548110611230576112306128e3565b6000918252602090912001546001600160a01b031614156112e6576016805461125b9060019061284a565b8154811061126b5761126b6128e3565b600091825260209091200154601680546001600160a01b039092169183908110611297576112976128e3565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152601590915260409020805460ff191690556016805480610c5257610c526128cd565b806112f08161289c565b915050611209565b60606002805461089a90612861565b6000546001600160a01b031633146113315760405162461bcd60e51b815260040161095e9061274b565b600a55565b600061092a33846109c685604051806060016040528060258152602001612937602591393360009081526012602090815260408083206001600160a01b038d1684529091529020549190611af1565b600061092a33848461169b565b6000546001600160a01b031633146113bc5760405162461bcd60e51b815260040161095e9061274b565b601a8054911515620100000262ff000019909216919091179055565b6000546001600160a01b031633146114025760405162461bcd60e51b815260040161095e9061274b565b600755565b6000546001600160a01b031633146114315760405162461bcd60e51b815260040161095e9061274b565b600d55565b6000546001600160a01b031633146114605760405162461bcd60e51b815260040161095e9061274b565b6001600160a01b03166000908152601360205260409020805460ff19169055565b6000546001600160a01b031633146114ab5760405162461bcd60e51b815260040161095e9061274b565b6001600160a01b0381166115105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161095e565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610ad08284612809565b6001600160a01b0383166115d95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161095e565b6001600160a01b03821661163a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161095e565b6001600160a01b0383811660008181526012602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116ff5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161095e565b6001600160a01b0382166117615760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161095e565b600081116117c35760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161095e565b6001600160a01b03821660009081526015602052604090205460ff16156118265760405162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015260640161095e565b6001600160a01b03831660009081526015602052604090205460ff16156118895760405162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015260640161095e565b6000546001600160a01b038481169116148015906118b557506000546001600160a01b03838116911614155b156119eb57600c5481111561191d5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b606482015260840161095e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148061198e57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b156119eb57601a5462010000900460ff166119eb5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420656e61626c656420796574000000000000604482015260640161095e565b60006119f6306110a1565b600d54600c54919250821015908210611a0f57600c5491505b808015611a1f5750601a5460ff16155b8015611a5d57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611a705750601a54610100900460ff165b15611a7e57611a7e82611b9b565b600b5460ff1615611a9257611a9284611e12565b6001600160a01b03851660009081526013602052604090205460019060ff1680611ad457506001600160a01b03851660009081526013602052604090205460ff165b15611add575060005b611ae986868684611e5d565b505050505050565b60008184841115611b155760405162461bcd60e51b815260040161095e91906126f6565b505050900390565b6000806000611b2a611fda565b9092509050611b39828261156b565b9250505090565b6000610ad082846127f1565b6000806000806000806000806000611b638a61215c565b9250925092506000806000611b818d8686611b7c611b1d565b61219e565b919f909e50909c50959a5093985091965092945050505050565b601a805460ff191660011790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611bdd57611bdd6128e3565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611c5657600080fd5b505afa158015611c6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8e91906125d3565b81600181518110611ca157611ca16128e3565b60200260200101906001600160a01b031690816001600160a01b031681525050611cec307f000000000000000000000000000000000000000000000000000000000000000084611577565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611d41908590600090869030904290600401612780565b600060405180830381600087803b158015611d5b57600080fd5b505af1158015611d6f573d6000803e3d6000fd5b504792505081159050611e0357600e546001600160a01b03166108fc611d9683600261156b565b6040518115909202916000818181858888f19350505050158015611dbe573d6000803e3d6000fd5b50600f546001600160a01b03166108fc611dd983600261156b565b6040518115909202916000818181858888f19350505050158015611e01573d6000803e3d6000fd5b505b5050601a805460ff1916905550565b6004546005556007546008557f00000000000000000000000000000000000000000000000000000000000000006001600160a01b039081169082161415611e5a57600a546008555b50565b80611e6a57611e6a6121ee565b6001600160a01b03841660009081526014602052604090205460ff168015611eab57506001600160a01b03831660009081526014602052604090205460ff16155b15611ec057611ebb84848461221c565b611fbe565b6001600160a01b03841660009081526014602052604090205460ff16158015611f0157506001600160a01b03831660009081526014602052604090205460ff165b15611f1157611ebb848484612342565b6001600160a01b03841660009081526014602052604090205460ff16158015611f5357506001600160a01b03831660009081526014602052604090205460ff16155b15611f6357611ebb8484846123eb565b6001600160a01b03841660009081526014602052604090205460ff168015611fa357506001600160a01b03831660009081526014602052604090205460ff165b15611fb357611ebb84848461242f565b611fbe8484846123eb565b80611fd457611fd4600654600555600954600855565b50505050565b6019546003546000918291825b60175481101561212c57826010600060178481548110612009576120096128e3565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612074575081601160006017848154811061204d5761204d6128e3565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561208a57601954600354945094505050509091565b6120d060106000601784815481106120a4576120a46128e3565b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061249e565b925061211860116000601784815481106120ec576120ec6128e3565b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061249e565b9150806121248161289c565b915050611fe7565b5060035460195461213c9161156b565b821015612153576019546003549350935050509091565b90939092509050565b60008060008061216b856124aa565b90506000612178866124cc565b905060006121908261218a898661249e565b9061249e565b979296509094509092505050565b60008080806121ad88866124e8565b905060006121bb88876124e8565b905060006121c988886124e8565b905060006121db8261218a868661249e565b939b939a50919850919650505050505050565b6005541580156121fe5750600854155b1561220557565b600580546006556008805460095560009182905555565b60008060008060008061222e87611b4c565b6001600160a01b038f16600090815260116020526040902054959b50939950919750955093509150612260908861249e565b6001600160a01b038a1660009081526011602090815260408083209390935560109052205461228f908761249e565b6001600160a01b03808b1660009081526010602052604080822093909355908a16815220546122be9086611b40565b6001600160a01b0389166000908152601060205260409020556122e0816124f4565b6122ea848361257d565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161232f91815260200190565b60405180910390a3505050505050505050565b60008060008060008061235487611b4c565b6001600160a01b038f16600090815260106020526040902054959b50939950919750955093509150612386908761249e565b6001600160a01b03808b16600090815260106020908152604080832094909455918b168152601190915220546123bc9084611b40565b6001600160a01b0389166000908152601160209081526040808320939093556010905220546122be9086611b40565b6000806000806000806123fd87611b4c565b6001600160a01b038f16600090815260106020526040902054959b5093995091975095509350915061228f908761249e565b60008060008060008061244187611b4c565b6001600160a01b038f16600090815260116020526040902054959b50939950919750955093509150612473908861249e565b6001600160a01b038a1660009081526011602090815260408083209390935560109052205461238690875b6000610ad0828461284a565b600061092e60646124c6600554856124e890919063ffffffff16565b9061156b565b600061092e60646124c6600854856124e890919063ffffffff16565b6000610ad0828461282b565b60006124fe611b1d565b9050600061250c83836124e8565b306000908152601060205260409020549091506125299082611b40565b3060009081526010602090815260408083209390935560149052205460ff161561257857306000908152601160205260409020546125679084611b40565b306000908152601160205260409020555b505050565b60195461258a908361249e565b60195560185461259a9082611b40565b6018555050565b803580151581146125b157600080fd5b919050565b6000602082840312156125c857600080fd5b8135610ad0816128f9565b6000602082840312156125e557600080fd5b8151610ad0816128f9565b6000806040838503121561260357600080fd5b823561260e816128f9565b9150602083013561261e816128f9565b809150509250929050565b60008060006060848603121561263e57600080fd5b8335612649816128f9565b92506020840135612659816128f9565b929592945050506040919091013590565b6000806040838503121561267d57600080fd5b8235612688816128f9565b946020939093013593505050565b6000602082840312156126a857600080fd5b610ad0826125a1565b6000602082840312156126c357600080fd5b5035919050565b600080604083850312156126dd57600080fd5b823591506126ed602084016125a1565b90509250929050565b600060208083528351808285015260005b8181101561272357858101830151858201604001528201612707565b81811115612735576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156127d05784516001600160a01b0316835293830193918301916001016127ab565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612804576128046128b7565b500190565b60008261282657634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612845576128456128b7565b500290565b60008282101561285c5761285c6128b7565b500390565b600181811c9082168061287557607f821691505b6020821081141561289657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128b0576128b06128b7565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114611e5a57600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f583d6dbecbb03825daa4beda12449d24a96120734eb4809904ffe8aa00a498364736f6c63430008060033000000000000000000000000f542e79b220bb82c5b8d8944c1ade2b9152bf18c000000000000000000000000dcc2b4262706bee96f34b28f76c249a9e04a912c

Deployed Bytecode

0x6080604052600436106102765760003560e01c806370a082311161014f578063a457c2d7116100c1578063d54994db1161007a578063d54994db1461078c578063dab522a8146107ac578063dd62ed3e146107cc578063e47d606014610812578063ea2f0b371461084b578063f2fde38b1461086b57600080fd5b8063a457c2d7146106e6578063a9059cbb14610706578063abdef31d14610726578063bc951f9814610746578063c537bd8f1461075c578063cba851b31461077657600080fd5b80638da5cb5b116101135780638da5cb5b1461064857806395d89b41146106665780639f6462141461067b578063a062e3ba14610691578063a08f6760146106b0578063a3864430146106d057600080fd5b806370a08231146105a4578063715018a6146105c45780637d1db4a5146105d95780637ded4d6a146105ef57806388f820201461060f57600080fd5b80633685d419116101e85780634549b039116101ac5780634549b039146104b757806349bd5a5e146104d75780634ada218b1461050b57806352390c021461052b5780635342acb41461054b57806357e0a1d01461058457600080fd5b80633685d4191461042157806339509351146104415780633b124fe7146104615780634303443d14610477578063437823ec1461049757600080fd5b80631bbae6e01161023a5780631bbae6e01461035d57806322976e0d1461037f57806323b872dd146103955780632663236f146103b55780632d838119146103d5578063313ce567146103f557600080fd5b806306fdde0314610282578063095ea7b3146102ad57806313114a9d146102dd5780631694505e146102fc57806318160ddd1461034857600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b5061029761088b565b6040516102a491906126f6565b60405180910390f35b3480156102b957600080fd5b506102cd6102c836600461266a565b61091d565b60405190151581526020016102a4565b3480156102e957600080fd5b506018545b6040519081526020016102a4565b34801561030857600080fd5b506103307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102a4565b34801561035457600080fd5b506003546102ee565b34801561036957600080fd5b5061037d6103783660046126b1565b610934565b005b34801561038b57600080fd5b506102ee60085481565b3480156103a157600080fd5b506102cd6103b0366004612629565b61096c565b3480156103c157600080fd5b5061037d6103d0366004612696565b6109d5565b3480156103e157600080fd5b506102ee6103f03660046126b1565b610a53565b34801561040157600080fd5b50600054600160a01b900460ff1660405160ff90911681526020016102a4565b34801561042d57600080fd5b5061037d61043c3660046125b6565b610ad7565b34801561044d57600080fd5b506102cd61045c36600461266a565b610c8e565b34801561046d57600080fd5b506102ee60055481565b34801561048357600080fd5b5061037d6104923660046125b6565b610cc4565b3480156104a357600080fd5b5061037d6104b23660046125b6565b610e36565b3480156104c357600080fd5b506102ee6104d23660046126ca565b610e84565b3480156104e357600080fd5b506103307f000000000000000000000000aa84ef943c027c7c7afec4490df7b1b7357c21b681565b34801561051757600080fd5b50601a546102cd9062010000900460ff1681565b34801561053757600080fd5b5061037d6105463660046125b6565b610f11565b34801561055757600080fd5b506102cd6105663660046125b6565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561059057600080fd5b5061037d61059f366004612696565b611064565b3480156105b057600080fd5b506102ee6105bf3660046125b6565b6110a1565b3480156105d057600080fd5b5061037d611100565b3480156105e557600080fd5b506102ee600c5481565b3480156105fb57600080fd5b5061037d61060a3660046125b6565b611174565b34801561061b57600080fd5b506102cd61062a3660046125b6565b6001600160a01b031660009081526014602052604090205460ff1690565b34801561065457600080fd5b506000546001600160a01b0316610330565b34801561067257600080fd5b506102976112f8565b34801561068757600080fd5b506102ee60075481565b34801561069d57600080fd5b50601a546102cd90610100900460ff1681565b3480156106bc57600080fd5b5061037d6106cb3660046126b1565b611307565b3480156106dc57600080fd5b506102ee600d5481565b3480156106f257600080fd5b506102cd61070136600461266a565b611336565b34801561071257600080fd5b506102cd61072136600461266a565b611385565b34801561073257600080fd5b5061037d610741366004612696565b611392565b34801561075257600080fd5b506102ee600a5481565b34801561076857600080fd5b50600b546102cd9060ff1681565b34801561078257600080fd5b506102ee60045481565b34801561079857600080fd5b5061037d6107a73660046126b1565b6113d8565b3480156107b857600080fd5b5061037d6107c73660046126b1565b611407565b3480156107d857600080fd5b506102ee6107e73660046125f0565b6001600160a01b03918216600090815260126020908152604080832093909416825291909152205490565b34801561081e57600080fd5b506102cd61082d3660046125b6565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561085757600080fd5b5061037d6108663660046125b6565b611436565b34801561087757600080fd5b5061037d6108863660046125b6565b611481565b60606001805461089a90612861565b80601f01602080910402602001604051908101604052809291908181526020018280546108c690612861565b80156109135780601f106108e857610100808354040283529160200191610913565b820191906000526020600020905b8154815290600101906020018083116108f657829003601f168201915b5050505050905090565b600061092a338484611577565b5060015b92915050565b6000546001600160a01b031633146109675760405162461bcd60e51b815260040161095e9061274b565b60405180910390fd5b600c55565b600061097984848461169b565b6109cb84336109c68560405180606001604052806028815260200161290f602891396001600160a01b038a1660009081526012602090815260408083203384529091529020549190611af1565b611577565b5060019392505050565b6000546001600160a01b031633146109ff5760405162461bcd60e51b815260040161095e9061274b565b601a80548215156101000261ff00199091161790556040517f3efb3f9ce66ef48ce5be6bff57df61c60b91f67f10f414ed7cd767b1c9cdad7d90610a4890831515815260200190565b60405180910390a150565b6000601954821115610aba5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b606482015260840161095e565b6000610ac4611b1d565b9050610ad0838261156b565b9392505050565b6000546001600160a01b03163314610b015760405162461bcd60e51b815260040161095e9061274b565b6001600160a01b03811660009081526014602052604090205460ff16610b695760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161095e565b60005b601754811015610c8a57816001600160a01b031660178281548110610b9357610b936128e3565b6000918252602090912001546001600160a01b03161415610c785760178054610bbe9060019061284a565b81548110610bce57610bce6128e3565b600091825260209091200154601780546001600160a01b039092169183908110610bfa57610bfa6128e3565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152601182526040808220829055601490925220805460ff191690556017805480610c5257610c526128cd565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610c828161289c565b915050610b6c565b5050565b3360008181526012602090815260408083206001600160a01b0387168452909152812054909161092a9185906109c69086611b40565b6000546001600160a01b03163314610cee5760405162461bcd60e51b815260040161095e9061274b565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610d675760405162461bcd60e51b8152602060048201526024808201527f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f756044820152633a32b91760e11b606482015260840161095e565b6001600160a01b03811660009081526015602052604090205460ff1615610dd05760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015260640161095e565b6001600160a01b03166000818152601560205260408120805460ff191660019081179091556016805491820181559091527fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b51242890180546001600160a01b0319169091179055565b6000546001600160a01b03163314610e605760405162461bcd60e51b815260040161095e9061274b565b6001600160a01b03166000908152601360205260409020805460ff19166001179055565b6000600354831115610ed85760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015260640161095e565b81610ef7576000610ee884611b4c565b5093955061092e945050505050565b6000610f0284611b4c565b5092955061092e945050505050565b6000546001600160a01b03163314610f3b5760405162461bcd60e51b815260040161095e9061274b565b6001600160a01b03811660009081526014602052604090205460ff1615610fa45760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161095e565b6001600160a01b03811660009081526010602052604090205415610ffe576001600160a01b038116600090815260106020526040902054610fe490610a53565b6001600160a01b0382166000908152601160205260409020555b6001600160a01b03166000818152601460205260408120805460ff191660019081179091556017805491820181559091527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c150180546001600160a01b0319169091179055565b6000546001600160a01b0316331461108e5760405162461bcd60e51b815260040161095e9061274b565b600b805460ff1916911515919091179055565b6001600160a01b03811660009081526014602052604081205460ff16156110de57506001600160a01b031660009081526011602052604090205490565b6001600160a01b03821660009081526010602052604090205461092e90610a53565b6000546001600160a01b0316331461112a5760405162461bcd60e51b815260040161095e9061274b565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461119e5760405162461bcd60e51b815260040161095e9061274b565b6001600160a01b03811660009081526015602052604090205460ff166112065760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015260640161095e565b60005b601654811015610c8a57816001600160a01b031660168281548110611230576112306128e3565b6000918252602090912001546001600160a01b031614156112e6576016805461125b9060019061284a565b8154811061126b5761126b6128e3565b600091825260209091200154601680546001600160a01b039092169183908110611297576112976128e3565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152601590915260409020805460ff191690556016805480610c5257610c526128cd565b806112f08161289c565b915050611209565b60606002805461089a90612861565b6000546001600160a01b031633146113315760405162461bcd60e51b815260040161095e9061274b565b600a55565b600061092a33846109c685604051806060016040528060258152602001612937602591393360009081526012602090815260408083206001600160a01b038d1684529091529020549190611af1565b600061092a33848461169b565b6000546001600160a01b031633146113bc5760405162461bcd60e51b815260040161095e9061274b565b601a8054911515620100000262ff000019909216919091179055565b6000546001600160a01b031633146114025760405162461bcd60e51b815260040161095e9061274b565b600755565b6000546001600160a01b031633146114315760405162461bcd60e51b815260040161095e9061274b565b600d55565b6000546001600160a01b031633146114605760405162461bcd60e51b815260040161095e9061274b565b6001600160a01b03166000908152601360205260409020805460ff19169055565b6000546001600160a01b031633146114ab5760405162461bcd60e51b815260040161095e9061274b565b6001600160a01b0381166115105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161095e565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610ad08284612809565b6001600160a01b0383166115d95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161095e565b6001600160a01b03821661163a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161095e565b6001600160a01b0383811660008181526012602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116ff5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161095e565b6001600160a01b0382166117615760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161095e565b600081116117c35760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161095e565b6001600160a01b03821660009081526015602052604090205460ff16156118265760405162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015260640161095e565b6001600160a01b03831660009081526015602052604090205460ff16156118895760405162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015260640161095e565b6000546001600160a01b038481169116148015906118b557506000546001600160a01b03838116911614155b156119eb57600c5481111561191d5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b606482015260840161095e565b7f000000000000000000000000aa84ef943c027c7c7afec4490df7b1b7357c21b66001600160a01b0316836001600160a01b0316148061198e57507f000000000000000000000000aa84ef943c027c7c7afec4490df7b1b7357c21b66001600160a01b0316826001600160a01b0316145b156119eb57601a5462010000900460ff166119eb5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420656e61626c656420796574000000000000604482015260640161095e565b60006119f6306110a1565b600d54600c54919250821015908210611a0f57600c5491505b808015611a1f5750601a5460ff16155b8015611a5d57507f000000000000000000000000aa84ef943c027c7c7afec4490df7b1b7357c21b66001600160a01b0316856001600160a01b031614155b8015611a705750601a54610100900460ff165b15611a7e57611a7e82611b9b565b600b5460ff1615611a9257611a9284611e12565b6001600160a01b03851660009081526013602052604090205460019060ff1680611ad457506001600160a01b03851660009081526013602052604090205460ff165b15611add575060005b611ae986868684611e5d565b505050505050565b60008184841115611b155760405162461bcd60e51b815260040161095e91906126f6565b505050900390565b6000806000611b2a611fda565b9092509050611b39828261156b565b9250505090565b6000610ad082846127f1565b6000806000806000806000806000611b638a61215c565b9250925092506000806000611b818d8686611b7c611b1d565b61219e565b919f909e50909c50959a5093985091965092945050505050565b601a805460ff191660011790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611bdd57611bdd6128e3565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611c5657600080fd5b505afa158015611c6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8e91906125d3565b81600181518110611ca157611ca16128e3565b60200260200101906001600160a01b031690816001600160a01b031681525050611cec307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611577565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611d41908590600090869030904290600401612780565b600060405180830381600087803b158015611d5b57600080fd5b505af1158015611d6f573d6000803e3d6000fd5b504792505081159050611e0357600e546001600160a01b03166108fc611d9683600261156b565b6040518115909202916000818181858888f19350505050158015611dbe573d6000803e3d6000fd5b50600f546001600160a01b03166108fc611dd983600261156b565b6040518115909202916000818181858888f19350505050158015611e01573d6000803e3d6000fd5b505b5050601a805460ff1916905550565b6004546005556007546008557f000000000000000000000000aa84ef943c027c7c7afec4490df7b1b7357c21b66001600160a01b039081169082161415611e5a57600a546008555b50565b80611e6a57611e6a6121ee565b6001600160a01b03841660009081526014602052604090205460ff168015611eab57506001600160a01b03831660009081526014602052604090205460ff16155b15611ec057611ebb84848461221c565b611fbe565b6001600160a01b03841660009081526014602052604090205460ff16158015611f0157506001600160a01b03831660009081526014602052604090205460ff165b15611f1157611ebb848484612342565b6001600160a01b03841660009081526014602052604090205460ff16158015611f5357506001600160a01b03831660009081526014602052604090205460ff16155b15611f6357611ebb8484846123eb565b6001600160a01b03841660009081526014602052604090205460ff168015611fa357506001600160a01b03831660009081526014602052604090205460ff165b15611fb357611ebb84848461242f565b611fbe8484846123eb565b80611fd457611fd4600654600555600954600855565b50505050565b6019546003546000918291825b60175481101561212c57826010600060178481548110612009576120096128e3565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612074575081601160006017848154811061204d5761204d6128e3565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561208a57601954600354945094505050509091565b6120d060106000601784815481106120a4576120a46128e3565b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061249e565b925061211860116000601784815481106120ec576120ec6128e3565b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061249e565b9150806121248161289c565b915050611fe7565b5060035460195461213c9161156b565b821015612153576019546003549350935050509091565b90939092509050565b60008060008061216b856124aa565b90506000612178866124cc565b905060006121908261218a898661249e565b9061249e565b979296509094509092505050565b60008080806121ad88866124e8565b905060006121bb88876124e8565b905060006121c988886124e8565b905060006121db8261218a868661249e565b939b939a50919850919650505050505050565b6005541580156121fe5750600854155b1561220557565b600580546006556008805460095560009182905555565b60008060008060008061222e87611b4c565b6001600160a01b038f16600090815260116020526040902054959b50939950919750955093509150612260908861249e565b6001600160a01b038a1660009081526011602090815260408083209390935560109052205461228f908761249e565b6001600160a01b03808b1660009081526010602052604080822093909355908a16815220546122be9086611b40565b6001600160a01b0389166000908152601060205260409020556122e0816124f4565b6122ea848361257d565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161232f91815260200190565b60405180910390a3505050505050505050565b60008060008060008061235487611b4c565b6001600160a01b038f16600090815260106020526040902054959b50939950919750955093509150612386908761249e565b6001600160a01b03808b16600090815260106020908152604080832094909455918b168152601190915220546123bc9084611b40565b6001600160a01b0389166000908152601160209081526040808320939093556010905220546122be9086611b40565b6000806000806000806123fd87611b4c565b6001600160a01b038f16600090815260106020526040902054959b5093995091975095509350915061228f908761249e565b60008060008060008061244187611b4c565b6001600160a01b038f16600090815260116020526040902054959b50939950919750955093509150612473908861249e565b6001600160a01b038a1660009081526011602090815260408083209390935560109052205461238690875b6000610ad0828461284a565b600061092e60646124c6600554856124e890919063ffffffff16565b9061156b565b600061092e60646124c6600854856124e890919063ffffffff16565b6000610ad0828461282b565b60006124fe611b1d565b9050600061250c83836124e8565b306000908152601060205260409020549091506125299082611b40565b3060009081526010602090815260408083209390935560149052205460ff161561257857306000908152601160205260409020546125679084611b40565b306000908152601160205260409020555b505050565b60195461258a908361249e565b60195560185461259a9082611b40565b6018555050565b803580151581146125b157600080fd5b919050565b6000602082840312156125c857600080fd5b8135610ad0816128f9565b6000602082840312156125e557600080fd5b8151610ad0816128f9565b6000806040838503121561260357600080fd5b823561260e816128f9565b9150602083013561261e816128f9565b809150509250929050565b60008060006060848603121561263e57600080fd5b8335612649816128f9565b92506020840135612659816128f9565b929592945050506040919091013590565b6000806040838503121561267d57600080fd5b8235612688816128f9565b946020939093013593505050565b6000602082840312156126a857600080fd5b610ad0826125a1565b6000602082840312156126c357600080fd5b5035919050565b600080604083850312156126dd57600080fd5b823591506126ed602084016125a1565b90509250929050565b600060208083528351808285015260005b8181101561272357858101830151858201604001528201612707565b81811115612735576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156127d05784516001600160a01b0316835293830193918301916001016127ab565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612804576128046128b7565b500190565b60008261282657634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612845576128456128b7565b500290565b60008282101561285c5761285c6128b7565b500390565b600181811c9082168061287557607f821691505b6020821081141561289657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128b0576128b06128b7565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114611e5a57600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f583d6dbecbb03825daa4beda12449d24a96120734eb4809904ffe8aa00a498364736f6c63430008060033

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

000000000000000000000000f542e79b220bb82c5b8d8944c1ade2b9152bf18c000000000000000000000000dcc2b4262706bee96f34b28f76c249a9e04a912c

-----Decoded View---------------
Arg [0] : teamWalletAddress (address): 0xf542E79B220Bb82c5B8D8944C1ADE2b9152bF18c
Arg [1] : marketingWalletAddress (address): 0xdCc2B4262706BEE96f34B28f76C249A9E04A912c

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000f542e79b220bb82c5b8d8944c1ade2b9152bf18c
Arg [1] : 000000000000000000000000dcc2b4262706bee96f34b28f76c249a9e04a912c


Deployed Bytecode Sourcemap

28602:25758:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38259:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39171:161;;;;;;;;;;-1:-1:-1;39171:161:0;;;;;:::i;:::-;;:::i;:::-;;;2857:14:1;;2850:22;2832:41;;2820:2;2805:18;39171:161:0;2787:92:1;41291:87:0;;;;;;;;;;-1:-1:-1;41360:10:0;;41291:87;;;10025:25:1;;;10013:2;9998:18;41291:87:0;9980:76:1;30495:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2648:32:1;;;2630:51;;2618:2;2603:18;30495:51:0;2585:102:1;38536:95:0;;;;;;;;;;-1:-1:-1;38616:7:0;;38536:95;;54245:112;;;;;;;;;;-1:-1:-1;54245:112:0;;;;;:::i;:::-;;:::i;:::-;;29289:50;;;;;;;;;;;;;;;;39340:313;;;;;;;;;;-1:-1:-1;39340:313:0;;;;;:::i;:::-;;:::i;53743:164::-;;;;;;;;;;-1:-1:-1;53743:164:0;;;;;:::i;:::-;;:::i;41830:253::-;;;;;;;;;;-1:-1:-1;41830:253:0;;;;;:::i;:::-;;:::i;38445:83::-;;;;;;;;;;-1:-1:-1;38486:5:0;38511:9;-1:-1:-1;;;38511:9:0;;;;38445:83;;11218:4:1;11206:17;;;11188:36;;11176:2;11161:18;38445:83:0;11143:87:1;42546:479:0;;;;;;;;;;-1:-1:-1;42546:479:0;;;;;:::i;:::-;;:::i;40660:218::-;;;;;;;;;;-1:-1:-1;40660:218:0;;;;;:::i;:::-;;:::i;29104:38::-;;;;;;;;;;;;;;;;39661:352;;;;;;;;;;-1:-1:-1;39661:352:0;;;;;:::i;:::-;;:::i;43033:113::-;;;;;;;;;;-1:-1:-1;43033:113:0;;;;;:::i;:::-;;:::i;41386:436::-;;;;;;;;;;-1:-1:-1;41386:436:0;;;;;:::i;:::-;;:::i;30553:38::-;;;;;;;;;;;;;;;30677:34;;;;;;;;;;-1:-1:-1;30677:34:0;;;;;;;;;;;42091:447;;;;;;;;;;-1:-1:-1;42091:447:0;;;;;:::i;:::-;;:::i;46511:123::-;;;;;;;;;;-1:-1:-1;46511:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;46599:27:0;46575:4;46599:27;;;:18;:27;;;;;;;;;46511:123;53614:121;;;;;;;;;;-1:-1:-1;53614:121:0;;;;;:::i;:::-;;:::i;38639:198::-;;;;;;;;;;-1:-1:-1;38639:198:0;;;;;:::i;:::-;;:::i;20060:148::-;;;;;;;;;;;;;:::i;29507:53::-;;;;;;;;;;;;;;;;40025:500;;;;;;;;;;-1:-1:-1;40025:500:0;;;;;:::i;:::-;;:::i;41163:120::-;;;;;;;;;;-1:-1:-1;41163:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;41255:20:0;41231:4;41255:20;;;:11;:20;;;;;;;;;41163:120;19417:87;;;;;;;;;;-1:-1:-1;19463:7:0;19490:6;-1:-1:-1;;;;;19490:6:0;19417:87;;38350;;;;;;;;;;;;;:::i;29244:38::-;;;;;;;;;;;;;;;;30625:37;;;;;;;;;;-1:-1:-1;30625:37:0;;;;;;;;;;;53459:147;;;;;;;;;;-1:-1:-1;53459:147:0;;;;;:::i;:::-;;:::i;29593:74::-;;;;;;;;;;;;;;;;40886:269;;;;;;;;;;-1:-1:-1;40886:269:0;;;;;:::i;:::-;;:::i;38845:167::-;;;;;;;;;;-1:-1:-1;38845:167:0;;;;;:::i;:::-;;:::i;53919:120::-;;;;;;;;;;-1:-1:-1;53919:120:0;;;;;:::i;:::-;;:::i;29408:40::-;;;;;;;;;;;;;;;;29457:41;;;;;;;;;;-1:-1:-1;29457:41:0;;;;;;;;29065:32;;;;;;;;;;;;;;;;53323:128;;;;;;;;;;-1:-1:-1;53323:128:0;;;;;:::i;:::-;;:::i;54047:190::-;;;;;;;;;;-1:-1:-1;54047:190:0;;;;;:::i;:::-;;:::i;39020:143::-;;;;;;;;;;-1:-1:-1;39020:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;39128:18:0;;;39101:7;39128:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;39020:143;40533:119;;;;;;;;;;-1:-1:-1;40533:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;40618:26:0;40594:4;40618:26;;;:17;:26;;;;;;;;;40533:119;43154:112;;;;;;;;;;-1:-1:-1;43154:112:0;;;;;:::i;:::-;;:::i;20360:244::-;;;;;;;;;;-1:-1:-1;20360:244:0;;;;;:::i;:::-;;:::i;38259:83::-;38296:13;38329:5;38322:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38259:83;:::o;39171:161::-;39246:4;39263:39;10336:10;39286:7;39295:6;39263:8;:39::i;:::-;-1:-1:-1;39320:4:0;39171:161;;;;;:::o;54245:112::-;19463:7;19490:6;-1:-1:-1;;;;;19490:6:0;10336:10;19635:23;19627:68;;;;-1:-1:-1;;;19627:68:0;;;;;;;:::i;:::-;;;;;;;;;54323:12:::1;:26:::0;54245:112::o;39340:313::-;39438:4;39455:36;39465:6;39473:9;39484:6;39455:9;:36::i;:::-;39502:121;39511:6;10336:10;39533:89;39571:6;39533:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39533:19:0;;;;;;:11;:19;;;;;;;;10336:10;39533:33;;;;;;;;;;:37;:89::i;:::-;39502:8;:121::i;:::-;-1:-1:-1;39641:4:0;39340:313;;;;;:::o;53743:164::-;19463:7;19490:6;-1:-1:-1;;;;;19490:6:0;10336:10;19635:23;19627:68;;;;-1:-1:-1;;;19627:68:0;;;;;;;:::i;:::-;53819:18:::1;:29:::0;;;::::1;;;;-1:-1:-1::0;;53819:29:0;;::::1;;::::0;;53864:35:::1;::::0;::::1;::::0;::::1;::::0;53840:8;2857:14:1;2850:22;2832:41;;2820:2;2805:18;;2787:92;53864:35:0::1;;;;;;;;53743:164:::0;:::o;41830:253::-;41896:7;41935;;41924;:18;;41916:73;;;;-1:-1:-1;;;41916:73:0;;4682:2:1;41916:73:0;;;4664:21:1;4721:2;4701:18;;;4694:30;4760:34;4740:18;;;4733:62;-1:-1:-1;;;4811:18:1;;;4804:40;4861:19;;41916:73:0;4654:232:1;41916:73:0;42000:19;42023:10;:8;:10::i;:::-;42000:33;-1:-1:-1;42051:24:0;:7;42000:33;42051:11;:24::i;:::-;42044:31;41830:253;-1:-1:-1;;;41830:253:0:o;42546:479::-;19463:7;19490:6;-1:-1:-1;;;;;19490:6:0;10336:10;19635:23;19627:68;;;;-1:-1:-1;;;19627:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42628:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;42620:60;;;::::0;-1:-1:-1;;;42620:60:0;;5903:2:1;42620:60:0::1;::::0;::::1;5885:21:1::0;5942:2;5922:18;;;5915:30;5981:29;5961:18;;;5954:57;6028:18;;42620:60:0::1;5875:177:1::0;42620:60:0::1;42696:9;42691:327;42715:9;:16:::0;42711:20;::::1;42691:327;;;42773:7;-1:-1:-1::0;;;;;42757:23:0::1;:9;42767:1;42757:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;42757:12:0::1;:23;42753:254;;;42816:9;42826:16:::0;;:20:::1;::::0;42845:1:::1;::::0;42826:20:::1;:::i;:::-;42816:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;42801:9:::1;:12:::0;;-1:-1:-1;;;;;42816:31:0;;::::1;::::0;42811:1;;42801:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;42801:46:0::1;-1:-1:-1::0;;;;;42801:46:0;;::::1;;::::0;;42866:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;42905:11:::1;:20:::0;;;;:28;;-1:-1:-1;;42905:28:0::1;::::0;;42952:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;42952:15:0;;;;;-1:-1:-1;;;;;;42952:15:0::1;::::0;;;;;42691:327:::1;42546:479:::0;:::o;42753:254::-:1;42733:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42691:327;;;;42546:479:::0;:::o;40660:218::-;10336:10;40748:4;40797:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;40797:34:0;;;;;;;;;;40748:4;;40765:83;;40788:7;;40797:50;;40836:10;40797:38;:50::i;39661:352::-;19463:7;19490:6;-1:-1:-1;;;;;19490:6:0;10336:10;19635:23;19627:68;;;;-1:-1:-1;;;19627:68:0;;;;;;;:::i;:::-;39756:42:::1;-1:-1:-1::0;;;;;39745:53:0;::::1;;;39737:102;;;::::0;-1:-1:-1;;;39737:102:0;;8513:2:1;39737:102:0::1;::::0;::::1;8495:21:1::0;8552:2;8532:18;;;8525:30;8591:34;8571:18;;;8564:62;-1:-1:-1;;;8642:18:1;;;8635:34;8686:19;;39737:102:0::1;8485:226:1::0;39737:102:0::1;-1:-1:-1::0;;;;;39859:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;39858:27;39850:70;;;::::0;-1:-1:-1;;;39850:70:0;;6259:2:1;39850:70:0::1;::::0;::::1;6241:21:1::0;6298:2;6278:18;;;6271:30;6337:32;6317:18;;;6310:60;6387:18;;39850:70:0::1;6231:180:1::0;39850:70:0::1;-1:-1:-1::0;;;;;39931:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;39931:33:0::1;39960:4;39931:33:::0;;::::1;::::0;;;39975:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;39975:30:0::1;::::0;;::::1;::::0;;39661:352::o;43033:113::-;19463:7;19490:6;-1:-1:-1;;;;;19490:6:0;10336:10;19635:23;19627:68;;;;-1:-1:-1;;;19627:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43104:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;43104:34:0::1;43134:4;43104:34;::::0;;43033:113::o;41386:436::-;41476:7;41515;;41504;:18;;41496:62;;;;-1:-1:-1;;;41496:62:0;;6618:2:1;41496:62:0;;;6600:21:1;6657:2;6637:18;;;6630:30;6696:33;6676:18;;;6669:61;6747:18;;41496:62:0;6590:181:1;41496:62:0;41574:17;41569:246;;41609:15;41633:19;41644:7;41633:10;:19::i;:::-;-1:-1:-1;41608:44:0;;-1:-1:-1;41667:14:0;;-1:-1:-1;;;;;41667:14:0;41569:246;41716:23;41747:19;41758:7;41747:10;:19::i;:::-;-1:-1:-1;41714:52:0;;-1:-1:-1;41781:22:0;;-1:-1:-1;;;;;41781:22:0;42091:447;19463:7;19490:6;-1:-1:-1;;;;;19490:6:0;10336:10;19635:23;19627:68;;;;-1:-1:-1;;;19627:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42288:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;42287:21;42279:61;;;::::0;-1:-1:-1;;;42279:61:0;;5903:2:1;42279:61:0::1;::::0;::::1;5885:21:1::0;5942:2;5922:18;;;5915:30;5981:29;5961:18;;;5954:57;6028:18;;42279:61:0::1;5875:177:1::0;42279:61:0::1;-1:-1:-1::0;;;;;42354:16:0;::::1;42373:1;42354:16:::0;;;:7:::1;:16;::::0;;;;;:20;42351:108:::1;;-1:-1:-1::0;;;;;42430:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;42410:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;42391:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;42351:108:::1;-1:-1:-1::0;;;;;42469:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;42469:27:0::1;42492:4;42469:27:::0;;::::1;::::0;;;42507:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;42507:23:0::1;::::0;;::::1;::::0;;42091:447::o;53614:121::-;19463:7;19490:6;-1:-1:-1;;;;;19490:6:0;10336:10;19635:23;19627:68;;;;-1:-1:-1;;;19627:68:0;;;;;;;:::i;:::-;53694:22:::1;:33:::0;;-1:-1:-1;;53694:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53614:121::o;38639:198::-;-1:-1:-1;;;;;38729:20:0;;38705:7;38729:20;;;:11;:20;;;;;;;;38725:49;;;-1:-1:-1;;;;;;38758:16:0;;;;;:7;:16;;;;;;;38639:198::o;38725:49::-;-1:-1:-1;;;;;38812:16:0;;;;;;:7;:16;;;;;;38792:37;;:19;:37::i;20060:148::-;19463:7;19490:6;-1:-1:-1;;;;;19490:6:0;10336:10;19635:23;19627:68;;;;-1:-1:-1;;;19627:68:0;;;;;;;:::i;:::-;20167:1:::1;20151:6:::0;;20130:40:::1;::::0;-1:-1:-1;;;;;20151:6:0;;::::1;::::0;20130:40:::1;::::0;20167:1;;20130:40:::1;20198:1;20181:19:::0;;-1:-1:-1;;;;;;20181:19:0::1;::::0;;20060:148::o;40025:500::-;19463:7;19490:6;-1:-1:-1;;;;;19490:6:0;10336:10;19635:23;19627:68;;;;-1:-1:-1;;;19627:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40114:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;40106:65;;;::::0;-1:-1:-1;;;40106:65:0;;8158:2:1;40106:65:0::1;::::0;::::1;8140:21:1::0;8197:2;8177:18;;;8170:30;8236:28;8216:18;;;8209:56;8282:18;;40106:65:0::1;8130:176:1::0;40106:65:0::1;40187:9;40182:336;40206:16;:23:::0;40202:27;::::1;40182:336;;;40278:7;-1:-1:-1::0;;;;;40255:30:0::1;:16;40272:1;40255:19;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;40255:19:0::1;:30;40251:256;;;40328:16;40345:23:::0;;:27:::1;::::0;40371:1:::1;::::0;40345:27:::1;:::i;:::-;40328:45;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;40306:16:::1;:19:::0;;-1:-1:-1;;;;;40328:45:0;;::::1;::::0;40323:1;;40306:19;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;40306:67:0::1;-1:-1:-1::0;;;;;40306:67:0;;::::1;;::::0;;40392:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;40392:34:0::1;::::0;;40445:16:::1;:22:::0;;;::::1;;;;:::i;40251:256::-;40231:3:::0;::::1;::::0;::::1;:::i;:::-;;;;40182:336;;38350:87:::0;38389:13;38422:7;38415:14;;;;;:::i;53459:147::-;19463:7;19490:6;-1:-1:-1;;;;;19490:6:0;10336:10;19635:23;19627:68;;;;-1:-1:-1;;;19627:68:0;;;;;;;:::i;:::-;53554:21:::1;:44:::0;53459:147::o;40886:269::-;40979:4;40996:129;10336:10;41019:7;41028:96;41067:15;41028:96;;;;;;;;;;;;;;;;;10336:10;41028:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;41028:34:0;;;;;;;;;;;;:38;:96::i;38845:167::-;38923:4;38940:42;10336:10;38964:9;38975:6;38940:9;:42::i;53919:120::-;19463:7;19490:6;-1:-1:-1;;;;;19490:6:0;10336:10;19635:23;19627:68;;;;-1:-1:-1;;;19627:68:0;;;;;;;:::i;:::-;53999:14:::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;53999:32:0;;::::1;::::0;;;::::1;::::0;;53919:120::o;53323:128::-;19463:7;19490:6;-1:-1:-1;;;;;19490:6:0;10336:10;19635:23;19627:68;;;;-1:-1:-1;;;19627:68:0;;;;;;;:::i;:::-;53409:19:::1;:34:::0;53323:128::o;54047:190::-;19463:7;19490:6;-1:-1:-1;;;;;19490:6:0;10336:10;19635:23;19627:68;;;;-1:-1:-1;;;19627:68:0;;;;;;;:::i;:::-;54163:31:::1;:66:::0;54047:190::o;43154:112::-;19463:7;19490:6;-1:-1:-1;;;;;19490:6:0;10336:10;19635:23;19627:68;;;;-1:-1:-1;;;19627:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43223:27:0::1;43253:5;43223:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;43223:35:0::1;::::0;;43154:112::o;20360:244::-;19463:7;19490:6;-1:-1:-1;;;;;19490:6:0;10336:10;19635:23;19627:68;;;;-1:-1:-1;;;19627:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20449:22:0;::::1;20441:73;;;::::0;-1:-1:-1;;;20441:73:0;;5093:2:1;20441:73:0::1;::::0;::::1;5075:21:1::0;5132:2;5112:18;;;5105:30;5171:34;5151:18;;;5144:62;-1:-1:-1;;;5222:18:1;;;5215:36;5268:19;;20441:73:0::1;5065:228:1::0;20441:73:0::1;20551:6;::::0;;20530:38:::1;::::0;-1:-1:-1;;;;;20530:38:0;;::::1;::::0;20551:6;::::1;::::0;20530:38:::1;::::0;::::1;20579:6;:17:::0;;-1:-1:-1;;;;;;20579:17:0::1;-1:-1:-1::0;;;;;20579:17:0;;;::::1;::::0;;;::::1;::::0;;20360:244::o;6616:98::-;6674:7;6701:5;6705:1;6701;:5;:::i;46642:337::-;-1:-1:-1;;;;;46735:19:0;;46727:68;;;;-1:-1:-1;;;46727:68:0;;9324:2:1;46727:68:0;;;9306:21:1;9363:2;9343:18;;;9336:30;9402:34;9382:18;;;9375:62;-1:-1:-1;;;9453:18:1;;;9446:34;9497:19;;46727:68:0;9296:226:1;46727:68:0;-1:-1:-1;;;;;46814:21:0;;46806:68;;;;-1:-1:-1;;;46806:68:0;;5500:2:1;46806:68:0;;;5482:21:1;5539:2;5519:18;;;5512:30;5578:34;5558:18;;;5551:62;-1:-1:-1;;;5629:18:1;;;5622:32;5671:19;;46806:68:0;5472:224:1;46806:68:0;-1:-1:-1;;;;;46887:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;46939:32;;10025:25:1;;;46939:32:0;;9998:18:1;46939:32:0;;;;;;;46642:337;;;:::o;46987:1982::-;-1:-1:-1;;;;;47109:18:0;;47101:68;;;;-1:-1:-1;;;47101:68:0;;8918:2:1;47101:68:0;;;8900:21:1;8957:2;8937:18;;;8930:30;8996:34;8976:18;;;8969:62;-1:-1:-1;;;9047:18:1;;;9040:35;9092:19;;47101:68:0;8890:227:1;47101:68:0;-1:-1:-1;;;;;47188:16:0;;47180:64;;;;-1:-1:-1;;;47180:64:0;;3923:2:1;47180:64:0;;;3905:21:1;3962:2;3942:18;;;3935:30;4001:34;3981:18;;;3974:62;-1:-1:-1;;;4052:18:1;;;4045:33;4095:19;;47180:64:0;3895:225:1;47180:64:0;47272:1;47263:6;:10;47255:64;;;;-1:-1:-1;;;47255:64:0;;7748:2:1;47255:64:0;;;7730:21:1;7787:2;7767:18;;;7760:30;7826:34;7806:18;;;7799:62;-1:-1:-1;;;7877:18:1;;;7870:39;7926:19;;47255:64:0;7720:231:1;47255:64:0;-1:-1:-1;;;;;47339:21:0;;;;;;:17;:21;;;;;;;;47338:22;47330:58;;;;-1:-1:-1;;;47330:58:0;;9729:2:1;47330:58:0;;;9711:21:1;9768:2;9748:18;;;9741:30;-1:-1:-1;;;9787:18:1;;;9780:53;9850:18;;47330:58:0;9701:173:1;47330:58:0;-1:-1:-1;;;;;47408:23:0;;;;;;:17;:23;;;;;;;;47407:24;47399:60;;;;-1:-1:-1;;;47399:60:0;;9729:2:1;47399:60:0;;;9711:21:1;9768:2;9748:18;;;9741:30;-1:-1:-1;;;9787:18:1;;;9780:53;9850:18;;47399:60:0;9701:173:1;47399:60:0;19463:7;19490:6;-1:-1:-1;;;;;47475:15:0;;;19490:6;;47475:15;;;;:32;;-1:-1:-1;19463:7:0;19490:6;-1:-1:-1;;;;;47494:13:0;;;19490:6;;47494:13;;47475:32;47472:291;;;47542:12;;47532:6;:22;;47524:75;;;;-1:-1:-1;;;47524:75:0;;6978:2:1;47524:75:0;;;6960:21:1;7017:2;6997:18;;;6990:30;7056:34;7036:18;;;7029:62;-1:-1:-1;;;7107:18:1;;;7100:38;7155:19;;47524:75:0;6950:230:1;47524:75:0;47626:13;-1:-1:-1;;;;;47618:21:0;:4;-1:-1:-1;;;;;47618:21:0;;:44;;;;47649:13;-1:-1:-1;;;;;47643:19:0;:2;-1:-1:-1;;;;;47643:19:0;;47618:44;47614:138;;;47691:14;;;;;;;47683:53;;;;-1:-1:-1;;;47683:53:0;;4327:2:1;47683:53:0;;;4309:21:1;4366:2;4346:18;;;4339:30;4405:28;4385:18;;;4378:56;4451:18;;47683:53:0;4299:176:1;47683:53:0;48050:28;48081:24;48099:4;48081:9;:24::i;:::-;48167:31;;48238:12;;48050:55;;-1:-1:-1;48143:55:0;;;;48214:36;;48211:112;;48299:12;;48276:35;;48211:112;48353:19;:50;;;;-1:-1:-1;48390:13:0;;;;48389:14;48353:50;:88;;;;;48428:13;-1:-1:-1;;;;;48420:21:0;:4;-1:-1:-1;;;;;48420:21:0;;;48353:88;:123;;;;-1:-1:-1;48458:18:0;;;;;;;48353:123;48335:213;;;48503:33;48515:20;48503:11;:33::i;:::-;48563:22;;;;48560:65;;;48602:11;48610:2;48602:7;:11::i;:::-;-1:-1:-1;;;;;48817:24:0;;48698:12;48817:24;;;:18;:24;;;;;;48713:4;;48817:24;;;:50;;-1:-1:-1;;;;;;48845:22:0;;;;;;:18;:22;;;;;;;;48817:50;48814:97;;;-1:-1:-1;48894:5:0;48814:97;48923:38;48938:4;48943:2;48946:6;48953:7;48923:14;:38::i;:::-;47090:1879;;;46987:1982;;;:::o;7735:206::-;7821:7;7882:12;7874:6;;;;7866:29;;;;-1:-1:-1;;;7866:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;7917:5:0;;;7735:206::o;45078:163::-;45119:7;45140:15;45157;45176:19;:17;:19::i;:::-;45139:56;;-1:-1:-1;45139:56:0;-1:-1:-1;45213:20:0;45139:56;;45213:11;:20::i;:::-;45206:27;;;;45078:163;:::o;5506:98::-;5564:7;5591:5;5595:1;5591;:5;:::i;43876:419::-;43935:7;43944;43953;43962;43971;43980;44001:23;44026:12;44040:18;44062:20;44074:7;44062:11;:20::i;:::-;44000:82;;;;;;44094:15;44111:23;44136:12;44152:50;44164:7;44173:4;44179:10;44191;:8;:10::i;:::-;44152:11;:50::i;:::-;44093:109;;;;-1:-1:-1;44093:109:0;;-1:-1:-1;44253:15:0;;-1:-1:-1;44270:4:0;;-1:-1:-1;44276:10:0;;-1:-1:-1;43876:419:0;;-1:-1:-1;;;;;43876:419:0:o;49231:879::-;30806:13;:20;;-1:-1:-1;;30806:20:0;30822:4;30806:20;;;49397:16:::1;::::0;;49411:1:::1;49397:16:::0;;;;;::::1;::::0;;-1:-1:-1;;49397:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;49397:16:0::1;49373:40;;49442:4;49424;49429:1;49424:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;49424:23:0::1;;;-1:-1:-1::0;;;;;49424:23:0::1;;;::::0;::::1;49468:15;-1:-1:-1::0;;;;;49468:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49458:4;49463:1;49458:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;49458:32:0::1;;;-1:-1:-1::0;;;;;49458:32:0::1;;;::::0;::::1;49503:71;49520:4;49535:15;49553:20;49503:8;:71::i;:::-;49613:233;::::0;-1:-1:-1;;;49613:233:0;;-1:-1:-1;;;;;49613:15:0::1;:66;::::0;::::1;::::0;:233:::1;::::0;49694:20;;49729:1:::1;::::0;49773:4;;49800::::1;::::0;49820:15:::1;::::0;49613:233:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;49888:21:0::1;::::0;-1:-1:-1;;49923:22:0;;;-1:-1:-1;49920:183:0::1;;49963:18;::::0;-1:-1:-1;;;;;49963:18:0::1;:54;49991:25;:18:::0;50014:1:::1;49991:22;:25::i;:::-;49963:54;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;50032:23:0::1;::::0;-1:-1:-1;;;;;50032:23:0::1;:59;50065:25;:18:::0;50088:1:::1;50065:22;:25::i;:::-;50032:59;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;49920:183;-1:-1:-1::0;;30849:13:0;:21;;-1:-1:-1;;30849:21:0;;;-1:-1:-1;49231:879:0:o;48977:246::-;49042:13;;49032:7;:23;49082:19;;49066:13;:35;49129:13;-1:-1:-1;;;;;49116:26:0;;;;;;;49112:104;;;49183:21;;49167:13;:37;49112:104;48977:246;:::o;50191:818::-;50302:7;50298:40;;50324:14;:12;:14::i;:::-;-1:-1:-1;;;;;50355:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;50379:22:0;;;;;;:11;:22;;;;;;;;50378:23;50355:46;50351:597;;;50418:48;50440:6;50448:9;50459:6;50418:21;:48::i;:::-;50351:597;;;-1:-1:-1;;;;;50489:19:0;;;;;;:11;:19;;;;;;;;50488:20;:46;;;;-1:-1:-1;;;;;;50512:22:0;;;;;;:11;:22;;;;;;;;50488:46;50484:464;;;50551:46;50571:6;50579:9;50590:6;50551:19;:46::i;50484:464::-;-1:-1:-1;;;;;50620:19:0;;;;;;:11;:19;;;;;;;;50619:20;:47;;;;-1:-1:-1;;;;;;50644:22:0;;;;;;:11;:22;;;;;;;;50643:23;50619:47;50615:333;;;50683:44;50701:6;50709:9;50720:6;50683:17;:44::i;50615:333::-;-1:-1:-1;;;;;50749:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;50772:22:0;;;;;;:11;:22;;;;;;;;50749:45;50745:203;;;50811:48;50833:6;50841:9;50852:6;50811:21;:48::i;50745:203::-;50892:44;50910:6;50918:9;50929:6;50892:17;:44::i;:::-;50964:7;50960:41;;50986:15;43570;;43560:7;:25;43612:21;;43596:13;:37;43516:125;50986:15;50191:818;;;;:::o;45249:555::-;45346:7;;45382;;45299;;;;;45400:289;45424:9;:16;45420:20;;45400:289;;;45490:7;45466;:21;45474:9;45484:1;45474:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;45474:12:0;45466:21;;;;;;;;;;;;;:31;;:66;;;45525:7;45501;:21;45509:9;45519:1;45509:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;45509:12:0;45501:21;;;;;;;;;;;;;:31;45466:66;45462:97;;;45542:7;;45551;;45534:25;;;;;;;45249:555;;:::o;45462:97::-;45584:34;45596:7;:21;45604:9;45614:1;45604:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;45604:12:0;45596:21;;;;;;;;;;;;;45584:7;;:11;:34::i;:::-;45574:44;;45643:34;45655:7;:21;45663:9;45673:1;45663:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;45663:12:0;45655:21;;;;;;;;;;;;;45643:7;;:11;:34::i;:::-;45633:44;-1:-1:-1;45442:3:0;;;;:::i;:::-;;;;45400:289;;;-1:-1:-1;45725:7:0;;45713;;:20;;:11;:20::i;:::-;45703:7;:30;45699:61;;;45743:7;;45752;;45735:25;;;;;;45249:555;;:::o;45699:61::-;45779:7;;45788;;-1:-1:-1;45249:555:0;-1:-1:-1;45249:555:0:o;44303:330::-;44363:7;44372;44381;44401:12;44416:24;44432:7;44416:15;:24::i;:::-;44401:39;;44451:18;44472:30;44494:7;44472:21;:30::i;:::-;44451:51;-1:-1:-1;44513:23:0;44539:33;44451:51;44539:17;:7;44551:4;44539:11;:17::i;:::-;:21;;:33::i;:::-;44513:59;44608:4;;-1:-1:-1;44614:10:0;;-1:-1:-1;44303:330:0;;-1:-1:-1;;;44303:330:0:o;44641:429::-;44756:7;;;;44812:24;:7;44824:11;44812;:24::i;:::-;44794:42;-1:-1:-1;44847:12:0;44862:21;:4;44871:11;44862:8;:21::i;:::-;44847:36;-1:-1:-1;44894:18:0;44915:27;:10;44930:11;44915:14;:27::i;:::-;44894:48;-1:-1:-1;44953:23:0;44979:33;44894:48;44979:17;:7;44991:4;44979:11;:17::i;:33::-;45031:7;;;;-1:-1:-1;45057:4:0;;-1:-1:-1;44641:429:0;;-1:-1:-1;;;;;;;44641:429:0:o;43274:234::-;43320:7;;:12;:34;;;;-1:-1:-1;43336:13:0;;:18;43320:34;43317:46;;;43274:234::o;43317:46::-;43393:7;;;43375:15;:25;43435:13;;;43411:21;:37;-1:-1:-1;43461:11:0;;;;43483:17;43274:234::o;52110:563::-;52213:15;52230:23;52255:12;52269:23;52294:12;52308:18;52330:19;52341:7;52330:10;:19::i;:::-;-1:-1:-1;;;;;52378:15:0;;;;;;:7;:15;;;;;;52212:137;;-1:-1:-1;52212:137:0;;-1:-1:-1;52212:137:0;;-1:-1:-1;52212:137:0;-1:-1:-1;52212:137:0;-1:-1:-1;52212:137:0;-1:-1:-1;52378:28:0;;52398:7;52378:19;:28::i;:::-;-1:-1:-1;;;;;52360:15:0;;;;;;:7;:15;;;;;;;;:46;;;;52435:7;:15;;;;:28;;52455:7;52435:19;:28::i;:::-;-1:-1:-1;;;;;52417:15:0;;;;;;;:7;:15;;;;;;:46;;;;52495:18;;;;;;;:39;;52518:15;52495:22;:39::i;:::-;-1:-1:-1;;;;;52474:18:0;;;;;;:7;:18;;;;;:60;52545:26;52560:10;52545:14;:26::i;:::-;52582:23;52594:4;52600;52582:11;:23::i;:::-;52638:9;-1:-1:-1;;;;;52621:44:0;52630:6;-1:-1:-1;;;;;52621:44:0;;52649:15;52621:44;;;;10025:25:1;;10013:2;9998:18;;9980:76;52621:44:0;;;;;;;;52201:472;;;;;;52110:563;;;:::o;51527:575::-;51628:15;51645:23;51670:12;51684:23;51709:12;51723:18;51745:19;51756:7;51745:10;:19::i;:::-;-1:-1:-1;;;;;51793:15:0;;;;;;:7;:15;;;;;;51627:137;;-1:-1:-1;51627:137:0;;-1:-1:-1;51627:137:0;;-1:-1:-1;51627:137:0;-1:-1:-1;51627:137:0;-1:-1:-1;51627:137:0;-1:-1:-1;51793:28:0;;51627:137;51793:19;:28::i;:::-;-1:-1:-1;;;;;51775:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;51853:18;;;;;:7;:18;;;;;:39;;51876:15;51853:22;:39::i;:::-;-1:-1:-1;;;;;51832:18:0;;;;;;:7;:18;;;;;;;;:60;;;;51924:7;:18;;;;:39;;51947:15;51924:22;:39::i;51017:502::-;51116:15;51133:23;51158:12;51172:23;51197:12;51211:18;51233:19;51244:7;51233:10;:19::i;:::-;-1:-1:-1;;;;;51281:15:0;;;;;;:7;:15;;;;;;51115:137;;-1:-1:-1;51115:137:0;;-1:-1:-1;51115:137:0;;-1:-1:-1;51115:137:0;-1:-1:-1;51115:137:0;-1:-1:-1;51115:137:0;-1:-1:-1;51281:28:0;;51115:137;51281:19;:28::i;52681:634::-;52784:15;52801:23;52826:12;52840:23;52865:12;52879:18;52901:19;52912:7;52901:10;:19::i;:::-;-1:-1:-1;;;;;52949:15:0;;;;;;:7;:15;;;;;;52783:137;;-1:-1:-1;52783:137:0;;-1:-1:-1;52783:137:0;;-1:-1:-1;52783:137:0;-1:-1:-1;52783:137:0;-1:-1:-1;52783:137:0;-1:-1:-1;52949:28:0;;52969:7;52949:19;:28::i;:::-;-1:-1:-1;;;;;52931:15:0;;;;;;:7;:15;;;;;;;;:46;;;;53006:7;:15;;;;:28;;53026:7;5878:98;5936:7;5963:5;5967:1;5963;:5;:::i;46175:154::-;46239:7;46266:55;46305:5;46266:20;46278:7;;46266;:11;;:20;;;;:::i;:::-;:24;;:55::i;46337:166::-;46407:7;46434:61;46479:5;46434:26;46446:13;;46434:7;:11;;:26;;;;:::i;6226:98::-;6284:7;6311:5;6315:1;6311;:5;:::i;45812:355::-;45875:19;45898:10;:8;:10::i;:::-;45875:33;-1:-1:-1;45919:18:0;45940:27;:10;45875:33;45940:14;:27::i;:::-;46019:4;46003:22;;;;:7;:22;;;;;;45919:48;;-1:-1:-1;46003:38:0;;45919:48;46003:26;:38::i;:::-;45994:4;45978:22;;;;:7;:22;;;;;;;;:63;;;;46055:11;:26;;;;;;46052:107;;;46137:4;46121:22;;;;:7;:22;;;;;;:38;;46148:10;46121:26;:38::i;:::-;46112:4;46096:22;;;;:7;:22;;;;;:63;46052:107;45864:303;;45812:355;:::o;43721:147::-;43799:7;;:17;;43811:4;43799:11;:17::i;:::-;43789:7;:27;43840:10;;:20;;43855:4;43840:14;:20::i;:::-;43827:10;:33;-1:-1:-1;;43721:147:0:o;14:160:1:-;79:20;;135:13;;128:21;118:32;;108:2;;164:1;161;154:12;108:2;60:114;;;:::o;179:247::-;238:6;291:2;279:9;270:7;266:23;262:32;259:2;;;307:1;304;297:12;259:2;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:2;;;570:1;567;560:12;522:2;602:9;596:16;621:31;646:5;621:31;:::i;687:388::-;755:6;763;816:2;804:9;795:7;791:23;787:32;784:2;;;832:1;829;822:12;784:2;871:9;858:23;890:31;915:5;890:31;:::i;:::-;940:5;-1:-1:-1;997:2:1;982:18;;969:32;1010:33;969:32;1010:33;:::i;:::-;1062:7;1052:17;;;774:301;;;;;:::o;1080:456::-;1157:6;1165;1173;1226:2;1214:9;1205:7;1201:23;1197:32;1194:2;;;1242:1;1239;1232:12;1194:2;1281:9;1268:23;1300:31;1325:5;1300:31;:::i;:::-;1350:5;-1:-1:-1;1407:2:1;1392:18;;1379:32;1420:33;1379:32;1420:33;:::i;:::-;1184:352;;1472:7;;-1:-1:-1;;;1526:2:1;1511:18;;;;1498:32;;1184:352::o;1541:315::-;1609:6;1617;1670:2;1658:9;1649:7;1645:23;1641:32;1638:2;;;1686:1;1683;1676:12;1638:2;1725:9;1712:23;1744:31;1769:5;1744:31;:::i;:::-;1794:5;1846:2;1831:18;;;;1818:32;;-1:-1:-1;;;1628:228:1:o;1861:180::-;1917:6;1970:2;1958:9;1949:7;1945:23;1941:32;1938:2;;;1986:1;1983;1976:12;1938:2;2009:26;2025:9;2009:26;:::i;2046:180::-;2105:6;2158:2;2146:9;2137:7;2133:23;2129:32;2126:2;;;2174:1;2171;2164:12;2126:2;-1:-1:-1;2197:23:1;;2116:110;-1:-1:-1;2116:110:1:o;2231:248::-;2296:6;2304;2357:2;2345:9;2336:7;2332:23;2328:32;2325:2;;;2373:1;2370;2363:12;2325:2;2409:9;2396:23;2386:33;;2438:35;2469:2;2458:9;2454:18;2438:35;:::i;:::-;2428:45;;2315:164;;;;;:::o;3119:597::-;3231:4;3260:2;3289;3278:9;3271:21;3321:6;3315:13;3364:6;3359:2;3348:9;3344:18;3337:34;3389:1;3399:140;3413:6;3410:1;3407:13;3399:140;;;3508:14;;;3504:23;;3498:30;3474:17;;;3493:2;3470:26;3463:66;3428:10;;3399:140;;;3557:6;3554:1;3551:13;3548:2;;;3627:1;3622:2;3613:6;3602:9;3598:22;3594:31;3587:42;3548:2;-1:-1:-1;3700:2:1;3679:15;-1:-1:-1;;3675:29:1;3660:45;;;;3707:2;3656:54;;3240:476;-1:-1:-1;;;3240:476:1:o;7185:356::-;7387:2;7369:21;;;7406:18;;;7399:30;7465:34;7460:2;7445:18;;7438:62;7532:2;7517:18;;7359:182::o;10061:980::-;10323:4;10371:3;10360:9;10356:19;10402:6;10391:9;10384:25;10428:2;10466:6;10461:2;10450:9;10446:18;10439:34;10509:3;10504:2;10493:9;10489:18;10482:31;10533:6;10568;10562:13;10599:6;10591;10584:22;10637:3;10626:9;10622:19;10615:26;;10676:2;10668:6;10664:15;10650:29;;10697:1;10707:195;10721:6;10718:1;10715:13;10707:195;;;10786:13;;-1:-1:-1;;;;;10782:39:1;10770:52;;10877:15;;;;10842:12;;;;10818:1;10736:9;10707:195;;;-1:-1:-1;;;;;;;10958:32:1;;;;10953:2;10938:18;;10931:60;-1:-1:-1;;;11022:3:1;11007:19;11000:35;10919:3;10332:709;-1:-1:-1;;;10332:709:1:o;11235:128::-;11275:3;11306:1;11302:6;11299:1;11296:13;11293:2;;;11312:18;;:::i;:::-;-1:-1:-1;11348:9:1;;11283:80::o;11368:217::-;11408:1;11434;11424:2;;11478:10;11473:3;11469:20;11466:1;11459:31;11513:4;11510:1;11503:15;11541:4;11538:1;11531:15;11424:2;-1:-1:-1;11570:9:1;;11414:171::o;11590:168::-;11630:7;11696:1;11692;11688:6;11684:14;11681:1;11678:21;11673:1;11666:9;11659:17;11655:45;11652:2;;;11703:18;;:::i;:::-;-1:-1:-1;11743:9:1;;11642:116::o;11763:125::-;11803:4;11831:1;11828;11825:8;11822:2;;;11836:18;;:::i;:::-;-1:-1:-1;11873:9:1;;11812:76::o;11893:380::-;11972:1;11968:12;;;;12015;;;12036:2;;12090:4;12082:6;12078:17;12068:27;;12036:2;12143;12135:6;12132:14;12112:18;12109:38;12106:2;;;12189:10;12184:3;12180:20;12177:1;12170:31;12224:4;12221:1;12214:15;12252:4;12249:1;12242:15;12106:2;;11948:325;;;:::o;12278:135::-;12317:3;-1:-1:-1;;12338:17:1;;12335:2;;;12358:18;;:::i;:::-;-1:-1:-1;12405:1:1;12394:13;;12325:88::o;12418:127::-;12479:10;12474:3;12470:20;12467:1;12460:31;12510:4;12507:1;12500:15;12534:4;12531:1;12524:15;12550:127;12611:10;12606:3;12602:20;12599:1;12592:31;12642:4;12639:1;12632:15;12666:4;12663:1;12656:15;12682:127;12743:10;12738:3;12734:20;12731:1;12724:31;12774:4;12771:1;12764:15;12798:4;12795:1;12788:15;12946:131;-1:-1:-1;;;;;13021:31:1;;13011:42;;13001:2;;13067:1;13064;13057:12

Swarm Source

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