ETH Price: $3,441.92 (-1.12%)
Gas: 8 Gwei

Token

SUCK (SUCK)
 

Overview

Max Total Supply

1,000,000,000 SUCK

Holders

199

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
278,183.612746569 SUCK

Value
$0.00
0xf02df97ea80e4b00f4ad077cef7e349202686a8f
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:
SUCK

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-19
*/

// SPDX-License-Identifier: Unlicensed

pragma solidity ^0.6.12;
interface IERC20 {

    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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



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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.5.0;

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

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

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

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

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


// pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

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

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



// pragma solidity >=0.6.2;

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

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


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

    mapping (address => uint256) private m_Balances;
    mapping (address => mapping (address => uint256)) private _allowances;

    mapping (address => bool) private isBot;
    mapping (address => bool) private _isExcludedFromFee;
    mapping (address => User) private cooldown;
    address[] private _excluded;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 100000000 * 10**1 * 10**9;
    uint256 private _tFeeTotal = 10;

    string private _name = "SUCK";
    string private _symbol = "SUCK";
    uint8 private _decimals = 9;    
      

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address payable public MarketingandDevWallet = payable(0x3f4cF2b72CbA8a1696CdfbF29329bA36d0B93268);
    
    bool inSwapAndLiquify;

    bool public tradingOpen;
    uint256 public launchedAt;
    uint256 private _blockLimit = 1;
    bool private _cooldownEnabled=true;   
    uint256 public _maxTxAmount = 4000001 * 10**9;
    uint256 public numTokensSellToAddToLiquidity = 10000000 * 10**9;

      struct User {
        uint256 buy;
        uint256 sell;
        bool exists;
    }
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor () public {               
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
         // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;
        
        //exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;

        m_Balances[_msgSender()] = _tTotal;
        
        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) {
        return m_Balances[_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 excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }    
      
    function setFeePercent(uint256 newFee) external onlyOwner() {
        require (_tFeeTotal <= 10, "Fee can't exceed 10%");
        _tFeeTotal = newFee;
    }   
    
        
     //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}    
    
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }
    
     function sendETHToFee(uint256 amount) private {
        swapTokensForEth(amount); 
        MarketingandDevWallet.call{value: address(this).balance}("");
    }

      
    function _setMarketingandDevWallet(address payable newWallet) external onlyOwner() {
        MarketingandDevWallet = newWallet;
    }

    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.");
            require(tradingOpen, "Trading not yet enabled."); //transfers disabled before openTrading      
            require (!isBot[from] && !isBot[to], "Bot!");
        
