ETH Price: $3,444.38 (-2.74%)
Gas: 5 Gwei

Token

Rocket Bunny (BUNNY)
 

Overview

Max Total Supply

777,000,000,000,000,000 BUNNY

Holders

18,695 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
943,451,004,690.374819648 BUNNY

Value
$0.00
0x642357c83DADdd81fD28037056e19A0E26BdDD38
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:
RocketBunny

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*
    ____                __          __     ____                             
   / __ \ ____   _____ / /__ ___   / /_   / __ ) __  __ ____   ____   __  __
  / /_/ // __ \ / ___// //_// _ \ / __/  / __  |/ / / // __ \ / __ \ / / / /
 / _, _// /_/ // /__ / ,<  /  __// /_   / /_/ // /_/ // / / // / / // /_/ / 
/_/ |_| \____/ \___//_/|_| \___/ \__/  /_____/ \__,_//_/ /_//_/ /_/ \__, /  
                                                                   /____/   

Just for buying Rocket Bunny and holding it in your wallet, you will earn passive income that is deposited
directly into your wallet via frictionless yield on all transactions of Rocket Bunny.No staking required!

Rocket Bunny combines the most sought after tokenomics across DeFi: automatic liquidity adds, 
compounding yield, deflationary supply, liquidity provider rewards, and price shock protection.

Rocket Bunny is a deflationary token with a max circulating supply of 777 Quadrilion. Each transaction 
incurs a 4% tax that is distributed in four equal parts: 1% to holders, 1% burned to The Rabbit's Hole, 
1% locked liquidity, and 1% as a bonus to liquidity providers. As volume increases, the amount burned 
increases logarithmically, eventually leading to an exponential decrease in supply.

The Rabbit Hole burns do not stop, the instant holder rewards do not stop, the 2x rewards for liquidity 
providers do not stop, and the locked liquidity adds do not stop. This means the Rocket Bunny supply will 
become more scarce, your holdings will continue to increase, particularly if you are a liquidty provider 
earning 2x rewards, and the price floor for Rocket Bunny will continue to rise.

- Deflationary supply
- Rewards directly into your wallet
- 2x rewards for LP
- Automatic & locked liquidity adds
- Whale dump protection

web: rocketbunny.io
tg: @RocketBunnyChat

*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;

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

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

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

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

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

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

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

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

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

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

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

// 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 IUniswapV2ERC20 {
    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;
}




