ETH Price: $3,408.05 (+2.90%)

Token

Staked DEGEN (DEGENx)
 

Overview

Max Total Supply

69,000,000,000,000,000,000,000 DEGENx

Holders

21

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
847,238,897,292,071,707,530.157678641 DEGENx

Value
$0.00
0xde109ec43747481b5d0dfba330f740ccc8614e85
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:
DEGENx

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 5000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: Unlicensed

pragma solidity ^0.8.9;
interface IERC20 {

    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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



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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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



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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}


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

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

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




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

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

interface IAirdrop {
    function airdrop(address recipient, uint256 amount) external;
}

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

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

    mapping (address => bool) private _isExcludedFromFee;

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
    
    mapping (address => bool) private botWallets;
    bool botscantrade = false;
    
    bool public canTrade = false;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 69000000000000000000000 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;
    address public marketingWallet;

    string private _name = "Staked DEGEN";
    string private _symbol = "DEGENx";
    uint8 private _decimals = 9;
    
    uint256 public _taxFee = 1;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _liquidityFee = 12;
    uint256 private _previousLiquidityFee = _liquidityFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    uint256 public _maxTxAmount = 990000000000000000000 * 10**9;
    uint256 public numTokensSellToAddToLiquidity = 690000000000000000000 * 10**9;
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor () {
        _rOwned[_msgSender()] = _rTotal;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); //Mainnet & Testnet ETH
         // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;
        
        //exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }
    
    function airdrop(address recipient, uint256 amount) external onlyOwner() {
        removeAllFee();
        _transfer(_msgSender(), recipient, amount * 10**9);
        restoreAllFee();
    }
    
    function airdropInternal(address recipient, uint256 amount) internal {
        removeAllFee();
        _transfer(_msgSender(), recipient, amount);
        restoreAllFee();
    }
    
    function airdropArray(address[] calldata newholders, uint256[] calldata amounts) external onlyOwner(){
        uint256 iterator = 0;
        require(newholders.length == amounts.length, "must be the same length");
        while(iterator < newholders.length){
            airdropInternal(newholders[iterator], amounts[iterator] * 10**9);
            iterator += 1;
        }
    }

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

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

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

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

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }
        function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function setMarketingWallet(address walletAddress) public onlyOwner {
        marketingWallet = walletAddress;
    }

    function upliftTxAmount() external onlyOwner() {
        _maxTxAmount = 69000000000000000000000 * 10**9;
    }
    
    function setSwapThresholdAmount(uint256 SwapThresholdAmount) external onlyOwner() {
        require(SwapThresholdAmount > 69000000, "Swap Threshold Amount cannot be less than 69 Million");
        numTokensSellToAddToLiquidity = SwapThresholdAmount * 10**9;
    }
    
    function claimTokens () public onlyOwner {
        // make sure we capture all BNB that may or may not be sent to this contract
        payable(marketingWallet).transfer(address(this).balance);
    }
    
    function claimOtherTokens(IERC20 tokenAddress, address walletaddress) external onlyOwner() {
        tokenAddress.transfer(walletaddress, tokenAddress.balanceOf(address(this)));
    }
    
    function clearStuckBalance (address payable walletaddress) external onlyOwner() {
        walletaddress.transfer(address(this).balance);
    }
    
    function addBotWallet(address botwallet) external onlyOwner() {
        botWallets[botwallet] = true;
    }
    
    function removeBotWallet(address botwallet) external onlyOwner() {
        botWallets[botwallet] = false;
    }
    
    function getBotWalletStatus(address botwallet) public view returns (bool) {
        return botWallets[botwallet];
    }
    
    function allowtrading()external onlyOwner() {
        canTrade = true;
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
     //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}

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

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

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

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

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

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

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(
            10**2
        );
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        
        _taxFee = 0;
        _liquidityFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
    }
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        if(from != owner() && to != owner())
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        
        if(contractTokenBalance >= _maxTxAmount)
        {
            contractTokenBalance = _maxTxAmount;
        }
        
        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }
        
        //indicates if fee should be deducted from transfer
        bool takeFee = true;
        
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }
        
        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from,to,amount,takeFee);
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into halves
        // add the marketing wallet
        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);
        uint256 marketingshare = newBalance.mul(80).div(100);
        payable(marketingWallet).transfer(marketingshare);
        newBalance -= marketingshare;
        // 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
            owner(),
            block.timestamp
        );
    }

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
        if(!canTrade){
            require(sender == owner()); // only owner allowed to trade or add liquidity
        }
        
        if(botWallets[sender] || botWallets[recipient]){
            require(botscantrade, "bots arent allowed to trade");
        }
        
        if(!takeFee)
            removeAllFee();
        
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
        
        if(!takeFee)
            restoreAllFee();
    }

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

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"botwallet","type":"address"}],"name":"addBotWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"newholders","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdropArray","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowtrading","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":[],"name":"canTrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"tokenAddress","type":"address"},{"internalType":"address","name":"walletaddress","type":"address"}],"name":"claimOtherTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"walletaddress","type":"address"}],"name":"clearStuckBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"botwallet","type":"address"}],"name":"getBotWalletStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"botwallet","type":"address"}],"name":"removeBotWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"walletAddress","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"SwapThresholdAmount","type":"uint256"}],"name":"setSwapThresholdAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"upliftTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600a805461ffff191690556d0366e7064422fd84202340000000600b819055620000319060001962000430565b6200003f9060001962000453565b600c908155604080518082019091528181526b29ba30b5b2b2102222a3a2a760a11b60209091019081526200007891600f91906200038a565b50604080518082019091526006808252650888a8e8a9cf60d31b6020909201918252620000a8916010916200038a565b506011805460ff1916600917905560016012819055601355600c60148190556015556016805461ff0019166101001790556c0c7edcce72084feb89300000006017556c08b5829f66bff9a429500000006018553480156200010857600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c543360009081526003602090815260409182902092909255805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa158015620001b1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d7919062000479565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000225573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024b919062000479565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000299573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bf919062000479565b6001600160a01b0390811660a0528116608052600160066000620002eb6000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526006909252902080549091166001179055620003333390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040516200037b91815260200190565b60405180910390a350620004e8565b8280546200039890620004ab565b90600052602060002090601f016020900481019282620003bc576000855562000407565b82601f10620003d757805160ff191683800117855562000407565b8280016001018555821562000407579182015b8281111562000407578251825591602001919060010190620003ea565b506200041592915062000419565b5090565b5b808211156200041557600081556001016200041a565b6000826200044e57634e487b7160e01b600052601260045260246000fd5b500690565b6000828210156200047457634e487b7160e01b600052601160045260246000fd5b500390565b6000602082840312156200048c57600080fd5b81516001600160a01b0381168114620004a457600080fd5b9392505050565b600181811c90821680620004c057607f821691505b60208210811415620004e257634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516136cd62000538600039600081816105e901526122730152600081816103dc01528181612ad101528181612b8a01528181612bdf01528181612cec0152612d1301526136cd6000f3fe6080604052600436106103225760003560e01c80635d098b38116101a5578063a457c2d7116100ec578063d12a768811610095578063dd62ed3e1161006f578063dd62ed3e146108fe578063e8c4c43c14610944578063ea2f0b3714610959578063f2fde38b1461097957600080fd5b8063d12a7688146108a8578063d4a3883f146108be578063dd467064146108de57600080fd5b8063a9059cbb116100c6578063a9059cbb14610853578063b6c5232414610873578063c49b9a801461088857600080fd5b8063a457c2d714610809578063a633423114610829578063a69df4b51461083e57600080fd5b8063764d72bf1161014e5780638ba4cc3c116101285780638ba4cc3c146107b65780638da5cb5b146107d657806395d89b41146107f457600080fd5b8063764d72bf146107475780637d1db4a51461076757806388f820201461077d57600080fd5b806370a082311161017f57806370a08231146106f2578063715018a61461071257806375f0a8741461072757600080fd5b80635d098b381461068357806360d48489146106a35780636bc87c3a146106dc57600080fd5b80633685d419116102695780634549b039116102125780634a74bb02116101ec5780634a74bb021461060b57806352390c021461062a5780635342acb41461064a57600080fd5b80634549b039146105a257806348c54b9d146105c257806349bd5a5e146105d757600080fd5b80633b124fe7116102435780633b124fe71461054c5780633bd5d17314610562578063437823ec1461058257600080fd5b80633685d419146104ec578063395093511461050c5780633ae7dc201461052c57600080fd5b806323b872dd116102cb5780632d838119116102a55780632d8381191461048b5780632f05205c146104ab578063313ce567146104ca57600080fd5b806323b872dd1461042b57806329e04b4a1461044b5780632a3606311461046b57600080fd5b806313114a9d116102fc57806313114a9d146103ab5780631694505e146103ca57806318160ddd1461041657600080fd5b80630305caff1461032e57806306fdde0314610350578063095ea7b31461037b57600080fd5b3661032957005b600080fd5b34801561033a57600080fd5b5061034e61034936600461317c565b610999565b005b34801561035c57600080fd5b50610365610a19565b6040516103729190613199565b60405180910390f35b34801561038757600080fd5b5061039b61039636600461320c565b610aab565b6040519015158152602001610372565b3480156103b757600080fd5b50600d545b604051908152602001610372565b3480156103d657600080fd5b506103fe7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610372565b34801561042257600080fd5b50600b546103bc565b34801561043757600080fd5b5061039b610446366004613238565b610ac2565b34801561045757600080fd5b5061034e610466366004613279565b610b2b565b34801561047757600080fd5b5061034e61048636600461317c565b610c12565b34801561049757600080fd5b506103bc6104a6366004613279565b610c90565b3480156104b757600080fd5b50600a5461039b90610100900460ff1681565b3480156104d657600080fd5b5060115460405160ff9091168152602001610372565b3480156104f857600080fd5b5061034e61050736600461317c565b610d27565b34801561051857600080fd5b5061039b61052736600461320c565b610f28565b34801561053857600080fd5b5061034e610547366004613292565b610f5e565b34801561055857600080fd5b506103bc60125481565b34801561056e57600080fd5b5061034e61057d366004613279565b6110cf565b34801561058e57600080fd5b5061034e61059d36600461317c565b6111ca565b3480156105ae57600080fd5b506103bc6105bd3660046132d9565b611248565b3480156105ce57600080fd5b5061034e6112d5565b3480156105e357600080fd5b506103fe7f000000000000000000000000000000000000000000000000000000000000000081565b34801561061757600080fd5b5060165461039b90610100900460ff1681565b34801561063657600080fd5b5061034e61064536600461317c565b61136b565b34801561065657600080fd5b5061039b61066536600461317c565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561068f57600080fd5b5061034e61069e36600461317c565b6114fb565b3480156106af57600080fd5b5061039b6106be36600461317c565b6001600160a01b031660009081526009602052604090205460ff1690565b3480156106e857600080fd5b506103bc60145481565b3480156106fe57600080fd5b506103bc61070d36600461317c565b611584565b34801561071e57600080fd5b5061034e6115e3565b34801561073357600080fd5b50600e546103fe906001600160a01b031681565b34801561075357600080fd5b5061034e61076236600461317c565b611694565b34801561077357600080fd5b506103bc60175481565b34801561078957600080fd5b5061039b61079836600461317c565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156107c257600080fd5b5061034e6107d136600461320c565b611723565b3480156107e257600080fd5b506000546001600160a01b03166103fe565b34801561080057600080fd5b506103656117ae565b34801561081557600080fd5b5061039b61082436600461320c565b6117bd565b34801561083557600080fd5b5061034e61180c565b34801561084a57600080fd5b5061034e611894565b34801561085f57600080fd5b5061039b61086e36600461320c565b6119d3565b34801561087f57600080fd5b506002546103bc565b34801561089457600080fd5b5061034e6108a33660046132fe565b6119e0565b3480156108b457600080fd5b506103bc60185481565b3480156108ca57600080fd5b5061034e6108d9366004613367565b611aab565b3480156108ea57600080fd5b5061034e6108f9366004613279565b611bce565b34801561090a57600080fd5b506103bc610919366004613292565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b34801561095057600080fd5b5061034e611ca2565b34801561096557600080fd5b5061034e61097436600461317c565b611d10565b34801561098557600080fd5b5061034e61099436600461317c565b611d8b565b6000546001600160a01b031633146109f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b03166000908152600960205260409020805460ff19169055565b6060600f8054610a28906133d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a54906133d3565b8015610aa15780601f10610a7657610100808354040283529160200191610aa1565b820191906000526020600020905b815481529060010190602001808311610a8457829003601f168201915b5050505050905090565b6000610ab8338484611ec9565b5060015b92915050565b6000610acf848484612021565b610b218433610b1c8560405180606001604052806028815260200161364b602891396001600160a01b038a166000908152600560209081526040808320338452909152902054919061232d565b611ec9565b5060019392505050565b6000546001600160a01b03163314610b855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b63041cdb408111610bfe5760405162461bcd60e51b815260206004820152603460248201527f53776170205468726573686f6c6420416d6f756e742063616e6e6f742062652060448201527f6c657373207468616e203639204d696c6c696f6e00000000000000000000000060648201526084016109ef565b610c0c81633b9aca00613456565b60185550565b6000546001600160a01b03163314610c6c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b6001600160a01b03166000908152600960205260409020805460ff19166001179055565b6000600c54821115610d0a5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201527f65666c656374696f6e730000000000000000000000000000000000000000000060648201526084016109ef565b6000610d14612367565b9050610d20838261238a565b9392505050565b6000546001600160a01b03163314610d815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b6001600160a01b03811660009081526007602052604090205460ff16610de95760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016109ef565b60005b600854811015610f2457816001600160a01b031660088281548110610e1357610e13613475565b6000918252602090912001546001600160a01b03161415610f125760088054610e3e906001906134a4565b81548110610e4e57610e4e613475565b600091825260209091200154600880546001600160a01b039092169183908110610e7a57610e7a613475565b6000918252602080832091909101805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610edf57610edf6134bb565b6000828152602090208101600019908101805473ffffffffffffffffffffffffffffffffffffffff191690550190555050565b80610f1c816134ea565b915050610dec565b5050565b3360008181526005602090815260408083206001600160a01b03871684529091528120549091610ab8918590610b1c90866123cc565b6000546001600160a01b03163314610fb85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b0383169063a9059cbb90839083906370a0823190602401602060405180830381865afa15801561101f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110439190613505565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156110a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ca919061351e565b505050565b3360008181526007602052604090205460ff16156111555760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201527f6869732066756e6374696f6e000000000000000000000000000000000000000060648201526084016109ef565b60006111608361242b565b505050506001600160a01b03841660009081526003602052604090205491925061118c9190508261247a565b6001600160a01b038316600090815260036020526040902055600c546111b2908261247a565b600c55600d546111c290846123cc565b600d55505050565b6000546001600160a01b031633146112245760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600b5483111561129c5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016109ef565b816112bb5760006112ac8461242b565b50939550610abc945050505050565b60006112c68461242b565b50929550610abc945050505050565b6000546001600160a01b0316331461132f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b600e546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611368573d6000803e3d6000fd5b50565b6000546001600160a01b031633146113c55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b6001600160a01b03811660009081526007602052604090205460ff161561142e5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016109ef565b6001600160a01b03811660009081526003602052604090205415611488576001600160a01b03811660009081526003602052604090205461146e90610c90565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee301805473ffffffffffffffffffffffffffffffffffffffff19169091179055565b6000546001600160a01b031633146115555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b600e805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526007602052604081205460ff16156115c157506001600160a01b031660009081526004602052604090205490565b6001600160a01b038216600090815260036020526040902054610abc90610c90565b6000546001600160a01b0316331461163d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b6000546001600160a01b031633146116ee5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610f24573d6000803e3d6000fd5b6000546001600160a01b0316331461177d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b6117856124bc565b61179d338361179884633b9aca00613456565b612021565b610f24601354601255601554601455565b606060108054610a28906133d3565b6000610ab83384610b1c85604051806060016040528060258152602001613673602591393360009081526005602090815260408083206001600160a01b038d168452909152902054919061232d565b6000546001600160a01b031633146118665760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100179055565b6001546001600160a01b031633146119145760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c60448201527f6f636b000000000000000000000000000000000000000000000000000000000060648201526084016109ef565b60025442116119655760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c203720646179730060448201526064016109ef565b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36001546000805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03909216919091179055565b6000610ab8338484612021565b6000546001600160a01b03163314611a3a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b60168054821515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990611aa090831515815260200190565b60405180910390a150565b6000546001600160a01b03163314611b055760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b6000838214611b565760405162461bcd60e51b815260206004820152601760248201527f6d757374206265207468652073616d65206c656e67746800000000000000000060448201526064016109ef565b83811015611bc757611bb5858583818110611b7357611b73613475565b9050602002016020810190611b88919061317c565b848484818110611b9a57611b9a613475565b90506020020135633b9aca00611bb09190613456565b6124ea565b611bc060018261353b565b9050611b56565b5050505050565b6000546001600160a01b03163314611c285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b600080546001805473ffffffffffffffffffffffffffffffffffffffff199081166001600160a01b03841617909155169055611c64814261353b565b600255600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a350565b6000546001600160a01b03163314611cfc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b6d0366e7064422fd84202340000000601755565b6000546001600160a01b03163314611d6a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b03163314611de55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b6001600160a01b038116611e615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109ef565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6001600160a01b038316611f445760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109ef565b6001600160a01b038216611fc05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016109ef565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661209d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016109ef565b6001600160a01b0382166121195760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016109ef565b6000811161218f5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f000000000000000000000000000000000000000000000060648201526084016109ef565b6000546001600160a01b038481169116148015906121bb57506000546001600160a01b03838116911614155b15612238576017548111156122385760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785460448201527f78416d6f756e742e00000000000000000000000000000000000000000000000060648201526084016109ef565b600061224330611584565b9050601754811061225357506017545b6018548110801590819061226a575060165460ff16155b80156122a857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b80156122bb5750601654610100900460ff165b156122ce5760185491506122ce826124fd565b6001600160a01b03851660009081526006602052604090205460019060ff168061231057506001600160a01b03851660009081526006602052604090205460ff165b15612319575060005b612325868686846125fc565b505050505050565b600081848411156123515760405162461bcd60e51b81526004016109ef9190613199565b50600061235e84866134a4565b95945050505050565b6000806000612374612838565b9092509050612383828261238a565b9250505090565b6000610d2083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506129ba565b6000806123d9838561353b565b905083811015610d205760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016109ef565b60008060008060008060008060006124428a6129e8565b92509250925060008060006124608d868661245b612367565b612a2a565b919f909e50909c50959a5093985091965092945050505050565b6000610d2083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061232d565b6012541580156124cc5750601454155b156124d357565b601280546013556014805460155560009182905555565b6124f26124bc565b61179d338383612021565b6016805460ff19166001179055600061251782600261238a565b90506000612525838361247a565b90504761253183612a7a565b600061253d478361247a565b905060006125576064612551846050612c4b565b9061238a565b600e546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015612592573d6000803e3d6000fd5b5061259d81836134a4565b91506125a98483612ce6565b60408051868152602081018490529081018590527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506016805460ff1916905550505050565b600a54610100900460ff16612625576000546001600160a01b0385811691161461262557600080fd5b6001600160a01b03841660009081526009602052604090205460ff168061266457506001600160a01b03831660009081526009602052604090205460ff165b156126bb57600a5460ff166126bb5760405162461bcd60e51b815260206004820152601b60248201527f626f7473206172656e7420616c6c6f77656420746f207472616465000000000060448201526064016109ef565b806126c8576126c86124bc565b6001600160a01b03841660009081526007602052604090205460ff16801561270957506001600160a01b03831660009081526007602052604090205460ff16155b1561271e57612719848484612dfd565b61281c565b6001600160a01b03841660009081526007602052604090205460ff1615801561275f57506001600160a01b03831660009081526007602052604090205460ff165b1561276f57612719848484612f23565b6001600160a01b03841660009081526007602052604090205460ff161580156127b157506001600160a01b03831660009081526007602052604090205460ff16155b156127c157612719848484612fcc565b6001600160a01b03841660009081526007602052604090205460ff16801561280157506001600160a01b03831660009081526007602052604090205460ff165b1561281157612719848484613010565b61281c848484612fcc565b8061283257612832601354601255601554601455565b50505050565b600c54600b546000918291825b60085481101561298a5782600360006008848154811061286757612867613475565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806128d257508160046000600884815481106128ab576128ab613475565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156128e857600c54600b54945094505050509091565b61292e600360006008848154811061290257612902613475565b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061247a565b9250612976600460006008848154811061294a5761294a613475565b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061247a565b915080612982816134ea565b915050612845565b50600b54600c5461299a9161238a565b8210156129b157600c54600b549350935050509091565b90939092509050565b600081836129db5760405162461bcd60e51b81526004016109ef9190613199565b50600061235e8486613553565b6000806000806129f785613083565b90506000612a048661309f565b90506000612a1c82612a16898661247a565b9061247a565b979296509094509092505050565b6000808080612a398886612c4b565b90506000612a478887612c4b565b90506000612a558888612c4b565b90506000612a6782612a16868661247a565b939b939a50919850919650505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612aaf57612aaf613475565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b51919061358e565b81600181518110612b6457612b64613475565b60200260200101906001600160a01b031690816001600160a01b031681525050612baf307f000000000000000000000000000000000000000000000000000000000000000084611ec9565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612c1d9085906000908690309042906004016135ab565b600060405180830381600087803b158015612c3757600080fd5b505af1158015612325573d6000803e3d6000fd5b600082612c5a57506000610abc565b6000612c668385613456565b905082612c738583613553565b14610d205760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f770000000000000000000000000000000000000000000000000000000000000060648201526084016109ef565b612d11307f000000000000000000000000000000000000000000000000000000000000000084611ec9565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719823085600080612d586000546001600160a01b031690565b60405160e088901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612dd8573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611bc7919061361c565b600080600080600080612e0f8761242b565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612e41908861247a565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612e70908761247a565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612e9f90866123cc565b6001600160a01b038916600090815260036020526040902055612ec1816130bb565b612ecb8483613143565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051612f1091815260200190565b60405180910390a3505050505050505050565b600080600080600080612f358761242b565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612f67908761247a565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612f9d90846123cc565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612e9f90866123cc565b600080600080600080612fde8761242b565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612e70908761247a565b6000806000806000806130228761242b565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150613054908861247a565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612f67908761247a565b6000610abc606461255160125485612c4b90919063ffffffff16565b6000610abc606461255160145485612c4b90919063ffffffff16565b60006130c5612367565b905060006130d38383612c4b565b306000908152600360205260409020549091506130f090826123cc565b3060009081526003602090815260408083209390935560079052205460ff16156110ca573060009081526004602052604090205461312e90846123cc565b30600090815260046020526040902055505050565b600c54613150908361247a565b600c55600d5461316090826123cc565b600d555050565b6001600160a01b038116811461136857600080fd5b60006020828403121561318e57600080fd5b8135610d2081613167565b600060208083528351808285015260005b818110156131c6578581018301518582016040015282016131aa565b818111156131d8576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b6000806040838503121561321f57600080fd5b823561322a81613167565b946020939093013593505050565b60008060006060848603121561324d57600080fd5b833561325881613167565b9250602084013561326881613167565b929592945050506040919091013590565b60006020828403121561328b57600080fd5b5035919050565b600080604083850312156132a557600080fd5b82356132b081613167565b915060208301356132c081613167565b809150509250929050565b801515811461136857600080fd5b600080604083850312156132ec57600080fd5b8235915060208301356132c0816132cb565b60006020828403121561331057600080fd5b8135610d20816132cb565b60008083601f84011261332d57600080fd5b50813567ffffffffffffffff81111561334557600080fd5b6020830191508360208260051b850101111561336057600080fd5b9250929050565b6000806000806040858703121561337d57600080fd5b843567ffffffffffffffff8082111561339557600080fd5b6133a18883890161331b565b909650945060208701359150808211156133ba57600080fd5b506133c78782880161331b565b95989497509550505050565b600181811c908216806133e757607f821691505b60208210811415613421577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600081600019048311821515161561347057613470613427565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000828210156134b6576134b6613427565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60006000198214156134fe576134fe613427565b5060010190565b60006020828403121561351757600080fd5b5051919050565b60006020828403121561353057600080fd5b8151610d20816132cb565b6000821982111561354e5761354e613427565b500190565b600082613589577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000602082840312156135a057600080fd5b8151610d2081613167565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156135fb5784516001600160a01b0316835293830193918301916001016135d6565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561363157600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220eb359087762552f58ede3cdab1dd52c0344ff4c011cc5e8851f22ecc8eefa62264736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106103225760003560e01c80635d098b38116101a5578063a457c2d7116100ec578063d12a768811610095578063dd62ed3e1161006f578063dd62ed3e146108fe578063e8c4c43c14610944578063ea2f0b3714610959578063f2fde38b1461097957600080fd5b8063d12a7688146108a8578063d4a3883f146108be578063dd467064146108de57600080fd5b8063a9059cbb116100c6578063a9059cbb14610853578063b6c5232414610873578063c49b9a801461088857600080fd5b8063a457c2d714610809578063a633423114610829578063a69df4b51461083e57600080fd5b8063764d72bf1161014e5780638ba4cc3c116101285780638ba4cc3c146107b65780638da5cb5b146107d657806395d89b41146107f457600080fd5b8063764d72bf146107475780637d1db4a51461076757806388f820201461077d57600080fd5b806370a082311161017f57806370a08231146106f2578063715018a61461071257806375f0a8741461072757600080fd5b80635d098b381461068357806360d48489146106a35780636bc87c3a146106dc57600080fd5b80633685d419116102695780634549b039116102125780634a74bb02116101ec5780634a74bb021461060b57806352390c021461062a5780635342acb41461064a57600080fd5b80634549b039146105a257806348c54b9d146105c257806349bd5a5e146105d757600080fd5b80633b124fe7116102435780633b124fe71461054c5780633bd5d17314610562578063437823ec1461058257600080fd5b80633685d419146104ec578063395093511461050c5780633ae7dc201461052c57600080fd5b806323b872dd116102cb5780632d838119116102a55780632d8381191461048b5780632f05205c146104ab578063313ce567146104ca57600080fd5b806323b872dd1461042b57806329e04b4a1461044b5780632a3606311461046b57600080fd5b806313114a9d116102fc57806313114a9d146103ab5780631694505e146103ca57806318160ddd1461041657600080fd5b80630305caff1461032e57806306fdde0314610350578063095ea7b31461037b57600080fd5b3661032957005b600080fd5b34801561033a57600080fd5b5061034e61034936600461317c565b610999565b005b34801561035c57600080fd5b50610365610a19565b6040516103729190613199565b60405180910390f35b34801561038757600080fd5b5061039b61039636600461320c565b610aab565b6040519015158152602001610372565b3480156103b757600080fd5b50600d545b604051908152602001610372565b3480156103d657600080fd5b506103fe7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610372565b34801561042257600080fd5b50600b546103bc565b34801561043757600080fd5b5061039b610446366004613238565b610ac2565b34801561045757600080fd5b5061034e610466366004613279565b610b2b565b34801561047757600080fd5b5061034e61048636600461317c565b610c12565b34801561049757600080fd5b506103bc6104a6366004613279565b610c90565b3480156104b757600080fd5b50600a5461039b90610100900460ff1681565b3480156104d657600080fd5b5060115460405160ff9091168152602001610372565b3480156104f857600080fd5b5061034e61050736600461317c565b610d27565b34801561051857600080fd5b5061039b61052736600461320c565b610f28565b34801561053857600080fd5b5061034e610547366004613292565b610f5e565b34801561055857600080fd5b506103bc60125481565b34801561056e57600080fd5b5061034e61057d366004613279565b6110cf565b34801561058e57600080fd5b5061034e61059d36600461317c565b6111ca565b3480156105ae57600080fd5b506103bc6105bd3660046132d9565b611248565b3480156105ce57600080fd5b5061034e6112d5565b3480156105e357600080fd5b506103fe7f00000000000000000000000065c465f6acd67469bfb7dbb9ea59e6682c78e2b881565b34801561061757600080fd5b5060165461039b90610100900460ff1681565b34801561063657600080fd5b5061034e61064536600461317c565b61136b565b34801561065657600080fd5b5061039b61066536600461317c565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561068f57600080fd5b5061034e61069e36600461317c565b6114fb565b3480156106af57600080fd5b5061039b6106be36600461317c565b6001600160a01b031660009081526009602052604090205460ff1690565b3480156106e857600080fd5b506103bc60145481565b3480156106fe57600080fd5b506103bc61070d36600461317c565b611584565b34801561071e57600080fd5b5061034e6115e3565b34801561073357600080fd5b50600e546103fe906001600160a01b031681565b34801561075357600080fd5b5061034e61076236600461317c565b611694565b34801561077357600080fd5b506103bc60175481565b34801561078957600080fd5b5061039b61079836600461317c565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156107c257600080fd5b5061034e6107d136600461320c565b611723565b3480156107e257600080fd5b506000546001600160a01b03166103fe565b34801561080057600080fd5b506103656117ae565b34801561081557600080fd5b5061039b61082436600461320c565b6117bd565b34801561083557600080fd5b5061034e61180c565b34801561084a57600080fd5b5061034e611894565b34801561085f57600080fd5b5061039b61086e36600461320c565b6119d3565b34801561087f57600080fd5b506002546103bc565b34801561089457600080fd5b5061034e6108a33660046132fe565b6119e0565b3480156108b457600080fd5b506103bc60185481565b3480156108ca57600080fd5b5061034e6108d9366004613367565b611aab565b3480156108ea57600080fd5b5061034e6108f9366004613279565b611bce565b34801561090a57600080fd5b506103bc610919366004613292565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b34801561095057600080fd5b5061034e611ca2565b34801561096557600080fd5b5061034e61097436600461317c565b611d10565b34801561098557600080fd5b5061034e61099436600461317c565b611d8b565b6000546001600160a01b031633146109f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b03166000908152600960205260409020805460ff19169055565b6060600f8054610a28906133d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a54906133d3565b8015610aa15780601f10610a7657610100808354040283529160200191610aa1565b820191906000526020600020905b815481529060010190602001808311610a8457829003601f168201915b5050505050905090565b6000610ab8338484611ec9565b5060015b92915050565b6000610acf848484612021565b610b218433610b1c8560405180606001604052806028815260200161364b602891396001600160a01b038a166000908152600560209081526040808320338452909152902054919061232d565b611ec9565b5060019392505050565b6000546001600160a01b03163314610b855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b63041cdb408111610bfe5760405162461bcd60e51b815260206004820152603460248201527f53776170205468726573686f6c6420416d6f756e742063616e6e6f742062652060448201527f6c657373207468616e203639204d696c6c696f6e00000000000000000000000060648201526084016109ef565b610c0c81633b9aca00613456565b60185550565b6000546001600160a01b03163314610c6c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b6001600160a01b03166000908152600960205260409020805460ff19166001179055565b6000600c54821115610d0a5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201527f65666c656374696f6e730000000000000000000000000000000000000000000060648201526084016109ef565b6000610d14612367565b9050610d20838261238a565b9392505050565b6000546001600160a01b03163314610d815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b6001600160a01b03811660009081526007602052604090205460ff16610de95760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016109ef565b60005b600854811015610f2457816001600160a01b031660088281548110610e1357610e13613475565b6000918252602090912001546001600160a01b03161415610f125760088054610e3e906001906134a4565b81548110610e4e57610e4e613475565b600091825260209091200154600880546001600160a01b039092169183908110610e7a57610e7a613475565b6000918252602080832091909101805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610edf57610edf6134bb565b6000828152602090208101600019908101805473ffffffffffffffffffffffffffffffffffffffff191690550190555050565b80610f1c816134ea565b915050610dec565b5050565b3360008181526005602090815260408083206001600160a01b03871684529091528120549091610ab8918590610b1c90866123cc565b6000546001600160a01b03163314610fb85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b0383169063a9059cbb90839083906370a0823190602401602060405180830381865afa15801561101f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110439190613505565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156110a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ca919061351e565b505050565b3360008181526007602052604090205460ff16156111555760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201527f6869732066756e6374696f6e000000000000000000000000000000000000000060648201526084016109ef565b60006111608361242b565b505050506001600160a01b03841660009081526003602052604090205491925061118c9190508261247a565b6001600160a01b038316600090815260036020526040902055600c546111b2908261247a565b600c55600d546111c290846123cc565b600d55505050565b6000546001600160a01b031633146112245760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600b5483111561129c5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016109ef565b816112bb5760006112ac8461242b565b50939550610abc945050505050565b60006112c68461242b565b50929550610abc945050505050565b6000546001600160a01b0316331461132f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b600e546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611368573d6000803e3d6000fd5b50565b6000546001600160a01b031633146113c55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b6001600160a01b03811660009081526007602052604090205460ff161561142e5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016109ef565b6001600160a01b03811660009081526003602052604090205415611488576001600160a01b03811660009081526003602052604090205461146e90610c90565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee301805473ffffffffffffffffffffffffffffffffffffffff19169091179055565b6000546001600160a01b031633146115555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b600e805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526007602052604081205460ff16156115c157506001600160a01b031660009081526004602052604090205490565b6001600160a01b038216600090815260036020526040902054610abc90610c90565b6000546001600160a01b0316331461163d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b6000546001600160a01b031633146116ee5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610f24573d6000803e3d6000fd5b6000546001600160a01b0316331461177d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b6117856124bc565b61179d338361179884633b9aca00613456565b612021565b610f24601354601255601554601455565b606060108054610a28906133d3565b6000610ab83384610b1c85604051806060016040528060258152602001613673602591393360009081526005602090815260408083206001600160a01b038d168452909152902054919061232d565b6000546001600160a01b031633146118665760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100179055565b6001546001600160a01b031633146119145760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c60448201527f6f636b000000000000000000000000000000000000000000000000000000000060648201526084016109ef565b60025442116119655760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c203720646179730060448201526064016109ef565b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36001546000805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03909216919091179055565b6000610ab8338484612021565b6000546001600160a01b03163314611a3a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b60168054821515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990611aa090831515815260200190565b60405180910390a150565b6000546001600160a01b03163314611b055760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b6000838214611b565760405162461bcd60e51b815260206004820152601760248201527f6d757374206265207468652073616d65206c656e67746800000000000000000060448201526064016109ef565b83811015611bc757611bb5858583818110611b7357611b73613475565b9050602002016020810190611b88919061317c565b848484818110611b9a57611b9a613475565b90506020020135633b9aca00611bb09190613456565b6124ea565b611bc060018261353b565b9050611b56565b5050505050565b6000546001600160a01b03163314611c285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b600080546001805473ffffffffffffffffffffffffffffffffffffffff199081166001600160a01b03841617909155169055611c64814261353b565b600255600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a350565b6000546001600160a01b03163314611cfc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b6d0366e7064422fd84202340000000601755565b6000546001600160a01b03163314611d6a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b03163314611de55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ef565b6001600160a01b038116611e615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109ef565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6001600160a01b038316611f445760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109ef565b6001600160a01b038216611fc05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016109ef565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661209d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016109ef565b6001600160a01b0382166121195760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016109ef565b6000811161218f5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f000000000000000000000000000000000000000000000060648201526084016109ef565b6000546001600160a01b038481169116148015906121bb57506000546001600160a01b03838116911614155b15612238576017548111156122385760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785460448201527f78416d6f756e742e00000000000000000000000000000000000000000000000060648201526084016109ef565b600061224330611584565b9050601754811061225357506017545b6018548110801590819061226a575060165460ff16155b80156122a857507f00000000000000000000000065c465f6acd67469bfb7dbb9ea59e6682c78e2b86001600160a01b0316856001600160a01b031614155b80156122bb5750601654610100900460ff165b156122ce5760185491506122ce826124fd565b6001600160a01b03851660009081526006602052604090205460019060ff168061231057506001600160a01b03851660009081526006602052604090205460ff165b15612319575060005b612325868686846125fc565b505050505050565b600081848411156123515760405162461bcd60e51b81526004016109ef9190613199565b50600061235e84866134a4565b95945050505050565b6000806000612374612838565b9092509050612383828261238a565b9250505090565b6000610d2083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506129ba565b6000806123d9838561353b565b905083811015610d205760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016109ef565b60008060008060008060008060006124428a6129e8565b92509250925060008060006124608d868661245b612367565b612a2a565b919f909e50909c50959a5093985091965092945050505050565b6000610d2083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061232d565b6012541580156124cc5750601454155b156124d357565b601280546013556014805460155560009182905555565b6124f26124bc565b61179d338383612021565b6016805460ff19166001179055600061251782600261238a565b90506000612525838361247a565b90504761253183612a7a565b600061253d478361247a565b905060006125576064612551846050612c4b565b9061238a565b600e546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015612592573d6000803e3d6000fd5b5061259d81836134a4565b91506125a98483612ce6565b60408051868152602081018490529081018590527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506016805460ff1916905550505050565b600a54610100900460ff16612625576000546001600160a01b0385811691161461262557600080fd5b6001600160a01b03841660009081526009602052604090205460ff168061266457506001600160a01b03831660009081526009602052604090205460ff165b156126bb57600a5460ff166126bb5760405162461bcd60e51b815260206004820152601b60248201527f626f7473206172656e7420616c6c6f77656420746f207472616465000000000060448201526064016109ef565b806126c8576126c86124bc565b6001600160a01b03841660009081526007602052604090205460ff16801561270957506001600160a01b03831660009081526007602052604090205460ff16155b1561271e57612719848484612dfd565b61281c565b6001600160a01b03841660009081526007602052604090205460ff1615801561275f57506001600160a01b03831660009081526007602052604090205460ff165b1561276f57612719848484612f23565b6001600160a01b03841660009081526007602052604090205460ff161580156127b157506001600160a01b03831660009081526007602052604090205460ff16155b156127c157612719848484612fcc565b6001600160a01b03841660009081526007602052604090205460ff16801561280157506001600160a01b03831660009081526007602052604090205460ff165b1561281157612719848484613010565b61281c848484612fcc565b8061283257612832601354601255601554601455565b50505050565b600c54600b546000918291825b60085481101561298a5782600360006008848154811061286757612867613475565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806128d257508160046000600884815481106128ab576128ab613475565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156128e857600c54600b54945094505050509091565b61292e600360006008848154811061290257612902613475565b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061247a565b9250612976600460006008848154811061294a5761294a613475565b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061247a565b915080612982816134ea565b915050612845565b50600b54600c5461299a9161238a565b8210156129b157600c54600b549350935050509091565b90939092509050565b600081836129db5760405162461bcd60e51b81526004016109ef9190613199565b50600061235e8486613553565b6000806000806129f785613083565b90506000612a048661309f565b90506000612a1c82612a16898661247a565b9061247a565b979296509094509092505050565b6000808080612a398886612c4b565b90506000612a478887612c4b565b90506000612a558888612c4b565b90506000612a6782612a16868661247a565b939b939a50919850919650505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612aaf57612aaf613475565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b51919061358e565b81600181518110612b6457612b64613475565b60200260200101906001600160a01b031690816001600160a01b031681525050612baf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ec9565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612c1d9085906000908690309042906004016135ab565b600060405180830381600087803b158015612c3757600080fd5b505af1158015612325573d6000803e3d6000fd5b600082612c5a57506000610abc565b6000612c668385613456565b905082612c738583613553565b14610d205760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f770000000000000000000000000000000000000000000000000000000000000060648201526084016109ef565b612d11307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ec9565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719823085600080612d586000546001600160a01b031690565b60405160e088901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612dd8573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611bc7919061361c565b600080600080600080612e0f8761242b565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612e41908861247a565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612e70908761247a565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612e9f90866123cc565b6001600160a01b038916600090815260036020526040902055612ec1816130bb565b612ecb8483613143565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051612f1091815260200190565b60405180910390a3505050505050505050565b600080600080600080612f358761242b565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612f67908761247a565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612f9d90846123cc565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612e9f90866123cc565b600080600080600080612fde8761242b565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612e70908761247a565b6000806000806000806130228761242b565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150613054908861247a565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612f67908761247a565b6000610abc606461255160125485612c4b90919063ffffffff16565b6000610abc606461255160145485612c4b90919063ffffffff16565b60006130c5612367565b905060006130d38383612c4b565b306000908152600360205260409020549091506130f090826123cc565b3060009081526003602090815260408083209390935560079052205460ff16156110ca573060009081526004602052604090205461312e90846123cc565b30600090815260046020526040902055505050565b600c54613150908361247a565b600c55600d5461316090826123cc565b600d555050565b6001600160a01b038116811461136857600080fd5b60006020828403121561318e57600080fd5b8135610d2081613167565b600060208083528351808285015260005b818110156131c6578581018301518582016040015282016131aa565b818111156131d8576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b6000806040838503121561321f57600080fd5b823561322a81613167565b946020939093013593505050565b60008060006060848603121561324d57600080fd5b833561325881613167565b9250602084013561326881613167565b929592945050506040919091013590565b60006020828403121561328b57600080fd5b5035919050565b600080604083850312156132a557600080fd5b82356132b081613167565b915060208301356132c081613167565b809150509250929050565b801515811461136857600080fd5b600080604083850312156132ec57600080fd5b8235915060208301356132c0816132cb565b60006020828403121561331057600080fd5b8135610d20816132cb565b60008083601f84011261332d57600080fd5b50813567ffffffffffffffff81111561334557600080fd5b6020830191508360208260051b850101111561336057600080fd5b9250929050565b6000806000806040858703121561337d57600080fd5b843567ffffffffffffffff8082111561339557600080fd5b6133a18883890161331b565b909650945060208701359150808211156133ba57600080fd5b506133c78782880161331b565b95989497509550505050565b600181811c908216806133e757607f821691505b60208210811415613421577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600081600019048311821515161561347057613470613427565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000828210156134b6576134b6613427565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60006000198214156134fe576134fe613427565b5060010190565b60006020828403121561351757600080fd5b5051919050565b60006020828403121561353057600080fd5b8151610d20816132cb565b6000821982111561354e5761354e613427565b500190565b600082613589577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000602082840312156135a057600080fd5b8151610d2081613167565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156135fb5784516001600160a01b0316835293830193918301916001016135d6565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561363157600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220eb359087762552f58ede3cdab1dd52c0344ff4c011cc5e8851f22ecc8eefa62264736f6c634300080c0033