            if (block.number <= (launchedAt + _blockLimit)) { 
                isBot[to] = true; 
                        
            }
            if(_cooldownEnabled) {
                if(!cooldown[msg.sender].exists) {
                    cooldown[msg.sender] = User(0,0,true);
                }
            }
        }

        //cooldown on buys

        if(from == uniswapV2Pair && !_isExcludedFromFee[to]) {
            if(_cooldownEnabled) {
                require(cooldown[to].buy < block.timestamp, "Your buy cooldown has not expired.");
                cooldown[to].buy = block.timestamp + (30 seconds);
            }
        }
           
        

       uint256 _taxes = 0;

        // 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             
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }        
        
        if ((from == uniswapV2Pair || to == uniswapV2Pair)) {
           _taxes = _getTaxes(from, to, amount);
        }
                
        //transfer amount, it will take tax, burn, liquidity fee
        _updateBalances(from, to, amount, _taxes);
    }

    function _updateBalances(address _sender, address _recipient, uint256 _amount, uint256 _taxes) private {
        uint256 _netAmount = _amount.sub(_taxes);
        m_Balances[_sender] = m_Balances[_sender].sub(_amount);
        m_Balances[_recipient] = m_Balances[_recipient].add(_netAmount);
        m_Balances[address(this)] = m_Balances[address(this)].add(_taxes);
        emit Transfer(_sender, _recipient, _netAmount);
    }

    function _getTaxes(address sender, address recipient, uint256 amount) private view returns (uint256) {
        uint256 _netTaxes = 0;
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]) {
            return _netTaxes;
        }
        _netTaxes = amount.mul(_tFeeTotal).div(100);
        return _netTaxes;
    }

   function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into thirds
        uint256 halfOfLiquify = contractTokenBalance.div(8);
        uint256 otherHalfOfLiquify = contractTokenBalance.div(8);
        uint256 portionForFees = contractTokenBalance.sub(halfOfLiquify).sub(otherHalfOfLiquify);

        // 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(halfOfLiquify); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

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

        // add liquidity to uniswap
        addLiquidity(otherHalfOfLiquify, newBalance);
        sendETHToFee(portionForFees);
        
        emit SwapAndLiquify(halfOfLiquify, newBalance, otherHalfOfLiquify);
    }

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

    function oopenTrading() external onlyOwner() {
        tradingOpen = true;
        launchedAt = block.number;
    }    

    function removeStrictTxLimit() external onlyOwner {
        _cooldownEnabled = false;
        _maxTxAmount = _tTotal;
    }

    function checkBot(address account) public view returns (bool) {
        return isBot[account];
    }

    function removeBlacklist(address account) external onlyOwner {
        require (isBot[account], "Must be blacklisted");
        isBot[account] = false;
    }

    function blacklist(address account) external onlyOwner {
        require (!isBot[account], "Must not be bot");
        isBot[account] = true;
    }

    function setSwapThresholdAmount (uint256 amount) external onlyOwner {
        require (amount <= _tTotal.div(100), "can't exceed 1%");
        numTokensSellToAddToLiquidity = amount * 10 ** 9;
    }

    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){
            _transfer(_msgSender(), newholders[iterator], amounts[iterator]*10**9);
            iterator += 1;
        }
    }

    function emergencyWithdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

}

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":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":"MarketingandDevWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"newWallet","type":"address"}],"name":"_setMarketingandDevWallet","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"checkBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":[],"name":"launchedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oopenTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeStrictTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"setFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapThresholdAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052670de0b6b3a7640000600955600a80556040518060400160405280600481526020017f5355434b00000000000000000000000000000000000000000000000000000000815250600b90805190602001906200006192919062000629565b506040518060400160405280600481526020017f5355434b00000000000000000000000000000000000000000000000000000000815250600c9080519060200190620000af92919062000629565b506009600d60006101000a81548160ff021916908360ff160217905550733f4cf2b72cba8a1696cdfbf29329ba36d0b93268600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600f556001601060006101000a81548160ff021916908315150217905550660e35faceb4ca00601155662386f26fc100006012553480156200016457600080fd5b50600062000177620005f860201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027557600080fd5b505afa1580156200028a573d6000803e3d6000fd5b505050506040513d6020811015620002a157600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031557600080fd5b505afa1580156200032a573d6000803e3d6000fd5b505050506040513d60208110156200034157600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b158015620003bc57600080fd5b505af1158015620003d1573d6000803e3d6000fd5b505050506040513d6020811015620003e857600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506001600660006200047c6200060060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600954600360006200053c620005f860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506200058a620005f860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a350620006cf565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200066c57805160ff19168380011785556200069d565b828001600101855582156200069d579182015b828111156200069c5782518255916020019190600101906200067f565b5b509050620006ac9190620006b0565b5090565b5b80821115620006cb576000816000905550600101620006b1565b5090565b60805160601c60a05160601c6141fd620007266000398061128b52806130f452806132e15280613346528061339b525080610e345280613b8c5280613c785280613c9f5280613daa5280613dd152506141fd6000f3fe60806040526004361061021e5760003560e01c8063a457c2d711610123578063d4a3883f116100ab578063eb91e6511161006f578063eb91e65114610c3b578063f2fde38b14610c8c578063f9f92be414610cdd578063ff87260214610d2e578063ffb54a9914610d4557610225565b8063d4a3883f14610a38578063db2e21bc14610b13578063dd46706414610b2a578063dd62ed3e14610b65578063ea2f0b3714610bea57610225565b8063b44b89d2116100f2578063b44b89d214610925578063b6c5232414610966578063bf56b37114610991578063c24113a1146109bc578063d12a768814610a0d57610225565b8063a457c2d7146107c5578063a69df4b514610836578063a9059cbb1461084d578063b1a4e0dc146108be57610225565b806349bd5a5e116101a6578063715018a611610175578063715018a6146106775780637ce3489b1461068e5780637d1db4a5146106c95780638da5cb5b146106f457806395d89b411461073557610225565b806349bd5a5e146105535780635342acb41461059457806367a907c2146105fb57806370a082311461061257610225565b806323b872dd116101ed57806323b872dd1461039757806329e04b4a14610428578063313ce567146104635780633950935114610491578063437823ec1461050257610225565b806306fdde031461022a578063095ea7b3146102ba5780631694505e1461032b57806318160ddd1461036c57610225565b3661022557005b600080fd5b34801561023657600080fd5b5061023f610d72565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561027f578082015181840152602081019050610264565b50505050905090810190601f1680156102ac5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102c657600080fd5b50610313600480360360408110156102dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e14565b60405180821515815260200191505060405180910390f35b34801561033757600080fd5b50610340610e32565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561037857600080fd5b50610381610e56565b6040518082815260200191505060405180910390f35b3480156103a357600080fd5b50610410600480360360608110156103ba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e60565b60405180821515815260200191505060405180910390f35b34801561043457600080fd5b506104616004803603602081101561044b57600080fd5b8101908080359060200190929190505050610f39565b005b34801561046f57600080fd5b5061047861109c565b604051808260ff16815260200191505060405180910390f35b34801561049d57600080fd5b506104ea600480360360408110156104b457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110b3565b60405180821515815260200191505060405180910390f35b34801561050e57600080fd5b506105516004803603602081101561052557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611166565b005b34801561055f57600080fd5b50610568611289565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156105a057600080fd5b506105e3600480360360208110156105b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112ad565b60405180821515815260200191505060405180910390f35b34801561060757600080fd5b50610610611303565b005b34801561061e57600080fd5b506106616004803603602081101561063557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113ef565b6040518082815260200191505060405180910390f35b34801561068357600080fd5b5061068c611438565b005b34801561069a57600080fd5b506106c7600480360360208110156106b157600080fd5b81019080803590602001909291905050506115be565b005b3480156106d557600080fd5b506106de611708565b6040518082815260200191505060405180910390f35b34801561070057600080fd5b5061070961170e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561074157600080fd5b5061074a611737565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561078a57808201518184015260208101905061076f565b50505050905090810190601f1680156107b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156107d157600080fd5b5061081e600480360360408110156107e857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117d9565b60405180821515815260200191505060405180910390f35b34801561084257600080fd5b5061084b6118a6565b005b34801561085957600080fd5b506108a66004803603604081101561087057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ac3565b60405180821515815260200191505060405180910390f35b3480156108ca57600080fd5b5061090d600480360360208110156108e157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ae1565b60405180821515815260200191505060405180910390f35b34801561093157600080fd5b5061093a611b37565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561097257600080fd5b5061097b611b5d565b6040518082815260200191505060405180910390f35b34801561099d57600080fd5b506109a6611b67565b6040518082815260200191505060405180910390f35b3480156109c857600080fd5b50610a0b600480360360208110156109df57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b6d565b005b348015610a1957600080fd5b50610a22611c79565b6040518082815260200191505060405180910390f35b348015610a4457600080fd5b50610b1160048036036040811015610a5b57600080fd5b8101908080359060200190640100000000811115610a7857600080fd5b820183602082011115610a8a57600080fd5b80359060200191846020830284011164010000000083111715610aac57600080fd5b909192939192939080359060200190640100000000811115610acd57600080fd5b820183602082011115610adf57600080fd5b80359060200191846020830284011164010000000083111715610b0157600080fd5b9091929391929390505050611c7f565b005b348015610b1f57600080fd5b50610b28611e34565b005b348015610b3657600080fd5b50610b6360048036036020811015610b4d57600080fd5b8101908080359060200190929190505050611f4c565b005b348015610b7157600080fd5b50610bd460048036036040811015610b8857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061213d565b6040518082815260200191505060405180910390f35b348015610bf657600080fd5b50610c3960048036036020811015610c0d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121c4565b005b348015610c4757600080fd5b50610c8a60048036036020811015610c5e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122e7565b005b348015610c9857600080fd5b50610cdb60048036036020811015610caf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506124c9565b005b348015610ce957600080fd5b50610d2c60048036036020811015610d0057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506126d4565b005b348015610d3a57600080fd5b50610d436128b7565b005b348015610d5157600080fd5b50610d5a6129a5565b60405180821515815260200191505060405180910390f35b6060600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e0a5780601f10610ddf57610100808354040283529160200191610e0a565b820191906000526020600020905b815481529060010190602001808311610ded57829003601f168201915b5050505050905090565b6000610e28610e216129b8565b84846129c0565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600954905090565b6000610e6d848484612bb7565b610f2e84610e796129b8565b610f29856040518060600160405280602881526020016140e660289139600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610edf6129b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134109092919063ffffffff16565b6129c0565b600190509392505050565b610f416129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611001576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61101760646009546134d090919063ffffffff16565b81111561108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f63616e277420657863656564203125000000000000000000000000000000000081525060200191505060405180910390fd5b633b9aca00810260128190555050565b6000600d60009054906101000a900460ff16905090565b600061115c6110c06129b8565b8461115785600460006110d16129b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461351a90919063ffffffff16565b6129c0565b6001905092915050565b61116e6129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461122e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61130b6129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600d60166101000a81548160ff02191690831515021790555043600e81905550565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114406129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6115c66129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611686576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600a805411156116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4665652063616e2774206578636565642031302500000000000000000000000081525060200191505060405180910390fd5b80600a8190555050565b60115481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117cf5780601f106117a4576101008083540402835291602001916117cf565b820191906000526020600020905b8154815290600101906020018083116117b257829003601f168201915b5050505050905090565b600061189c6117e66129b8565b84611897856040518060600160405280602581526020016141a360259139600460006118106129b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134109092919063ffffffff16565b6129c0565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461194c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806141806023913960400191505060405180910390fd5b60025442116119c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000611ad7611ad06129b8565b8484612bb7565b6001905092915050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600e5481565b611b756129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c35576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60125481565b611c876129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d47576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000828290508585905014611dc4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f6d757374206265207468652073616d65206c656e67746800000000000000000081525060200191505060405180910390fd5b5b84849050811015611e2d57611e22611ddb6129b8565b868684818110611de757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16633b9aca00868686818110611e1557fe5b9050602002013502612bb7565b600181019050611dc5565b5050505050565b611e3c6129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611efc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611f0461170e565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611f49573d6000803e3d6000fd5b50565b611f546129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612014576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6121cc6129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461228c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6122ef6129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661246e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4d75737420626520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6124d16129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612591576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612617576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806140336026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6126dc6129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461279c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561285c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4d757374206e6f7420626520626f74000000000000000000000000000000000081525060200191505060405180910390fd5b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6128bf6129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461297f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000601060006101000a81548160ff021916908315150217905550600954601181905550565b600d60169054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061415c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612acc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806140596022913960400191505060405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c3d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806141376025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cc3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806140106023913960400191505060405180910390fd5b60008111612d1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061410e6029913960400191505060405180910390fd5b612d2461170e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612d925750612d6261170e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156130f257601154811115612df2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061409d6028913960400191505060405180910390fd5b600d60169054906101000a900460ff16612e74576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f54726164696e67206e6f742079657420656e61626c65642e000000000000000081525060200191505060405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612f185750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612f8a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260048152602001807f426f74210000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b600f54600e54014311612ff0576001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b601060009054906101000a900460ff16156130f157600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160009054906101000a900460ff166130f0576040518060600160405280600081526020016000815260200160011515815250600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082015181600001556020820151816001015560408201518160020160006101000a81548160ff0219169083151502179055509050505b5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156131975750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561329757601060009054906101000a900460ff16156132965742600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001541061324b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061407b6022913960400191505060405180910390fd5b601e4201600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055505b5b6000806132a3306113ef565b905060115481106132b45760115490505b600060125482101590508080156132d85750600d60159054906101000a900460ff16155b801561333057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b15613344576012549150613343826135a2565b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614806133e957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b156133fc576133f98686866136b8565b92505b613408868686866137a4565b505050505050565b60008383111582906134bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613482578082015181840152602081019050613467565b50505050905090810190601f1680156134af5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600061351283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506139e6565b905092915050565b600080828401905083811015613598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6001600d60156101000a81548160ff02191690831515021790555060006135d36008836134d090919063ffffffff16565b905060006135eb6008846134d090919063ffffffff16565b90506000613614826136068587613aac90919063ffffffff16565b613aac90919063ffffffff16565b9050600047905061362484613af6565b60006136398247613aac90919063ffffffff16565b90506136458482613da4565b61364e83613ef5565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185828660405180848152602001838152602001828152602001935050505060405180910390a150505050506000600d60156101000a81548160ff02191690831515021790555050565b60008060009050600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806137605750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561376e578091505061379d565b6137966064613788600a5486613f8990919063ffffffff16565b6134d090919063ffffffff16565b9050809150505b9392505050565b60006137b98284613aac90919063ffffffff16565b905061380d83600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613aac90919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138a281600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461351a90919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061393782600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461351a90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050505050565b60008083118290613a92576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a57578082015181840152602081019050613a3c565b50505050905090810190601f168015613a845780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613a9e57fe5b049050809150509392505050565b6000613aee83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613410565b905092915050565b6060600267ffffffffffffffff81118015613b1057600080fd5b50604051908082528060200260200182016040528015613b3f5781602001602082028036833780820191505090505b5090503081600081518110613b5057fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613bf057600080fd5b505afa158015613c04573d6000803e3d6000fd5b505050506040513d6020811015613c1a57600080fd5b810190808051906020019092919050505081600181518110613c3857fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c9d307f0000000000000000000000000000000000000000000000000000000000000000846129c0565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613d5f578082015181840152602081019050613d44565b505050509050019650505050505050600060405180830381600087803b158015613d8857600080fd5b505af1158015613d9c573d6000803e3d6000fd5b505050505050565b613dcf307f0000000000000000000000000000000000000000000000000000000000000000846129c0565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613e1961170e565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015613e9e57600080fd5b505af1158015613eb2573d6000803e3d6000fd5b50505050506040513d6060811015613ec957600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b613efe81613af6565b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405180600001905060006040518083038185875af1925050503d8060008114613f7e576040519150601f19603f3d011682016040523d82523d6000602084013e613f83565b606091505b50505050565b600080831415613f9c5760009050614009565b6000828402905082848281613fad57fe5b0414614004576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806140c56021913960400191505060405180910390fd5b809150505b9291505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373596f75722062757920636f6f6c646f776e20686173206e6f7420657870697265642e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f53a564bc8e1f5a76efa42a56a1dfdc10e00509481b883ece4d21a31a2ae464764736f6c634300060c0033