// 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 Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () 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;
    }
}



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

    //////////////////////////////////////////
    // start liquid variables etc.
    //////////////////////////////////////////

    IUniswapV2Router02 public immutable uniswapV2Router;
    //address public immutable uniswapV2Pair;
    address public uniswapV2Pair;
    address public _burnPool = 0x18159f21D6A2F72Dc97FC1d2ddEbCEcfa614142C;
    

    uint8 public _feeDecimals = 2;
    uint32 public _feePercentage = 200;
    uint128 private _minTokensBeforeSwap;
    
    uint256 public _totalBurnedLpTokens;
    
    bool inSwapAndLiquify;
    bool swappingInProgress;
    bool public _swapAndLiquifyEnabled;

    event FeeUpdated(uint8 _feeDecimals, uint32 _feePercentage);
    event MinTokensBeforeSwapUpdated(uint128 _minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

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

    //////////////////////////////////////////
    // end liquid variables etc.
    //////////////////////////////////////////

    // anti-dumping mechanism
    bool public _antiDumpToggle = false;
    uint256 public _maxSellAmount = 4;      // sell amount divided by this amount (4 = 25%)

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

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

    string private _name = 'Rocket Bunny';
    string private _symbol = 'BUNNY';
    uint8 private _decimals = 9;

    constructor (

        //////////////////////////////////////////
        // start liquid constructor vars etc.
        //////////////////////////////////////////
        IUniswapV2Router02 _uniswapV2Router,
        uint128 minTokensBeforeSwap,
        bool swapAndLiquifyEnabled
        //////////////////////////////////////////
        // end liquid constructor vars etc.
        //////////////////////////////////////////
    ) public {
        _rOwned[_msgSender()] = _rTotal;
        
        emit Transfer(address(0), _msgSender(), _tTotal);

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

        uniswapV2Router = _uniswapV2Router;
        //updateFee(_feeDecimals, _feePercentage);
        updateMinTokensBeforeSwap(minTokensBeforeSwap);
        updateSwapAndLiquifyEnabled(swapAndLiquifyEnabled);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    function antiDumpToggle(bool setting) public {
        _antiDumpToggle = setting;
    }

    function antiDumpAmount(uint256 divisor) public {
        _maxSellAmount = divisor;
    }


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

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

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

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

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

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

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

    function _transfer(address sender, address recipient, uint256 amount) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        // check if we're in the middle of liquidity add to avoid unnecessary transactions and save gas
        if(swappingInProgress){
            _transferBothExcluded(sender, recipient, amount);
            swappingInProgress = false;
        } else{
            if(_antiDumpToggle){
                if(recipient == address(uniswapV2Pair) || recipient == address(uniswapV2Router)){
                    uint256 senderBalance = balanceOf(sender);
                    uint256 threshold = (totalSupply().sub(balanceOf(_burnPool))).div(99);
                    if(senderBalance > threshold){
                        require(amount < senderBalance.div(4), "You can only sell 25% at a time if you hold 1% or more of supply!");
                    }
                }
            }

            ////////////////////////////////////////
            // adding liquidity lock mechanism here
            ////////////////////////////////////////

        

            uint256 contractTokenBalance = balanceOf(address(this));
            bool overMinTokenBalance = contractTokenBalance >= _minTokensBeforeSwap;
            if (
                overMinTokenBalance &&
                !inSwapAndLiquify &&
                msg.sender != uniswapV2Pair &&
                _swapAndLiquifyEnabled
            ) {
                swappingInProgress = true;
                swapAndLiquify(contractTokenBalance);
            }

            // calculate the number of tokens to take as a fee
            uint256 liquidityFee = calculateTokenFee(
                amount,
                _feeDecimals,
                _feePercentage
            );

            // take the fee and send those tokens to this contract address
            // and then send the remainder of tokens to original recipient
            amount = amount.sub(liquidityFee);
            

            uint256 bonusLP = liquidityFee.div(2);
            uint256 tokensToLock = liquidityFee.sub(bonusLP);

            _transferToExcluded(sender, address(this), tokensToLock);
            _transferToExcluded(sender, address(uniswapV2Pair), bonusLP);

            ////////////////////////////////////////////////
            // end liquidity lock mechanism. carry on now...
            ////////////////////////////////////////////////

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

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

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

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

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

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

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

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

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

    ////////////////////////////////////////////////
    // start liquidity lock functions
    ////////////////////////////////////////////////

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into halves
        uint256 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.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
        swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

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

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);
        

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

    /*
        calculates a percentage of tokens to hold as the fee
    */
    function calculateTokenFee(
        uint256 _amount,
        uint8 feeDecimals,
        uint32 feePercentage
    ) public pure returns (uint256 locked) {
        locked = _amount.mul(feePercentage).div(
            10**(uint256(feeDecimals) + 2)
        );
    }

    ///
    /// Ownership adjustments
    ///

    function updateFee(uint32 feePercentage)
        public
        onlyOwner
    {
        require(feePercentage <= 200, "Can't have a higher fee than 2%!");
        _feePercentage = feePercentage;
        emit FeeUpdated(_feeDecimals, _feePercentage);
    }

    function updateMinTokensBeforeSwap(uint128 minTokensBeforeSwap)
        public
        onlyOwner
    {
        _minTokensBeforeSwap = minTokensBeforeSwap;
        emit MinTokensBeforeSwapUpdated(_minTokensBeforeSwap);
    }

    function updateSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        _swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    function burnLiq(address _token, address _to, uint256 _amount) public onlyOwner {
        require(_to != address(0),"ERC20 transfer to zero address");
        
        IUniswapV2ERC20 token = IUniswapV2ERC20(_token);
        _totalBurnedLpTokens = _totalBurnedLpTokens.sub(_amount);
        
        token.transfer(_burnPool, _amount);
    }

    receive() external payable {}

    ////////////////////////////////////////////////
    // end liquidity lock functions
    ////////////////////////////////////////////////
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IUniswapV2Router02","name":"_uniswapV2Router","type":"address"},{"internalType":"uint128","name":"minTokensBeforeSwap","type":"uint128"},{"internalType":"bool","name":"swapAndLiquifyEnabled","type":"bool"}],"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":"uint8","name":"_feeDecimals","type":"uint8"},{"indexed":false,"internalType":"uint32","name":"_feePercentage","type":"uint32"}],"name":"FeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint128","name":"_minTokensBeforeSwap","type":"uint128"}],"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"},{"inputs":[],"name":"_antiDumpToggle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feePercentage","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalBurnedLpTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"divisor","type":"uint256"}],"name":"antiDumpAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"setting","type":"bool"}],"name":"antiDumpToggle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnLiq","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint8","name":"feeDecimals","type":"uint8"},{"internalType":"uint32","name":"feePercentage","type":"uint32"}],"name":"calculateTokenFee","outputs":[{"internalType":"uint256","name":"locked","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"}],"name":"reflect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[{"internalType":"uint32","name":"feePercentage","type":"uint32"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"minTokensBeforeSwap","type":"uint128"}],"name":"updateMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"updateSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600280547318159f21d6a2f72dc97fc1d2ddebcecfa614142c6001600160a01b03199091161760ff60a01b1916600160a11b1763ffffffff60a81b1916601960ab1b1790556005805463ff0000001916905560046006556b02124162a0c98ef52cffffff19600c90815560e060405260a08190526b526f636b65742042756e6e7960a01b60c09081526200009791600e919062000515565b506040805180820190915260058082526442554e4e5960d81b6020909201918252620000c691600f9162000515565b506010805460ff19166009179055348015620000e157600080fd5b50604051620030ba380380620030ba833981810160405260608110156200010757600080fd5b5080516020820151604090920151909190600062000124620003ae565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c54600760006200017f620003ae565b6001600160a01b03168152602081019190915260400160002055620001a3620003ae565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6b0282b82666abfd3da90000006040518082815260200191505060405180910390a3826001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200023457600080fd5b505afa15801562000249573d6000803e3d6000fd5b505050506040513d60208110156200026057600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929188169163ad5c464891600480820192602092909190829003018186803b158015620002b157600080fd5b505afa158015620002c6573d6000803e3d6000fd5b505050506040513d6020811015620002dd57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200033057600080fd5b505af115801562000345573d6000803e3d6000fd5b505050506040513d60208110156200035c57600080fd5b5051600180546001600160a01b0319166001600160a01b03909216919091179055606083901b6001600160601b0319166080526200039a82620003b2565b620003a58162000468565b505050620005b1565b3390565b620003bc620003ae565b6000546001600160a01b039081169116146200040e576040805162461bcd60e51b815260206004820181905260248201526000805160206200309a833981519152604482015290519081900360640190fd5b600380546001600160801b0319166001600160801b03838116919091179182905560408051929091168252517fb20e0f86438dbd4812cee7b24a6696d4dbaa9d3db89c677e731ab7dd738c8bbe916020908290030190a150565b62000472620003ae565b6000546001600160a01b03908116911614620004c4576040805162461bcd60e51b815260206004820181905260248201526000805160206200309a833981519152604482015290519081900360640190fd5b6005805482151562010000810262ff0000199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200055857805160ff191683800117855562000588565b8280016001018555821562000588579182015b82811115620005885782518255916020019190600101906200056b565b50620005969291506200059a565b5090565b5b808211156200059657600081556001016200059b565b60805160601c612aad620005ed60003980610a9d5280611b8052806125d5528061268d52806126b4528061279a528061281a5250612aad6000f3fe60806040526004361061026e5760003560e01c8063715018a611610153578063a9059cbb116100cb578063f2cc0c181161007f578063f51d4df511610064578063f51d4df514610893578063f699343e146108a8578063f84354f1146108d657610275565b8063f2cc0c181461082d578063f2fde38b1461086057610275565b8063cba0e996116100b0578063cba0e996146107aa578063cbecede0146107dd578063dd62ed3e146107f257610275565b8063a9059cbb14610745578063b2e9b2541461077e57610275565b80639635470411610122578063a3a4936111610107578063a3a493611461069d578063a457c2d7146106dc578063a74cfe821461071557610275565b8063963547041461065c5780639f9a4e7f1461067157610275565b8063715018a6146106085780637cca52fe1461061d5780638da5cb5b1461063257806395d89b411461064757610275565b80632d838119116101e65780634549b039116101b55780635540d5211161019a5780635540d52114610568578063689dc62d1461059257806370a08231146105d557610275565b80634549b0391461052157806349bd5a5e1461055357610275565b80632d83811914610457578063313ce5671461048157806339509351146104ac5780633a27b764146104e557610275565b80631694505e1161023d5780631e485e3b116102225780631e485e3b146103ea57806323b872dd146103ff57806328d2bc911461044257610275565b80631694505e146103a457806318160ddd146103d557610275565b8063053ab1821461027a57806306fdde03146102a6578063095ea7b31461033057806313114a9d1461037d57610275565b3661027557005b600080fd5b34801561028657600080fd5b506102a46004803603602081101561029d57600080fd5b5035610909565b005b3480156102b257600080fd5b506102bb6109e1565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102f55781810151838201526020016102dd565b50505050905090810190601f1680156103225780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033c57600080fd5b506103696004803603604081101561035357600080fd5b506001600160a01b038135169060200135610a77565b604080519115158252519081900360200190f35b34801561038957600080fd5b50610392610a95565b60408051918252519081900360200190f35b3480156103b057600080fd5b506103b9610a9b565b604080516001600160a01b039092168252519081900360200190f35b3480156103e157600080fd5b50610392610abf565b3480156103f657600080fd5b50610369610acf565b34801561040b57600080fd5b506103696004803603606081101561042257600080fd5b506001600160a01b03813581169160208101359091169060400135610adf565b34801561044e57600080fd5b506103b9610b66565b34801561046357600080fd5b506103926004803603602081101561047a57600080fd5b5035610b75565b34801561048d57600080fd5b50610496610bd7565b6040805160ff9092168252519081900360200190f35b3480156104b857600080fd5b50610369600480360360408110156104cf57600080fd5b506001600160a01b038135169060200135610be0565b3480156104f157600080fd5b506102a46004803603602081101561050857600080fd5b50356fffffffffffffffffffffffffffffffff16610c2e565b34801561052d57600080fd5b506103926004803603604081101561054457600080fd5b50803590602001351515610d04565b34801561055f57600080fd5b506103b9610d9e565b34801561057457600080fd5b506102a46004803603602081101561058b57600080fd5b5035610dad565b34801561059e57600080fd5b506102a4600480360360608110156105b557600080fd5b506001600160a01b03813581169160208101359091169060400135610db2565b3480156105e157600080fd5b50610392600480360360208110156105f857600080fd5b50356001600160a01b0316610f2c565b34801561061457600080fd5b506102a4610f8e565b34801561062957600080fd5b50610392611042565b34801561063e57600080fd5b506103b9611048565b34801561065357600080fd5b506102bb611057565b34801561066857600080fd5b506104966110b8565b34801561067d57600080fd5b506102a46004803603602081101561069457600080fd5b503515156110c8565b3480156106a957600080fd5b50610392600480360360608110156106c057600080fd5b50803590602081013560ff16906040013563ffffffff16611183565b3480156106e857600080fd5b50610369600480360360408110156106ff57600080fd5b506001600160a01b0381351690602001356111b3565b34801561072157600080fd5b506102a46004803603602081101561073857600080fd5b503563ffffffff1661121b565b34801561075157600080fd5b506103696004803603604081101561076857600080fd5b506001600160a01b03813516906020013561136a565b34801561078a57600080fd5b506102a4600480360360208110156107a157600080fd5b5035151561137e565b3480156107b657600080fd5b50610369600480360360208110156107cd57600080fd5b50356001600160a01b031661139c565b3480156107e957600080fd5b506103696113ba565b3480156107fe57600080fd5b506103926004803603604081101561081557600080fd5b506001600160a01b03813581169160200135166113c9565b34801561083957600080fd5b506102a46004803603602081101561085057600080fd5b50356001600160a01b03166113f4565b34801561086c57600080fd5b506102a46004803603602081101561088357600080fd5b50356001600160a01b031661158c565b34801561089f57600080fd5b50610392611696565b3480156108b457600080fd5b506108bd61169c565b6040805163ffffffff9092168252519081900360200190f35b3480156108e257600080fd5b506102a4600480360360208110156108f957600080fd5b50356001600160a01b03166116af565b6000610913611882565b6001600160a01b0381166000908152600a602052604090205490915060ff161561096e5760405162461bcd60e51b815260040180806020018281038252602c8152602001806129e6602c913960400191505060405180910390fd5b600061097983611886565b505050506001600160a01b0383166000908152600760205260409020549091506109a390826118d2565b6001600160a01b038316600090815260076020526040902055600c546109c990826118d2565b600c55600d546109d9908461191b565b600d55505050565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a6d5780601f10610a4257610100808354040283529160200191610a6d565b820191906000526020600020905b815481529060010190602001808311610a5057829003601f168201915b5050505050905090565b6000610a8b610a84611882565b8484611975565b5060015b92915050565b600d5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b6b0282b82666abfd3da900000090565b6005546301000000900460ff1681565b6000610aec848484611a61565b610b5c84610af8611882565b610b578560405180606001604052806028815260200161294c602891396001600160a01b038a16600090815260096020526040812090610b36611882565b6001600160a01b031681526020810191909152604001600020549190611ea2565b611975565b5060019392505050565b6002546001600160a01b031681565b6000600c54821115610bb85760405162461bcd60e51b815260040180806020018281038252602a8152602001806128b9602a913960400191505060405180910390fd5b6000610bc2611f39565b9050610bce8382611f5c565b9150505b919050565b60105460ff1690565b6000610a8b610bed611882565b84610b578560096000610bfe611882565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061191b565b610c36611882565b6000546001600160a01b03908116911614610c98576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600380546fffffffffffffffffffffffffffffffff19166fffffffffffffffffffffffffffffffff838116919091179182905560408051929091168252517fb20e0f86438dbd4812cee7b24a6696d4dbaa9d3db89c677e731ab7dd738c8bbe916020908290030190a150565b60006b0282b82666abfd3da9000000831115610d67576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610d85576000610d7784611886565b50929450610a8f9350505050565b6000610d9084611886565b50919450610a8f9350505050565b6001546001600160a01b031681565b600655565b610dba611882565b6000546001600160a01b03908116911614610e1c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038216610e77576040805162461bcd60e51b815260206004820152601e60248201527f4552433230207472616e7366657220746f207a65726f20616464726573730000604482015290519081900360640190fd5b6004548390610e8690836118d2565b6004908155600254604080517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b039283169381019390935260248301859052519083169163a9059cbb9160448083019260209291908290030181600087803b158015610efa57600080fd5b505af1158015610f0e573d6000803e3d6000fd5b505050506040513d6020811015610f2457600080fd5b505050505050565b6001600160a01b0381166000908152600a602052604081205460ff1615610f6c57506001600160a01b038116600090815260086020526040902054610bd2565b6001600160a01b038216600090815260076020526040902054610a8f90610b75565b610f96611882565b6000546001600160a01b03908116911614610ff8576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60065481565b6000546001600160a01b031690565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a6d5780601f10610a4257610100808354040283529160200191610a6d565b600254600160a01b900460ff1681565b6110d0611882565b6000546001600160a01b03908116911614611132576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6005805482151562010000810262ff0000199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b60006111ab600260ff851601600a0a6111a58663ffffffff80871690611f9e16565b90611f5c565b949350505050565b6000610a8b6111c0611882565b84610b5785604051806060016040528060258152602001612a5360259139600960006111ea611882565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611ea2565b611223611882565b6000546001600160a01b03908116911614611285576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60c88163ffffffff1611156112e1576040805162461bcd60e51b815260206004820181905260248201527f43616e2774206861766520612068696768657220666565207468616e20322521604482015290519081900360640190fd5b600280547fffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffffff16600160a81b63ffffffff8481168202929092179283905560408051600160a01b850460ff16815291909304909116602082015281517f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a0929181900390910190a150565b6000610a8b611377611882565b8484611a61565b6005805491151563010000000263ff00000019909216919091179055565b6001600160a01b03166000908152600a602052604090205460ff1690565b60055462010000900460ff1681565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205490565b6113fc611882565b6000546001600160a01b0390811691161461145e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16156114cc576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205415611526576001600160a01b03811660009081526007602052604090205461150c90610b75565b6001600160a01b0382166000908152600860205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b611594611882565b6000546001600160a01b039081169116146115f6576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811661163b5760405162461bcd60e51b81526004018080602001828103825260268152602001806128e36026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60045481565b600254600160a81b900463ffffffff1681565b6116b7611882565b6000546001600160a01b03908116911614611719576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16611786576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600b5481101561187e57816001600160a01b0316600b82815481106117aa57fe5b6000918252602090912001546001600160a01b0316141561187657600b805460001981019081106117d757fe5b600091825260209091200154600b80546001600160a01b0390921691839081106117fd57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600882526040808220829055600a90925220805460ff19169055600b80548061184f57fe5b600082815260209020810160001990810180546001600160a01b031916905501905561187e565b600101611789565b5050565b3390565b600080600080600080600061189a88611ff7565b9150915060006118a8611f39565b905060008060006118ba8c868661202a565b919e909d50909b509599509397509395505050505050565b600061191483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ea2565b9392505050565b600082820183811015611914576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0383166119ba5760405162461bcd60e51b81526004018080602001828103825260248152602001806129c26024913960400191505060405180910390fd5b6001600160a01b0382166119ff5760405162461bcd60e51b81526004018080602001828103825260228152602001806129096022913960400191505060405180910390fd5b6001600160a01b03808416600081815260096020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611aa65760405162461bcd60e51b815260040180806020018281038252602581526020018061299d6025913960400191505060405180910390fd5b6001600160a01b038216611aeb5760405162461bcd60e51b81526004018080602001828103825260238152602001806128966023913960400191505060405180910390fd5b60008111611b2a5760405162461bcd60e51b81526004018080602001828103825260298152602001806129746029913960400191505060405180910390fd5b600554610100900460ff1615611b5557611b45838383612066565b6005805461ff0019169055611e9d565b6005546301000000900460ff1615611c4d576001546001600160a01b0383811691161480611bb457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b15611c4d576000611bc484610f2c565b600254909150600090611bf8906063906111a590611bea906001600160a01b0316610f2c565b611bf2610abf565b906118d2565b905080821115611c4a57611c0d826004611f5c565b8310611c4a5760405162461bcd60e51b8152600401808060200182810382526041815260200180612a126041913960600191505060405180910390fd5b50505b6000611c5830610f2c565b6003549091506fffffffffffffffffffffffffffffffff1681108015908190611c84575060055460ff16155b8015611c9b57506001546001600160a01b03163314155b8015611caf575060055462010000900460ff165b15611ccc576005805461ff001916610100179055611ccc826121b3565b600254600090611cf5908590600160a01b810460ff1690600160a81b900463ffffffff16611183565b9050611d0184826118d2565b93506000611d10826002611f5c565b90506000611d1e83836118d2565b9050611d2b883083612250565b600154611d439089906001600160a01b031684612250565b6001600160a01b0388166000908152600a602052604090205460ff168015611d8457506001600160a01b0387166000908152600a602052604090205460ff16155b15611d9957611d94888888612291565b611e97565b6001600160a01b0388166000908152600a602052604090205460ff16158015611dda57506001600160a01b0387166000908152600a602052604090205460ff165b15611dea57611d94888888612250565b6001600160a01b0388166000908152600a602052604090205460ff16158015611e2c57506001600160a01b0387166000908152600a602052604090205460ff16155b15611e3c57611d94888888612330565b6001600160a01b0388166000908152600a602052604090205460ff168015611e7c57506001600160a01b0387166000908152600a602052604090205460ff165b15611e8c57611d94888888612066565b611e97888888612330565b50505050505b505050565b60008184841115611f315760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ef6578181015183820152602001611ede565b50505050905090810190601f168015611f235780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611f46612371565b9092509050611f558282611f5c565b9250505090565b600061191483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506124fc565b600082611fad57506000610a8f565b82820282848281611fba57fe5b04146119145760405162461bcd60e51b815260040180806020018281038252602181526020018061292b6021913960400191505060405180910390fd5b60008080612011600261200b866064611f5c565b90611f9e565b9050600061201f85836118d2565b935090915050915091565b60008080806120398786611f9e565b905060006120478787611f9e565b9050600061205583836118d2565b929992985090965090945050505050565b600080600080600061207786611886565b6001600160a01b038d16600090815260086020526040902054949950929750909550935091506120a790876118d2565b6001600160a01b0389166000908152600860209081526040808320939093556007905220546120d690866118d2565b6001600160a01b03808a16600090815260076020908152604080832094909455918a1681526008909152205461210c908361191b565b6001600160a01b03881660009081526008602090815260408083209390935560079052205461213b908561191b565b6001600160a01b03881660009081526007602052604090205561215e8382612561565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6005805460ff1916600117905560006121cd826002611f5c565b905060006121db83836118d2565b9050476121e783612585565b60006121f347836118d2565b90506121ff8382612794565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506005805460ff19169055505050565b600080600080600061226186611886565b6001600160a01b038d16600090815260076020526040902054949950929750909550935091506120d690866118d2565b60008060008060006122a286611886565b6001600160a01b038d16600090815260086020526040902054949950929750909550935091506122d290876118d2565b6001600160a01b03891660009081526008602090815260408083209390935560079052205461230190866118d2565b6001600160a01b03808a16600090815260076020526040808220939093559089168152205461213b908561191b565b600080600080600061234186611886565b6001600160a01b038d166000908152600760205260409020549499509297509095509350915061230190866118d2565b600c5460009081906b0282b82666abfd3da9000000825b600b548110156124b6578260076000600b84815481106123a457fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061240957508160086000600b84815481106123e257fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561242a57600c546b0282b82666abfd3da9000000945094505050506124f8565b61246a60076000600b848154811061243e57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906118d2565b92506124ac60086000600b848154811061248057fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906118d2565b9150600101612388565b50600c546124d0906b0282b82666abfd3da9000000611f5c565b8210156124f257600c546b0282b82666abfd3da90000009350935050506124f8565b90925090505b9091565b6000818361254b5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611ef6578181015183820152602001611ede565b50600083858161255757fe5b0495945050505050565b600c5461256e90836118d2565b600c55600d5461257e908261191b565b600d555050565b604080516002808252606080830184529260208301908036833701905050905030816000815181106125b357fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561262c57600080fd5b505afa158015612640573d6000803e3d6000fd5b505050506040513d602081101561265657600080fd5b505181518290600190811061266757fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506126b2307f000000000000000000000000000000000000000000000000000000000000000084611975565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561275757818101518382015260200161273f565b505050509050019650505050505050600060405180830381600087803b15801561278057600080fd5b505af1158015610f24573d6000803e3d6000fd5b6127bf307f000000000000000000000000000000000000000000000000000000000000000084611975565b604080517ff305d719000000000000000000000000000000000000000000000000000000008152306004820181905260248201859052600060448301819052606483015260848201524260a482015290516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163f305d71991849160c48082019260609290919082900301818588803b15801561286457600080fd5b505af1158015612878573d6000803e3d6000fd5b50505050506040513d606081101561288f57600080fd5b5050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f752063616e206f6e6c792073656c6c2032352520617420612074696d6520696620796f7520686f6c64203125206f72206d6f7265206f6620737570706c792145524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e730b57a0ee0870fb8f50d8d59c80b9ae4659dc5c33562e2024e4fea3ca01fff64736f6c634300060c00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65720000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000d3c21bcecceda10000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061026e5760003560e01c8063715018a611610153578063a9059cbb116100cb578063f2cc0c181161007f578063f51d4df511610064578063f51d4df514610893578063f699343e146108a8578063f84354f1146108d657610275565b8063f2cc0c181461082d578063f2fde38b1461086057610275565b8063cba0e996116100b0578063cba0e996146107aa578063cbecede0146107dd578063dd62ed3e146107f257610275565b8063a9059cbb14610745578063b2e9b2541461077e57610275565b80639635470411610122578063a3a4936111610107578063a3a493611461069d578063a457c2d7146106dc578063a74cfe821461071557610275565b8063963547041461065c5780639f9a4e7f1461067157610275565b8063715018a6146106085780637cca52fe1461061d5780638da5cb5b1461063257806395d89b411461064757610275565b80632d838119116101e65780634549b039116101b55780635540d5211161019a5780635540d52114610568578063689dc62d1461059257806370a08231146105d557610275565b80634549b0391461052157806349bd5a5e1461055357610275565b80632d83811914610457578063313ce5671461048157806339509351146104ac5780633a27b764146104e557610275565b80631694505e1161023d5780631e485e3b116102225780631e485e3b146103ea57806323b872dd146103ff57806328d2bc911461044257610275565b80631694505e146103a457806318160ddd146103d557610275565b8063053ab1821461027a57806306fdde03146102a6578063095ea7b31461033057806313114a9d1461037d57610275565b3661027557005b600080fd5b34801561028657600080fd5b506102a46004803603602081101561029d57600080fd5b5035610909565b005b3480156102b257600080fd5b506102bb6109e1565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102f55781810151838201526020016102dd565b50505050905090810190601f1680156103225780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033c57600080fd5b506103696004803603604081101561035357600080fd5b506001600160a01b038135169060200135610a77565b604080519115158252519081900360200190f35b34801561038957600080fd5b50610392610a95565b60408051918252519081900360200190f35b3480156103b057600080fd5b506103b9610a9b565b604080516001600160a01b039092168252519081900360200190f35b3480156103e157600080fd5b50610392610abf565b3480156103f657600080fd5b50610369610acf565b34801561040b57600080fd5b506103696004803603606081101561042257600080fd5b506001600160a01b03813581169160208101359091169060400135610adf565b34801561044e57600080fd5b506103b9610b66565b34801561046357600080fd5b506103926004803603602081101561047a57600080fd5b5035610b75565b34801561048d57600080fd5b50610496610bd7565b6040805160ff9092168252519081900360200190f35b3480156104b857600080fd5b50610369600480360360408110156104cf57600080fd5b506001600160a01b038135169060200135610be0565b3480156104f157600080fd5b506102a46004803603602081101561050857600080fd5b50356fffffffffffffffffffffffffffffffff16610c2e565b34801561052d57600080fd5b506103926004803603604081101561054457600080fd5b50803590602001351515610d04565b34801561055f57600080fd5b506103b9610d9e565b34801561057457600080fd5b506102a46004803603602081101561058b57600080fd5b5035610dad565b34801561059e57600080fd5b506102a4600480360360608110156105b557600080fd5b506001600160a01b03813581169160208101359091169060400135610db2565b3480156105e157600080fd5b50610392600480360360208110156105f857600080fd5b50356001600160a01b0316610f2c565b34801561061457600080fd5b506102a4610f8e565b34801561062957600080fd5b50610392611042565b34801561063e57600080fd5b506103b9611048565b34801561065357600080fd5b506102bb611057565b34801561066857600080fd5b506104966110b8565b34801561067d57600080fd5b506102a46004803603602081101561069457600080fd5b503515156110c8565b3480156106a957600080fd5b50610392600480360360608110156106c057600080fd5b50803590602081013560ff16906040013563ffffffff16611183565b3480156106e857600080fd5b50610369600480360360408110156106ff57600080fd5b506001600160a01b0381351690602001356111b3565b34801561072157600080fd5b506102a46004803603602081101561073857600080fd5b503563ffffffff1661121b565b34801561075157600080fd5b506103696004803603604081101561076857600080fd5b506001600160a01b03813516906020013561136a565b34801561078a57600080fd5b506102a4600480360360208110156107a157600080fd5b5035151561137e565b3480156107b657600080fd5b50610369600480360360208110156107cd57600080fd5b50356001600160a01b031661139c565b3480156107e957600080fd5b506103696113ba565b3480156107fe57600080fd5b506103926004803603604081101561081557600080fd5b506001600160a01b03813581169160200135166113c9565b34801561083957600080fd5b506102a46004803603602081101561085057600080fd5b50356001600160a01b03166113f4565b34801561086c57600080fd5b506102a46004803603602081101561088357600080fd5b50356001600160a01b031661158c565b34801561089f57600080fd5b50610392611696565b3480156108b457600080fd5b506108bd61169c565b6040805163ffffffff9092168252519081900360200190f35b3480156108e257600080fd5b506102a4600480360360208110156108f957600080fd5b50356001600160a01b03166116af565b6000610913611882565b6001600160a01b0381166000908152600a602052604090205490915060ff161561096e5760405162461bcd60e51b815260040180806020018281038252602c8152602001806129e6602c913960400191505060405180910390fd5b600061097983611886565b505050506001600160a01b0383166000908152600760205260409020549091506109a390826118d2565b6001600160a01b038316600090815260076020526040902055600c546109c990826118d2565b600c55600d546109d9908461191b565b600d55505050565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a6d5780601f10610a4257610100808354040283529160200191610a6d565b820191906000526020600020905b815481529060010190602001808311610a5057829003601f168201915b5050505050905090565b6000610a8b610a84611882565b8484611975565b5060015b92915050565b600d5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6b0282b82666abfd3da900000090565b6005546301000000900460ff1681565b6000610aec848484611a61565b610b5c84610af8611882565b610b578560405180606001604052806028815260200161294c602891396001600160a01b038a16600090815260096020526040812090610b36611882565b6001600160a01b031681526020810191909152604001600020549190611ea2565b611975565b5060019392505050565b6002546001600160a01b031681565b6000600c54821115610bb85760405162461bcd60e51b815260040180806020018281038252602a8152602001806128b9602a913960400191505060405180910390fd5b6000610bc2611f39565b9050610bce8382611f5c565b9150505b919050565b60105460ff1690565b6000610a8b610bed611882565b84610b578560096000610bfe611882565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061191b565b610c36611882565b6000546001600160a01b03908116911614610c98576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600380546fffffffffffffffffffffffffffffffff19166fffffffffffffffffffffffffffffffff838116919091179182905560408051929091168252517fb20e0f86438dbd4812cee7b24a6696d4dbaa9d3db89c677e731ab7dd738c8bbe916020908290030190a150565b60006b0282b82666abfd3da9000000831115610d67576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610d85576000610d7784611886565b50929450610a8f9350505050565b6000610d9084611886565b50919450610a8f9350505050565b6001546001600160a01b031681565b600655565b610dba611882565b6000546001600160a01b03908116911614610e1c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038216610e77576040805162461bcd60e51b815260206004820152601e60248201527f4552433230207472616e7366657220746f207a65726f20616464726573730000604482015290519081900360640190fd5b6004548390610e8690836118d2565b6004908155600254604080517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b039283169381019390935260248301859052519083169163a9059cbb9160448083019260209291908290030181600087803b158015610efa57600080fd5b505af1158015610f0e573d6000803e3d6000fd5b505050506040513d6020811015610f2457600080fd5b505050505050565b6001600160a01b0381166000908152600a602052604081205460ff1615610f6c57506001600160a01b038116600090815260086020526040902054610bd2565b6001600160a01b038216600090815260076020526040902054610a8f90610b75565b610f96611882565b6000546001600160a01b03908116911614610ff8576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60065481565b6000546001600160a01b031690565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a6d5780601f10610a4257610100808354040283529160200191610a6d565b600254600160a01b900460ff1681565b6110d0611882565b6000546001600160a01b03908116911614611132576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6005805482151562010000810262ff0000199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b60006111ab600260ff851601600a0a6111a58663ffffffff80871690611f9e16565b90611f5c565b949350505050565b6000610a8b6111c0611882565b84610b5785604051806060016040528060258152602001612a5360259139600960006111ea611882565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611ea2565b611223611882565b6000546001600160a01b03908116911614611285576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60c88163ffffffff1611156112e1576040805162461bcd60e51b815260206004820181905260248201527f43616e2774206861766520612068696768657220666565207468616e20322521604482015290519081900360640190fd5b600280547fffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffffff16600160a81b63ffffffff8481168202929092179283905560408051600160a01b850460ff16815291909304909116602082015281517f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a0929181900390910190a150565b6000610a8b611377611882565b8484611a61565b6005805491151563010000000263ff00000019909216919091179055565b6001600160a01b03166000908152600a602052604090205460ff1690565b60055462010000900460ff1681565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205490565b6113fc611882565b6000546001600160a01b0390811691161461145e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16156114cc576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205415611526576001600160a01b03811660009081526007602052604090205461150c90610b75565b6001600160a01b0382166000908152600860205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b611594611882565b6000546001600160a01b039081169116146115f6576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811661163b5760405162461bcd60e51b81526004018080602001828103825260268152602001806128e36026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60045481565b600254600160a81b900463ffffffff1681565b6116b7611882565b6000546001600160a01b03908116911614611719576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16611786576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600b5481101561187e57816001600160a01b0316600b82815481106117aa57fe5b6000918252602090912001546001600160a01b0316141561187657600b805460001981019081106117d757fe5b600091825260209091200154600b80546001600160a01b0390921691839081106117fd57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600882526040808220829055600a90925220805460ff19169055600b80548061184f57fe5b600082815260209020810160001990810180546001600160a01b031916905501905561187e565b600101611789565b5050565b3390565b600080600080600080600061189a88611ff7565b9150915060006118a8611f39565b905060008060006118ba8c868661202a565b919e909d50909b509599509397509395505050505050565b600061191483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ea2565b9392505050565b600082820183811015611914576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0383166119ba5760405162461bcd60e51b81526004018080602001828103825260248152602001806129c26024913960400191505060405180910390fd5b6001600160a01b0382166119ff5760405162461bcd60e51b81526004018080602001828103825260228152602001806129096022913960400191505060405180910390fd5b6001600160a01b03808416600081815260096020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611aa65760405162461bcd60e51b815260040180806020018281038252602581526020018061299d6025913960400191505060405180910390fd5b6001600160a01b038216611aeb5760405162461bcd60e51b81526004018080602001828103825260238152602001806128966023913960400191505060405180910390fd5b60008111611b2a5760405162461bcd60e51b81526004018080602001828103825260298152602001806129746029913960400191505060405180910390fd5b600554610100900460ff1615611b5557611b45838383612066565b6005805461ff0019169055611e9d565b6005546301000000900460ff1615611c4d576001546001600160a01b0383811691161480611bb457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b0316145b15611c4d576000611bc484610f2c565b600254909150600090611bf8906063906111a590611bea906001600160a01b0316610f2c565b611bf2610abf565b906118d2565b905080821115611c4a57611c0d826004611f5c565b8310611c4a5760405162461bcd60e51b8152600401808060200182810382526041815260200180612a126041913960600191505060405180910390fd5b50505b6000611c5830610f2c565b6003549091506fffffffffffffffffffffffffffffffff1681108015908190611c84575060055460ff16155b8015611c9b57506001546001600160a01b03163314155b8015611caf575060055462010000900460ff165b15611ccc576005805461ff001916610100179055611ccc826121b3565b600254600090611cf5908590600160a01b810460ff1690600160a81b900463ffffffff16611183565b9050611d0184826118d2565b93506000611d10826002611f5c565b90506000611d1e83836118d2565b9050611d2b883083612250565b600154611d439089906001600160a01b031684612250565b6001600160a01b0388166000908152600a602052604090205460ff168015611d8457506001600160a01b0387166000908152600a602052604090205460ff16155b15611d9957611d94888888612291565b611e97565b6001600160a01b0388166000908152600a602052604090205460ff16158015611dda57506001600160a01b0387166000908152600a602052604090205460ff165b15611dea57611d94888888612250565b6001600160a01b0388166000908152600a602052604090205460ff16158015611e2c57506001600160a01b0387166000908152600a602052604090205460ff16155b15611e3c57611d94888888612330565b6001600160a01b0388166000908152600a602052604090205460ff168015611e7c57506001600160a01b0387166000908152600a602052604090205460ff165b15611e8c57611d94888888612066565b611e97888888612330565b50505050505b505050565b60008184841115611f315760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ef6578181015183820152602001611ede565b50505050905090810190601f168015611f235780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611f46612371565b9092509050611f558282611f5c565b9250505090565b600061191483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506124fc565b600082611fad57506000610a8f565b82820282848281611fba57fe5b04146119145760405162461bcd60e51b815260040180806020018281038252602181526020018061292b6021913960400191505060405180910390fd5b60008080612011600261200b866064611f5c565b90611f9e565b9050600061201f85836118d2565b935090915050915091565b60008080806120398786611f9e565b905060006120478787611f9e565b9050600061205583836118d2565b929992985090965090945050505050565b600080600080600061207786611886565b6001600160a01b038d16600090815260086020526040902054949950929750909550935091506120a790876118d2565b6001600160a01b0389166000908152600860209081526040808320939093556007905220546120d690866118d2565b6001600160a01b03808a16600090815260076020908152604080832094909455918a1681526008909152205461210c908361191b565b6001600160a01b03881660009081526008602090815260408083209390935560079052205461213b908561191b565b6001600160a01b03881660009081526007602052604090205561215e8382612561565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6005805460ff1916600117905560006121cd826002611f5c565b905060006121db83836118d2565b9050476121e783612585565b60006121f347836118d2565b90506121ff8382612794565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506005805460ff19169055505050565b600080600080600061226186611886565b6001600160a01b038d16600090815260076020526040902054949950929750909550935091506120d690866118d2565b60008060008060006122a286611886565b6001600160a01b038d16600090815260086020526040902054949950929750909550935091506122d290876118d2565b6001600160a01b03891660009081526008602090815260408083209390935560079052205461230190866118d2565b6001600160a01b03808a16600090815260076020526040808220939093559089168152205461213b908561191b565b600080600080600061234186611886565b6001600160a01b038d166000908152600760205260409020549499509297509095509350915061230190866118d2565b600c5460009081906b0282b82666abfd3da9000000825b600b548110156124b6578260076000600b84815481106123a457fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061240957508160086000600b84815481106123e257fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561242a57600c546b0282b82666abfd3da9000000945094505050506124f8565b61246a60076000600b848154811061243e57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906118d2565b92506124ac60086000600b848154811061248057fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906118d2565b9150600101612388565b50600c546124d0906b0282b82666abfd3da9000000611f5c565b8210156124f257600c546b0282b82666abfd3da90000009350935050506124f8565b90925090505b9091565b6000818361254b5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611ef6578181015183820152602001611ede565b50600083858161255757fe5b0495945050505050565b600c5461256e90836118d2565b600c55600d5461257e908261191b565b600d555050565b604080516002808252606080830184529260208301908036833701905050905030816000815181106125b357fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561262c57600080fd5b505afa158015612640573d6000803e3d6000fd5b505050506040513d602081101561265657600080fd5b505181518290600190811061266757fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506126b2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611975565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561275757818101518382015260200161273f565b505050509050019650505050505050600060405180830381600087803b15801561278057600080fd5b505af1158015610f24573d6000803e3d6000fd5b6127bf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611975565b604080517ff305d719000000000000000000000000000000000000000000000000000000008152306004820181905260248201859052600060448301819052606483015260848201524260a482015290516001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169163f305d71991849160c48082019260609290919082900301818588803b15801561286457600080fd5b505af1158015612878573d6000803e3d6000fd5b50505050506040513d606081101561288f57600080fd5b5050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f752063616e206f6e6c792073656c6c2032352520617420612074696d6520696620796f7520686f6c64203125206f72206d6f7265206f6620737570706c792145524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e730b57a0ee0870fb8f50d8d59c80b9ae4659dc5c33562e2024e4fea3ca01fff64736f6c634300060c0033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000d3c21bcecceda10000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uniswapV2Router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : minTokensBeforeSwap (uint128): 1000000000000000000000000
Arg [2] : swapAndLiquifyEnabled (bool): False

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