Deployed Bytecode Sourcemap

25676:20969:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35342:113;;;;;;;;;;-1:-1:-1;35342:113:0;;;;;:::i;:::-;;:::i;:::-;;28273:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29185:161;;;;;;;;;;-1:-1:-1;29185:161:0;;;;;:::i;:::-;;:::i;:::-;;;1571:14:1;;1564:22;1546:41;;1534:2;1519:18;29185:161:0;1406:187:1;30306:87:0;;;;;;;;;;-1:-1:-1;30375:10:0;;30306:87;;;1744:25:1;;;1732:2;1717:18;30306:87:0;1598:177:1;26810:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1971:55:1;;;1953:74;;1941:2;1926:18;26810:51:0;1780:253:1;28550:95:0;;;;;;;;;;-1:-1:-1;28630:7:0;;28550:95;;29354:313;;;;;;;;;;-1:-1:-1;29354:313:0;;;;;:::i;:::-;;:::i;34376:266::-;;;;;;;;;;-1:-1:-1;34376:266:0;;;;;:::i;:::-;;:::i;35221:109::-;;;;;;;;;;-1:-1:-1;35221:109:0;;;;;:::i;:::-;;:::i;32026:253::-;;;;;;;;;;-1:-1:-1;32026:253:0;;;;;:::i;:::-;;:::i;26216:28::-;;;;;;;;;;-1:-1:-1;26216:28:0;;;;;;;;;;;28459:83;;;;;;;;;;-1:-1:-1;28525:9:0;;28459:83;;28525:9;;;;2826:36:1;;2814:2;2799:18;28459:83:0;2684:184:1;32742:479:0;;;;;;;;;;-1:-1:-1;32742:479:0;;;;;:::i;:::-;;:::i;29675:218::-;;;;;;;;;;-1:-1:-1;29675:218:0;;;;;:::i;:::-;;:::i;34868:185::-;;;;;;;;;;-1:-1:-1;34868:185:0;;;;;:::i;:::-;;:::i;26621:26::-;;;;;;;;;;;;;;;;31197:377;;;;;;;;;;-1:-1:-1;31197:377:0;;;;;:::i;:::-;;:::i;33885:111::-;;;;;;;;;;-1:-1:-1;33885:111:0;;;;;:::i;:::-;;:::i;31582:436::-;;;;;;;;;;-1:-1:-1;31582:436:0;;;;;:::i;:::-;;:::i;34654:202::-;;;;;;;;;;;;;:::i;26868:38::-;;;;;;;;;;;;;;;26947:40;;;;;;;;;;-1:-1:-1;26947:40:0;;;;;;;;;;;32287:447;;;;;;;;;;-1:-1:-1;32287:447:0;;;;;:::i;:::-;;:::i;39170:123::-;;;;;;;;;;-1:-1:-1;39170:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;39258:27:0;39234:4;39258:27;;;:18;:27;;;;;;;;;39170:123;34126:118;;;;;;;;;;-1:-1:-1;34126:118:0;;;;;:::i;:::-;;:::i;35467:121::-;;;;;;;;;;-1:-1:-1;35467:121:0;;;;;:::i;:::-;-1:-1:-1;;;;;35559:21:0;35535:4;35559:21;;;:10;:21;;;;;;;;;35467:121;26708:33;;;;;;;;;;;;;;;;28653:198;;;;;;;;;;-1:-1:-1;28653:198:0;;;;;:::i;:::-;;:::i;16271:148::-;;;;;;;;;;;;;:::i;26458:30::-;;;;;;;;;;-1:-1:-1;26458:30:0;;;;-1:-1:-1;;;;;26458:30:0;;;35065:144;;;;;;;;;;-1:-1:-1;35065:144:0;;;;;:::i;:::-;;:::i;27000:59::-;;;;;;;;;;;;;;;;30178:120;;;;;;;;;;-1:-1:-1;30178:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;30270:20:0;30246:4;30270:20;;;:11;:20;;;;;;;;;30178:120;30405:193;;;;;;;;;;-1:-1:-1;30405:193:0;;;;;:::i;:::-;;:::i;15628:79::-;;;;;;;;;;-1:-1:-1;15666:7:0;15693:6;-1:-1:-1;;;;;15693:6:0;15628:79;;28364:87;;;;;;;;;;;;;:::i;29901:269::-;;;;;;;;;;-1:-1:-1;29901:269:0;;;;;:::i;:::-;;:::i;35600:78::-;;;;;;;;;;;;;:::i;17293:305::-;;;;;;;;;;;;;:::i;28859:167::-;;;;;;;;;;-1:-1:-1;28859:167:0;;;;;:::i;:::-;;:::i;16826:89::-;;;;;;;;;;-1:-1:-1;16898:9:0;;16826:89;;35686:171;;;;;;;;;;-1:-1:-1;35686:171:0;;;;;:::i;:::-;;:::i;27066:76::-;;;;;;;;;;;;;;;;30803:386;;;;;;;;;;-1:-1:-1;30803:386:0;;;;;:::i;:::-;;:::i;16991:226::-;;;;;;;;;;-1:-1:-1;16991:226:0;;;;;:::i;:::-;;:::i;29034:143::-;;;;;;;;;;-1:-1:-1;29034:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;29142:18:0;;;29115:7;29142:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29034:143;34252:112;;;;;;;;;;;;;:::i;34008:110::-;;;;;;;;;;-1:-1:-1;34008:110:0;;;;;:::i;:::-;;:::i;16574:244::-;;;;;;;;;;-1:-1:-1;16574:244:0;;;;;:::i;:::-;;:::i;35342:113::-;15840:6;;-1:-1:-1;;;;;15840:6:0;8133:10;15840:22;15832:67;;;;-1:-1:-1;;;15832:67:0;;6198:2:1;15832:67:0;;;6180:21:1;;;6217:18;;;6210:30;6276:34;6256:18;;;6249:62;6328:18;;15832:67:0;;;;;;;;;-1:-1:-1;;;;;35418:21:0::1;35442:5;35418:21:::0;;;:10:::1;:21;::::0;;;;:29;;-1:-1:-1;;35418:29:0::1;::::0;;35342:113::o;28273:83::-;28310:13;28343:5;28336:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28273:83;:::o;29185:161::-;29260:4;29277:39;8133:10;29300:7;29309:6;29277:8;:39::i;:::-;-1:-1:-1;29334:4:0;29185:161;;;;;:::o;29354:313::-;29452:4;29469:36;29479:6;29487:9;29498:6;29469:9;:36::i;:::-;29516:121;29525:6;8133:10;29547:89;29585:6;29547:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29547:19:0;;;;;;:11;:19;;;;;;;;8133:10;29547:33;;;;;;;;;;:37;:89::i;:::-;29516:8;:121::i;:::-;-1:-1:-1;29655:4:0;29354:313;;;;;:::o;34376:266::-;15840:6;;-1:-1:-1;;;;;15840:6:0;8133:10;15840:22;15832:67;;;;-1:-1:-1;;;15832:67:0;;6198:2:1;15832:67:0;;;6180:21:1;;;6217:18;;;6210:30;6276:34;6256:18;;;6249:62;6328:18;;15832:67:0;5996:356:1;15832:67:0;34499:8:::1;34477:19;:30;34469:95;;;::::0;-1:-1:-1;;;34469:95:0;;7001:2:1;34469:95:0::1;::::0;::::1;6983:21:1::0;7040:2;7020:18;;;7013:30;7079:34;7059:18;;;7052:62;7150:22;7130:18;;;7123:50;7190:19;;34469:95:0::1;6799:416:1::0;34469:95:0::1;34607:27;:19:::0;34629:5:::1;34607:27;:::i;:::-;34575:29;:59:::0;-1:-1:-1;34376:266:0:o;35221:109::-;15840:6;;-1:-1:-1;;;;;15840:6:0;8133:10;15840:22;15832:67;;;;-1:-1:-1;;;15832:67:0;;6198:2:1;15832:67:0;;;6180:21:1;;;6217:18;;;6210:30;6276:34;6256:18;;;6249:62;6328:18;;15832:67:0;5996:356:1;15832:67:0;-1:-1:-1;;;;;35294:21:0::1;;::::0;;;:10:::1;:21;::::0;;;;:28;;-1:-1:-1;;35294:28:0::1;35318:4;35294:28;::::0;;35221:109::o;32026:253::-;32092:7;32131;;32120;:18;;32112:73;;;;-1:-1:-1;;;32112:73:0;;7844:2:1;32112:73:0;;;7826:21:1;7883:2;7863:18;;;7856:30;7922:34;7902:18;;;7895:62;7993:12;7973:18;;;7966:40;8023:19;;32112:73:0;7642:406:1;32112:73:0;32196:19;32219:10;:8;:10::i;:::-;32196:33;-1:-1:-1;32247:24:0;:7;32196:33;32247:11;:24::i;:::-;32240:31;32026:253;-1:-1:-1;;;32026:253:0:o;32742:479::-;15840:6;;-1:-1:-1;;;;;15840:6:0;8133:10;15840:22;15832:67;;;;-1:-1:-1;;;15832:67:0;;6198:2:1;15832:67:0;;;6180:21:1;;;6217:18;;;6210:30;6276:34;6256:18;;;6249:62;6328:18;;15832:67:0;5996:356:1;15832:67:0;-1:-1:-1;;;;;32824:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32816:60;;;::::0;-1:-1:-1;;;32816:60:0;;8255:2:1;32816:60:0::1;::::0;::::1;8237:21:1::0;8294:2;8274:18;;;8267:30;8333:29;8313:18;;;8306:57;8380:18;;32816:60:0::1;8053:351:1::0;32816:60:0::1;32892:9;32887:327;32911:9;:16:::0;32907:20;::::1;32887:327;;;32969:7;-1:-1:-1::0;;;;;32953:23:0::1;:9;32963:1;32953:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;32953:12:0::1;:23;32949:254;;;33012:9;33022:16:::0;;:20:::1;::::0;33041:1:::1;::::0;33022:20:::1;:::i;:::-;33012:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;32997:9:::1;:12:::0;;-1:-1:-1;;;;;33012:31:0;;::::1;::::0;33007:1;;32997:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;32997:46:0::1;-1:-1:-1::0;;;;;32997:46:0;;::::1;;::::0;;33062:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;33101:11:::1;:20:::0;;;;:28;;-1:-1:-1;;33101:28:0::1;::::0;;33148:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;33148:15:0;;;;;-1:-1:-1;;33148:15:0::1;::::0;;;;;32887:327:::1;32742:479:::0;:::o;32949:254::-:1;32929:3:::0;::::1;::::0;::::1;:::i;:::-;;;;32887:327;;;;32742:479:::0;:::o;29675:218::-;8133:10;29763:4;29812:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;29812:34:0;;;;;;;;;;29763:4;;29780:83;;29803:7;;29812:50;;29851:10;29812:38;:50::i;34868:185::-;15840:6;;-1:-1:-1;;;;;15840:6:0;8133:10;15840:22;15832:67;;;;-1:-1:-1;;;15832:67:0;;6198:2:1;15832:67:0;;;6180:21:1;;;6217:18;;;6210:30;6276:34;6256:18;;;6249:62;6328:18;;15832:67:0;5996:356:1;15832:67:0;35007:37:::1;::::0;;;;35038:4:::1;35007:37;::::0;::::1;1953:74:1::0;-1:-1:-1;;;;;34970:21:0;::::1;::::0;::::1;::::0;34992:13;;34970:21;;35007:22:::1;::::0;1926:18:1;;35007:37:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34970:75;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;9498:55:1;;;34970:75:0::1;::::0;::::1;9480:74:1::0;9570:18;;;9563:34;9453:18;;34970:75:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34868:185:::0;;:::o;31197:377::-;8133:10;31249:14;31298:19;;;:11;:19;;;;;;;;31297:20;31289:77;;;;-1:-1:-1;;;31289:77:0;;10060:2:1;31289:77:0;;;10042:21:1;10099:2;10079:18;;;10072:30;10138:34;10118:18;;;10111:62;10209:14;10189:18;;;10182:42;10241:19;;31289:77:0;9858:408:1;31289:77:0;31378:15;31402:19;31413:7;31402:10;:19::i;:::-;-1:-1:-1;;;;;;;;;31450:15:0;;;;;;:7;:15;;;;;;31377:44;;-1:-1:-1;31450:28:0;;:15;-1:-1:-1;31377:44:0;31450:19;:28::i;:::-;-1:-1:-1;;;;;31432:15:0;;;;;;:7;:15;;;;;:46;31499:7;;:20;;31511:7;31499:11;:20::i;:::-;31489:7;:30;31543:10;;:23;;31558:7;31543:14;:23::i;:::-;31530:10;:36;-1:-1:-1;;;31197:377:0:o;33885:111::-;15840:6;;-1:-1:-1;;;;;15840:6:0;8133:10;15840:22;15832:67;;;;-1:-1:-1;;;15832:67:0;;6198:2:1;15832:67:0;;;6180:21:1;;;6217:18;;;6210:30;6276:34;6256:18;;;6249:62;6328:18;;15832:67:0;5996:356:1;15832:67:0;-1:-1:-1;;;;;33954:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;33954:34:0::1;33984:4;33954:34;::::0;;33885:111::o;31582:436::-;31672:7;31711;;31700;:18;;31692:62;;;;-1:-1:-1;;;31692:62:0;;10473:2:1;31692:62:0;;;10455:21:1;10512:2;10492:18;;;10485:30;10551:33;10531:18;;;10524:61;10602:18;;31692:62:0;10271:355:1;31692:62:0;31770:17;31765:246;;31805:15;31829:19;31840:7;31829:10;:19::i;:::-;-1:-1:-1;31804:44:0;;-1:-1:-1;31863:14:0;;-1:-1:-1;;;;;31863:14:0;31765:246;31912:23;31943:19;31954:7;31943:10;:19::i;:::-;-1:-1:-1;31910:52:0;;-1:-1:-1;31977:22:0;;-1:-1:-1;;;;;31977:22:0;34654:202;15840:6;;-1:-1:-1;;;;;15840:6:0;8133:10;15840:22;15832:67;;;;-1:-1:-1;;;15832:67:0;;6198:2:1;15832:67:0;;;6180:21:1;;;6217:18;;;6210:30;6276:34;6256:18;;;6249:62;6328:18;;15832:67:0;5996:356:1;15832:67:0;34800:15:::1;::::0;34792:56:::1;::::0;-1:-1:-1;;;;;34800:15:0;;::::1;::::0;34826:21:::1;34792:56:::0;::::1;;;::::0;34800:15:::1;34792:56:::0;34800:15;34792:56;34826:21;34800:15;34792:56;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;34654:202::o:0;32287:447::-;15840:6;;-1:-1:-1;;;;;15840:6:0;8133:10;15840:22;15832:67;;;;-1:-1:-1;;;15832:67:0;;6198:2:1;15832:67:0;;;6180:21:1;;;6217:18;;;6210:30;6276:34;6256:18;;;6249:62;6328:18;;15832:67:0;5996:356:1;15832:67:0;-1:-1:-1;;;;;32484:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32483:21;32475:61;;;::::0;-1:-1:-1;;;32475:61:0;;8255:2:1;32475:61:0::1;::::0;::::1;8237:21:1::0;8294:2;8274:18;;;8267:30;8333:29;8313:18;;;8306:57;8380:18;;32475:61:0::1;8053:351:1::0;32475:61:0::1;-1:-1:-1::0;;;;;32550:16:0;::::1;32569:1;32550:16:::0;;;:7:::1;:16;::::0;;;;;:20;32547:108:::1;;-1:-1:-1::0;;;;;32626:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;32606:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;32587:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;32547:108:::1;-1:-1:-1::0;;;;;32665:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;32665:27:0::1;32688:4;32665:27:::0;;::::1;::::0;;;32703:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;32703:23:0::1;::::0;;::::1;::::0;;32287:447::o;34126:118::-;15840:6;;-1:-1:-1;;;;;15840:6:0;8133:10;15840:22;15832:67;;;;-1:-1:-1;;;15832:67:0;;6198:2:1;15832:67:0;;;6180:21:1;;;6217:18;;;6210:30;6276:34;6256:18;;;6249:62;6328:18;;15832:67:0;5996:356:1;15832:67:0;34205:15:::1;:31:::0;;-1:-1:-1;;34205:31:0::1;-1:-1:-1::0;;;;;34205:31:0;;;::::1;::::0;;;::::1;::::0;;34126:118::o;28653:198::-;-1:-1:-1;;;;;28743:20:0;;28719:7;28743:20;;;:11;:20;;;;;;;;28739:49;;;-1:-1:-1;;;;;;28772:16:0;;;;;:7;:16;;;;;;;28653:198::o;28739:49::-;-1:-1:-1;;;;;28826:16:0;;;;;;:7;:16;;;;;;28806:37;;:19;:37::i;16271:148::-;15840:6;;-1:-1:-1;;;;;15840:6:0;8133:10;15840:22;15832:67;;;;-1:-1:-1;;;15832:67:0;;6198:2:1;15832:67:0;;;6180:21:1;;;6217:18;;;6210:30;6276:34;6256:18;;;6249:62;6328:18;;15832:67:0;5996:356:1;15832:67:0;16378:1:::1;16362:6:::0;;16341:40:::1;::::0;-1:-1:-1;;;;;16362:6:0;;::::1;::::0;16341:40:::1;::::0;16378:1;;16341:40:::1;16409:1;16392:19:::0;;-1:-1:-1;;16392:19:0::1;::::0;;16271:148::o;35065:144::-;15840:6;;-1:-1:-1;;;;;15840:6:0;8133:10;15840:22;15832:67;;;;-1:-1:-1;;;15832:67:0;;6198:2:1;15832:67:0;;;6180:21:1;;;6217:18;;;6210:30;6276:34;6256:18;;;6249:62;6328:18;;15832:67:0;5996:356:1;15832:67:0;35156:45:::1;::::0;-1:-1:-1;;;;;35156:22:0;::::1;::::0;35179:21:::1;35156:45:::0;::::1;;;::::0;::::1;::::0;;;35179:21;35156:22;:45;::::1;;;;;;;;;;;;;::::0;::::1;;;;30405:193:::0;15840:6;;-1:-1:-1;;;;;15840:6:0;8133:10;15840:22;15832:67;;;;-1:-1:-1;;;15832:67:0;;6198:2:1;15832:67:0;;;6180:21:1;;;6217:18;;;6210:30;6276:34;6256:18;;;6249:62;6328:18;;15832:67:0;5996:356:1;15832:67:0;30489:14:::1;:12;:14::i;:::-;30514:50;8133:10:::0;30538:9;30549:14:::1;:6:::0;30558:5:::1;30549:14;:::i;:::-;30514:9;:50::i;:::-;30575:15;39087::::0;;39077:7;:25;39129:21;;39113:13;:37;39033:125;28364:87;28403:13;28436:7;28429:14;;;;;:::i;29901:269::-;29994:4;30011:129;8133:10;30034:7;30043:96;30082:15;30043:96;;;;;;;;;;;;;;;;;8133:10;30043:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30043:34:0;;;;;;;;;;;;:38;:96::i;35600:78::-;15840:6;;-1:-1:-1;;;;;15840:6:0;8133:10;15840:22;15832:67;;;;-1:-1:-1;;;15832:67:0;;6198:2:1;15832:67:0;;;6180:21:1;;;6217:18;;;6210:30;6276:34;6256:18;;;6249:62;6328:18;;15832:67:0;5996:356:1;15832:67:0;35655:8:::1;:15:::0;;;::::1;;;::::0;;35600:78::o;17293:305::-;17345:14;;-1:-1:-1;;;;;17345:14:0;17363:10;17345:28;17337:76;;;;-1:-1:-1;;;17337:76:0;;10833:2:1;17337:76:0;;;10815:21:1;10872:2;10852:18;;;10845:30;10911:34;10891:18;;;10884:62;10982:5;10962:18;;;10955:33;11005:19;;17337:76:0;10631:399:1;17337:76:0;17450:9;;17432:15;:27;17424:72;;;;-1:-1:-1;;;17424:72:0;;11237:2:1;17424:72:0;;;11219:21:1;11276:2;11256:18;;;11249:30;11315:33;11295:18;;;11288:61;11366:18;;17424:72:0;11035:355:1;17424:72:0;17541:14;;;17533:6;;17512:44;;-1:-1:-1;;;;;17541:14:0;;;;17533:6;;;;17512:44;;;17576:14;;;17567:23;;-1:-1:-1;;17567:23:0;-1:-1:-1;;;;;17576:14:0;;;17567:23;;;;;;17293:305::o;28859:167::-;28937:4;28954:42;8133:10;28978:9;28989:6;28954:9;:42::i;35686:171::-;15840:6;;-1:-1:-1;;;;;15840:6:0;8133:10;15840:22;15832:67;;;;-1:-1:-1;;;15832:67:0;;6198:2:1;15832:67:0;;;6180:21:1;;;6217:18;;;6210:30;6276:34;6256:18;;;6249:62;6328:18;;15832:67:0;5996:356:1;15832:67:0;35763:21:::1;:32:::0;;;::::1;;;;::::0;;;::::1;;::::0;;35811:38:::1;::::0;::::1;::::0;::::1;::::0;35787:8;1571:14:1;1564:22;1546:41;;1534:2;1519:18;;1406:187;35811:38:0::1;;;;;;;;35686:171:::0;:::o;30803:386::-;15840:6;;-1:-1:-1;;;;;15840:6:0;8133:10;15840:22;15832:67;;;;-1:-1:-1;;;15832:67:0;;6198:2:1;15832:67:0;;;6180:21:1;;;6217:18;;;6210:30;6276:34;6256:18;;;6249:62;6328:18;;15832:67:0;5996:356:1;15832:67:0;30915:16:::1;30954:35:::0;;::::1;30946:71;;;::::0;-1:-1:-1;;;30946:71:0;;11597:2:1;30946:71:0::1;::::0;::::1;11579:21:1::0;11636:2;11616:18;;;11609:30;11675:25;11655:18;;;11648:53;11718:18;;30946:71:0::1;11395:347:1::0;30946:71:0::1;31034:28:::0;;::::1;31028:154;;;31078:64;31094:10;;31105:8;31094:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;31116:7;;31124:8;31116:17;;;;;;;:::i;:::-;;;;;;;31136:5;31116:25;;;;:::i;:::-;31078:15;:64::i;:::-;31157:13;31169:1;31157:13:::0;::::1;:::i;:::-;;;31028:154;;;30904:285;30803:386:::0;;;;:::o;16991:226::-;15840:6;;-1:-1:-1;;;;;15840:6:0;8133:10;15840:22;15832:67;;;;-1:-1:-1;;;15832:67:0;;6198:2:1;15832:67:0;;;6180:21:1;;;6217:18;;;6210:30;6276:34;6256:18;;;6249:62;6328:18;;15832:67:0;5996:356:1;15832:67:0;17072:6:::1;::::0;;;17055:23;;-1:-1:-1;;17055:23:0;;::::1;-1:-1:-1::0;;;;;17072:6:0;::::1;17055:23;::::0;;;17089:19:::1;::::0;;17131:22:::1;17149:4:::0;17131:15:::1;:22;:::i;:::-;17119:9;:34:::0;17206:1:::1;17190:6:::0;;17169:40:::1;::::0;-1:-1:-1;;;;;17190:6:0;;::::1;::::0;17169:40:::1;::::0;17206:1;;17169:40:::1;16991:226:::0;:::o;34252:112::-;15840:6;;-1:-1:-1;;;;;15840:6:0;8133:10;15840:22;15832:67;;;;-1:-1:-1;;;15832:67:0;;6198:2:1;15832:67:0;;;6180:21:1;;;6217:18;;;6210:30;6276:34;6256:18;;;6249:62;6328:18;;15832:67:0;5996:356:1;15832:67:0;34325:31:::1;34310:12;:46:::0;34252:112::o;34008:110::-;15840:6;;-1:-1:-1;;;;;15840:6:0;8133:10;15840:22;15832:67;;;;-1:-1:-1;;;15832:67:0;;6198:2:1;15832:67:0;;;6180:21:1;;;6217:18;;;6210:30;6276:34;6256:18;;;6249:62;6328:18;;15832:67:0;5996:356:1;15832:67:0;-1:-1:-1;;;;;34075:27:0::1;34105:5;34075:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;34075:35:0::1;::::0;;34008:110::o;16574:244::-;15840:6;;-1:-1:-1;;;;;15840:6:0;8133:10;15840:22;15832:67;;;;-1:-1:-1;;;15832:67:0;;6198:2:1;15832:67:0;;;6180:21:1;;;6217:18;;;6210:30;6276:34;6256:18;;;6249:62;6328:18;;15832:67:0;5996:356:1;15832:67:0;-1:-1:-1;;;;;16663:22:0;::::1;16655:73;;;::::0;-1:-1:-1;;;16655:73:0;;12082:2:1;16655:73:0::1;::::0;::::1;12064:21:1::0;12121:2;12101:18;;;12094:30;12160:34;12140:18;;;12133:62;12231:8;12211:18;;;12204:36;12257:19;;16655:73:0::1;11880:402:1::0;16655:73:0::1;16765:6;::::0;;16744:38:::1;::::0;-1:-1:-1;;;;;16744:38:0;;::::1;::::0;16765:6;::::1;::::0;16744:38:::1;::::0;::::1;16793:6;:17:::0;;-1:-1:-1;;16793:17:0::1;-1:-1:-1::0;;;;;16793:17:0;;;::::1;::::0;;;::::1;::::0;;16574:244::o;39301:337::-;-1:-1:-1;;;;;39394:19:0;;39386:68;;;;-1:-1:-1;;;39386:68:0;;12489:2:1;39386:68:0;;;12471:21:1;12528:2;12508:18;;;12501:30;12567:34;12547:18;;;12540:62;12638:6;12618:18;;;12611:34;12662:19;;39386:68:0;12287:400:1;39386:68:0;-1:-1:-1;;;;;39473:21:0;;39465:68;;;;-1:-1:-1;;;39465:68:0;;12894:2:1;39465:68:0;;;12876:21:1;12933:2;12913:18;;;12906:30;12972:34;12952:18;;;12945:62;13043:4;13023:18;;;13016:32;13065:19;;39465:68:0;12692:398:1;39465:68:0;-1:-1:-1;;;;;39546:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;39598:32;;1744:25:1;;;39598:32:0;;1717:18:1;39598:32:0;;;;;;;39301:337;;;:::o;39646:1813::-;-1:-1:-1;;;;;39768:18:0;;39760:68;;;;-1:-1:-1;;;39760:68:0;;13297:2:1;39760:68:0;;;13279:21:1;13336:2;13316:18;;;13309:30;13375:34;13355:18;;;13348:62;13446:7;13426:18;;;13419:35;13471:19;;39760:68:0;13095:401:1;39760:68:0;-1:-1:-1;;;;;39847:16:0;;39839:64;;;;-1:-1:-1;;;39839:64:0;;13703:2:1;39839:64:0;;;13685:21:1;13742:2;13722:18;;;13715:30;13781:34;13761:18;;;13754:62;13852:5;13832:18;;;13825:33;13875:19;;39839:64:0;13501:399:1;39839:64:0;39931:1;39922:6;:10;39914:64;;;;-1:-1:-1;;;39914:64:0;;14107:2:1;39914:64:0;;;14089:21:1;14146:2;14126:18;;;14119:30;14185:34;14165:18;;;14158:62;14256:11;14236:18;;;14229:39;14285:19;;39914:64:0;13905:405:1;39914:64:0;15666:7;15693:6;-1:-1:-1;;;;;39992:15:0;;;15693:6;;39992:15;;;;:32;;-1:-1:-1;15666:7:0;15693:6;-1:-1:-1;;;;;40011:13:0;;;15693:6;;40011:13;;39992:32;39989:125;;;40057:12;;40047:6;:22;;40039:75;;;;-1:-1:-1;;;40039:75:0;;14517:2:1;40039:75:0;;;14499:21:1;14556:2;14536:18;;;14529:30;14595:34;14575:18;;;14568:62;14666:10;14646:18;;;14639:38;14694:19;;40039:75:0;14315:404:1;40039:75:0;40409:28;40440:24;40458:4;40440:9;:24::i;:::-;40409:55;;40512:12;;40488:20;:36;40485:112;;-1:-1:-1;40573:12:0;;40485:112;40668:29;;40644:53;;;;;;;40726;;-1:-1:-1;40763:16:0;;;;40762:17;40726:53;:91;;;;;40804:13;-1:-1:-1;;;;;40796:21:0;:4;-1:-1:-1;;;;;40796:21:0;;;40726:91;:129;;;;-1:-1:-1;40834:21:0;;;;;;;40726:129;40708:318;;;40905:29;;40882:52;;40978:36;40993:20;40978:14;:36::i;:::-;-1:-1:-1;;;;;41234:24:0;;41107:12;41234:24;;;:18;:24;;;;;;41122:4;;41234:24;;;:50;;-1:-1:-1;;;;;;41262:22:0;;;;;;:18;:22;;;;;;;;41234:50;41231:96;;;-1:-1:-1;41310:5:0;41231:96;41413:38;41428:4;41433:2;41436:6;41443:7;41413:14;:38::i;:::-;39749:1710;;;39646:1813;;;:::o;4384:192::-;4470:7;4506:12;4498:6;;;;4490:29;;;;-1:-1:-1;;;4490:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4530:9:0;4542:5;4546:1;4542;:5;:::i;:::-;4530:17;4384:192;-1:-1:-1;;;;;4384:192:0:o;37320:163::-;37361:7;37382:15;37399;37418:19;:17;:19::i;:::-;37381:56;;-1:-1:-1;37381:56:0;-1:-1:-1;37455:20:0;37381:56;;37455:11;:20::i;:::-;37448:27;;;;37320:163;:::o;5782:132::-;5840:7;5867:39;5871:1;5874;5867:39;;;;;;;;;;;;;;;;;:3;:39::i;3481:181::-;3539:7;;3571:5;3575:1;3571;:5;:::i;:::-;3559:17;;3600:1;3595;:6;;3587:46;;;;-1:-1:-1;;;3587:46:0;;14926:2:1;3587:46:0;;;14908:21:1;14965:2;14945:18;;;14938:30;15004:29;14984:18;;;14977:57;15051:18;;3587:46:0;14724:351:1;36118:419:0;36177:7;36186;36195;36204;36213;36222;36243:23;36268:12;36282:18;36304:20;36316:7;36304:11;:20::i;:::-;36242:82;;;;;;36336:15;36353:23;36378:12;36394:50;36406:7;36415:4;36421:10;36433;:8;:10::i;:::-;36394:11;:50::i;:::-;36335:109;;;;-1:-1:-1;36335:109:0;;-1:-1:-1;36495:15:0;;-1:-1:-1;36512:4:0;;-1:-1:-1;36518:10:0;;-1:-1:-1;36118:419:0;;-1:-1:-1;;;;;36118:419:0:o;3945:136::-;4003:7;4030:43;4034:1;4037;4030:43;;;;;;;;;;;;;;;;;:3;:43::i;38771:250::-;38817:7;;:12;:34;;;;-1:-1:-1;38833:13:0;;:18;38817:34;38814:46;;;38771:250::o;38814:46::-;38898:7;;;38880:15;:25;38940:13;;;38916:21;:37;-1:-1:-1;38974:11:0;;;;38996:17;38771:250::o;30610:181::-;30690:14;:12;:14::i;:::-;30715:42;8133:10;30739:9;30750:6;30715:9;:42::i;41467:1182::-;27449:16;:23;;-1:-1:-1;;27449:23:0;27468:4;27449:23;;;:16;41655:27:::1;:20:::0;41680:1:::1;41655:24;:27::i;:::-;41640:42:::0;-1:-1:-1;41693:17:0::1;41713:30;:20:::0;41640:42;41713:24:::1;:30::i;:::-;41693:50:::0;-1:-1:-1;42046:21:0::1;42112:22;42129:4:::0;42112:16:::1;:22::i;:::-;42265:18;42286:41;:21;42312:14:::0;42286:25:::1;:41::i;:::-;42265:62:::0;-1:-1:-1;42338:22:0::1;42363:27;42386:3;42363:18;42265:62:::0;42378:2:::1;42363:14;:18::i;:::-;:22:::0;::::1;:27::i;:::-;42409:15;::::0;42401:49:::1;::::0;42338:52;;-1:-1:-1;;;;;;42409:15:0::1;::::0;42401:49;::::1;;;::::0;42338:52;;42409:15:::1;42401:49:::0;42409:15;42401:49;42338:52;42409:15;42401:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;42461:28:0::1;42475:14:::0;42461:28;::::1;:::i;:::-;;;42537:35;42550:9;42561:10;42537:12;:35::i;:::-;42598:43;::::0;;15282:25:1;;;15338:2;15323:18;;15316:34;;;15366:18;;;15359:34;;;42598:43:0::1;::::0;15270:2:1;15255:18;42598:43:0::1;;;;;;;-1:-1:-1::0;;27495:16:0;:24;;-1:-1:-1;;27495:24:0;;;-1:-1:-1;;;;41467:1182:0:o;43848:1114::-;43959:8;;;;;;;43955:114;;15666:7;15693:6;-1:-1:-1;;;;;43991:17:0;;;15693:6;;43991:17;43983:26;;;;;;-1:-1:-1;;;;;44092:18:0;;;;;;:10;:18;;;;;;;;;:43;;-1:-1:-1;;;;;;44114:21:0;;;;;;:10;:21;;;;;;;;44092:43;44089:126;;;44159:12;;;;44151:52;;;;-1:-1:-1;;;44151:52:0;;15606:2:1;44151:52:0;;;15588:21:1;15645:2;15625:18;;;15618:30;15684:29;15664:18;;;15657:57;15731:18;;44151:52:0;15404:351:1;44151:52:0;44239:7;44235:40;;44261:14;:12;:14::i;:::-;-1:-1:-1;;;;;44300:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;44324:22:0;;;;;;:11;:22;;;;;;;;44323:23;44300:46;44296:597;;;44363:48;44385:6;44393:9;44404:6;44363:21;:48::i;:::-;44296:597;;;-1:-1:-1;;;;;44434:19:0;;;;;;:11;:19;;;;;;;;44433:20;:46;;;;-1:-1:-1;;;;;;44457:22:0;;;;;;:11;:22;;;;;;;;44433:46;44429:464;;;44496:46;44516:6;44524:9;44535:6;44496:19;:46::i;44429:464::-;-1:-1:-1;;;;;44565:19:0;;;;;;:11;:19;;;;;;;;44564:20;:47;;;;-1:-1:-1;;;;;;44589:22:0;;;;;;:11;:22;;;;;;;;44588:23;44564:47;44560:333;;;44628:44;44646:6;44654:9;44665:6;44628:17;:44::i;44560:333::-;-1:-1:-1;;;;;44694:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;44717:22:0;;;;;;:11;:22;;;;;;;;44694:45;44690:203;;;44756:48;44778:6;44786:9;44797:6;44756:21;:48::i;44690:203::-;44837:44;44855:6;44863:9;44874:6;44837:17;:44::i;:::-;44917:7;44913:41;;44939:15;39087;;39077:7;:25;39129:21;;39113:13;:37;39033:125;44939:15;43848:1114;;;;:::o;37491:561::-;37588:7;;37624;;37541;;;;;37648:289;37672:9;:16;37668:20;;37648:289;;;37738:7;37714;:21;37722:9;37732:1;37722:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37722:12:0;37714:21;;;;;;;;;;;;;:31;;:66;;;37773:7;37749;:21;37757:9;37767:1;37757:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37757:12:0;37749:21;;;;;;;;;;;;;:31;37714:66;37710:97;;;37790:7;;37799;;37782:25;;;;;;;37491:561;;:::o;37710:97::-;37832:34;37844:7;:21;37852:9;37862:1;37852:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37852:12:0;37844:21;;;;;;;;;;;;;37832:7;;:11;:34::i;:::-;37822:44;;37891:34;37903:7;:21;37911:9;37921:1;37911:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37911:12:0;37903:21;;;;;;;;;;;;;37891:7;;:11;:34::i;:::-;37881:44;-1:-1:-1;37690:3:0;;;;:::i;:::-;;;;37648:289;;;-1:-1:-1;37973:7:0;;37961;;:20;;:11;:20::i;:::-;37951:7;:30;37947:61;;;37991:7;;38000;;37983:25;;;;;;37491:561;;:::o;37947:61::-;38027:7;;38036;;-1:-1:-1;37491:561:0;-1:-1:-1;37491:561:0:o;6410:278::-;6496:7;6531:12;6524:5;6516:28;;;;-1:-1:-1;;;6516:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6555:9:0;6567:5;6571:1;6567;:5;:::i;36545:330::-;36605:7;36614;36623;36643:12;36658:24;36674:7;36658:15;:24::i;:::-;36643:39;;36693:18;36714:30;36736:7;36714:21;:30::i;:::-;36693:51;-1:-1:-1;36755:23:0;36781:33;36693:51;36781:17;:7;36793:4;36781:11;:17::i;:::-;:21;;:33::i;:::-;36755:59;36850:4;;-1:-1:-1;36856:10:0;;-1:-1:-1;36545:330:0;;-1:-1:-1;;;36545:330:0:o;36883:429::-;36998:7;;;;37054:24;:7;37066:11;37054;:24::i;:::-;37036:42;-1:-1:-1;37089:12:0;37104:21;:4;37113:11;37104:8;:21::i;:::-;37089:36;-1:-1:-1;37136:18:0;37157:27;:10;37172:11;37157:14;:27::i;:::-;37136:48;-1:-1:-1;37195:23:0;37221:33;37136:48;37221:17;:7;37233:4;37221:11;:17::i;:33::-;37273:7;;;;-1:-1:-1;37299:4:0;;-1:-1:-1;36883:429:0;;-1:-1:-1;;;;;;;36883:429:0:o;42657:589::-;42807:16;;;42821:1;42807:16;;;;;;;;42783:21;;42807:16;;;;;;;;;;-1:-1:-1;42807:16:0;42783:40;;42852:4;42834;42839:1;42834:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;42834:23:0;;;-1:-1:-1;;;;;42834:23:0;;;;;42878:15;-1:-1:-1;;;;;42878:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42868:4;42873:1;42868:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;42868:32:0;;;-1:-1:-1;;;;;42868:32:0;;;;;42913:62;42930:4;42945:15;42963:11;42913:8;:62::i;:::-;43014:224;;;;;-1:-1:-1;;;;;43014:15:0;:66;;;;:224;;43095:11;;43121:1;;43165:4;;43192;;43212:15;;43014:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4835:471;4893:7;5138:6;5134:47;;-1:-1:-1;5168:1:0;5161:8;;5134:47;5193:9;5205:5;5209:1;5205;:5;:::i;:::-;5193:17;-1:-1:-1;5238:1:0;5229:5;5233:1;5193:17;5229:5;:::i;:::-;:10;5221:56;;;;-1:-1:-1;;;5221:56:0;;17717:2:1;5221:56:0;;;17699:21:1;17756:2;17736:18;;;17729:30;17795:34;17775:18;;;17768:62;17866:3;17846:18;;;17839:31;17887:19;;5221:56:0;17515:397:1;43254:513:0;43402:62;43419:4;43434:15;43452:11;43402:8;:62::i;:::-;43507:15;-1:-1:-1;;;;;43507:31:0;;43546:9;43579:4;43599:11;43625:1;43668;43711:7;15666;15693:6;-1:-1:-1;;;;;15693:6:0;;15628:79;43711:7;43507:252;;;;;;;;;;-1:-1:-1;;;;;18299:15:1;;;43507:252:0;;;18281:34:1;18331:18;;;18324:34;;;;18374:18;;;18367:34;;;;18417:18;;;18410:34;18481:15;;;18460:19;;;18453:44;43733:15:0;18513:19:1;;;18506:35;18192:19;;43507:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;46074:566::-;46177:15;46194:23;46219:12;46233:23;46258:12;46272:18;46294:19;46305:7;46294:10;:19::i;:::-;-1:-1:-1;;;;;46342:15:0;;;;;;:7;:15;;;;;;46176:137;;-1:-1:-1;46176:137:0;;-1:-1:-1;46176:137:0;;-1:-1:-1;46176:137:0;-1:-1:-1;46176:137:0;-1:-1:-1;46176:137:0;-1:-1:-1;46342:28:0;;46362:7;46342:19;:28::i;:::-;-1:-1:-1;;;;;46324:15:0;;;;;;:7;:15;;;;;;;;:46;;;;46399:7;:15;;;;:28;;46419:7;46399:19;:28::i;:::-;-1:-1:-1;;;;;46381:15:0;;;;;;;:7;:15;;;;;;:46;;;;46459:18;;;;;;;:39;;46482:15;46459:22;:39::i;:::-;-1:-1:-1;;;;;46438:18:0;;;;;;:7;:18;;;;;:60;46512:26;46527:10;46512:14;:26::i;:::-;46549:23;46561:4;46567;46549:11;:23::i;:::-;46605:9;-1:-1:-1;;;;;46588:44:0;46597:6;-1:-1:-1;;;;;46588:44:0;;46616:15;46588:44;;;;1744:25:1;;1732:2;1717:18;;1598:177;46588:44:0;;;;;;;;46165:475;;;;;;46074:566;;;:::o;45480:586::-;45581:15;45598:23;45623:12;45637:23;45662:12;45676:18;45698:19;45709:7;45698:10;:19::i;:::-;-1:-1:-1;;;;;45746:15:0;;;;;;:7;:15;;;;;;45580:137;;-1:-1:-1;45580:137:0;;-1:-1:-1;45580:137:0;;-1:-1:-1;45580:137:0;-1:-1:-1;45580:137:0;-1:-1:-1;45580:137:0;-1:-1:-1;45746:28:0;;45580:137;45746:19;:28::i;:::-;-1:-1:-1;;;;;45728:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;45806:18;;;;;:7;:18;;;;;:39;;45829:15;45806:22;:39::i;:::-;-1:-1:-1;;;;;45785:18:0;;;;;;:7;:18;;;;;;;;:60;;;;45877:7;:18;;;;:39;;45900:15;45877:22;:39::i;44970:502::-;45069:15;45086:23;45111:12;45125:23;45150:12;45164:18;45186:19;45197:7;45186:10;:19::i;:::-;-1:-1:-1;;;;;45234:15:0;;;;;;:7;:15;;;;;;45068:137;;-1:-1:-1;45068:137:0;;-1:-1:-1;45068:137:0;;-1:-1:-1;45068:137:0;-1:-1:-1;45068:137:0;-1:-1:-1;45068:137:0;-1:-1:-1;45234:28:0;;45068:137;45234:19;:28::i;33231:642::-;33334:15;33351:23;33376:12;33390:23;33415:12;33429:18;33451:19;33462:7;33451:10;:19::i;:::-;-1:-1:-1;;;;;33499:15:0;;;;;;:7;:15;;;;;;33333:137;;-1:-1:-1;33333:137:0;;-1:-1:-1;33333:137:0;;-1:-1:-1;33333:137:0;-1:-1:-1;33333:137:0;-1:-1:-1;33333:137:0;-1:-1:-1;33499:28:0;;33519:7;33499:19;:28::i;:::-;-1:-1:-1;;;;;33481:15:0;;;;;;:7;:15;;;;;;;;:46;;;;33556:7;:15;;;;:28;;33576:7;33556:19;:28::i;38431:154::-;38495:7;38522:55;38561:5;38522:20;38534:7;;38522;:11;;:20;;;;:::i;38593:166::-;38663:7;38690:61;38735:5;38690:26;38702:13;;38690:7;:11;;:26;;;;:::i;38064:355::-;38127:19;38150:10;:8;:10::i;:::-;38127:33;-1:-1:-1;38171:18:0;38192:27;:10;38127:33;38192:14;:27::i;:::-;38271:4;38255:22;;;;:7;:22;;;;;;38171:48;;-1:-1:-1;38255:38:0;;38171:48;38255:26;:38::i;:::-;38246:4;38230:22;;;;:7;:22;;;;;;;;:63;;;;38307:11;:26;;;;;;38304:107;;;38389:4;38373:22;;;;:7;:22;;;;;;:38;;38400:10;38373:26;:38::i;:::-;38364:4;38348:22;;;;:7;:22;;;;;:63;38116:303;;38064:355;:::o;35963:147::-;36041:7;;:17;;36053:4;36041:11;:17::i;:::-;36031:7;:27;36082:10;;:20;;36097:4;36082:14;:20::i;:::-;36069:10;:33;-1:-1:-1;;35963:147:0:o;14:154:1:-;-1:-1:-1;;;;;93:5:1;89:54;82:5;79:65;69:93;;158:1;155;148:12;173:247;232:6;285:2;273:9;264:7;260:23;256:32;253:52;;;301:1;298;291:12;253:52;340:9;327:23;359:31;384:5;359:31;:::i;425:656::-;537:4;566:2;595;584:9;577:21;627:6;621:13;670:6;665:2;654:9;650:18;643:34;695:1;705:140;719:6;716:1;713:13;705:140;;;814:14;;;810:23;;804:30;780:17;;;799:2;776:26;769:66;734:10;;705:140;;;863:6;860:1;857:13;854:91;;;933:1;928:2;919:6;908:9;904:22;900:31;893:42;854:91;-1:-1:-1;997:2:1;985:15;1002:66;981:88;966:104;;;;1072:2;962:113;;425:656;-1:-1:-1;;;425:656:1:o;1086:315::-;1154:6;1162;1215:2;1203:9;1194:7;1190:23;1186:32;1183:52;;;1231:1;1228;1221:12;1183:52;1270:9;1257:23;1289:31;1314:5;1289:31;:::i;:::-;1339:5;1391:2;1376:18;;;;1363:32;;-1:-1:-1;;;1086:315:1:o;2038:456::-;2115:6;2123;2131;2184:2;2172:9;2163:7;2159:23;2155:32;2152:52;;;2200:1;2197;2190:12;2152:52;2239:9;2226:23;2258:31;2283:5;2258:31;:::i;:::-;2308:5;-1:-1:-1;2365:2:1;2350:18;;2337:32;2378:33;2337:32;2378:33;:::i;:::-;2038:456;;2430:7;;-1:-1:-1;;;2484:2:1;2469:18;;;;2456:32;;2038:456::o;2499:180::-;2558:6;2611:2;2599:9;2590:7;2586:23;2582:32;2579:52;;;2627:1;2624;2617:12;2579:52;-1:-1:-1;2650:23:1;;2499:180;-1:-1:-1;2499:180:1:o;2873:401::-;2954:6;2962;3015:2;3003:9;2994:7;2990:23;2986:32;2983:52;;;3031:1;3028;3021:12;2983:52;3070:9;3057:23;3089:31;3114:5;3089:31;:::i;:::-;3139:5;-1:-1:-1;3196:2:1;3181:18;;3168:32;3209:33;3168:32;3209:33;:::i;:::-;3261:7;3251:17;;;2873:401;;;;;:::o;3279:118::-;3365:5;3358:13;3351:21;3344:5;3341:32;3331:60;;3387:1;3384;3377:12;3402:309;3467:6;3475;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3580:9;3567:23;3557:33;;3640:2;3629:9;3625:18;3612:32;3653:28;3675:5;3653:28;:::i;4207:241::-;4263:6;4316:2;4304:9;4295:7;4291:23;4287:32;4284:52;;;4332:1;4329;4322:12;4284:52;4371:9;4358:23;4390:28;4412:5;4390:28;:::i;4453:367::-;4516:8;4526:6;4580:3;4573:4;4565:6;4561:17;4557:27;4547:55;;4598:1;4595;4588:12;4547:55;-1:-1:-1;4621:20:1;;4664:18;4653:30;;4650:50;;;4696:1;4693;4686:12;4650:50;4733:4;4725:6;4721:17;4709:29;;4793:3;4786:4;4776:6;4773:1;4769:14;4761:6;4757:27;4753:38;4750:47;4747:67;;;4810:1;4807;4800:12;4747:67;4453:367;;;;;:::o;4825:773::-;4947:6;4955;4963;4971;5024:2;5012:9;5003:7;4999:23;4995:32;4992:52;;;5040:1;5037;5030:12;4992:52;5080:9;5067:23;5109:18;5150:2;5142:6;5139:14;5136:34;;;5166:1;5163;5156:12;5136:34;5205:70;5267:7;5258:6;5247:9;5243:22;5205:70;:::i;:::-;5294:8;;-1:-1:-1;5179:96:1;-1:-1:-1;5382:2:1;5367:18;;5354:32;;-1:-1:-1;5398:16:1;;;5395:36;;;5427:1;5424;5417:12;5395:36;;5466:72;5530:7;5519:8;5508:9;5504:24;5466:72;:::i;:::-;4825:773;;;;-1:-1:-1;5557:8:1;-1:-1:-1;;;;4825:773:1:o;6357:437::-;6436:1;6432:12;;;;6479;;;6500:61;;6554:4;6546:6;6542:17;6532:27;;6500:61;6607:2;6599:6;6596:14;6576:18;6573:38;6570:218;;;6644:77;6641:1;6634:88;6745:4;6742:1;6735:15;6773:4;6770:1;6763:15;6570:218;;6357:437;;;:::o;7220:184::-;7272:77;7269:1;7262:88;7369:4;7366:1;7359:15;7393:4;7390:1;7383:15;7409:228;7449:7;7575:1;-1:-1:-1;;7503:74:1;7500:1;7497:81;7492:1;7485:9;7478:17;7474:105;7471:131;;;7582:18;;:::i;:::-;-1:-1:-1;7622:9:1;;7409:228::o;8409:184::-;8461:77;8458:1;8451:88;8558:4;8555:1;8548:15;8582:4;8579:1;8572:15;8598:125;8638:4;8666:1;8663;8660:8;8657:34;;;8671:18;;:::i;:::-;-1:-1:-1;8708:9:1;;8598:125::o;8728:184::-;8780:77;8777:1;8770:88;8877:4;8874:1;8867:15;8901:4;8898:1;8891:15;8917:195;8956:3;-1:-1:-1;;8980:5:1;8977:77;8974:103;;;9057:18;;:::i;:::-;-1:-1:-1;9104:1:1;9093:13;;8917:195::o;9117:184::-;9187:6;9240:2;9228:9;9219:7;9215:23;9211:32;9208:52;;;9256:1;9253;9246:12;9208:52;-1:-1:-1;9279:16:1;;9117:184;-1:-1:-1;9117:184:1:o;9608:245::-;9675:6;9728:2;9716:9;9707:7;9703:23;9699:32;9696:52;;;9744:1;9741;9734:12;9696:52;9776:9;9770:16;9795:28;9817:5;9795:28;:::i;11747:128::-;11787:3;11818:1;11814:6;11811:1;11808:13;11805:39;;;11824:18;;:::i;:::-;-1:-1:-1;11860:9:1;;11747:128::o;15760:274::-;15800:1;15826;15816:189;;15861:77;15858:1;15851:88;15962:4;15959:1;15952:15;15990:4;15987:1;15980:15;15816:189;-1:-1:-1;16019:9:1;;15760:274::o;16228:251::-;16298:6;16351:2;16339:9;16330:7;16326:23;16322:32;16319:52;;;16367:1;16364;16357:12;16319:52;16399:9;16393:16;16418:31;16443:5;16418:31;:::i;16484:1026::-;16746:4;16794:3;16783:9;16779:19;16825:6;16814:9;16807:25;16851:2;16889:6;16884:2;16873:9;16869:18;16862:34;16932:3;16927:2;16916:9;16912:18;16905:31;16956:6;16991;16985:13;17022:6;17014;17007:22;17060:3;17049:9;17045:19;17038:26;;17099:2;17091:6;17087:15;17073:29;;17120:1;17130:218;17144:6;17141:1;17138:13;17130:218;;;17209:13;;-1:-1:-1;;;;;17205:62:1;17193:75;;17323:15;;;;17288:12;;;;17166:1;17159:9;17130:218;;;-1:-1:-1;;;;;;;17404:55:1;;;;17399:2;17384:18;;17377:83;-1:-1:-1;;;17491:3:1;17476:19;17469:35;17365:3;16484:1026;-1:-1:-1;;;16484:1026:1:o;18552:306::-;18640:6;18648;18656;18709:2;18697:9;18688:7;18684:23;18680:32;18677:52;;;18725:1;18722;18715:12;18677:52;18754:9;18748:16;18738:26;;18804:2;18793:9;18789:18;18783:25;18773:35;;18848:2;18837:9;18833:18;18827:25;18817:35;;18552:306;;;;;:::o

Swarm Source

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