ETH Price: $3,453.88 (+1.86%)
Gas: 9 Gwei

Token

GN (GN)
 

Overview

Max Total Supply

1,000,000,000,000 GN

Holders

39

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
4,563,614,215.215042735 GN

Value
$0.00
0xa5747c711b7c08983e992dd7aeec2eebc6b713df
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
GN

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

//   Website:  https://www.gnwagmi.com/

//  Telegram: https://t.me/gnwagmieth



pragma solidity ^0.6.12;
// SPDX-License-Identifier: Unlicensed
interface IERC20 {

    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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



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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

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

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

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

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


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

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

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

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

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

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

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

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

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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    uint256 private _lockTime;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

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

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

// pragma solidity >=0.5.0;

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


// pragma solidity >=0.5.0;

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

// pragma solidity >=0.6.2;

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

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

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



// pragma solidity >=0.6.2;

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

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


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

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

    mapping (address => bool) private _isExcludedFromFee;

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

    string private _name = "GN";
    string private _symbol = "GN";
    uint8 private _decimals = 9;
    
    uint256 public _taxFee = 2;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _liquidityFee = 2;
    uint256 private _previousLiquidityFee = _liquidityFee;

    uint256 public _marketingFee = 7; // All taxes are divided by 100 for more accuracy.
    uint256 private _previousMarketingFee = _marketingFee;    

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    address public burnAddress = 0x4C565B7A4BEfc07033f3430a010b5EB93A06371B;
    address payable private _marketingWallet;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    uint256 public _maxTxAmount = 10000000000 * 10**9;
    uint256 private numTokensSellToAddToLiquidity = 1000000000 * 10**9;
    uint256 private _maxWalletSize = 35000000000 * 10**9;
     
    event botAddedToBlacklist(address account);
    event botRemovedFromBlacklist(address account);
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor (address marketingWallet) public {
        _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;
        _marketingWallet = payable(marketingWallet);
        
        //exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }
    
    function addBotToBlacklist (address account) external onlyOwner() {
           require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We cannot 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 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 _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
        function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
        _taxFee = taxFee;
    }
    
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }

    function setMarketingFeePercent(uint256 marketingFee) external onlyOwner() {
        _marketingFee = marketingFee;
    }    
   
  
    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**2
        );
    }

    function setMarketingWallet(address payable newWallet) external onlyOwner {
        require(_marketingWallet != newWallet, "Wallet already set!");
        _marketingWallet = payable(newWallet);
    } 
       

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
     //to recieve ETH from uniswapV2Router 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 tLiquidity) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity);
    }

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

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

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

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee.add(_marketingFee)).div(
            10**2
        );
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0 && _marketingFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        _previousMarketingFee = _marketingFee;
        
        _taxFee = 0;
        _liquidityFee = 0;
        _marketingFee = 0;
        
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
        _marketingFee = _previousMarketingFee;
    }
    
    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[from], "You are blacklisted");
        require(!_isBlackListedBot[msg.sender], "You are blacklisted");
        require(!_isBlackListedBot[tx.origin], "You are blacklisted");
        if(from != owner() && to != owner())
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
        
        
        if(from != owner() && to != owner() && to != uniswapV2Pair && to != address(0xdead)) {
            uint256 tokenBalanceRecipient = balanceOf(to);
            require(tokenBalanceRecipient + amount <= _maxWalletSize, "Recipient exceeds max wallet size.");
        }
        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        
        if(contractTokenBalance >= _maxTxAmount)
        {
            contractTokenBalance = _maxTxAmount;
        }
        
        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }
        
        //indicates if fee should be deducted from transfer
        bool takeFee = true;
        
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }
        
        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from,to,amount,takeFee);
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        if (_marketingFee + _liquidityFee == 0)
            return;
        uint256 toMarketing = contractTokenBalance.mul(_marketingFee).div(_marketingFee.add(_liquidityFee));
        uint256 toLiquify = contractTokenBalance.sub(toMarketing);

        // split the contract balance into halves
        uint256 half = toLiquify.div(2);
        uint256 otherHalf = toLiquify.sub(half);

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

        // swap tokens for ETH
        uint256 toSwapForEth = half.add(toMarketing);
        swapTokensForEth(toSwapForEth);

        // how much ETH did we just swap into?
        uint256 fromSwap = address(this).balance.sub(initialBalance);
        uint256 liquidityBalance = fromSwap.mul(half).div(toSwapForEth);

        addLiquidity(otherHalf, liquidityBalance);

        emit SwapAndLiquify(half, liquidityBalance, otherHalf);

        _marketingWallet.transfer(fromSwap.sub(liquidityBalance));
    }

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

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

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

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

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            burnAddress,
            block.timestamp
        );
    }

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

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


    

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"marketingWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botAddedToBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botRemovedFromBlacklist","type":"event"},{"inputs":[],"name":"_getMaxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"_setMaxWalletSize","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":"burnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"setMarketingFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

683635c9adc5dea00000600b556818ce40f6d0219fffff19600c55610100604052600260c08190526123a760f11b60e09081526200004191600e91906200042d565b506040805180820190915260028082526123a760f11b60209092019182526200006d91600f916200042d565b506010805460ff19166009179055600260118190556012819055601381905560145560076015819055601655601780546001600160a01b031916734c565b7a4befc07033f3430a010b5eb93a06371b1790556018805460ff60a81b1916600160a81b179055678ac7230489e80000601955670de0b6b3a7640000601a556801e5b8fa8fe2ac0000601b553480156200010457600080fd5b50604051620038b2380380620038b2833981810160405260208110156200012a57600080fd5b50516000620001386200041a565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c5460036000620001936200041a565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200020a57600080fd5b505afa1580156200021f573d6000803e3d6000fd5b505050506040513d60208110156200023657600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200028757600080fd5b505afa1580156200029c573d6000803e3d6000fd5b505050506040513d6020811015620002b357600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200030657600080fd5b505af11580156200031b573d6000803e3d6000fd5b505050506040513d60208110156200033257600080fd5b5051606090811b6001600160601b031990811660a0529082901b16608052601880546001600160a01b0319166001600160a01b0384161790556001600660006200037b6200041e565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526006909252902080549091166001179055620003c56200041a565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a35050620004c9565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200047057805160ff1916838001178555620004a0565b82800160010185558215620004a0579182015b82811115620004a057825182559160200191906001019062000483565b50620004ae929150620004b2565b5090565b5b80821115620004ae5760008155600101620004b3565b60805160601c60a05160601c61339c620005166000398061122952806121215280612206525080610b255280612a7e5280612b365280612b5d5280612c435280612cae525061339c6000f3fe6080604052600436106102765760003560e01c80635d098b381161014f578063a457c2d7116100c1578063d543dbeb1161007a578063d543dbeb14610902578063dd4670641461092c578063dd62ed3e14610956578063e1cee22114610991578063ea2f0b37146109a6578063f2fde38b146109d95761027d565b8063a457c2d714610807578063a69df4b514610840578063a9059cbb14610855578063b030b34a1461088e578063b6c52324146108c1578063c49b9a80146108d65761027d565b80637d1db4a5116101135780637d1db4a51461074157806388f82020146107565780638da5cb5b146107895780638ee88c531461079e57806395d89b41146107c85780639e6c7529146107dd5761027d565b80635d098b381461069c5780636bc87c3a146106cf57806370a08231146106e457806370d5ae0514610717578063715018a61461072c5761027d565b80633685d419116101e85780634549b039116101ac5780634549b039146105b0578063457c194c146105e257806349bd5a5e1461060c5780634a74bb021461062157806352390c02146106365780635342acb4146106695761027d565b80633685d419146104d257806339509351146105055780633b124fe71461053e5780633bd5d17314610553578063437823ec1461057d5761027d565b806318160ddd1161023a57806318160ddd146103dd5780631d7ef879146103f257806322976e0d1461042557806323b872dd1461043a5780632d8381191461047d578063313ce567146104a75761027d565b8063061c82d01461028257806306fdde03146102ae578063095ea7b31461033857806313114a9d146103855780631694505e146103ac5761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b506102ac600480360360208110156102a557600080fd5b5035610a0c565b005b3480156102ba57600080fd5b506102c3610a69565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102fd5781810151838201526020016102e5565b50505050905090810190601f16801561032a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034457600080fd5b506103716004803603604081101561035b57600080fd5b506001600160a01b038135169060200135610aff565b604080519115158252519081900360200190f35b34801561039157600080fd5b5061039a610b1d565b60408051918252519081900360200190f35b3480156103b857600080fd5b506103c1610b23565b604080516001600160a01b039092168252519081900360200190f35b3480156103e957600080fd5b5061039a610b47565b3480156103fe57600080fd5b506102ac6004803603602081101561041557600080fd5b50356001600160a01b0316610b4d565b34801561043157600080fd5b5061039a610cd5565b34801561044657600080fd5b506103716004803603606081101561045d57600080fd5b506001600160a01b03813581169160208101359091169060400135610cdb565b34801561048957600080fd5b5061039a600480360360208110156104a057600080fd5b5035610d62565b3480156104b357600080fd5b506104bc610dc4565b6040805160ff9092168252519081900360200190f35b3480156104de57600080fd5b506102ac600480360360208110156104f557600080fd5b50356001600160a01b0316610dcd565b34801561051157600080fd5b506103716004803603604081101561052857600080fd5b506001600160a01b038135169060200135610f8e565b34801561054a57600080fd5b5061039a610fdc565b34801561055f57600080fd5b506102ac6004803603602081101561057657600080fd5b5035610fe2565b34801561058957600080fd5b506102ac600480360360208110156105a057600080fd5b50356001600160a01b03166110bc565b3480156105bc57600080fd5b5061039a600480360360408110156105d357600080fd5b50803590602001351515611138565b3480156105ee57600080fd5b506102ac6004803603602081101561060557600080fd5b50356111ca565b34801561061857600080fd5b506103c1611227565b34801561062d57600080fd5b5061037161124b565b34801561064257600080fd5b506102ac6004803603602081101561065957600080fd5b50356001600160a01b031661125b565b34801561067557600080fd5b506103716004803603602081101561068c57600080fd5b50356001600160a01b03166113e1565b3480156106a857600080fd5b506102ac600480360360208110156106bf57600080fd5b50356001600160a01b03166113ff565b3480156106db57600080fd5b5061039a6114d2565b3480156106f057600080fd5b5061039a6004803603602081101561070757600080fd5b50356001600160a01b03166114d8565b34801561072357600080fd5b506103c161153a565b34801561073857600080fd5b506102ac611549565b34801561074d57600080fd5b5061039a6115d9565b34801561076257600080fd5b506103716004803603602081101561077957600080fd5b50356001600160a01b03166115df565b34801561079557600080fd5b506103c16115fd565b3480156107aa57600080fd5b506102ac600480360360208110156107c157600080fd5b503561160c565b3480156107d457600080fd5b506102c3611669565b3480156107e957600080fd5b506102ac6004803603602081101561080057600080fd5b50356116ca565b34801561081357600080fd5b506103716004803603604081101561082a57600080fd5b506001600160a01b038135169060200135611727565b34801561084c57600080fd5b506102ac61178f565b34801561086157600080fd5b506103716004803603604081101561087857600080fd5b506001600160a01b03813516906020013561187d565b34801561089a57600080fd5b506102ac600480360360208110156108b157600080fd5b50356001600160a01b0316611891565b3480156108cd57600080fd5b5061039a611a1e565b3480156108e257600080fd5b506102ac600480360360208110156108f957600080fd5b50351515611a24565b34801561090e57600080fd5b506102ac6004803603602081101561092557600080fd5b5035611acf565b34801561093857600080fd5b506102ac6004803603602081101561094f57600080fd5b5035611b4d565b34801561096257600080fd5b5061039a6004803603604081101561097957600080fd5b506001600160a01b0381358116916020013516611beb565b34801561099d57600080fd5b5061039a611c16565b3480156109b257600080fd5b506102ac600480360360208110156109c957600080fd5b50356001600160a01b0316611c1c565b3480156109e557600080fd5b506102ac600480360360208110156109fc57600080fd5b50356001600160a01b0316611c95565b610a14611d7b565b6000546001600160a01b03908116911614610a64576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b601155565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610af55780601f10610aca57610100808354040283529160200191610af5565b820191906000526020600020905b815481529060010190602001808311610ad857829003601f168201915b5050505050905090565b6000610b13610b0c611d7b565b8484611d7f565b5060015b92915050565b600d5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5490565b610b55611d7b565b6000546001600160a01b03908116911614610ba5576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610c015760405162461bcd60e51b81526004018080602001828103825260228152602001806131f76022913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615610c6f576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b60155481565b6000610ce8848484611e6b565b610d5884610cf4611d7b565b610d5385604051806060016040528060288152602001613219602891396001600160a01b038a16600090815260056020526040812090610d32611d7b565b6001600160a01b0316815260208101919091526040016000205491906122c2565b611d7f565b5060019392505050565b6000600c54821115610da55760405162461bcd60e51b815260040180806020018281038252602a81526020018061311a602a913960400191505060405180910390fd5b6000610daf612359565b9050610dbb838261237c565b9150505b919050565b60105460ff1690565b610dd5611d7b565b6000546001600160a01b03908116911614610e25576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610e92576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610f8a57816001600160a01b031660088281548110610eb657fe5b6000918252602090912001546001600160a01b03161415610f8257600880546000198101908110610ee357fe5b600091825260209091200154600880546001600160a01b039092169183908110610f0957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610f5b57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610f8a565b600101610e95565b5050565b6000610b13610f9b611d7b565b84610d538560056000610fac611d7b565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906123c5565b60115481565b6000610fec611d7b565b6001600160a01b03811660009081526007602052604090205490915060ff16156110475760405162461bcd60e51b815260040180806020018281038252602c8152602001806132f3602c913960400191505060405180910390fd5b60006110528361241f565b505050506001600160a01b03841660009081526003602052604090205491925061107e9190508261246e565b6001600160a01b038316600090815260036020526040902055600c546110a4908261246e565b600c55600d546110b490846123c5565b600d55505050565b6110c4611d7b565b6000546001600160a01b03908116911614611114576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600b54831115611191576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816111b05760006111a18461241f565b50939550610b17945050505050565b60006111bb8461241f565b50929550610b17945050505050565b6111d2611d7b565b6000546001600160a01b03908116911614611222576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b601555565b7f000000000000000000000000000000000000000000000000000000000000000081565b601854600160a81b900460ff1681565b611263611d7b565b6000546001600160a01b039081169116146112b3576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615611321576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600360205260409020541561137b576001600160a01b03811660009081526003602052604090205461136190610d62565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b611407611d7b565b6000546001600160a01b03908116911614611457576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6018546001600160a01b03828116911614156114b0576040805162461bcd60e51b815260206004820152601360248201527257616c6c657420616c7265616479207365742160681b604482015290519081900360640190fd5b601880546001600160a01b0319166001600160a01b0392909216919091179055565b60135481565b6001600160a01b03811660009081526007602052604081205460ff161561151857506001600160a01b038116600090815260046020526040902054610dbf565b6001600160a01b038216600090815260036020526040902054610b1790610d62565b6017546001600160a01b031681565b611551611d7b565b6000546001600160a01b039081169116146115a1576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020613261833981519152908390a3600080546001600160a01b0319169055565b60195481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b611614611d7b565b6000546001600160a01b03908116911614611664576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b601355565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610af55780601f10610aca57610100808354040283529160200191610af5565b6116d2611d7b565b6000546001600160a01b03908116911614611722576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b601b55565b6000610b13611734611d7b565b84610d5385604051806060016040528060258152602001613342602591396005600061175e611d7b565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906122c2565b6001546001600160a01b031633146117d85760405162461bcd60e51b815260040180806020018281038252602381526020018061331f6023913960400191505060405180910390fd5b600254421161182e576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061326183398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610b1361188a611d7b565b8484611e6b565b611899611d7b565b6000546001600160a01b039081169116146118e9576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16611956576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610f8a57816001600160a01b0316600a828154811061197a57fe5b6000918252602090912001546001600160a01b03161415611a1657600a805460001981019081106119a757fe5b600091825260209091200154600a80546001600160a01b0390921691839081106119cd57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610f5b57fe5b600101611959565b60025490565b611a2c611d7b565b6000546001600160a01b03908116911614611a7c576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b60188054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611ad7611d7b565b6000546001600160a01b03908116911614611b27576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b611b476064611b4183600b546124b090919063ffffffff16565b9061237c565b60195550565b611b55611d7b565b6000546001600160a01b03908116911614611ba5576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020613261833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b601b5490565b611c24611d7b565b6000546001600160a01b03908116911614611c74576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b611c9d611d7b565b6000546001600160a01b03908116911614611ced576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6001600160a01b038116611d325760405162461bcd60e51b81526004018080602001828103825260268152602001806131446026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061326183398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316611dc45760405162461bcd60e51b81526004018080602001828103825260248152602001806132cf6024913960400191505060405180910390fd5b6001600160a01b038216611e095760405162461bcd60e51b815260040180806020018281038252602281526020018061316a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611eb05760405162461bcd60e51b81526004018080602001828103825260258152602001806132aa6025913960400191505060405180910390fd5b6001600160a01b038216611ef55760405162461bcd60e51b81526004018080602001828103825260238152602001806130f76023913960400191505060405180910390fd5b60008111611f345760405162461bcd60e51b81526004018080602001828103825260298152602001806132816029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff1615611f98576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b3360009081526009602052604090205460ff1615611ff3576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b3260009081526009602052604090205460ff161561204e576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b6120566115fd565b6001600160a01b0316836001600160a01b031614158015612090575061207a6115fd565b6001600160a01b0316826001600160a01b031614155b156120d6576019548111156120d65760405162461bcd60e51b81526004018080602001828103825260288152602001806131ae6028913960400191505060405180910390fd5b6120de6115fd565b6001600160a01b0316836001600160a01b03161415801561211857506121026115fd565b6001600160a01b0316826001600160a01b031614155b801561215657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561216d57506001600160a01b03821661dead14155b156121c457600061217d836114d8565b9050601b5482820111156121c25760405162461bcd60e51b815260040180806020018281038252602281526020018061318c6022913960400191505060405180910390fd5b505b60006121cf306114d8565b905060195481106121df57506019545b601a54811080159081906121fd5750601854600160a01b900460ff16155b801561223b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b80156122505750601854600160a81b900460ff165b1561226357601a54915061226382612509565b6001600160a01b03851660009081526006602052604090205460019060ff16806122a557506001600160a01b03851660009081526006602052604090205460ff165b156122ae575060005b6122ba86868684612660565b505050505050565b600081848411156123515760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156123165781810151838201526020016122fe565b50505050905090810190601f1680156123435780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006123666127d4565b9092509050612375828261237c565b9250505090565b60006123be83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612937565b9392505050565b6000828201838110156123be576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006124368a61299c565b92509250925060008060006124548d868661244f612359565b6129de565b919f909e50909c50959a5093985091965092945050505050565b60006123be83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506122c2565b6000826124bf57506000610b17565b828202828482816124cc57fe5b04146123be5760405162461bcd60e51b81526004018080602001828103825260218152602001806131d66021913960400191505060405180910390fd5b6018805460ff60a01b1916600160a01b1790556013546015540161252c57612650565b60006125566125486013546015546123c590919063ffffffff16565b601554611b419085906124b0565b90506000612564838361246e565b9050600061257382600261237c565b90506000612581838361246e565b905047600061259084876123c5565b905061259b81612a2e565b60006125a7478461246e565b905060006125b983611b4184896124b0565b90506125c58582612c3d565b604080518781526020810183905280820187905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a16018546001600160a01b03166108fc61261e848461246e565b6040518115909202916000818181858888f19350505050158015612646573d6000803e3d6000fd5b5050505050505050505b506018805460ff60a01b19169055565b8061266d5761266d612d24565b6001600160a01b03841660009081526007602052604090205460ff1680156126ae57506001600160a01b03831660009081526007602052604090205460ff16155b156126c3576126be848484612d6d565b6127c1565b6001600160a01b03841660009081526007602052604090205460ff1615801561270457506001600160a01b03831660009081526007602052604090205460ff165b15612714576126be848484612e91565b6001600160a01b03841660009081526007602052604090205460ff1615801561275657506001600160a01b03831660009081526007602052604090205460ff16155b15612766576126be848484612f3a565b6001600160a01b03841660009081526007602052604090205460ff1680156127a657506001600160a01b03831660009081526007602052604090205460ff165b156127b6576126be848484612f7e565b6127c1848484612f3a565b806127ce576127ce612ff1565b50505050565b600c54600b546000918291825b600854811015612905578260036000600884815481106127fd57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612862575081600460006008848154811061283b57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561287957600c54600b5494509450505050612933565b6128b9600360006008848154811061288d57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061246e565b92506128fb60046000600884815481106128cf57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061246e565b91506001016127e1565b50600b54600c546129159161237c565b82101561292d57600c54600b54935093505050612933565b90925090505b9091565b600081836129865760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156123165781810151838201526020016122fe565b50600083858161299257fe5b0495945050505050565b6000806000806129ab85613005565b905060006129b886613021565b905060006129d0826129ca898661246e565b9061246e565b979296509094509092505050565b60008080806129ed88866124b0565b905060006129fb88876124b0565b90506000612a0988886124b0565b90506000612a1b826129ca868661246e565b939b939a50919850919650505050505050565b60408051600280825260608083018452926020830190803683370190505090503081600081518110612a5c57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612ad557600080fd5b505afa158015612ae9573d6000803e3d6000fd5b505050506040513d6020811015612aff57600080fd5b5051815182906001908110612b1057fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612b5b307f000000000000000000000000000000000000000000000000000000000000000084611d7f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612c00578181015183820152602001612be8565b505050509050019650505050505050600060405180830381600087803b158015612c2957600080fd5b505af11580156122ba573d6000803e3d6000fd5b612c68307f000000000000000000000000000000000000000000000000000000000000000084611d7f565b6017546040805163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0392831660848201524260a482015290517f00000000000000000000000000000000000000000000000000000000000000009092169163f305d71991849160c480830192606092919082900301818588803b158015612cf957600080fd5b505af1158015612d0d573d6000803e3d6000fd5b50505050506040513d60608110156127ce57600080fd5b601154158015612d345750601354155b8015612d405750601554155b15612d4a57612d6b565b60118054601255601380546014556015805460165560009283905590829055555b565b600080600080600080612d7f8761241f565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612db1908861246e565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612de0908761246e565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612e0f90866123c5565b6001600160a01b038916600090815260036020526040902055612e3181613049565b612e3b84836130d2565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612ea38761241f565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612ed5908761246e565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612f0b90846123c5565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612e0f90866123c5565b600080600080600080612f4c8761241f565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612de0908761246e565b600080600080600080612f908761241f565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612fc2908861246e565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612ed5908761246e565b601254601155601454601355601654601555565b6000610b176064611b41601154856124b090919063ffffffff16565b6000610b176064611b416130426015546013546123c590919063ffffffff16565b85906124b0565b6000613053612359565b9050600061306183836124b0565b3060009081526003602052604090205490915061307e90826123c5565b3060009081526003602090815260408083209390935560079052205460ff16156130cd57306000908152600460205260409020546130bc90846123c5565b306000908152600460205260409020555b505050565b600c546130df908361246e565b600c55600d546130ef90826123c5565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526563697069656e742065786365656473206d61782077616c6c65742073697a652e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757652063616e6e6f7420626c61636b6c69737420556e695377617020726f7574657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204517feade2c6b8f1310300c4c70c8303e035bf26859340d5ae37c49d7ee70c9664736f6c634300060c00330000000000000000000000004c565b7a4befc07033f3430a010b5eb93a06371b

Deployed Bytecode

0x6080604052600436106102765760003560e01c80635d098b381161014f578063a457c2d7116100c1578063d543dbeb1161007a578063d543dbeb14610902578063dd4670641461092c578063dd62ed3e14610956578063e1cee22114610991578063ea2f0b37146109a6578063f2fde38b146109d95761027d565b8063a457c2d714610807578063a69df4b514610840578063a9059cbb14610855578063b030b34a1461088e578063b6c52324146108c1578063c49b9a80146108d65761027d565b80637d1db4a5116101135780637d1db4a51461074157806388f82020146107565780638da5cb5b146107895780638ee88c531461079e57806395d89b41146107c85780639e6c7529146107dd5761027d565b80635d098b381461069c5780636bc87c3a146106cf57806370a08231146106e457806370d5ae0514610717578063715018a61461072c5761027d565b80633685d419116101e85780634549b039116101ac5780634549b039146105b0578063457c194c146105e257806349bd5a5e1461060c5780634a74bb021461062157806352390c02146106365780635342acb4146106695761027d565b80633685d419146104d257806339509351146105055780633b124fe71461053e5780633bd5d17314610553578063437823ec1461057d5761027d565b806318160ddd1161023a57806318160ddd146103dd5780631d7ef879146103f257806322976e0d1461042557806323b872dd1461043a5780632d8381191461047d578063313ce567146104a75761027d565b8063061c82d01461028257806306fdde03146102ae578063095ea7b31461033857806313114a9d146103855780631694505e146103ac5761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b506102ac600480360360208110156102a557600080fd5b5035610a0c565b005b3480156102ba57600080fd5b506102c3610a69565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102fd5781810151838201526020016102e5565b50505050905090810190601f16801561032a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034457600080fd5b506103716004803603604081101561035b57600080fd5b506001600160a01b038135169060200135610aff565b604080519115158252519081900360200190f35b34801561039157600080fd5b5061039a610b1d565b60408051918252519081900360200190f35b3480156103b857600080fd5b506103c1610b23565b604080516001600160a01b039092168252519081900360200190f35b3480156103e957600080fd5b5061039a610b47565b3480156103fe57600080fd5b506102ac6004803603602081101561041557600080fd5b50356001600160a01b0316610b4d565b34801561043157600080fd5b5061039a610cd5565b34801561044657600080fd5b506103716004803603606081101561045d57600080fd5b506001600160a01b03813581169160208101359091169060400135610cdb565b34801561048957600080fd5b5061039a600480360360208110156104a057600080fd5b5035610d62565b3480156104b357600080fd5b506104bc610dc4565b6040805160ff9092168252519081900360200190f35b3480156104de57600080fd5b506102ac600480360360208110156104f557600080fd5b50356001600160a01b0316610dcd565b34801561051157600080fd5b506103716004803603604081101561052857600080fd5b506001600160a01b038135169060200135610f8e565b34801561054a57600080fd5b5061039a610fdc565b34801561055f57600080fd5b506102ac6004803603602081101561057657600080fd5b5035610fe2565b34801561058957600080fd5b506102ac600480360360208110156105a057600080fd5b50356001600160a01b03166110bc565b3480156105bc57600080fd5b5061039a600480360360408110156105d357600080fd5b50803590602001351515611138565b3480156105ee57600080fd5b506102ac6004803603602081101561060557600080fd5b50356111ca565b34801561061857600080fd5b506103c1611227565b34801561062d57600080fd5b5061037161124b565b34801561064257600080fd5b506102ac6004803603602081101561065957600080fd5b50356001600160a01b031661125b565b34801561067557600080fd5b506103716004803603602081101561068c57600080fd5b50356001600160a01b03166113e1565b3480156106a857600080fd5b506102ac600480360360208110156106bf57600080fd5b50356001600160a01b03166113ff565b3480156106db57600080fd5b5061039a6114d2565b3480156106f057600080fd5b5061039a6004803603602081101561070757600080fd5b50356001600160a01b03166114d8565b34801561072357600080fd5b506103c161153a565b34801561073857600080fd5b506102ac611549565b34801561074d57600080fd5b5061039a6115d9565b34801561076257600080fd5b506103716004803603602081101561077957600080fd5b50356001600160a01b03166115df565b34801561079557600080fd5b506103c16115fd565b3480156107aa57600080fd5b506102ac600480360360208110156107c157600080fd5b503561160c565b3480156107d457600080fd5b506102c3611669565b3480156107e957600080fd5b506102ac6004803603602081101561080057600080fd5b50356116ca565b34801561081357600080fd5b506103716004803603604081101561082a57600080fd5b506001600160a01b038135169060200135611727565b34801561084c57600080fd5b506102ac61178f565b34801561086157600080fd5b506103716004803603604081101561087857600080fd5b506001600160a01b03813516906020013561187d565b34801561089a57600080fd5b506102ac600480360360208110156108b157600080fd5b50356001600160a01b0316611891565b3480156108cd57600080fd5b5061039a611a1e565b3480156108e257600080fd5b506102ac600480360360208110156108f957600080fd5b50351515611a24565b34801561090e57600080fd5b506102ac6004803603602081101561092557600080fd5b5035611acf565b34801561093857600080fd5b506102ac6004803603602081101561094f57600080fd5b5035611b4d565b34801561096257600080fd5b5061039a6004803603604081101561097957600080fd5b506001600160a01b0381358116916020013516611beb565b34801561099d57600080fd5b5061039a611c16565b3480156109b257600080fd5b506102ac600480360360208110156109c957600080fd5b50356001600160a01b0316611c1c565b3480156109e557600080fd5b506102ac600480360360208110156109fc57600080fd5b50356001600160a01b0316611c95565b610a14611d7b565b6000546001600160a01b03908116911614610a64576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b601155565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610af55780601f10610aca57610100808354040283529160200191610af5565b820191906000526020600020905b815481529060010190602001808311610ad857829003601f168201915b5050505050905090565b6000610b13610b0c611d7b565b8484611d7f565b5060015b92915050565b600d5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600b5490565b610b55611d7b565b6000546001600160a01b03908116911614610ba5576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610c015760405162461bcd60e51b81526004018080602001828103825260228152602001806131f76022913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615610c6f576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b60155481565b6000610ce8848484611e6b565b610d5884610cf4611d7b565b610d5385604051806060016040528060288152602001613219602891396001600160a01b038a16600090815260056020526040812090610d32611d7b565b6001600160a01b0316815260208101919091526040016000205491906122c2565b611d7f565b5060019392505050565b6000600c54821115610da55760405162461bcd60e51b815260040180806020018281038252602a81526020018061311a602a913960400191505060405180910390fd5b6000610daf612359565b9050610dbb838261237c565b9150505b919050565b60105460ff1690565b610dd5611d7b565b6000546001600160a01b03908116911614610e25576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610e92576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610f8a57816001600160a01b031660088281548110610eb657fe5b6000918252602090912001546001600160a01b03161415610f8257600880546000198101908110610ee357fe5b600091825260209091200154600880546001600160a01b039092169183908110610f0957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610f5b57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610f8a565b600101610e95565b5050565b6000610b13610f9b611d7b565b84610d538560056000610fac611d7b565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906123c5565b60115481565b6000610fec611d7b565b6001600160a01b03811660009081526007602052604090205490915060ff16156110475760405162461bcd60e51b815260040180806020018281038252602c8152602001806132f3602c913960400191505060405180910390fd5b60006110528361241f565b505050506001600160a01b03841660009081526003602052604090205491925061107e9190508261246e565b6001600160a01b038316600090815260036020526040902055600c546110a4908261246e565b600c55600d546110b490846123c5565b600d55505050565b6110c4611d7b565b6000546001600160a01b03908116911614611114576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600b54831115611191576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816111b05760006111a18461241f565b50939550610b17945050505050565b60006111bb8461241f565b50929550610b17945050505050565b6111d2611d7b565b6000546001600160a01b03908116911614611222576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b601555565b7f000000000000000000000000dd0e7c22e004eeb42edd4b1e25a99455a2d1915c81565b601854600160a81b900460ff1681565b611263611d7b565b6000546001600160a01b039081169116146112b3576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615611321576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600360205260409020541561137b576001600160a01b03811660009081526003602052604090205461136190610d62565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b611407611d7b565b6000546001600160a01b03908116911614611457576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6018546001600160a01b03828116911614156114b0576040805162461bcd60e51b815260206004820152601360248201527257616c6c657420616c7265616479207365742160681b604482015290519081900360640190fd5b601880546001600160a01b0319166001600160a01b0392909216919091179055565b60135481565b6001600160a01b03811660009081526007602052604081205460ff161561151857506001600160a01b038116600090815260046020526040902054610dbf565b6001600160a01b038216600090815260036020526040902054610b1790610d62565b6017546001600160a01b031681565b611551611d7b565b6000546001600160a01b039081169116146115a1576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020613261833981519152908390a3600080546001600160a01b0319169055565b60195481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b611614611d7b565b6000546001600160a01b03908116911614611664576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b601355565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610af55780601f10610aca57610100808354040283529160200191610af5565b6116d2611d7b565b6000546001600160a01b03908116911614611722576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b601b55565b6000610b13611734611d7b565b84610d5385604051806060016040528060258152602001613342602591396005600061175e611d7b565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906122c2565b6001546001600160a01b031633146117d85760405162461bcd60e51b815260040180806020018281038252602381526020018061331f6023913960400191505060405180910390fd5b600254421161182e576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061326183398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610b1361188a611d7b565b8484611e6b565b611899611d7b565b6000546001600160a01b039081169116146118e9576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16611956576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610f8a57816001600160a01b0316600a828154811061197a57fe5b6000918252602090912001546001600160a01b03161415611a1657600a805460001981019081106119a757fe5b600091825260209091200154600a80546001600160a01b0390921691839081106119cd57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610f5b57fe5b600101611959565b60025490565b611a2c611d7b565b6000546001600160a01b03908116911614611a7c576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b60188054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611ad7611d7b565b6000546001600160a01b03908116911614611b27576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b611b476064611b4183600b546124b090919063ffffffff16565b9061237c565b60195550565b611b55611d7b565b6000546001600160a01b03908116911614611ba5576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020613261833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b601b5490565b611c24611d7b565b6000546001600160a01b03908116911614611c74576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b611c9d611d7b565b6000546001600160a01b03908116911614611ced576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6001600160a01b038116611d325760405162461bcd60e51b81526004018080602001828103825260268152602001806131446026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061326183398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316611dc45760405162461bcd60e51b81526004018080602001828103825260248152602001806132cf6024913960400191505060405180910390fd5b6001600160a01b038216611e095760405162461bcd60e51b815260040180806020018281038252602281526020018061316a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611eb05760405162461bcd60e51b81526004018080602001828103825260258152602001806132aa6025913960400191505060405180910390fd5b6001600160a01b038216611ef55760405162461bcd60e51b81526004018080602001828103825260238152602001806130f76023913960400191505060405180910390fd5b60008111611f345760405162461bcd60e51b81526004018080602001828103825260298152602001806132816029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff1615611f98576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b3360009081526009602052604090205460ff1615611ff3576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b3260009081526009602052604090205460ff161561204e576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b6120566115fd565b6001600160a01b0316836001600160a01b031614158015612090575061207a6115fd565b6001600160a01b0316826001600160a01b031614155b156120d6576019548111156120d65760405162461bcd60e51b81526004018080602001828103825260288152602001806131ae6028913960400191505060405180910390fd5b6120de6115fd565b6001600160a01b0316836001600160a01b03161415801561211857506121026115fd565b6001600160a01b0316826001600160a01b031614155b801561215657507f000000000000000000000000dd0e7c22e004eeb42edd4b1e25a99455a2d1915c6001600160a01b0316826001600160a01b031614155b801561216d57506001600160a01b03821661dead14155b156121c457600061217d836114d8565b9050601b5482820111156121c25760405162461bcd60e51b815260040180806020018281038252602281526020018061318c6022913960400191505060405180910390fd5b505b60006121cf306114d8565b905060195481106121df57506019545b601a54811080159081906121fd5750601854600160a01b900460ff16155b801561223b57507f000000000000000000000000dd0e7c22e004eeb42edd4b1e25a99455a2d1915c6001600160a01b0316856001600160a01b031614155b80156122505750601854600160a81b900460ff165b1561226357601a54915061226382612509565b6001600160a01b03851660009081526006602052604090205460019060ff16806122a557506001600160a01b03851660009081526006602052604090205460ff165b156122ae575060005b6122ba86868684612660565b505050505050565b600081848411156123515760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156123165781810151838201526020016122fe565b50505050905090810190601f1680156123435780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006123666127d4565b9092509050612375828261237c565b9250505090565b60006123be83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612937565b9392505050565b6000828201838110156123be576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006124368a61299c565b92509250925060008060006124548d868661244f612359565b6129de565b919f909e50909c50959a5093985091965092945050505050565b60006123be83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506122c2565b6000826124bf57506000610b17565b828202828482816124cc57fe5b04146123be5760405162461bcd60e51b81526004018080602001828103825260218152602001806131d66021913960400191505060405180910390fd5b6018805460ff60a01b1916600160a01b1790556013546015540161252c57612650565b60006125566125486013546015546123c590919063ffffffff16565b601554611b419085906124b0565b90506000612564838361246e565b9050600061257382600261237c565b90506000612581838361246e565b905047600061259084876123c5565b905061259b81612a2e565b60006125a7478461246e565b905060006125b983611b4184896124b0565b90506125c58582612c3d565b604080518781526020810183905280820187905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a16018546001600160a01b03166108fc61261e848461246e565b6040518115909202916000818181858888f19350505050158015612646573d6000803e3d6000fd5b5050505050505050505b506018805460ff60a01b19169055565b8061266d5761266d612d24565b6001600160a01b03841660009081526007602052604090205460ff1680156126ae57506001600160a01b03831660009081526007602052604090205460ff16155b156126c3576126be848484612d6d565b6127c1565b6001600160a01b03841660009081526007602052604090205460ff1615801561270457506001600160a01b03831660009081526007602052604090205460ff165b15612714576126be848484612e91565b6001600160a01b03841660009081526007602052604090205460ff1615801561275657506001600160a01b03831660009081526007602052604090205460ff16155b15612766576126be848484612f3a565b6001600160a01b03841660009081526007602052604090205460ff1680156127a657506001600160a01b03831660009081526007602052604090205460ff165b156127b6576126be848484612f7e565b6127c1848484612f3a565b806127ce576127ce612ff1565b50505050565b600c54600b546000918291825b600854811015612905578260036000600884815481106127fd57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612862575081600460006008848154811061283b57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561287957600c54600b5494509450505050612933565b6128b9600360006008848154811061288d57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061246e565b92506128fb60046000600884815481106128cf57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061246e565b91506001016127e1565b50600b54600c546129159161237c565b82101561292d57600c54600b54935093505050612933565b90925090505b9091565b600081836129865760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156123165781810151838201526020016122fe565b50600083858161299257fe5b0495945050505050565b6000806000806129ab85613005565b905060006129b886613021565b905060006129d0826129ca898661246e565b9061246e565b979296509094509092505050565b60008080806129ed88866124b0565b905060006129fb88876124b0565b90506000612a0988886124b0565b90506000612a1b826129ca868661246e565b939b939a50919850919650505050505050565b60408051600280825260608083018452926020830190803683370190505090503081600081518110612a5c57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612ad557600080fd5b505afa158015612ae9573d6000803e3d6000fd5b505050506040513d6020811015612aff57600080fd5b5051815182906001908110612b1057fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612b5b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d7f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612c00578181015183820152602001612be8565b505050509050019650505050505050600060405180830381600087803b158015612c2957600080fd5b505af11580156122ba573d6000803e3d6000fd5b612c68307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d7f565b6017546040805163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0392831660848201524260a482015290517f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9092169163f305d71991849160c480830192606092919082900301818588803b158015612cf957600080fd5b505af1158015612d0d573d6000803e3d6000fd5b50505050506040513d60608110156127ce57600080fd5b601154158015612d345750601354155b8015612d405750601554155b15612d4a57612d6b565b60118054601255601380546014556015805460165560009283905590829055555b565b600080600080600080612d7f8761241f565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612db1908861246e565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612de0908761246e565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612e0f90866123c5565b6001600160a01b038916600090815260036020526040902055612e3181613049565b612e3b84836130d2565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612ea38761241f565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612ed5908761246e565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612f0b90846123c5565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612e0f90866123c5565b600080600080600080612f4c8761241f565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612de0908761246e565b600080600080600080612f908761241f565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612fc2908861246e565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612ed5908761246e565b601254601155601454601355601654601555565b6000610b176064611b41601154856124b090919063ffffffff16565b6000610b176064611b416130426015546013546123c590919063ffffffff16565b85906124b0565b6000613053612359565b9050600061306183836124b0565b3060009081526003602052604090205490915061307e90826123c5565b3060009081526003602090815260408083209390935560079052205460ff16156130cd57306000908152600460205260409020546130bc90846123c5565b306000908152600460205260409020555b505050565b600c546130df908361246e565b600c55600d546130ef90826123c5565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526563697069656e742065786365656473206d61782077616c6c65742073697a652e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757652063616e6e6f7420626c61636b6c69737420556e695377617020726f7574657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204517feade2c6b8f1310300c4c70c8303e035bf26859340d5ae37c49d7ee70c9664736f6c634300060c0033

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

0000000000000000000000004c565b7a4befc07033f3430a010b5eb93a06371b

-----Decoded View---------------
Arg [0] : marketingWallet (address): 0x4C565B7A4BEfc07033f3430a010b5EB93A06371B

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000004c565b7a4befc07033f3430a010b5eb93a06371b


Deployed Bytecode Sourcemap

25701:21529:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34694:98;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34694:98:0;;:::i;:::-;;28696:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29608:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29608:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;30729:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26894:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;26894:51:0;;;;;;;;;;;;;;28973:95;;;;;;;;;;;;;:::i;31918:368::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31918:368:0;-1:-1:-1;;;;;31918:368:0;;:::i;26738:32::-;;;;;;;;;;;;;:::i;29777:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29777:313:0;;;;;;;;;;;;;;;;;:::i;31653:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31653:253:0;;:::i;28882:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33302:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33302:479:0;-1:-1:-1;;;;;33302:479:0;;:::i;30098:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30098:218:0;;;;;;;;:::i;26550:26::-;;;;;;;;;;;;;:::i;30824:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30824:377:0;;:::i;34449:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34449:111:0;-1:-1:-1;;;;;34449:111:0;;:::i;31209:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31209:436:0;;;;;;;;;:::i;34934:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34934:122:0;;:::i;26952:38::-;;;;;;;;;;;;;:::i;27158:40::-;;;;;;;;;;;;;:::i;32847:447::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32847:447:0;-1:-1:-1;;;;;32847:447:0;;:::i;39242:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39242:123:0;-1:-1:-1;;;;;39242:123:0;;:::i;35245:202::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35245:202:0;-1:-1:-1;;;;;35245:202:0;;:::i;26637:32::-;;;;;;;;;;;;;:::i;29076:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29076:198:0;-1:-1:-1;;;;;29076:198:0;;:::i;27003:71::-;;;;;;;;;;;;;:::i;16296:148::-;;;;;;;;;;;;;:::i;27211:49::-;;;;;;;;;;;;;:::i;30601:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30601:120:0;-1:-1:-1;;;;;30601:120:0;;:::i;15653:79::-;;;;;;;;;;;;;:::i;34804:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34804:122:0;;:::i;28787:87::-;;;;;;;;;;;;;:::i;47088:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47088:127:0;;:::i;30324:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30324:269:0;;;;;;;;:::i;17306:293::-;;;;;;;;;;;;;:::i;29282:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29282:167:0;;;;;;;;:::i;32298:541::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32298:541:0;-1:-1:-1;;;;;32298:541:0;;:::i;16851:89::-;;;;;;;;;;;;;:::i;35465:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35465:171:0;;;;:::i;35075:162::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35075:162:0;;:::i;17016:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17016:214:0;;:::i;29457:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29457:143:0;;;;;;;;;;:::i;37274:102::-;;;;;;;;;;;;;:::i;34572:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34572:110:0;-1:-1:-1;;;;;34572:110:0;;:::i;16599:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16599:244:0;-1:-1:-1;;;;;16599:244:0;;:::i;34694:98::-;15875:12;:10;:12::i;:::-;15865:6;;-1:-1:-1;;;;;15865:6:0;;;:22;;;15857:67;;;;;-1:-1:-1;;;15857:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15857:67:0;;;;;;;;;;;;;;;34768:7:::1;:16:::0;34694:98::o;28696:83::-;28766:5;28759:12;;;;;;;;-1:-1:-1;;28759:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28733:13;;28759:12;;28766:5;;28759:12;;28766:5;28759:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28696:83;:::o;29608:161::-;29683:4;29700:39;29709:12;:10;:12::i;:::-;29723:7;29732:6;29700:8;:39::i;:::-;-1:-1:-1;29757:4:0;29608:161;;;;;:::o;30729:87::-;30798:10;;30729:87;:::o;26894:51::-;;;:::o;28973:95::-;29053:7;;28973:95;:::o;31918:368::-;15875:12;:10;:12::i;:::-;15865:6;;-1:-1:-1;;;;;15865:6:0;;;:22;;;15857:67;;;;;-1:-1:-1;;;15857:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15857:67:0;;;;;;;;;;;;;;;32017:42:::1;-1:-1:-1::0;;;;;32006:53:0;::::1;;;31998:100;;;;-1:-1:-1::0;;;31998:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;32122:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;32121:27;32112:71;;;::::0;;-1:-1:-1;;;32112:71:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;32197:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;32197:33:0::1;32226:4;32197:33:::0;;::::1;::::0;;;32244:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;32244:30:0::1;::::0;;::::1;::::0;;31918:368::o;26738:32::-;;;;:::o;29777:313::-;29875:4;29892:36;29902:6;29910:9;29921:6;29892:9;:36::i;:::-;29939:121;29948:6;29956:12;:10;:12::i;:::-;29970:89;30008:6;29970:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29970:19:0;;;;;;:11;:19;;;;;;29990:12;:10;:12::i;:::-;-1:-1:-1;;;;;29970:33:0;;;;;;;;;;;;-1:-1:-1;29970:33:0;;;:89;:37;:89::i;:::-;29939:8;:121::i;:::-;-1:-1:-1;30078:4:0;29777:313;;;;;:::o;31653:253::-;31719:7;31758;;31747;:18;;31739:73;;;;-1:-1:-1;;;31739:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31823:19;31846:10;:8;:10::i;:::-;31823:33;-1:-1:-1;31874:24:0;:7;31823:33;31874:11;:24::i;:::-;31867:31;;;31653:253;;;;:::o;28882:83::-;28948:9;;;;28882:83;:::o;33302:479::-;15875:12;:10;:12::i;:::-;15865:6;;-1:-1:-1;;;;;15865:6:0;;;:22;;;15857:67;;;;;-1:-1:-1;;;15857:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15857:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33384:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33376:60;;;::::0;;-1:-1:-1;;;33376:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33452:9;33447:327;33471:9;:16:::0;33467:20;::::1;33447:327;;;33529:7;-1:-1:-1::0;;;;;33513:23:0::1;:9;33523:1;33513:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33513:12:0::1;:23;33509:254;;;33572:9;33582:16:::0;;-1:-1:-1;;33582:20:0;;;33572:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;33557:9:::1;:12:::0;;-1:-1:-1;;;;;33572:31:0;;::::1;::::0;33567:1;;33557:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;33557:46:0::1;-1:-1:-1::0;;;;;33557:46:0;;::::1;;::::0;;33622:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;33661:11:::1;:20:::0;;;;:28;;-1:-1:-1;;33661:28:0::1;::::0;;33708:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;33708:15:0;;;;;-1:-1:-1;;;;;;33708:15:0::1;::::0;;;;;33742:5:::1;;33509:254;33489:3;;33447:327;;;;33302:479:::0;:::o;30098:218::-;30186:4;30203:83;30212:12;:10;:12::i;:::-;30226:7;30235:50;30274:10;30235:11;:25;30247:12;:10;:12::i;:::-;-1:-1:-1;;;;;30235:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30235:25:0;;;:34;;;;;;;;;;;:38;:50::i;26550:26::-;;;;:::o;30824:377::-;30876:14;30893:12;:10;:12::i;:::-;-1:-1:-1;;;;;30925:19:0;;;;;;:11;:19;;;;;;30876:29;;-1:-1:-1;30925:19:0;;30924:20;30916:77;;;;-1:-1:-1;;;30916:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31005:15;31029:19;31040:7;31029:10;:19::i;:::-;-1:-1:-1;;;;;;;;;31077:15:0;;;;;;:7;:15;;;;;;31004:44;;-1:-1:-1;31077:28:0;;:15;-1:-1:-1;31004:44:0;31077:19;:28::i;:::-;-1:-1:-1;;;;;31059:15:0;;;;;;:7;:15;;;;;:46;31126:7;;:20;;31138:7;31126:11;:20::i;:::-;31116:7;:30;31170:10;;:23;;31185:7;31170:14;:23::i;:::-;31157:10;:36;-1:-1:-1;;;30824:377:0:o;34449:111::-;15875:12;:10;:12::i;:::-;15865:6;;-1:-1:-1;;;;;15865:6:0;;;:22;;;15857:67;;;;;-1:-1:-1;;;15857:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15857:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34518:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;34518:34:0::1;34548:4;34518:34;::::0;;34449:111::o;31209:436::-;31299:7;31338;;31327;:18;;31319:62;;;;;-1:-1:-1;;;31319:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31397:17;31392:246;;31432:15;31456:19;31467:7;31456:10;:19::i;:::-;-1:-1:-1;31431:44:0;;-1:-1:-1;31490:14:0;;-1:-1:-1;;;;;31490:14:0;31392:246;31539:23;31570:19;31581:7;31570:10;:19::i;:::-;-1:-1:-1;31537:52:0;;-1:-1:-1;31604:22:0;;-1:-1:-1;;;;;31604:22:0;34934:122;15875:12;:10;:12::i;:::-;15865:6;;-1:-1:-1;;;;;15865:6:0;;;:22;;;15857:67;;;;;-1:-1:-1;;;15857:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15857:67:0;;;;;;;;;;;;;;;35020:13:::1;:28:::0;34934:122::o;26952:38::-;;;:::o;27158:40::-;;;-1:-1:-1;;;27158:40:0;;;;;:::o;32847:447::-;15875:12;:10;:12::i;:::-;15865:6;;-1:-1:-1;;;;;15865:6:0;;;:22;;;15857:67;;;;;-1:-1:-1;;;15857:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15857:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33044:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33043:21;33035:61;;;::::0;;-1:-1:-1;;;33035:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;33110:16:0;::::1;33129:1;33110:16:::0;;;:7:::1;:16;::::0;;;;;:20;33107:108:::1;;-1:-1:-1::0;;;;;33186:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33166:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33147:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33107:108:::1;-1:-1:-1::0;;;;;33225:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33225:27:0::1;33248:4;33225:27:::0;;::::1;::::0;;;33263:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33263:23:0::1;::::0;;::::1;::::0;;32847:447::o;39242:123::-;-1:-1:-1;;;;;39330:27:0;39306:4;39330:27;;;:18;:27;;;;;;;;;39242:123::o;35245:202::-;15875:12;:10;:12::i;:::-;15865:6;;-1:-1:-1;;;;;15865:6:0;;;:22;;;15857:67;;;;;-1:-1:-1;;;15857:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15857:67:0;;;;;;;;;;;;;;;35338:16:::1;::::0;-1:-1:-1;;;;;35338:29:0;;::::1;:16:::0;::::1;:29;;35330:61;;;::::0;;-1:-1:-1;;;35330:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;35330:61:0;;;;;;;;;;;;;::::1;;35402:16;:37:::0;;-1:-1:-1;;;;;;35402:37:0::1;-1:-1:-1::0;;;;;35402:37:0;;;::::1;::::0;;;::::1;::::0;;35245:202::o;26637:32::-;;;;:::o;29076:198::-;-1:-1:-1;;;;;29166:20:0;;29142:7;29166:20;;;:11;:20;;;;;;;;29162:49;;;-1:-1:-1;;;;;;29195:16:0;;;;;;:7;:16;;;;;;29188:23;;29162:49;-1:-1:-1;;;;;29249:16:0;;;;;;:7;:16;;;;;;29229:37;;:19;:37::i;27003:71::-;;;-1:-1:-1;;;;;27003:71:0;;:::o;16296:148::-;15875:12;:10;:12::i;:::-;15865:6;;-1:-1:-1;;;;;15865:6:0;;;:22;;;15857:67;;;;;-1:-1:-1;;;15857:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15857:67:0;;;;;;;;;;;;;;;16403:1:::1;16387:6:::0;;16366:40:::1;::::0;-1:-1:-1;;;;;16387:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16366:40:0;16403:1;;16366:40:::1;16434:1;16417:19:::0;;-1:-1:-1;;;;;;16417:19:0::1;::::0;;16296:148::o;27211:49::-;;;;:::o;30601:120::-;-1:-1:-1;;;;;30693:20:0;30669:4;30693:20;;;:11;:20;;;;;;;;;30601:120::o;15653:79::-;15691:7;15718:6;-1:-1:-1;;;;;15718:6:0;15653:79;:::o;34804:122::-;15875:12;:10;:12::i;:::-;15865:6;;-1:-1:-1;;;;;15865:6:0;;;:22;;;15857:67;;;;;-1:-1:-1;;;15857:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15857:67:0;;;;;;;;;;;;;;;34890:13:::1;:28:::0;34804:122::o;28787:87::-;28859:7;28852:14;;;;;;;;-1:-1:-1;;28852:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28826:13;;28852:14;;28859:7;;28852:14;;28859:7;28852:14;;;;;;;;;;;;;;;;;;;;;;;;47088:127;15875:12;:10;:12::i;:::-;15865:6;;-1:-1:-1;;;;;15865:6:0;;;:22;;;15857:67;;;;;-1:-1:-1;;;15857:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15857:67:0;;;;;;;;;;;;;;;47173:14:::1;:30:::0;47088:127::o;30324:269::-;30417:4;30434:129;30443:12;:10;:12::i;:::-;30457:7;30466:96;30505:15;30466:96;;;;;;;;;;;;;;;;;:11;:25;30478:12;:10;:12::i;:::-;-1:-1:-1;;;;;30466:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30466:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17306:293::-;17358:14;;-1:-1:-1;;;;;17358:14:0;17376:10;17358:28;17350:76;;;;-1:-1:-1;;;17350:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17451:9;;17445:3;:15;17437:60;;;;;-1:-1:-1;;;17437:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17542:14;;;17534:6;;17513:44;;-1:-1:-1;;;;;17542:14:0;;;;17534:6;;;;-1:-1:-1;;;;;;;;;;;17513:44:0;;17577:14;;;17568:23;;-1:-1:-1;;;;;;17568:23:0;-1:-1:-1;;;;;17577:14:0;;;17568:23;;;;;;17306:293::o;29282:167::-;29360:4;29377:42;29387:12;:10;:12::i;:::-;29401:9;29412:6;29377:9;:42::i;32298:541::-;15875:12;:10;:12::i;:::-;15865:6;;-1:-1:-1;;;;;15865:6:0;;;:22;;;15857:67;;;;;-1:-1:-1;;;15857:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15857:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32390:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;32381:66;;;::::0;;-1:-1:-1;;;32381:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32465:9;32460:369;32484:16;:23:::0;32480:27;::::1;32460:369;;;32561:7;-1:-1:-1::0;;;;;32538:30:0::1;:16;32555:1;32538:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;32538:19:0::1;:30;32534:281;;;32616:16;32633:23:::0;;-1:-1:-1;;32633:27:0;;;32616:45;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;32594:16:::1;:19:::0;;-1:-1:-1;;;;;32616:45:0;;::::1;::::0;32611:1;;32594:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;32594:67:0::1;-1:-1:-1::0;;;;;32594:67:0;;::::1;;::::0;;32685:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;32685:34:0::1;::::0;;32743:16:::1;:22:::0;;;::::1;;;32534:281;32509:3;;32460:369;;16851:89:::0;16923:9;;16851:89;:::o;35465:171::-;15875:12;:10;:12::i;:::-;15865:6;;-1:-1:-1;;;;;15865:6:0;;;:22;;;15857:67;;;;;-1:-1:-1;;;15857:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15857:67:0;;;;;;;;;;;;;;;35542:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;35542:32:0;::::1;-1:-1:-1::0;;;;35542:32:0;;::::1;::::0;;;::::1;::::0;;;35590:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;35465:171:::0;:::o;35075:162::-;15875:12;:10;:12::i;:::-;15865:6;;-1:-1:-1;;;;;15865:6:0;;;:22;;;15857:67;;;;;-1:-1:-1;;;15857:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15857:67:0;;;;;;;;;;;;;;;35169:60:::1;35213:5;35169:25;35181:12;35169:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;35154:12;:75:::0;-1:-1:-1;35075:162:0:o;17016:214::-;15875:12;:10;:12::i;:::-;15865:6;;-1:-1:-1;;;;;15865:6:0;;;:22;;;15857:67;;;;;-1:-1:-1;;;15857:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15857:67:0;;;;;;;;;;;;;;;17097:6:::1;::::0;;;17080:23;;-1:-1:-1;;;;;;17080:23:0;;::::1;-1:-1:-1::0;;;;;17097:6:0;::::1;17080:23;::::0;;;17114:19:::1;::::0;;17156:3:::1;:10:::0;::::1;17144:9;:22:::0;17182:40:::1;::::0;17097:6;;-1:-1:-1;;;;;;;;;;;17182:40:0;17097:6;;17182:40:::1;17016:214:::0;:::o;29457:143::-;-1:-1:-1;;;;;29565:18:0;;;29538:7;29565:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29457:143::o;37274:102::-;37354:14;;37274:102;:::o;34572:110::-;15875:12;:10;:12::i;:::-;15865:6;;-1:-1:-1;;;;;15865:6:0;;;:22;;;15857:67;;;;;-1:-1:-1;;;15857:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15857:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34639:27:0::1;34669:5;34639:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;34639:35:0::1;::::0;;34572:110::o;16599:244::-;15875:12;:10;:12::i;:::-;15865:6;;-1:-1:-1;;;;;15865:6:0;;;:22;;;15857:67;;;;;-1:-1:-1;;;15857:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15857:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16688:22:0;::::1;16680:73;;;;-1:-1:-1::0;;;16680:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16790:6;::::0;;16769:38:::1;::::0;-1:-1:-1;;;;;16769:38:0;;::::1;::::0;16790:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16769:38:0;::::1;16818:6;:17:::0;;-1:-1:-1;;;;;;16818:17:0::1;-1:-1:-1::0;;;;;16818:17:0;;;::::1;::::0;;;::::1;::::0;;16599:244::o;8061:106::-;8149:10;8061:106;:::o;39373:337::-;-1:-1:-1;;;;;39466:19:0;;39458:68;;;;-1:-1:-1;;;39458:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39545:21:0;;39537:68;;;;-1:-1:-1;;;39537:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39618:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;39670:32;;;;;;;;;;;;;;;;;39373:337;;;:::o;39718:2320::-;-1:-1:-1;;;;;39840:18:0;;39832:68;;;;-1:-1:-1;;;39832:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39919:16:0;;39911:64;;;;-1:-1:-1;;;39911:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40003:1;39994:6;:10;39986:64;;;;-1:-1:-1;;;39986:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40070:23:0;;;;;;:17;:23;;;;;;;;40069:24;40061:56;;;;;-1:-1:-1;;;40061:56:0;;;;;;;;;;;;-1:-1:-1;;;40061:56:0;;;;;;;;;;;;;;;40155:10;40137:29;;;;:17;:29;;;;;;;;40136:30;40128:62;;;;;-1:-1:-1;;;40128:62:0;;;;;;;;;;;;-1:-1:-1;;;40128:62:0;;;;;;;;;;;;;;;40228:9;40210:28;;;;:17;:28;;;;;;;;40209:29;40201:61;;;;;-1:-1:-1;;;40201:61:0;;;;;;;;;;;;-1:-1:-1;;;40201:61:0;;;;;;;;;;;;;;;40284:7;:5;:7::i;:::-;-1:-1:-1;;;;;40276:15:0;:4;-1:-1:-1;;;;;40276:15:0;;;:32;;;;;40301:7;:5;:7::i;:::-;-1:-1:-1;;;;;40295:13:0;:2;-1:-1:-1;;;;;40295:13:0;;;40276:32;40273:125;;;40341:12;;40331:6;:22;;40323:75;;;;-1:-1:-1;;;40323:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40440:7;:5;:7::i;:::-;-1:-1:-1;;;;;40432:15:0;:4;-1:-1:-1;;;;;40432:15:0;;;:32;;;;;40457:7;:5;:7::i;:::-;-1:-1:-1;;;;;40451:13:0;:2;-1:-1:-1;;;;;40451:13:0;;;40432:32;:55;;;;;40474:13;-1:-1:-1;;;;;40468:19:0;:2;-1:-1:-1;;;;;40468:19:0;;;40432:55;:80;;;;-1:-1:-1;;;;;;40491:21:0;;40505:6;40491:21;;40432:80;40429:267;;;40529:29;40561:13;40571:2;40561:9;:13::i;:::-;40529:45;;40631:14;;40621:6;40597:21;:30;:48;;40589:95;;;;-1:-1:-1;;;40589:95:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40429:267;;40988:28;41019:24;41037:4;41019:9;:24::i;:::-;40988:55;;41091:12;;41067:20;:36;41064:112;;-1:-1:-1;41152:12:0;;41064:112;41247:29;;41223:53;;;;;;;41305;;-1:-1:-1;41342:16:0;;-1:-1:-1;;;41342:16:0;;;;41341:17;41305:53;:91;;;;;41383:13;-1:-1:-1;;;;;41375:21:0;:4;-1:-1:-1;;;;;41375:21:0;;;41305:91;:129;;;;-1:-1:-1;41413:21:0;;-1:-1:-1;;;41413:21:0;;;;41305:129;41287:318;;;41484:29;;41461:52;;41557:36;41572:20;41557:14;:36::i;:::-;-1:-1:-1;;;;;41813:24:0;;41686:12;41813:24;;;:18;:24;;;;;;41701:4;;41813:24;;;:50;;-1:-1:-1;;;;;;41841:22:0;;;;;;:18;:22;;;;;;;;41813:50;41810:96;;;-1:-1:-1;41889:5:0;41810:96;41992:38;42007:4;42012:2;42015:6;42022:7;41992:14;:38::i;:::-;39718:2320;;;;;;:::o;4471:192::-;4557:7;4593:12;4585:6;;;;4577:29;;;;-1:-1:-1;;;4577:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4629:5:0;;;4471:192::o;37099:163::-;37140:7;37161:15;37178;37197:19;:17;:19::i;:::-;37160:56;;-1:-1:-1;37160:56:0;-1:-1:-1;37234:20:0;37160:56;;37234:11;:20::i;:::-;37227:27;;;;37099:163;:::o;5869:132::-;5927:7;5954:39;5958:1;5961;5954:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5947:46;5869:132;-1:-1:-1;;;5869:132:0:o;3568:181::-;3626:7;3658:5;;;3682:6;;;;3674:46;;;;;-1:-1:-1;;;3674:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;35897:419;35956:7;35965;35974;35983;35992;36001;36022:23;36047:12;36061:18;36083:20;36095:7;36083:11;:20::i;:::-;36021:82;;;;;;36115:15;36132:23;36157:12;36173:50;36185:7;36194:4;36200:10;36212;:8;:10::i;:::-;36173:11;:50::i;:::-;36114:109;;;;-1:-1:-1;36114:109:0;;-1:-1:-1;36274:15:0;;-1:-1:-1;36291:4:0;;-1:-1:-1;36297:10:0;;-1:-1:-1;35897:419:0;;-1:-1:-1;;;;;35897:419:0:o;4032:136::-;4090:7;4117:43;4121:1;4124;4117:43;;;;;;;;;;;;;;;;;:3;:43::i;4922:471::-;4980:7;5225:6;5221:47;;-1:-1:-1;5255:1:0;5248:8;;5221:47;5292:5;;;5296:1;5292;:5;:1;5316:5;;;;;:10;5308:56;;;;-1:-1:-1;;;5308:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42046:1315;27802:16;:23;;-1:-1:-1;;;;27802:23:0;-1:-1:-1;;;27802:23:0;;;42151:13:::1;::::0;42135::::1;::::0;:29:::1;42131:60;;42184:7;;42131:60;42201:19;42223:77;42267:32;42285:13;;42267;;:17;;:32;;;;:::i;:::-;42248:13;::::0;42223:39:::1;::::0;:20;;:24:::1;:39::i;:77::-;42201:99:::0;-1:-1:-1;42311:17:0::1;42331:37;:20:::0;42201:99;42331:24:::1;:37::i;:::-;42311:57:::0;-1:-1:-1;42432:12:0::1;42447:16;42311:57:::0;42461:1:::1;42447:13;:16::i;:::-;42432:31:::0;-1:-1:-1;42474:17:0::1;42494:19;:9:::0;42432:31;42494:13:::1;:19::i;:::-;42474:39:::0;-1:-1:-1;42816:21:0::1;42791:22;42905:21;:4:::0;42914:11;42905:8:::1;:21::i;:::-;42882:44;;42937:30;42954:12;42937:16;:30::i;:::-;43028:16;43047:41;:21;43073:14:::0;43047:25:::1;:41::i;:::-;43028:60:::0;-1:-1:-1;43099:24:0::1;43126:36;43149:12:::0;43126:18:::1;43028:60:::0;43139:4;43126:12:::1;:18::i;:36::-;43099:63;;43175:41;43188:9;43199:16;43175:12;:41::i;:::-;43234:49;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;43296:16;::::0;-1:-1:-1;;;;;43296:16:0::1;:57;43322:30;:8:::0;43335:16;43322:12:::1;:30::i;:::-;43296:57;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;27836:1;;;;;;;;;-1:-1:-1::0;27848:16:0;:24;;-1:-1:-1;;;;27848:24:0;;;42046:1315::o;44564:834::-;44675:7;44671:40;;44697:14;:12;:14::i;:::-;-1:-1:-1;;;;;44736:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;44760:22:0;;;;;;:11;:22;;;;;;;;44759:23;44736:46;44732:597;;;44799:48;44821:6;44829:9;44840:6;44799:21;:48::i;:::-;44732:597;;;-1:-1:-1;;;;;44870:19:0;;;;;;:11;:19;;;;;;;;44869:20;:46;;;;-1:-1:-1;;;;;;44893:22:0;;;;;;:11;:22;;;;;;;;44869:46;44865:464;;;44932:46;44952:6;44960:9;44971:6;44932:19;:46::i;44865:464::-;-1:-1:-1;;;;;45001:19:0;;;;;;:11;:19;;;;;;;;45000:20;:47;;;;-1:-1:-1;;;;;;45025:22:0;;;;;;:11;:22;;;;;;;;45024:23;45000:47;44996:333;;;45064:44;45082:6;45090:9;45101:6;45064:17;:44::i;44996:333::-;-1:-1:-1;;;;;45130:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;45153:22:0;;;;;;:11;:22;;;;;;;;45130:45;45126:203;;;45192:48;45214:6;45222:9;45233:6;45192:21;:48::i;45126:203::-;45273:44;45291:6;45299:9;45310:6;45273:17;:44::i;:::-;45353:7;45349:41;;45375:15;:13;:15::i;:::-;44564:834;;;;:::o;37388:561::-;37485:7;;37521;;37438;;;;;37545:289;37569:9;:16;37565:20;;37545:289;;;37635:7;37611;:21;37619:9;37629:1;37619:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37619:12:0;37611:21;;;;;;;;;;;;;:31;;:66;;;37670:7;37646;:21;37654:9;37664:1;37654:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37654:12:0;37646:21;;;;;;;;;;;;;:31;37611:66;37607:97;;;37687:7;;37696;;37679:25;;;;;;;;;37607:97;37729:34;37741:7;:21;37749:9;37759:1;37749:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37749:12:0;37741:21;;;;;;;;;;;;;37729:7;;:11;:34::i;:::-;37719:44;;37788:34;37800:7;:21;37808:9;37818:1;37808:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37808:12:0;37800:21;;;;;;;;;;;;;37788:7;;:11;:34::i;:::-;37778:44;-1:-1:-1;37587:3:0;;37545:289;;;-1:-1:-1;37870:7:0;;37858;;:20;;:11;:20::i;:::-;37848:7;:30;37844:61;;;37888:7;;37897;;37880:25;;;;;;;;37844:61;37924:7;;-1:-1:-1;37933:7:0;-1:-1:-1;37388:561:0;;;:::o;6497:278::-;6583:7;6618:12;6611:5;6603:28;;;;-1:-1:-1;;;6603:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6642:9;6658:1;6654;:5;;;;;;;6497:278;-1:-1:-1;;;;;6497:278:0:o;36324:330::-;36384:7;36393;36402;36422:12;36437:24;36453:7;36437:15;:24::i;:::-;36422:39;;36472:18;36493:30;36515:7;36493:21;:30::i;:::-;36472:51;-1:-1:-1;36534:23:0;36560:33;36472:51;36560:17;:7;36572:4;36560:11;:17::i;:::-;:21;;:33::i;:::-;36534:59;36629:4;;-1:-1:-1;36635:10:0;;-1:-1:-1;36324:330:0;;-1:-1:-1;;;36324:330:0:o;36662:429::-;36777:7;;;;36833:24;:7;36845:11;36833;:24::i;:::-;36815:42;-1:-1:-1;36868:12:0;36883:21;:4;36892:11;36883:8;:21::i;:::-;36868:36;-1:-1:-1;36915:18:0;36936:27;:10;36951:11;36936:14;:27::i;:::-;36915:48;-1:-1:-1;36974:23:0;37000:33;36915:48;37000:17;:7;37012:4;37000:11;:17::i;:33::-;37052:7;;;;-1:-1:-1;37078:4:0;;-1:-1:-1;36662:429:0;;-1:-1:-1;;;;;;;36662:429:0:o;43369:589::-;43519:16;;;43533:1;43519:16;;;43495:21;43519:16;;;;;43495:21;43519:16;;;;;;;;;;-1:-1:-1;43519:16:0;43495:40;;43564:4;43546;43551:1;43546:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;43546:23:0;;;-1:-1:-1;;;;;43546:23:0;;;;;43590:15;-1:-1:-1;;;;;43590:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43590:22:0;43580:7;;:4;;43585:1;;43580:7;;;;;;;;;;;:32;-1:-1:-1;;;;;43580:32:0;;;-1:-1:-1;;;;;43580:32:0;;;;;43625:62;43642:4;43657:15;43675:11;43625:8;:62::i;:::-;43726:15;-1:-1:-1;;;;;43726:66:0;;43807:11;43833:1;43877:4;43904;43924:15;43726:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43726:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43966:517;44114:62;44131:4;44146:15;44164:11;44114:8;:62::i;:::-;44423:11;;44219:256;;;-1:-1:-1;;;44219:256:0;;44291:4;44219:256;;;;;;;;;;-1:-1:-1;44219:256:0;;;;;;;;;;-1:-1:-1;;;;;44423:11:0;;;44219:256;;;;44449:15;44219:256;;;;;;:15;:31;;;;;;44258:9;;44219:256;;;;;;;;;;;;;;44258:9;44219:31;:256;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38687:358;38733:7;;:12;:34;;;;-1:-1:-1;38749:13:0;;:18;38733:34;:56;;;;-1:-1:-1;38771:13:0;;:18;38733:56;38730:68;;;38791:7;;38730:68;38836:7;;;38818:15;:25;38878:13;;;38854:21;:37;38926:13;;;38902:21;:37;-1:-1:-1;38960:11:0;;;;38982:17;;;;39010;38687:358;:::o;46510:566::-;46613:15;46630:23;46655:12;46669:23;46694:12;46708:18;46730:19;46741:7;46730:10;:19::i;:::-;-1:-1:-1;;;;;46778:15:0;;;;;;:7;:15;;;;;;46612:137;;-1:-1:-1;46612:137:0;;-1:-1:-1;46612:137:0;;-1:-1:-1;46612:137:0;-1:-1:-1;46612:137:0;-1:-1:-1;46612:137:0;-1:-1:-1;46778:28:0;;46798:7;46778:19;:28::i;:::-;-1:-1:-1;;;;;46760:15:0;;;;;;:7;:15;;;;;;;;:46;;;;46835:7;:15;;;;:28;;46855:7;46835:19;:28::i;:::-;-1:-1:-1;;;;;46817:15:0;;;;;;;:7;:15;;;;;;:46;;;;46895:18;;;;;;;:39;;46918:15;46895:22;:39::i;:::-;-1:-1:-1;;;;;46874:18:0;;;;;;:7;:18;;;;;:60;46948:26;46963:10;46948:14;:26::i;:::-;46985:23;46997:4;47003;46985:11;:23::i;:::-;47041:9;-1:-1:-1;;;;;47024:44:0;47033:6;-1:-1:-1;;;;;47024:44:0;;47052:15;47024:44;;;;;;;;;;;;;;;;;;46510:566;;;;;;;;;:::o;45916:586::-;46017:15;46034:23;46059:12;46073:23;46098:12;46112:18;46134:19;46145:7;46134:10;:19::i;:::-;-1:-1:-1;;;;;46182:15:0;;;;;;:7;:15;;;;;;46016:137;;-1:-1:-1;46016:137:0;;-1:-1:-1;46016:137:0;;-1:-1:-1;46016:137:0;-1:-1:-1;46016:137:0;-1:-1:-1;46016:137:0;-1:-1:-1;46182:28:0;;46016:137;46182:19;:28::i;:::-;-1:-1:-1;;;;;46164:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;46242:18;;;;;:7;:18;;;;;:39;;46265:15;46242:22;:39::i;:::-;-1:-1:-1;;;;;46221:18:0;;;;;;:7;:18;;;;;;;;:60;;;;46313:7;:18;;;;:39;;46336:15;46313:22;:39::i;45406:502::-;45505:15;45522:23;45547:12;45561:23;45586:12;45600:18;45622:19;45633:7;45622:10;:19::i;:::-;-1:-1:-1;;;;;45670:15:0;;;;;;:7;:15;;;;;;45504:137;;-1:-1:-1;45504:137:0;;-1:-1:-1;45504:137:0;;-1:-1:-1;45504:137:0;-1:-1:-1;45504:137:0;-1:-1:-1;45504:137:0;-1:-1:-1;45670:28:0;;45504:137;45670:19;:28::i;33791:642::-;33894:15;33911:23;33936:12;33950:23;33975:12;33989:18;34011:19;34022:7;34011:10;:19::i;:::-;-1:-1:-1;;;;;34059:15:0;;;;;;:7;:15;;;;;;33893:137;;-1:-1:-1;33893:137:0;;-1:-1:-1;33893:137:0;;-1:-1:-1;33893:137:0;-1:-1:-1;33893:137:0;-1:-1:-1;33893:137:0;-1:-1:-1;34059:28:0;;34079:7;34059:19;:28::i;:::-;-1:-1:-1;;;;;34041:15:0;;;;;;:7;:15;;;;;;;;:46;;;;34116:7;:15;;;;:28;;34136:7;34116:19;:28::i;39057:173::-;39111:15;;39101:7;:25;39153:21;;39137:13;:37;39201:21;;39185:13;:37;39057:173::o;38328:154::-;38392:7;38419:55;38458:5;38419:20;38431:7;;38419;:11;;:20;;;;:::i;38490:185::-;38560:7;38587:80;38651:5;38587:45;38599:32;38617:13;;38599;;:17;;:32;;;;:::i;:::-;38587:7;;:11;:45::i;37961:355::-;38024:19;38047:10;:8;:10::i;:::-;38024:33;-1:-1:-1;38068:18:0;38089:27;:10;38024:33;38089:14;:27::i;:::-;38168:4;38152:22;;;;:7;:22;;;;;;38068:48;;-1:-1:-1;38152:38:0;;38068:48;38152:26;:38::i;:::-;38143:4;38127:22;;;;:7;:22;;;;;;;;:63;;;;38204:11;:26;;;;;;38201:107;;;38286:4;38270:22;;;;:7;:22;;;;;;:38;;38297:10;38270:26;:38::i;:::-;38261:4;38245:22;;;;:7;:22;;;;;:63;38201:107;37961:355;;;:::o;35742:147::-;35820:7;;:17;;35832:4;35820:11;:17::i;:::-;35810:7;:27;35861:10;;:20;;35876:4;35861:14;:20::i;:::-;35848:10;:33;-1:-1:-1;;35742:147:0:o

Swarm Source

ipfs://4517feade2c6b8f1310300c4c70c8303e035bf26859340d5ae37c49d7ee70c96
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.