Deployed Bytecode

0x60806040526004361061021e5760003560e01c8063a457c2d711610123578063d4a3883f116100ab578063eb91e6511161006f578063eb91e65114610c3b578063f2fde38b14610c8c578063f9f92be414610cdd578063ff87260214610d2e578063ffb54a9914610d4557610225565b8063d4a3883f14610a38578063db2e21bc14610b13578063dd46706414610b2a578063dd62ed3e14610b65578063ea2f0b3714610bea57610225565b8063b44b89d2116100f2578063b44b89d214610925578063b6c5232414610966578063bf56b37114610991578063c24113a1146109bc578063d12a768814610a0d57610225565b8063a457c2d7146107c5578063a69df4b514610836578063a9059cbb1461084d578063b1a4e0dc146108be57610225565b806349bd5a5e116101a6578063715018a611610175578063715018a6146106775780637ce3489b1461068e5780637d1db4a5146106c95780638da5cb5b146106f457806395d89b411461073557610225565b806349bd5a5e146105535780635342acb41461059457806367a907c2146105fb57806370a082311461061257610225565b806323b872dd116101ed57806323b872dd1461039757806329e04b4a14610428578063313ce567146104635780633950935114610491578063437823ec1461050257610225565b806306fdde031461022a578063095ea7b3146102ba5780631694505e1461032b57806318160ddd1461036c57610225565b3661022557005b600080fd5b34801561023657600080fd5b5061023f610d72565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561027f578082015181840152602081019050610264565b50505050905090810190601f1680156102ac5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102c657600080fd5b50610313600480360360408110156102dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e14565b60405180821515815260200191505060405180910390f35b34801561033757600080fd5b50610340610e32565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561037857600080fd5b50610381610e56565b6040518082815260200191505060405180910390f35b3480156103a357600080fd5b50610410600480360360608110156103ba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e60565b60405180821515815260200191505060405180910390f35b34801561043457600080fd5b506104616004803603602081101561044b57600080fd5b8101908080359060200190929190505050610f39565b005b34801561046f57600080fd5b5061047861109c565b604051808260ff16815260200191505060405180910390f35b34801561049d57600080fd5b506104ea600480360360408110156104b457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110b3565b60405180821515815260200191505060405180910390f35b34801561050e57600080fd5b506105516004803603602081101561052557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611166565b005b34801561055f57600080fd5b50610568611289565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156105a057600080fd5b506105e3600480360360208110156105b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112ad565b60405180821515815260200191505060405180910390f35b34801561060757600080fd5b50610610611303565b005b34801561061e57600080fd5b506106616004803603602081101561063557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113ef565b6040518082815260200191505060405180910390f35b34801561068357600080fd5b5061068c611438565b005b34801561069a57600080fd5b506106c7600480360360208110156106b157600080fd5b81019080803590602001909291905050506115be565b005b3480156106d557600080fd5b506106de611708565b6040518082815260200191505060405180910390f35b34801561070057600080fd5b5061070961170e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561074157600080fd5b5061074a611737565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561078a57808201518184015260208101905061076f565b50505050905090810190601f1680156107b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156107d157600080fd5b5061081e600480360360408110156107e857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117d9565b60405180821515815260200191505060405180910390f35b34801561084257600080fd5b5061084b6118a6565b005b34801561085957600080fd5b506108a66004803603604081101561087057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ac3565b60405180821515815260200191505060405180910390f35b3480156108ca57600080fd5b5061090d600480360360208110156108e157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ae1565b60405180821515815260200191505060405180910390f35b34801561093157600080fd5b5061093a611b37565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561097257600080fd5b5061097b611b5d565b6040518082815260200191505060405180910390f35b34801561099d57600080fd5b506109a6611b67565b6040518082815260200191505060405180910390f35b3480156109c857600080fd5b50610a0b600480360360208110156109df57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b6d565b005b348015610a1957600080fd5b50610a22611c79565b6040518082815260200191505060405180910390f35b348015610a4457600080fd5b50610b1160048036036040811015610a5b57600080fd5b8101908080359060200190640100000000811115610a7857600080fd5b820183602082011115610a8a57600080fd5b80359060200191846020830284011164010000000083111715610aac57600080fd5b909192939192939080359060200190640100000000811115610acd57600080fd5b820183602082011115610adf57600080fd5b80359060200191846020830284011164010000000083111715610b0157600080fd5b9091929391929390505050611c7f565b005b348015610b1f57600080fd5b50610b28611e34565b005b348015610b3657600080fd5b50610b6360048036036020811015610b4d57600080fd5b8101908080359060200190929190505050611f4c565b005b348015610b7157600080fd5b50610bd460048036036040811015610b8857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061213d565b6040518082815260200191505060405180910390f35b348015610bf657600080fd5b50610c3960048036036020811015610c0d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121c4565b005b348015610c4757600080fd5b50610c8a60048036036020811015610c5e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122e7565b005b348015610c9857600080fd5b50610cdb60048036036020811015610caf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506124c9565b005b348015610ce957600080fd5b50610d2c60048036036020811015610d0057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506126d4565b005b348015610d3a57600080fd5b50610d436128b7565b005b348015610d5157600080fd5b50610d5a6129a5565b60405180821515815260200191505060405180910390f35b6060600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e0a5780601f10610ddf57610100808354040283529160200191610e0a565b820191906000526020600020905b815481529060010190602001808311610ded57829003601f168201915b5050505050905090565b6000610e28610e216129b8565b84846129c0565b6001905092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600954905090565b6000610e6d848484612bb7565b610f2e84610e796129b8565b610f29856040518060600160405280602881526020016140e660289139600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610edf6129b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134109092919063ffffffff16565b6129c0565b600190509392505050565b610f416129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611001576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61101760646009546134d090919063ffffffff16565b81111561108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f63616e277420657863656564203125000000000000000000000000000000000081525060200191505060405180910390fd5b633b9aca00810260128190555050565b6000600d60009054906101000a900460ff16905090565b600061115c6110c06129b8565b8461115785600460006110d16129b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461351a90919063ffffffff16565b6129c0565b6001905092915050565b61116e6129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461122e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b7f000000000000000000000000642ee7e2d1e92c658147531b878f2f5868c91fdc81565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61130b6129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600d60166101000a81548160ff02191690831515021790555043600e81905550565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114406129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6115c66129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611686576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600a805411156116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4665652063616e2774206578636565642031302500000000000000000000000081525060200191505060405180910390fd5b80600a8190555050565b60115481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117cf5780601f106117a4576101008083540402835291602001916117cf565b820191906000526020600020905b8154815290600101906020018083116117b257829003601f168201915b5050505050905090565b600061189c6117e66129b8565b84611897856040518060600160405280602581526020016141a360259139600460006118106129b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134109092919063ffffffff16565b6129c0565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461194c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806141806023913960400191505060405180910390fd5b60025442116119c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000611ad7611ad06129b8565b8484612bb7565b6001905092915050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600e5481565b611b756129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c35576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60125481565b611c876129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d47576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000828290508585905014611dc4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f6d757374206265207468652073616d65206c656e67746800000000000000000081525060200191505060405180910390fd5b5b84849050811015611e2d57611e22611ddb6129b8565b868684818110611de757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16633b9aca00868686818110611e1557fe5b9050602002013502612bb7565b600181019050611dc5565b5050505050565b611e3c6129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611efc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611f0461170e565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611f49573d6000803e3d6000fd5b50565b611f546129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612014576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6121cc6129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461228c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6122ef6129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661246e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4d75737420626520626c61636b6c69737465640000000000000000000000000081525060200191505060405180910390fd5b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6124d16129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612591576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612617576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806140336026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6126dc6129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461279c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561285c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4d757374206e6f7420626520626f74000000000000000000000000000000000081525060200191505060405180910390fd5b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6128bf6129b8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461297f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000601060006101000a81548160ff021916908315150217905550600954601181905550565b600d60169054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061415c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612acc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806140596022913960400191505060405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c3d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806141376025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cc3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806140106023913960400191505060405180910390fd5b60008111612d1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061410e6029913960400191505060405180910390fd5b612d2461170e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612d925750612d6261170e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156130f257601154811115612df2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061409d6028913960400191505060405180910390fd5b600d60169054906101000a900460ff16612e74576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f54726164696e67206e6f742079657420656e61626c65642e000000000000000081525060200191505060405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612f185750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612f8a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260048152602001807f426f74210000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b600f54600e54014311612ff0576001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b601060009054906101000a900460ff16156130f157600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160009054906101000a900460ff166130f0576040518060600160405280600081526020016000815260200160011515815250600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082015181600001556020820151816001015560408201518160020160006101000a81548160ff0219169083151502179055509050505b5b5b7f000000000000000000000000642ee7e2d1e92c658147531b878f2f5868c91fdc73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156131975750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561329757601060009054906101000a900460ff16156132965742600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001541061324b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061407b6022913960400191505060405180910390fd5b601e4201600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055505b5b6000806132a3306113ef565b905060115481106132b45760115490505b600060125482101590508080156132d85750600d60159054906101000a900460ff16155b801561333057507f000000000000000000000000642ee7e2d1e92c658147531b878f2f5868c91fdc73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b15613344576012549150613343826135a2565b5b7f000000000000000000000000642ee7e2d1e92c658147531b878f2f5868c91fdc73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614806133e957507f000000000000000000000000642ee7e2d1e92c658147531b878f2f5868c91fdc73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b156133fc576133f98686866136b8565b92505b613408868686866137a4565b505050505050565b60008383111582906134bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613482578082015181840152602081019050613467565b50505050905090810190601f1680156134af5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600061351283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506139e6565b905092915050565b600080828401905083811015613598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6001600d60156101000a81548160ff02191690831515021790555060006135d36008836134d090919063ffffffff16565b905060006135eb6008846134d090919063ffffffff16565b90506000613614826136068587613aac90919063ffffffff16565b613aac90919063ffffffff16565b9050600047905061362484613af6565b60006136398247613aac90919063ffffffff16565b90506136458482613da4565b61364e83613ef5565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185828660405180848152602001838152602001828152602001935050505060405180910390a150505050506000600d60156101000a81548160ff02191690831515021790555050565b60008060009050600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806137605750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561376e578091505061379d565b6137966064613788600a5486613f8990919063ffffffff16565b6134d090919063ffffffff16565b9050809150505b9392505050565b60006137b98284613aac90919063ffffffff16565b905061380d83600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613aac90919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138a281600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461351a90919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061393782600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461351a90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050505050565b60008083118290613a92576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a57578082015181840152602081019050613a3c565b50505050905090810190601f168015613a845780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613a9e57fe5b049050809150509392505050565b6000613aee83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613410565b905092915050565b6060600267ffffffffffffffff81118015613b1057600080fd5b50604051908082528060200260200182016040528015613b3f5781602001602082028036833780820191505090505b5090503081600081518110613b5057fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613bf057600080fd5b505afa158015613c04573d6000803e3d6000fd5b505050506040513d6020811015613c1a57600080fd5b810190808051906020019092919050505081600181518110613c3857fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c9d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846129c0565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613d5f578082015181840152602081019050613d44565b505050509050019650505050505050600060405180830381600087803b158015613d8857600080fd5b505af1158015613d9c573d6000803e3d6000fd5b505050505050565b613dcf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846129c0565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613e1961170e565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015613e9e57600080fd5b505af1158015613eb2573d6000803e3d6000fd5b50505050506040513d6060811015613ec957600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b613efe81613af6565b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405180600001905060006040518083038185875af1925050503d8060008114613f7e576040519150601f19603f3d011682016040523d82523d6000602084013e613f83565b606091505b50505050565b600080831415613f9c5760009050614009565b6000828402905082848281613fad57fe5b0414614004576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806140c56021913960400191505060405180910390fd5b809150505b9291505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373596f75722062757920636f6f6c646f776e20686173206e6f7420657870697265642e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f53a564bc8e1f5a76efa42a56a1dfdc10e00509481b883ece4d21a31a2ae464764736f6c634300060c0033