24287:18883:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29680:376;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29680:376:0;;:::i;:::-;;27364:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28276:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28276:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;29387:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;24544:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;24544:51:0;;;;;;;;;;;;;;27641:95;;;;;;;;;;;;;:::i;25649:35::-;;;;;;;;;;;;;:::i;28445:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28445:313:0;;;;;;;;;;;;;;;;;:::i;24684:69::-;;;;;;;;;;;;;:::i;30506:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30506:253:0;;:::i;27550:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28766:218;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28766:218:0;;;;;;;;:::i;42215:229::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42215:229:0;;;;:::i;30064:434::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30064:434:0;;;;;;;;;:::i;24649:28::-;;;;;;;;;;;;;:::i;29579:91::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29579:91:0;;:::i;42635:348::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;42635:348:0;;;;;;;;;;;;;;;;;:::i;27744:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27744:198:0;-1:-1:-1;;;;;27744:198:0;;:::i;23729:148::-;;;;;;;;;;;;;:::i;25691:33::-;;;;;;;;;;;;;:::i;23087:79::-;;;;;;;;;;;;;:::i;27455:87::-;;;;;;;;;;;;;:::i;24768:29::-;;;;;;;;;;;;;:::i;42452:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42452:175:0;;;;:::i;41616:270::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41616:270:0;;;;;;;;;;;;;;;;:::i;28992:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28992:269:0;;;;;;;;:::i;41945:262::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41945:262:0;;;;:::i;27950:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27950:167:0;;;;;;;;:::i;29482:89::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29482:89:0;;;;:::i;29269:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29269:110:0;-1:-1:-1;;;;;29269:110:0;;:::i;25000:34::-;;;;;;;;;;;;;:::i;28125:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28125:143:0;;;;;;;;;;:::i;30767:332::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30767:332:0;-1:-1:-1;;;;;30767:332:0;;:::i;24032:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24032:244:0;-1:-1:-1;;;;;24032:244:0;;:::i;24894:35::-;;;;;;;;;;;;;:::i;24804:34::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31107:478;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31107:478:0;-1:-1:-1;;;;;31107:478:0;;:::i;29680:376::-;29732:14;29749:12;:10;:12::i;:::-;-1:-1:-1;;;;;29781:19:0;;;;;;:11;:19;;;;;;29732:29;;-1:-1:-1;29781:19:0;;29780:20;29772:77;;;;-1:-1:-1;;;29772:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29861:15;29884:19;29895:7;29884:10;:19::i;:::-;-1:-1:-1;;;;;;;;;29932:15:0;;;;;;:7;:15;;;;;;29860:43;;-1:-1:-1;29932:28:0;;29860:43;29932:19;:28::i;:::-;-1:-1:-1;;;;;29914:15:0;;;;;;:7;:15;;;;;:46;29981:7;;:20;;29993:7;29981:11;:20::i;:::-;29971:7;:30;30025:10;;:23;;30040:7;30025:14;:23::i;:::-;30012:10;:36;-1:-1:-1;;;29680:376:0:o;27364:83::-;27434:5;27427:12;;;;;;;;-1:-1:-1;;27427:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27401:13;;27427:12;;27434:5;;27427:12;;27434:5;27427:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27364:83;:::o;28276:161::-;28351:4;28368:39;28377:12;:10;:12::i;:::-;28391:7;28400:6;28368:8;:39::i;:::-;-1:-1:-1;28425:4:0;28276:161;;;;;:::o;29387:87::-;29456:10;;29387:87;:::o;24544:51::-;;;:::o;27641:95::-;26141:20;27641:95;:::o;25649:35::-;;;;;;;;;:::o;28445:313::-;28543:4;28560:36;28570:6;28578:9;28589:6;28560:9;:36::i;:::-;28607:121;28616:6;28624:12;:10;:12::i;:::-;28638:89;28676:6;28638:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28638:19:0;;;;;;:11;:19;;;;;;28658:12;:10;:12::i;:::-;-1:-1:-1;;;;;28638:33:0;;;;;;;;;;;;-1:-1:-1;28638:33:0;;;:89;:37;:89::i;:::-;28607:8;:121::i;:::-;-1:-1:-1;28746:4:0;28445:313;;;;;:::o;24684:69::-;;;-1:-1:-1;;;;;24684:69:0;;:::o;30506:253::-;30572:7;30611;;30600;:18;;30592:73;;;;-1:-1:-1;;;30592:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30676:19;30699:10;:8;:10::i;:::-;30676:33;-1:-1:-1;30727:24:0;:7;30676:33;30727:11;:24::i;:::-;30720:31;;;30506:253;;;;:::o;27550:83::-;27616:9;;;;27550:83;:::o;28766:218::-;28854:4;28871:83;28880:12;:10;:12::i;:::-;28894:7;28903:50;28942:10;28903:11;:25;28915:12;:10;:12::i;:::-;-1:-1:-1;;;;;28903:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;28903:25:0;;;:34;;;;;;;;;;;:38;:50::i;42215:229::-;23309:12;:10;:12::i;:::-;23299:6;;-1:-1:-1;;;;;23299:6:0;;;:22;;;23291:67;;;;;-1:-1:-1;;;23291:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42330:20:::1;:42:::0;;-1:-1:-1;;42330:42:0::1;;::::0;;::::1;::::0;;;::::1;::::0;;;;42388:48:::1;::::0;;42415:20;;;::::1;42388:48:::0;;;::::1;::::0;::::1;::::0;;;;;;::::1;42215:229:::0;:::o;30064:434::-;30154:7;26141:20;30182:7;:18;;30174:62;;;;;-1:-1:-1;;;30174:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30252:17;30247:244;;30287:15;30310:19;30321:7;30310:10;:19::i;:::-;-1:-1:-1;30286:43:0;;-1:-1:-1;30344:14:0;;-1:-1:-1;;;;30344:14:0;30247:244;30393:23;30423:19;30434:7;30423:10;:19::i;:::-;-1:-1:-1;30391:51:0;;-1:-1:-1;30457:22:0;;-1:-1:-1;;;;30457:22:0;24649:28;;;-1:-1:-1;;;;;24649:28:0;;:::o;29579:91::-;29638:14;:24;29579:91::o;42635:348::-;23309:12;:10;:12::i;:::-;23299:6;;-1:-1:-1;;;;;23299:6:0;;;:22;;;23291:67;;;;;-1:-1:-1;;;23291:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42734:17:0;::::1;42726:59;;;::::0;;-1:-1:-1;;;42726:59:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;42887:20;::::0;42846:6;;42887:33:::1;::::0;42912:7;42887:24:::1;:33::i;:::-;42864:20;:56:::0;;;42956:9:::1;::::0;42941:34:::1;::::0;;;;;-1:-1:-1;;;;;42956:9:0;;::::1;42941:34:::0;;::::1;::::0;;;;;;;;;;;:14;;::::1;::::0;::::1;::::0;:34;;;;;::::1;::::0;;;;;;;;42956:9:::1;42941:14:::0;:34;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;;;;;42635:348:0:o;27744:198::-;-1:-1:-1;;;;;27834:20:0;;27810:7;27834:20;;;:11;:20;;;;;;;;27830:49;;;-1:-1:-1;;;;;;27863:16:0;;;;;;:7;:16;;;;;;27856:23;;27830:49;-1:-1:-1;;;;;27917:16:0;;;;;;:7;:16;;;;;;27897:37;;:19;:37::i;23729:148::-;23309:12;:10;:12::i;:::-;23299:6;;-1:-1:-1;;;;;23299:6:0;;;:22;;;23291:67;;;;;-1:-1:-1;;;23291:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23836:1:::1;23820:6:::0;;23799:40:::1;::::0;-1:-1:-1;;;;;23820:6:0;;::::1;::::0;23799:40:::1;::::0;23836:1;;23799:40:::1;23867:1;23850:19:::0;;-1:-1:-1;;;;;;23850:19:0::1;::::0;;23729:148::o;25691:33::-;;;;:::o;23087:79::-;23125:7;23152:6;-1:-1:-1;;;;;23152:6:0;23087:79;:::o;27455:87::-;27527:7;27520:14;;;;;;;;-1:-1:-1;;27520:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27494:13;;27520:14;;27527:7;;27520:14;;27527:7;27520:14;;;;;;;;;;;;;;;;;;;;;;;;24768:29;;;-1:-1:-1;;;24768:29:0;;;;;:::o;42452:175::-;23309:12;:10;:12::i;:::-;23299:6;;-1:-1:-1;;;;;23299:6:0;;;:22;;;23291:67;;;;;-1:-1:-1;;;23291:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42532:22:::1;:33:::0;;;::::1;;::::0;;::::1;-1:-1:-1::0;;42532:33:0;;::::1;::::0;;;::::1;::::0;;;42581:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;42452:175:::0;:::o;41616:270::-;41756:14;41792:86;41865:1;41842:20;;;:24;41837:2;:30;41792:26;:7;:26;;;;;:11;:26;:::i;:::-;:30;;:86::i;:::-;41783:95;41616:270;-1:-1:-1;;;;41616:270:0:o;28992:269::-;29085:4;29102:129;29111:12;:10;:12::i;:::-;29125:7;29134:96;29173:15;29134:96;;;;;;;;;;;;;;;;;:11;:25;29146:12;:10;:12::i;:::-;-1:-1:-1;;;;;29134:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29134:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;41945:262::-;23309:12;:10;:12::i;:::-;23299:6;;-1:-1:-1;;;;;23299:6:0;;;:22;;;23291:67;;;;;-1:-1:-1;;;23291:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42062:3:::1;42045:13;:20;;;;42037:65;;;::::0;;-1:-1:-1;;;42037:65:0;;::::1;;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;42113:14;:30:::0;;;::::1;-1:-1:-1::0;;;42113:30:0::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;;42159:40:::1;::::0;;-1:-1:-1;;;42170:12:0;::::1;;;42159:40:::0;;42184:14;;;::::1;::::0;;::::1;42159:40;::::0;::::1;::::0;;;::::1;::::0;;;;;;;;;::::1;41945:262:::0;:::o;27950:167::-;28028:4;28045:42;28055:12;:10;:12::i;:::-;28069:9;28080:6;28045:9;:42::i;29482:89::-;29538:15;:25;;;;;;;-1:-1:-1;;29538:25:0;;;;;;;;;29482:89::o;29269:110::-;-1:-1:-1;;;;;29351:20:0;29327:4;29351:20;;;:11;:20;;;;;;;;;29269:110::o;25000:34::-;;;;;;;;;:::o;28125:143::-;-1:-1:-1;;;;;28233:18:0;;;28206:7;28233:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28125:143::o;30767:332::-;23309:12;:10;:12::i;:::-;23299:6;;-1:-1:-1;;;;;23299:6:0;;;:22;;;23291:67;;;;;-1:-1:-1;;;23291:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30849:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;30848:21;30840:61;;;::::0;;-1:-1:-1;;;30840:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;30915:16:0;::::1;30934:1;30915:16:::0;;;:7:::1;:16;::::0;;;;;:20;30912:108:::1;;-1:-1:-1::0;;;;;30991:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;30971:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;30952:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;30912:108:::1;-1:-1:-1::0;;;;;31030:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;31030:27:0::1;31053:4;31030:27:::0;;::::1;::::0;;;31068:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;31068:23:0::1;::::0;;::::1;::::0;;30767:332::o;24032:244::-;23309:12;:10;:12::i;:::-;23299:6;;-1:-1:-1;;;;;23299:6:0;;;:22;;;23291:67;;;;;-1:-1:-1;;;23291:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24121:22:0;::::1;24113:73;;;;-1:-1:-1::0;;;24113:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24223:6;::::0;;24202:38:::1;::::0;-1:-1:-1;;;;;24202:38:0;;::::1;::::0;24223:6;::::1;::::0;24202:38:::1;::::0;::::1;24251:6;:17:::0;;-1:-1:-1;;;;;;24251:17:0::1;-1:-1:-1::0;;;;;24251:17:0;;;::::1;::::0;;;::::1;::::0;;24032:244::o;24894:35::-;;;;:::o;24804:34::-;;;-1:-1:-1;;;24804:34:0;;;;;:::o;31107:478::-;23309:12;:10;:12::i;:::-;23299:6;;-1:-1:-1;;;;;23299:6:0;;;:22;;;23291:67;;;;;-1:-1:-1;;;23291:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31188:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31180:60;;;::::0;;-1:-1:-1;;;31180:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;31256:9;31251:327;31275:9;:16:::0;31271:20;::::1;31251:327;;;31333:7;-1:-1:-1::0;;;;;31317:23:0::1;:9;31327:1;31317:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;31317:12:0::1;:23;31313:254;;;31376:9;31386:16:::0;;-1:-1:-1;;31386:20:0;;;31376:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;31361:9:::1;:12:::0;;-1:-1:-1;;;;;31376:31:0;;::::1;::::0;31371:1;;31361:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;31361:46:0::1;-1:-1:-1::0;;;;;31361:46:0;;::::1;;::::0;;31426:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;31465:11:::1;:20:::0;;;;:28;;-1:-1:-1;;31465:28:0::1;::::0;;31512:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;31512:15:0;;;;;-1:-1:-1;;;;;;31512:15:0::1;::::0;;;;;31546:5:::1;;31313:254;31293:3;;31251:327;;;;31107:478:::0;:::o;1984:106::-;2072:10;1984:106;:::o;37531:411::-;37590:7;37599;37608;37617;37626;37647:23;37672:12;37688:20;37700:7;37688:11;:20::i;:::-;37646:62;;;;37719:19;37742:10;:8;:10::i;:::-;37719:33;;37764:15;37781:23;37806:12;37822:39;37834:7;37843:4;37849:11;37822;:39::i;:::-;37763:98;;;;-1:-1:-1;37763:98:0;;-1:-1:-1;37912:15:0;;-1:-1:-1;37929:4:0;;-1:-1:-1;37531:411:0;;-1:-1:-1;;;;;;37531:411:0:o;5704:136::-;5762:7;5789:43;5793:1;5796;5789:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5782:50;5704:136;-1:-1:-1;;;5704:136:0:o;5240:181::-;5298:7;5330:5;;;5354:6;;;;5346:46;;;;;-1:-1:-1;;;5346:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;31593:337;-1:-1:-1;;;;;31686:19:0;;31678:68;;;;-1:-1:-1;;;31678:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31765:21:0;;31757:68;;;;-1:-1:-1;;;31757:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31838:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;31890:32;;;;;;;;;;;;;;;;;31593:337;;;:::o;31938:3323::-;-1:-1:-1;;;;;32035:20:0;;32027:70;;;;-1:-1:-1;;;32027:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32116:23:0;;32108:71;;;;-1:-1:-1;;;32108:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32207:1;32198:6;:10;32190:64;;;;-1:-1:-1;;;32190:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32375:18;;;;;;;32372:2882;;;32409:48;32431:6;32439:9;32450:6;32409:21;:48::i;:::-;32472:18;:26;;-1:-1:-1;;32472:26:0;;;32372:2882;;;32533:15;;;;;;;32530:518;;;32592:13;;-1:-1:-1;;;;;32571:35:0;;;32592:13;;32571:35;;:76;;;32631:15;-1:-1:-1;;;;;32610:37:0;:9;-1:-1:-1;;;;;32610:37:0;;32571:76;32568:465;;;32671:21;32695:17;32705:6;32695:9;:17::i;:::-;32784:9;;32671:41;;-1:-1:-1;32735:17:0;;32755:49;;32801:2;;32756:39;;32774:20;;-1:-1:-1;;;;;32784:9:0;32774;:20::i;:::-;32756:13;:11;:13::i;:::-;:17;;:39::i;32755:49::-;32735:69;;32846:9;32830:13;:25;32827:187;;;32900:20;:13;32918:1;32900:17;:20::i;:::-;32891:6;:29;32883:107;;;;-1:-1:-1;;;32883:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32568:465;;;33239:28;33270:24;33288:4;33270:9;:24::i;:::-;33360:20;;33239:55;;-1:-1:-1;33360:20:0;;33336:44;;;;;;;33417:57;;-1:-1:-1;33458:16:0;;;;33457:17;33417:57;:105;;;;-1:-1:-1;33509:13:0;;-1:-1:-1;;;;;33509:13:0;33495:10;:27;;33417:105;:148;;;;-1:-1:-1;33543:22:0;;;;;;;33417:148;33395:301;;;33600:18;:25;;-1:-1:-1;;33600:25:0;;;;;33644:36;33659:20;33644:14;:36::i;:::-;33860:12;;33776:20;;33799:121;;33835:6;;-1:-1:-1;;;33860:12:0;;;;;-1:-1:-1;;;33891:14:0;;;;33799:17;:121::i;:::-;33776:144;-1:-1:-1;34098:24:0;:6;33776:144;34098:10;:24::i;:::-;34089:33;-1:-1:-1;34153:15:0;34171:19;:12;34188:1;34171:16;:19::i;:::-;34153:37;-1:-1:-1;34205:20:0;34228:25;:12;34153:37;34228:16;:25::i;:::-;34205:48;;34270:56;34290:6;34306:4;34313:12;34270:19;:56::i;:::-;34377:13;;34341:60;;34361:6;;-1:-1:-1;;;;;34377:13:0;34393:7;34341:19;:60::i;:::-;-1:-1:-1;;;;;34610:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;34634:22:0;;;;;;:11;:22;;;;;;;;34633:23;34610:46;34606:637;;;34677:48;34699:6;34707:9;34718:6;34677:21;:48::i;:::-;34606:637;;;-1:-1:-1;;;;;34752:19:0;;;;;;:11;:19;;;;;;;;34751:20;:46;;;;-1:-1:-1;;;;;;34775:22:0;;;;;;:11;:22;;;;;;;;34751:46;34747:496;;;34818:46;34838:6;34846:9;34857:6;34818:19;:46::i;34747:496::-;-1:-1:-1;;;;;34891:19:0;;;;;;:11;:19;;;;;;;;34890:20;:47;;;;-1:-1:-1;;;;;;34915:22:0;;;;;;:11;:22;;;;;;;;34914:23;34890:47;34886:357;;;34958:44;34976:6;34984:9;34995:6;34958:17;:44::i;34886:357::-;-1:-1:-1;;;;;35028:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;35051:22:0;;;;;;:11;:22;;;;;;;;35028:45;35024:219;;;35094:48;35116:6;35124:9;35135:6;35094:21;:48::i;35024:219::-;35183:44;35201:6;35209:9;35220:6;35183:17;:44::i;:::-;32372:2882;;;;;;31938:3323;;;:::o;6143:192::-;6229:7;6265:12;6257:6;;;;6249:29;;;;-1:-1:-1;;;6249:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6301:5:0;;;6143:192::o;38530:163::-;38571:7;38592:15;38609;38628:19;:17;:19::i;:::-;38591:56;;-1:-1:-1;38591:56:0;-1:-1:-1;38665:20:0;38591:56;;38665:11;:20::i;:::-;38658:27;;;;38530:163;:::o;7541:132::-;7599:7;7626:39;7630:1;7633;7626:39;;;;;;;;;;;;;;;;;:3;:39::i;6594:471::-;6652:7;6897:6;6893:47;;-1:-1:-1;6927:1:0;6920:8;;6893:47;6964:5;;;6968:1;6964;:5;:1;6988:5;;;;;:10;6980:56;;;;-1:-1:-1;;;6980:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37950:230;38010:7;;;38054:23;38075:1;38054:16;:7;38066:3;38054:11;:16::i;:::-;:20;;:23::i;:::-;38039:38;-1:-1:-1;38088:23:0;38114:17;:7;38039:38;38114:11;:17::i;:::-;38088:43;-1:-1:-1;38167:4:0;;-1:-1:-1;;37950:230:0;;;:::o;38188:334::-;38283:7;;;;38339:24;:7;38351:11;38339;:24::i;:::-;38321:42;-1:-1:-1;38374:12:0;38389:21;:4;38398:11;38389:8;:21::i;:::-;38374:36;-1:-1:-1;38421:23:0;38447:17;:7;38374:36;38447:11;:17::i;:::-;38483:7;;;;-1:-1:-1;38509:4:0;;-1:-1:-1;38188:334:0;;-1:-1:-1;;;;;38188:334:0:o;36783:585::-;36886:15;36903:23;36928:12;36942:23;36967:12;36983:19;36994:7;36983:10;:19::i;:::-;-1:-1:-1;;;;;37031:15:0;;;;;;:7;:15;;;;;;36885:117;;-1:-1:-1;36885:117:0;;-1:-1:-1;36885:117:0;;-1:-1:-1;36885:117:0;-1:-1:-1;36885:117:0;-1:-1:-1;37031:28:0;;37051:7;37031:19;:28::i;:::-;-1:-1:-1;;;;;37013:15:0;;;;;;:7;:15;;;;;;;;:46;;;;37088:7;:15;;;;:28;;37108:7;37088:19;:28::i;:::-;-1:-1:-1;;;;;37070:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;37148:18;;;;;:7;:18;;;;;:39;;37171:15;37148:22;:39::i;:::-;-1:-1:-1;;;;;37127:18:0;;;;;;:7;:18;;;;;;;;:60;;;;37219:7;:18;;;;:39;;37242:15;37219:22;:39::i;:::-;-1:-1:-1;;;;;37198:18:0;;;;;;:7;:18;;;;;:60;37277:23;37289:4;37295;37277:11;:23::i;:::-;37333:9;-1:-1:-1;;;;;37316:44:0;37325:6;-1:-1:-1;;;;;37316:44:0;;37344:15;37316:44;;;;;;;;;;;;;;;;;;36783:585;;;;;;;;:::o;39419:987::-;25400:16;:23;;-1:-1:-1;;25400:23:0;25419:4;25400:23;;;:16;39570:27:::1;:20:::0;39595:1:::1;39570:24;:27::i;:::-;39555:42:::0;-1:-1:-1;39608:17:0::1;39628:30;:20:::0;39555:42;39628:24:::1;:30::i;:::-;39608:50:::0;-1:-1:-1;39961:21:0::1;40027:22;40044:4:::0;40027:16:::1;:22::i;:::-;40180:18;40201:41;:21;40227:14:::0;40201:25:::1;:41::i;:::-;40180:62;;40292:35;40305:9;40316:10;40292:12;:35::i;:::-;40355:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;25446:16:0;:24;;-1:-1:-1;;25446:24:0;;;-1:-1:-1;;;39419:987:0:o;35729:529::-;35830:15;35847:23;35872:12;35886:23;35911:12;35927:19;35938:7;35927:10;:19::i;:::-;-1:-1:-1;;;;;35975:15:0;;;;;;:7;:15;;;;;;35829:117;;-1:-1:-1;35829:117:0;;-1:-1:-1;35829:117:0;;-1:-1:-1;35829:117:0;-1:-1:-1;35829:117:0;-1:-1:-1;35975:28:0;;35829:117;35975:19;:28::i;36266:509::-;36369:15;36386:23;36411:12;36425:23;36450:12;36466:19;36477:7;36466:10;:19::i;:::-;-1:-1:-1;;;;;36514:15:0;;;;;;:7;:15;;;;;;36368:117;;-1:-1:-1;36368:117:0;;-1:-1:-1;36368:117:0;;-1:-1:-1;36368:117:0;-1:-1:-1;36368:117:0;-1:-1:-1;36514:28:0;;36534:7;36514:19;:28::i;:::-;-1:-1:-1;;;;;36496:15:0;;;;;;:7;:15;;;;;;;;:46;;;;36571:7;:15;;;;:28;;36591:7;36571:19;:28::i;:::-;-1:-1:-1;;;;;36553:15:0;;;;;;;:7;:15;;;;;;:46;;;;36631:18;;;;;;;:39;;36654:15;36631:22;:39::i;35269:452::-;35368:15;35385:23;35410:12;35424:23;35449:12;35465:19;35476:7;35465:10;:19::i;:::-;-1:-1:-1;;;;;35513:15:0;;;;;;:7;:15;;;;;;35367:117;;-1:-1:-1;35367:117:0;;-1:-1:-1;35367:117:0;;-1:-1:-1;35367:117:0;-1:-1:-1;35367:117:0;-1:-1:-1;35513:28:0;;35367:117;35513:19;:28::i;38701:561::-;38798:7;;38751;;;;26141:20;38751:7;38858:289;38882:9;:16;38878:20;;38858:289;;;38948:7;38924;:21;38932:9;38942:1;38932:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38932:12:0;38924:21;;;;;;;;;;;;;:31;;:66;;;38983:7;38959;:21;38967:9;38977:1;38967:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38967:12:0;38959:21;;;;;;;;;;;;;:31;38924:66;38920:97;;;39000:7;;26141:20;38992:25;;;;;;;;;38920:97;39042:34;39054:7;:21;39062:9;39072:1;39062:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39062:12:0;39054:21;;;;;;;;;;;;;39042:7;;:11;:34::i;:::-;39032:44;;39101:34;39113:7;:21;39121:9;39131:1;39121:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39121:12:0;39113:21;;;;;;;;;;;;;39101:7;;:11;:34::i;:::-;39091:44;-1:-1:-1;38900:3:0;;38858:289;;;-1:-1:-1;39171:7:0;;:20;;26141;39171:11;:20::i;:::-;39161:7;:30;39157:61;;;39201:7;;26141:20;39193:25;;;;;;;;39157:61;39237:7;;-1:-1:-1;39246:7:0;-1:-1:-1;38701:561:0;;;:::o;8169:278::-;8255:7;8290:12;8283:5;8275:28;;;;-1:-1:-1;;;8275:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8314:9;8330:1;8326;:5;;;;;;;8169:278;-1:-1:-1;;;;;8169:278:0:o;37376:147::-;37454:7;;:17;;37466:4;37454:11;:17::i;:::-;37444:7;:27;37495:10;;:20;;37510:4;37495:14;:20::i;:::-;37482:10;:33;-1:-1:-1;;37376:147:0:o;40414:589::-;40564:16;;;40578:1;40564:16;;;40540:21;40564:16;;;;;40540:21;40564:16;;;;;;;;;;-1:-1:-1;40564:16:0;40540:40;;40609:4;40591;40596:1;40591:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;40591:23:0;;;-1:-1:-1;;;;;40591:23:0;;;;;40635:15;-1:-1:-1;;;;;40635:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40635:22:0;40625:7;;:4;;40630:1;;40625:7;;;;;;;;;;;:32;-1:-1:-1;;;;;40625:32:0;;;-1:-1:-1;;;;;40625:32:0;;;;;40670:62;40687:4;40702:15;40720:11;40670:8;:62::i;:::-;40771:15;-1:-1:-1;;;;;40771:66:0;;40852:11;40878:1;40922:4;40949;40969:15;40771:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40771:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41011:519;41159:62;41176:4;41191:15;41209:11;41159:8;:62::i;:::-;41264:258;;;;;;41336:4;41264:258;;;;;;;;;;;;41382:1;41264:258;;;;;;;;;;;;;;41496:15;41264:258;;;;;;-1:-1:-1;;;;;41264:15:0;:31;;;;41303:9;;41264:258;;;;;;;;;;;;;;;41303:9;41264:31;:258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;41011:519:0:o

Swarm Source

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