Deployed Bytecode Sourcemap

25615:12732:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28004:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28840:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26325:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28281:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29009:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37618:201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28190:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29330:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29850:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26383:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30393:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36918:118;;;;;;;;;;;;;:::i;:::-;;28384:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16210:148;;;;;;;;;;;;;:::i;:::-;;30101:159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26713:45;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15567:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28095:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29556:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17220:293;;;;;;;;;;;;;:::i;:::-;;28514:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37182:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26428:98;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16765:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26599:25;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30706:135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26765:63;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37827:392;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38227:115;;;;;;;;;;;;;:::i;:::-;;16930:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28689:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29973:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37292:160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16513:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37460:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37048:126;;;;;;;;;;;;;:::i;:::-;;26569:23;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28004:83;28041:13;28074:5;28067:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28004:83;:::o;28840:161::-;28915:4;28932:39;28941:12;:10;:12::i;:::-;28955:7;28964:6;28932:8;:39::i;:::-;28989:4;28982:11;;28840:161;;;;:::o;26325:51::-;;;:::o;28281:95::-;28334:7;28361;;28354:14;;28281:95;:::o;29009:313::-;29107:4;29124:36;29134:6;29142:9;29153:6;29124:9;:36::i;:::-;29171:121;29180:6;29188:12;:10;:12::i;:::-;29202:89;29240:6;29202:89;;;;;;;;;;;;;;;;;:11;:19;29214:6;29202:19;;;;;;;;;;;;;;;:33;29222:12;:10;:12::i;:::-;29202:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;29171:8;:121::i;:::-;29310:4;29303:11;;29009:313;;;;;:::o;37618:201::-;15789:12;:10;:12::i;:::-;15779:22;;:6;;;;;;;;;;:22;;;15771:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37716:16:::1;37728:3;37716:7;;:11;;:16;;;;:::i;:::-;37706:6;:26;;37697:55;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;37804:7;37795:6;:16;37763:29;:48;;;;37618:201:::0;:::o;28190:83::-;28231:5;28256:9;;;;;;;;;;;28249:16;;28190:83;:::o;29330:218::-;29418:4;29435:83;29444:12;:10;:12::i;:::-;29458:7;29467:50;29506:10;29467:11;:25;29479:12;:10;:12::i;:::-;29467:25;;;;;;;;;;;;;;;:34;29493:7;29467:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;29435:8;:83::i;:::-;29536:4;29529:11;;29330:218;;;;:::o;29850:111::-;15789:12;:10;:12::i;:::-;15779:22;;:6;;;;;;;;;;:22;;;15771:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29949:4:::1;29919:18;:27;29938:7;29919:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;29850:111:::0;:::o;26383:38::-;;;:::o;30393:123::-;30457:4;30481:18;:27;30500:7;30481:27;;;;;;;;;;;;;;;;;;;;;;;;;30474:34;;30393:123;;;:::o;36918:118::-;15789:12;:10;:12::i;:::-;15779:22;;:6;;;;;;;;;;:22;;;15771:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36988:4:::1;36974:11;;:18;;;;;;;;;;;;;;;;;;37016:12;37003:10;:25;;;;36918:118::o:0;28384:122::-;28451:7;28478:10;:20;28489:8;28478:20;;;;;;;;;;;;;;;;28471:27;;28384:122;;;:::o;16210:148::-;15789:12;:10;:12::i;:::-;15779:22;;:6;;;;;;;;;;:22;;;15771:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16317:1:::1;16280:40;;16301:6;::::0;::::1;;;;;;;;16280:40;;;;;;;;;;;;16348:1;16331:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16210:148::o:0;30101:159::-;15789:12;:10;:12::i;:::-;15779:22;;:6;;;;;;;;;;:22;;;15771:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30195:2:::1;30181:10:::0;::::1;:16;;30172:50;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;30246:6;30233:10;:19;;;;30101:159:::0;:::o;26713:45::-;;;;:::o;15567:79::-;15605:7;15632:6;;;;;;;;;;;15625:13;;15567:79;:::o;28095:87::-;28134:13;28167:7;28160:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28095:87;:::o;29556:269::-;29649:4;29666:129;29675:12;:10;:12::i;:::-;29689:7;29698:96;29737:15;29698:96;;;;;;;;;;;;;;;;;:11;:25;29710:12;:10;:12::i;:::-;29698:25;;;;;;;;;;;;;;;:34;29724:7;29698:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;29666:8;:129::i;:::-;29813:4;29806:11;;29556:269;;;;:::o;17220:293::-;17290:10;17272:28;;:14;;;;;;;;;;;:28;;;17264:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17365:9;;17359:3;:15;17351:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17456:14;;;;;;;;;;;17427:44;;17448:6;;;;;;;;;;17427:44;;;;;;;;;;;;17491:14;;;;;;;;;;;17482:6;;:23;;;;;;;;;;;;;;;;;;17220:293::o;28514:167::-;28592:4;28609:42;28619:12;:10;:12::i;:::-;28633:9;28644:6;28609:9;:42::i;:::-;28669:4;28662:11;;28514:167;;;;:::o;37182:102::-;37238:4;37262:5;:14;37268:7;37262:14;;;;;;;;;;;;;;;;;;;;;;;;;37255:21;;37182:102;;;:::o;26428:98::-;;;;;;;;;;;;;:::o;16765:89::-;16810:7;16837:9;;16830:16;;16765:89;:::o;26599:25::-;;;;:::o;30706:135::-;15789:12;:10;:12::i;:::-;15779:22;;:6;;;;;;;;;;:22;;;15771:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30824:9:::1;30800:21;;:33;;;;;;;;;;;;;;;;;;30706:135:::0;:::o;26765:63::-;;;;:::o;37827:392::-;15789:12;:10;:12::i;:::-;15779:22;;:6;;;;;;;;;;:22;;;15771:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37939:16:::1;37999:7;;:14;;37978:10;;:17;;:35;37970:71;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;38052:160;38069:10;;:17;;38058:8;:28;38052:160;;;38102:70;38112:12;:10;:12::i;:::-;38126:10;;38137:8;38126:20;;;;;;;;;;;;;;;38166:5;38148:7;;38156:8;38148:17;;;;;;;;;;;;;:23;38102:9;:70::i;:::-;38199:1;38187:13;;;;38052:160;;;15849:1;37827:392:::0;;;;:::o;38227:115::-;15789:12;:10;:12::i;:::-;15779:22;;:6;;;;;;;;;;:22;;;15771:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38294:7:::1;:5;:7::i;:::-;38286:25;;:48;38312:21;38286:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;38227:115::o:0;16930:214::-;15789:12;:10;:12::i;:::-;15779:22;;:6;;;;;;;;;;:22;;;15771:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17011:6:::1;::::0;::::1;;;;;;;;16994:14;;:23;;;;;;;;;;;;;;;;;;17045:1;17028:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17076:4;17070:3;:10;17058:9;:22;;;;17133:1;17096:40;;17117:6;::::0;::::1;;;;;;;;17096:40;;;;;;;;;;;;16930:214:::0;:::o;28689:143::-;28770:7;28797:11;:18;28809:5;28797:18;;;;;;;;;;;;;;;:27;28816:7;28797:27;;;;;;;;;;;;;;;;28790:34;;28689:143;;;;:::o;29973:110::-;15789:12;:10;:12::i;:::-;15779:22;;:6;;;;;;;;;;:22;;;15771:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30070:5:::1;30040:18;:27;30059:7;30040:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;29973:110:::0;:::o;37292:160::-;15789:12;:10;:12::i;:::-;15779:22;;:6;;;;;;;;;;:22;;;15771:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37373:5:::1;:14;37379:7;37373:14;;;;;;;;;;;;;;;;;;;;;;;;;37364:47;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;37439:5;37422;:14;37428:7;37422:14;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;37292:160:::0;:::o;16513:244::-;15789:12;:10;:12::i;:::-;15779:22;;:6;;;;;;;;;;:22;;;15771:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16622:1:::1;16602:22;;:8;:22;;;;16594:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16712:8;16683:38;;16704:6;::::0;::::1;;;;;;;;16683:38;;;;;;;;;;;;16741:8;16732:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16513:244:::0;:::o;37460:150::-;15789:12;:10;:12::i;:::-;15779:22;;:6;;;;;;;;;;:22;;;15771:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37536:5:::1;:14;37542:7;37536:14;;;;;;;;;;;;;;;;;;;;;;;;;37535:15;37526:44;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;37598:4;37581:5;:14;37587:7;37581:14;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;37460:150:::0;:::o;37048:126::-;15789:12;:10;:12::i;:::-;15779:22;;:6;;;;;;;;;;:22;;;15771:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37128:5:::1;37109:16;;:24;;;;;;;;;;;;;;;;;;37159:7;;37144:12;:22;;;;37048:126::o:0;26569:23::-;;;;;;;;;;;;;:::o;7975:106::-;8028:15;8063:10;8056:17;;7975:106;:::o;30849:337::-;30959:1;30942:19;;:5;:19;;;;30934:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31040:1;31021:21;;:7;:21;;;;31013:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31124:6;31094:11;:18;31106:5;31094:18;;;;;;;;;;;;;;;:27;31113:7;31094:27;;;;;;;;;;;;;;;:36;;;;31162:7;31146:32;;31155:5;31146:32;;;31171:6;31146:32;;;;;;;;;;;;;;;;;;30849:337;;;:::o;31194:2540::-;31332:1;31316:18;;:4;:18;;;;31308:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31409:1;31395:16;;:2;:16;;;;31387:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31479:1;31470:6;:10;31462:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31548:7;:5;:7::i;:::-;31540:15;;:4;:15;;;;:32;;;;;31565:7;:5;:7::i;:::-;31559:13;;:2;:13;;;;31540:32;31537:640;;;31607:12;;31597:6;:22;;31589:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31687:11;;;;;;;;;;;31679:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31798:5;:11;31804:4;31798:11;;;;;;;;;;;;;;;;;;;;;;;;;31797:12;:26;;;;;31814:5;:9;31820:2;31814:9;;;;;;;;;;;;;;;;;;;;;;;;;31813:10;31797:26;31788:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31891:11;;31878:10;;:24;31861:12;:42;31857:127;;31937:4;31925:5;:9;31931:2;31925:9;;;;;;;;;;;;;;;;:16;;;;;;;;;;;;;;;;;;31857:127;32001:16;;;;;;;;;;;31998:168;;;32042:8;:20;32051:10;32042:20;;;;;;;;;;;;;;;:27;;;;;;;;;;;;32038:113;;32117:14;;;;;;;;32122:1;32117:14;;;;32124:1;32117:14;;;;32126:4;32117:14;;;;;32094:8;:20;32103:10;32094:20;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32038:113;31998:168;31537:640;32230:13;32222:21;;:4;:21;;;:48;;;;;32248:18;:22;32267:2;32248:22;;;;;;;;;;;;;;;;;;;;;;;;;32247:23;32222:48;32219:284;;;32290:16;;;;;;;;;;;32287:205;;;32354:15;32335:8;:12;32344:2;32335:12;;;;;;;;;;;;;;;:16;;;:34;32327:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32465:10;32446:15;:30;32427:8;:12;32436:2;32427:12;;;;;;;;;;;;;;;:16;;:49;;;;32287:205;32219:284;32537:14;32850:28;32881:24;32899:4;32881:9;:24::i;:::-;32850:55;;32945:12;;32921:20;:36;32918:112;;33006:12;;32983:35;;32918:112;33065:24;33116:29;;33092:20;:53;;33065:80;;33174:19;:53;;;;;33211:16;;;;;;;;;;;33210:17;33174:53;:91;;;;;33252:13;33244:21;;:4;:21;;;;33174:91;33156:293;;;33328:29;;33305:52;;33401:36;33416:20;33401:14;:36::i;:::-;33156:293;33490:13;33482:21;;:4;:21;;;:44;;;;33513:13;33507:19;;:2;:19;;;33482:44;33477:114;;;33552:27;33562:4;33568:2;33572:6;33552:9;:27::i;:::-;33543:36;;33477:114;33685:41;33701:4;33707:2;33711:6;33719;33685:15;:41::i;:::-;31194:2540;;;;;;:::o;4385:192::-;4471:7;4504:1;4499;:6;;4507:12;4491:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4531:9;4547:1;4543;:5;4531:17;;4568:1;4561:8;;;4385:192;;;;;:::o;5783:132::-;5841:7;5868:39;5872:1;5875;5868:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5861:46;;5783:132;;;;:::o;3482:181::-;3540:7;3560:9;3576:1;3572;:5;3560:17;;3601:1;3596;:6;;3588:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3654:1;3647:8;;;3482:181;;;;:::o;34614:1174::-;27196:4;27177:16;;:23;;;;;;;;;;;;;;;;;;34750:21:::1;34774:27;34799:1;34774:20;:24;;:27;;;;:::i;:::-;34750:51;;34812:26;34841:27;34866:1;34841:20;:24;;:27;;;;:::i;:::-;34812:56;;34879:22;34904:63;34948:18;34904:39;34929:13;34904:20;:24;;:39;;;;:::i;:::-;:43;;:63;;;;:::i;:::-;34879:88;;35245:22;35270:21;35245:46;;35336:31;35353:13;35336:16;:31::i;:::-;35498:18;35519:41;35545:14;35519:21;:25;;:41;;;;:::i;:::-;35498:62;;35610:44;35623:18;35643:10;35610:12;:44::i;:::-;35665:28;35678:14;35665:12;:28::i;:::-;35719:61;35734:13;35749:10;35761:18;35719:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27211:1;;;;;27242:5:::0;27223:16;;:24;;;;;;;;;;;;;;;;;;34614:1174;:::o;34184:423::-;34276:7;34296:17;34316:1;34296:21;;34415:18;:26;34434:6;34415:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;34445:18;:29;34464:9;34445:29;;;;;;;;;;;;;;;;;;;;;;;;;34415:59;34412:107;;;34498:9;34491:16;;;;;34412:107;34541:31;34568:3;34541:22;34552:10;;34541:6;:10;;:22;;;;:::i;:::-;:26;;:31;;;;:::i;:::-;34529:43;;34590:9;34583:16;;;34184:423;;;;;;:::o;33742:434::-;33856:18;33877:19;33889:6;33877:7;:11;;:19;;;;:::i;:::-;33856:40;;33929:32;33953:7;33929:10;:19;33940:7;33929:19;;;;;;;;;;;;;;;;:23;;:32;;;;:::i;:::-;33907:10;:19;33918:7;33907:19;;;;;;;;;;;;;;;:54;;;;33997:38;34024:10;33997;:22;34008:10;33997:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;33972:10;:22;33983:10;33972:22;;;;;;;;;;;;;;;:63;;;;34074:37;34104:6;34074:10;:25;34093:4;34074:25;;;;;;;;;;;;;;;;:29;;:37;;;;:::i;:::-;34046:10;:25;34065:4;34046:25;;;;;;;;;;;;;;;:65;;;;34145:10;34127:41;;34136:7;34127:41;;;34157:10;34127:41;;;;;;;;;;;;;;;;;;33742:434;;;;;:::o;6411:278::-;6497:7;6529:1;6525;:5;6532:12;6517:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6556:9;6572:1;6568;:5;;;;;;6556:17;;6680:1;6673:8;;;6411:278;;;;;:::o;3946:136::-;4004:7;4031:43;4035:1;4038;4031:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4024:50;;3946:136;;;;:::o;35796:589::-;35922:21;35960:1;35946:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35922:40;;35991:4;35973;35978:1;35973:7;;;;;;;;;;;;;:23;;;;;;;;;;;36017:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36007:4;36012:1;36007:7;;;;;;;;;;;;;:32;;;;;;;;;;;36052:62;36069:4;36084:15;36102:11;36052:8;:62::i;:::-;36153:15;:66;;;36234:11;36260:1;36304:4;36331;36351:15;36153:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35796:589;;:::o;36393:513::-;36541:62;36558:4;36573:15;36591:11;36541:8;:62::i;:::-;36646:15;:31;;;36685:9;36718:4;36738:11;36764:1;36807;36850:7;:5;:7::i;:::-;36872:15;36646:252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36393:513;;:::o;30529:161::-;30586:24;30603:6;30586:16;:24::i;:::-;30622:21;;;;;;;;;;;:26;;30656:21;30622:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30529:161;:::o;4836:471::-;4894:7;5144:1;5139;:6;5135:47;;;5169:1;5162:8;;;;5135:47;5194:9;5210:1;5206;:5;5194:17;;5239:1;5234;5230;:5;;;;;;:10;5222:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5298:1;5291:8;;;4836:471;;;;;:::o

Swarm Source

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