ETH Price: $2,437.89 (-1.49%)
 

Overview

Max Total Supply

100,000,000,000,000 WM

Holders

117

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
6,825,425,344,091.288300417 WM

Value
$0.00
0xaed65c1ff197b70973bc794dc3e890f8e62efe26
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:
Watchmen

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/*
Watchmen Token was inspired by Dr. Manhattan - an omnipotent entity has changed the universe in Watchmen

WM token Fairlaunch on Uniswap
Liquidity locked for 6 months

- Website: https://watchmen.to
- Twitter: https://twitter.com/WatchmenETH
- Telegram: http://t.me/WatchmenETH
*/

// 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 Watchmen is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping (address => bool) private _isExcludedFromFee;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(
            10**2
        );
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        
        _taxFee = 0;
        _liquidityFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
    }
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }
    
    function sendBNBToCharity(uint256 amount) private { 
        swapTokensForEth(amount); 
        _charityWalletAddress.transfer(address(this).balance); 
    }
    
    function _setCharityWallet(address payable charityWalletAddress) external onlyOwner() {
        _charityWalletAddress = charityWalletAddress;
    }

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

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

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

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

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into thirds
        uint256 halfOfLiquify = contractTokenBalance.div(4);
        uint256 otherHalfOfLiquify = contractTokenBalance.div(4);
        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);
        sendBNBToCharity(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
        );
    }

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"charityWalletAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_charityWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"charityWalletAddress","type":"address"}],"name":"_setCharityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

69152d02c7e14af680000060095569085afffa6ff50bffffff19600a55610100604052600860c0819052672bb0ba31b436b2b760c11b60e09081526200004991600c9190620003f9565b5060408051808201909152600280825261574d60f01b60209092019182526200007591600d91620003f9565b50600e805460ff191660091790556002600f819055601055600a60118190556012556013805460ff60a81b1916600160a81b17905568056bc75e2d631000006014556802b5e3af16b1880000601555348015620000d157600080fd5b506040516200306f3803806200306f83398181016040526020811015620000f757600080fd5b5051600062000105620003e6565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601380546001600160a01b0319166001600160a01b038316179055600a54600360006200017b620003e6565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001f257600080fd5b505afa15801562000207573d6000803e3d6000fd5b505050506040513d60208110156200021e57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200026f57600080fd5b505afa15801562000284573d6000803e3d6000fd5b505050506040513d60208110156200029b57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002ee57600080fd5b505af115801562000303573d6000803e3d6000fd5b505050506040513d60208110156200031a57600080fd5b50516001600160601b0319606091821b811660a0529082901b1660805260016006600062000347620003ea565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152600690925290208054909116600117905562000391620003e6565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a3505062000495565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200043c57805160ff19168380011785556200046c565b828001600101855582156200046c579182015b828111156200046c5782518255916020019190600101906200044f565b506200047a9291506200047e565b5090565b5b808211156200047a57600081556001016200047f565b60805160601c60a05160601c612b92620004dd60003980610f185280611aa45250806109ff528061228852806123405280612367528061244d52806124745250612b926000f3fe6080604052600436106102345760003560e01c80636bc87c3a1161012e578063a69df4b5116100ab578063d543dbeb1161006f578063d543dbeb146107f1578063dd4670641461081b578063dd62ed3e14610845578063ea2f0b3714610880578063f2fde38b146108b35761023b565b8063a69df4b51461072f578063a9059cbb14610744578063b6c523241461077d578063c49b9a8014610792578063d047e4b7146107be5761023b565b806388f82020116100f257806388f820201461066f5780638da5cb5b146106a25780638ee88c53146106b757806395d89b41146106e1578063a457c2d7146106f65761023b565b80636bc87c3a146105e857806370a08231146105fd578063715018a61461063057806376d4ab99146106455780637d1db4a51461065a5761023b565b80633685d419116101bc5780634549b039116101805780634549b0391461052657806349bd5a5e146105585780634a74bb021461056d57806352390c02146105825780635342acb4146105b55761023b565b80633685d41914610448578063395093511461047b5780633b124fe7146104b45780633bd5d173146104c9578063437823ec146104f35761023b565b80631694505e116102035780631694505e1461036a57806318160ddd1461039b57806323b872dd146103b05780632d838119146103f3578063313ce5671461041d5761023b565b8063061c82d01461024057806306fdde031461026c578063095ea7b3146102f657806313114a9d146103435761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b5061026a6004803603602081101561026357600080fd5b50356108e6565b005b34801561027857600080fd5b50610281610943565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102bb5781810151838201526020016102a3565b50505050905090810190601f1680156102e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030257600080fd5b5061032f6004803603604081101561031957600080fd5b506001600160a01b0381351690602001356109d9565b604080519115158252519081900360200190f35b34801561034f57600080fd5b506103586109f7565b60408051918252519081900360200190f35b34801561037657600080fd5b5061037f6109fd565b604080516001600160a01b039092168252519081900360200190f35b3480156103a757600080fd5b50610358610a21565b3480156103bc57600080fd5b5061032f600480360360608110156103d357600080fd5b506001600160a01b03813581169160208101359091169060400135610a27565b3480156103ff57600080fd5b506103586004803603602081101561041657600080fd5b5035610aae565b34801561042957600080fd5b50610432610b10565b6040805160ff9092168252519081900360200190f35b34801561045457600080fd5b5061026a6004803603602081101561046b57600080fd5b50356001600160a01b0316610b19565b34801561048757600080fd5b5061032f6004803603604081101561049e57600080fd5b506001600160a01b038135169060200135610cda565b3480156104c057600080fd5b50610358610d28565b3480156104d557600080fd5b5061026a600480360360208110156104ec57600080fd5b5035610d2e565b3480156104ff57600080fd5b5061026a6004803603602081101561051657600080fd5b50356001600160a01b0316610e08565b34801561053257600080fd5b506103586004803603604081101561054957600080fd5b50803590602001351515610e84565b34801561056457600080fd5b5061037f610f16565b34801561057957600080fd5b5061032f610f3a565b34801561058e57600080fd5b5061026a600480360360208110156105a557600080fd5b50356001600160a01b0316610f4a565b3480156105c157600080fd5b5061032f600480360360208110156105d857600080fd5b50356001600160a01b03166110d0565b3480156105f457600080fd5b506103586110ee565b34801561060957600080fd5b506103586004803603602081101561062057600080fd5b50356001600160a01b03166110f4565b34801561063c57600080fd5b5061026a611156565b34801561065157600080fd5b5061037f6111e6565b34801561066657600080fd5b506103586111f5565b34801561067b57600080fd5b5061032f6004803603602081101561069257600080fd5b50356001600160a01b03166111fb565b3480156106ae57600080fd5b5061037f611219565b3480156106c357600080fd5b5061026a600480360360208110156106da57600080fd5b5035611228565b3480156106ed57600080fd5b50610281611285565b34801561070257600080fd5b5061032f6004803603604081101561071957600080fd5b506001600160a01b0381351690602001356112e6565b34801561073b57600080fd5b5061026a61134e565b34801561075057600080fd5b5061032f6004803603604081101561076757600080fd5b506001600160a01b03813516906020013561143c565b34801561078957600080fd5b50610358611450565b34801561079e57600080fd5b5061026a600480360360208110156107b557600080fd5b50351515611456565b3480156107ca57600080fd5b5061026a600480360360208110156107e157600080fd5b50356001600160a01b0316611501565b3480156107fd57600080fd5b5061026a6004803603602081101561081457600080fd5b503561157b565b34801561082757600080fd5b5061026a6004803603602081101561083e57600080fd5b50356115f9565b34801561085157600080fd5b506103586004803603604081101561086857600080fd5b506001600160a01b0381358116916020013516611697565b34801561088c57600080fd5b5061026a600480360360208110156108a357600080fd5b50356001600160a01b03166116c2565b3480156108bf57600080fd5b5061026a600480360360208110156108d657600080fd5b50356001600160a01b031661173b565b6108ee611821565b6000546001600160a01b0390811691161461093e576040805162461bcd60e51b81526020600482018190526024820152600080516020612a37833981519152604482015290519081900360640190fd5b600f55565b600c8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109cf5780601f106109a4576101008083540402835291602001916109cf565b820191906000526020600020905b8154815290600101906020018083116109b257829003601f168201915b5050505050905090565b60006109ed6109e6611821565b8484611825565b5060015b92915050565b600b5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b60095490565b6000610a34848484611911565b610aa484610a40611821565b610a9f85604051806060016040528060288152602001612a0f602891396001600160a01b038a16600090815260056020526040812090610a7e611821565b6001600160a01b031681526020810191909152604001600020549190611b60565b611825565b5060019392505050565b6000600a54821115610af15760405162461bcd60e51b815260040180806020018281038252602a815260200180612954602a913960400191505060405180910390fd5b6000610afb611bf7565b9050610b078382611c1a565b9150505b919050565b600e5460ff1690565b610b21611821565b6000546001600160a01b03908116911614610b71576040805162461bcd60e51b81526020600482018190526024820152600080516020612a37833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610bde576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610cd657816001600160a01b031660088281548110610c0257fe5b6000918252602090912001546001600160a01b03161415610cce57600880546000198101908110610c2f57fe5b600091825260209091200154600880546001600160a01b039092169183908110610c5557fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610ca757fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610cd6565b600101610be1565b5050565b60006109ed610ce7611821565b84610a9f8560056000610cf8611821565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611c63565b600f5481565b6000610d38611821565b6001600160a01b03811660009081526007602052604090205490915060ff1615610d935760405162461bcd60e51b815260040180806020018281038252602c815260200180612ae9602c913960400191505060405180910390fd5b6000610d9e83611cbd565b505050506001600160a01b038416600090815260036020526040902054919250610dca91905082611d0c565b6001600160a01b038316600090815260036020526040902055600a54610df09082611d0c565b600a55600b54610e009084611c63565b600b55505050565b610e10611821565b6000546001600160a01b03908116911614610e60576040805162461bcd60e51b81526020600482018190526024820152600080516020612a37833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115610edd576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610efc576000610eed84611cbd565b509395506109f1945050505050565b6000610f0784611cbd565b509295506109f1945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601354600160a81b900460ff1681565b610f52611821565b6000546001600160a01b03908116911614610fa2576040805162461bcd60e51b81526020600482018190526024820152600080516020612a37833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615611010576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600360205260409020541561106a576001600160a01b03811660009081526003602052604090205461105090610aae565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60115481565b6001600160a01b03811660009081526007602052604081205460ff161561113457506001600160a01b038116600090815260046020526040902054610b0b565b6001600160a01b0382166000908152600360205260409020546109f190610aae565b61115e611821565b6000546001600160a01b039081169116146111ae576040805162461bcd60e51b81526020600482018190526024820152600080516020612a37833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612a57833981519152908390a3600080546001600160a01b0319169055565b6013546001600160a01b031681565b60145481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b611230611821565b6000546001600160a01b03908116911614611280576040805162461bcd60e51b81526020600482018190526024820152600080516020612a37833981519152604482015290519081900360640190fd5b601155565b600d8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109cf5780601f106109a4576101008083540402835291602001916109cf565b60006109ed6112f3611821565b84610a9f85604051806060016040528060258152602001612b38602591396005600061131d611821565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b60565b6001546001600160a01b031633146113975760405162461bcd60e51b8152600401808060200182810382526023815260200180612b156023913960400191505060405180910390fd5b60025442116113ed576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612a5783398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60006109ed611449611821565b8484611911565b60025490565b61145e611821565b6000546001600160a01b039081169116146114ae576040805162461bcd60e51b81526020600482018190526024820152600080516020612a37833981519152604482015290519081900360640190fd5b60138054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611509611821565b6000546001600160a01b03908116911614611559576040805162461bcd60e51b81526020600482018190526024820152600080516020612a37833981519152604482015290519081900360640190fd5b601380546001600160a01b0319166001600160a01b0392909216919091179055565b611583611821565b6000546001600160a01b039081169116146115d3576040805162461bcd60e51b81526020600482018190526024820152600080516020612a37833981519152604482015290519081900360640190fd5b6115f360646115ed83600954611d4e90919063ffffffff16565b90611c1a565b60145550565b611601611821565b6000546001600160a01b03908116911614611651576040805162461bcd60e51b81526020600482018190526024820152600080516020612a37833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612a57833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6116ca611821565b6000546001600160a01b0390811691161461171a576040805162461bcd60e51b81526020600482018190526024820152600080516020612a37833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b611743611821565b6000546001600160a01b03908116911614611793576040805162461bcd60e51b81526020600482018190526024820152600080516020612a37833981519152604482015290519081900360640190fd5b6001600160a01b0381166117d85760405162461bcd60e51b815260040180806020018281038252602681526020018061297e6026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612a5783398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b03831661186a5760405162461bcd60e51b8152600401808060200182810382526024815260200180612ac56024913960400191505060405180910390fd5b6001600160a01b0382166118af5760405162461bcd60e51b81526004018080602001828103825260228152602001806129a46022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166119565760405162461bcd60e51b8152600401808060200182810382526025815260200180612aa06025913960400191505060405180910390fd5b6001600160a01b03821661199b5760405162461bcd60e51b81526004018080602001828103825260238152602001806129316023913960400191505060405180910390fd5b600081116119da5760405162461bcd60e51b8152600401808060200182810382526029815260200180612a776029913960400191505060405180910390fd5b6119e2611219565b6001600160a01b0316836001600160a01b031614158015611a1c5750611a06611219565b6001600160a01b0316826001600160a01b031614155b15611a6257601454811115611a625760405162461bcd60e51b81526004018080602001828103825260288152602001806129c66028913960400191505060405180910390fd5b6000611a6d306110f4565b90506014548110611a7d57506014545b60155481108015908190611a9b5750601354600160a01b900460ff16155b8015611ad957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611aee5750601354600160a81b900460ff165b15611b01576015549150611b0182611da7565b6001600160a01b03851660009081526006602052604090205460019060ff1680611b4357506001600160a01b03851660009081526006602052604090205460ff165b15611b4c575060005b611b5886868684611e70565b505050505050565b60008184841115611bef5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611bb4578181015183820152602001611b9c565b50505050905090810190601f168015611be15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611c04611fe4565b9092509050611c138282611c1a565b9250505090565b6000611c5c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612147565b9392505050565b600082820183811015611c5c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611cd48a6121ac565b9250925092506000806000611cf28d8686611ced611bf7565b6121e8565b919f909e50909c50959a5093985091965092945050505050565b6000611c5c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b60565b600082611d5d575060006109f1565b82820282848281611d6a57fe5b0414611c5c5760405162461bcd60e51b81526004018080602001828103825260218152602001806129ee6021913960400191505060405180910390fd5b6013805460ff60a01b1916600160a01b1790556000611dc7826004611c1a565b90506000611dd6836004611c1a565b90506000611dee82611de88686611d0c565b90611d0c565b905047611dfa84612238565b6000611e064783611d0c565b9050611e128482612447565b611e1b83612545565b604080518681526020810183905280820186905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506013805460ff60a01b1916905550505050565b80611e7d57611e7d612587565b6001600160a01b03841660009081526007602052604090205460ff168015611ebe57506001600160a01b03831660009081526007602052604090205460ff16155b15611ed357611ece8484846125b9565b611fd1565b6001600160a01b03841660009081526007602052604090205460ff16158015611f1457506001600160a01b03831660009081526007602052604090205460ff165b15611f2457611ece8484846126dd565b6001600160a01b03841660009081526007602052604090205460ff16158015611f6657506001600160a01b03831660009081526007602052604090205460ff16155b15611f7657611ece848484612786565b6001600160a01b03841660009081526007602052604090205460ff168015611fb657506001600160a01b03831660009081526007602052604090205460ff165b15611fc657611ece8484846127ca565b611fd1848484612786565b80611fde57611fde61283d565b50505050565b600a546009546000918291825b6008548110156121155782600360006008848154811061200d57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612072575081600460006008848154811061204b57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561208957600a5460095494509450505050612143565b6120c9600360006008848154811061209d57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611d0c565b925061210b60046000600884815481106120df57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611d0c565b9150600101611ff1565b50600954600a5461212591611c1a565b82101561213d57600a54600954935093505050612143565b90925090505b9091565b600081836121965760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611bb4578181015183820152602001611b9c565b5060008385816121a257fe5b0495945050505050565b6000806000806121bb8561284b565b905060006121c886612867565b905060006121da82611de88986611d0c565b979296509094509092505050565b60008080806121f78886611d4e565b905060006122058887611d4e565b905060006122138888611d4e565b9050600061222582611de88686611d0c565b939b939a50919850919650505050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061226657fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156122df57600080fd5b505afa1580156122f3573d6000803e3d6000fd5b505050506040513d602081101561230957600080fd5b505181518290600190811061231a57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612365307f000000000000000000000000000000000000000000000000000000000000000084611825565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561240a5781810151838201526020016123f2565b505050509050019650505050505050600060405180830381600087803b15801561243357600080fd5b505af1158015611b58573d6000803e3d6000fd5b612472307f000000000000000000000000000000000000000000000000000000000000000084611825565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806124af611219565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561251a57600080fd5b505af115801561252e573d6000803e3d6000fd5b50505050506040513d6060811015611fde57600080fd5b61254e81612238565b6013546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610cd6573d6000803e3d6000fd5b600f541580156125975750601154155b156125a1576125b7565b600f805460105560118054601255600091829055555b565b6000806000806000806125cb87611cbd565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506125fd9088611d0c565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461262c9087611d0c565b6001600160a01b03808b1660009081526003602052604080822093909355908a168152205461265b9086611c63565b6001600160a01b03891660009081526003602052604090205561267d81612883565b612687848361290c565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806126ef87611cbd565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506127219087611d0c565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546127579084611c63565b6001600160a01b03891660009081526004602090815260408083209390935560039052205461265b9086611c63565b60008060008060008061279887611cbd565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061262c9087611d0c565b6000806000806000806127dc87611cbd565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061280e9088611d0c565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546127219087611d0c565b601054600f55601254601155565b60006109f160646115ed600f5485611d4e90919063ffffffff16565b60006109f160646115ed60115485611d4e90919063ffffffff16565b600061288d611bf7565b9050600061289b8383611d4e565b306000908152600360205260409020549091506128b89082611c63565b3060009081526003602090815260408083209390935560079052205460ff161561290757306000908152600460205260409020546128f69084611c63565b306000908152600460205260409020555b505050565b600a546129199083611d0c565b600a55600b546129299082611c63565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122033a7e8bb2880b63cf6c585bf2c175f3d38c321912f0865489af3e6aa8efa4afb64736f6c634300060c0033000000000000000000000000c6c45539407bf32991ad27ef83c79d5f28adb290

Deployed Bytecode

0x6080604052600436106102345760003560e01c80636bc87c3a1161012e578063a69df4b5116100ab578063d543dbeb1161006f578063d543dbeb146107f1578063dd4670641461081b578063dd62ed3e14610845578063ea2f0b3714610880578063f2fde38b146108b35761023b565b8063a69df4b51461072f578063a9059cbb14610744578063b6c523241461077d578063c49b9a8014610792578063d047e4b7146107be5761023b565b806388f82020116100f257806388f820201461066f5780638da5cb5b146106a25780638ee88c53146106b757806395d89b41146106e1578063a457c2d7146106f65761023b565b80636bc87c3a146105e857806370a08231146105fd578063715018a61461063057806376d4ab99146106455780637d1db4a51461065a5761023b565b80633685d419116101bc5780634549b039116101805780634549b0391461052657806349bd5a5e146105585780634a74bb021461056d57806352390c02146105825780635342acb4146105b55761023b565b80633685d41914610448578063395093511461047b5780633b124fe7146104b45780633bd5d173146104c9578063437823ec146104f35761023b565b80631694505e116102035780631694505e1461036a57806318160ddd1461039b57806323b872dd146103b05780632d838119146103f3578063313ce5671461041d5761023b565b8063061c82d01461024057806306fdde031461026c578063095ea7b3146102f657806313114a9d146103435761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b5061026a6004803603602081101561026357600080fd5b50356108e6565b005b34801561027857600080fd5b50610281610943565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102bb5781810151838201526020016102a3565b50505050905090810190601f1680156102e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030257600080fd5b5061032f6004803603604081101561031957600080fd5b506001600160a01b0381351690602001356109d9565b604080519115158252519081900360200190f35b34801561034f57600080fd5b506103586109f7565b60408051918252519081900360200190f35b34801561037657600080fd5b5061037f6109fd565b604080516001600160a01b039092168252519081900360200190f35b3480156103a757600080fd5b50610358610a21565b3480156103bc57600080fd5b5061032f600480360360608110156103d357600080fd5b506001600160a01b03813581169160208101359091169060400135610a27565b3480156103ff57600080fd5b506103586004803603602081101561041657600080fd5b5035610aae565b34801561042957600080fd5b50610432610b10565b6040805160ff9092168252519081900360200190f35b34801561045457600080fd5b5061026a6004803603602081101561046b57600080fd5b50356001600160a01b0316610b19565b34801561048757600080fd5b5061032f6004803603604081101561049e57600080fd5b506001600160a01b038135169060200135610cda565b3480156104c057600080fd5b50610358610d28565b3480156104d557600080fd5b5061026a600480360360208110156104ec57600080fd5b5035610d2e565b3480156104ff57600080fd5b5061026a6004803603602081101561051657600080fd5b50356001600160a01b0316610e08565b34801561053257600080fd5b506103586004803603604081101561054957600080fd5b50803590602001351515610e84565b34801561056457600080fd5b5061037f610f16565b34801561057957600080fd5b5061032f610f3a565b34801561058e57600080fd5b5061026a600480360360208110156105a557600080fd5b50356001600160a01b0316610f4a565b3480156105c157600080fd5b5061032f600480360360208110156105d857600080fd5b50356001600160a01b03166110d0565b3480156105f457600080fd5b506103586110ee565b34801561060957600080fd5b506103586004803603602081101561062057600080fd5b50356001600160a01b03166110f4565b34801561063c57600080fd5b5061026a611156565b34801561065157600080fd5b5061037f6111e6565b34801561066657600080fd5b506103586111f5565b34801561067b57600080fd5b5061032f6004803603602081101561069257600080fd5b50356001600160a01b03166111fb565b3480156106ae57600080fd5b5061037f611219565b3480156106c357600080fd5b5061026a600480360360208110156106da57600080fd5b5035611228565b3480156106ed57600080fd5b50610281611285565b34801561070257600080fd5b5061032f6004803603604081101561071957600080fd5b506001600160a01b0381351690602001356112e6565b34801561073b57600080fd5b5061026a61134e565b34801561075057600080fd5b5061032f6004803603604081101561076757600080fd5b506001600160a01b03813516906020013561143c565b34801561078957600080fd5b50610358611450565b34801561079e57600080fd5b5061026a600480360360208110156107b557600080fd5b50351515611456565b3480156107ca57600080fd5b5061026a600480360360208110156107e157600080fd5b50356001600160a01b0316611501565b3480156107fd57600080fd5b5061026a6004803603602081101561081457600080fd5b503561157b565b34801561082757600080fd5b5061026a6004803603602081101561083e57600080fd5b50356115f9565b34801561085157600080fd5b506103586004803603604081101561086857600080fd5b506001600160a01b0381358116916020013516611697565b34801561088c57600080fd5b5061026a600480360360208110156108a357600080fd5b50356001600160a01b03166116c2565b3480156108bf57600080fd5b5061026a600480360360208110156108d657600080fd5b50356001600160a01b031661173b565b6108ee611821565b6000546001600160a01b0390811691161461093e576040805162461bcd60e51b81526020600482018190526024820152600080516020612a37833981519152604482015290519081900360640190fd5b600f55565b600c8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109cf5780601f106109a4576101008083540402835291602001916109cf565b820191906000526020600020905b8154815290600101906020018083116109b257829003601f168201915b5050505050905090565b60006109ed6109e6611821565b8484611825565b5060015b92915050565b600b5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60095490565b6000610a34848484611911565b610aa484610a40611821565b610a9f85604051806060016040528060288152602001612a0f602891396001600160a01b038a16600090815260056020526040812090610a7e611821565b6001600160a01b031681526020810191909152604001600020549190611b60565b611825565b5060019392505050565b6000600a54821115610af15760405162461bcd60e51b815260040180806020018281038252602a815260200180612954602a913960400191505060405180910390fd5b6000610afb611bf7565b9050610b078382611c1a565b9150505b919050565b600e5460ff1690565b610b21611821565b6000546001600160a01b03908116911614610b71576040805162461bcd60e51b81526020600482018190526024820152600080516020612a37833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610bde576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610cd657816001600160a01b031660088281548110610c0257fe5b6000918252602090912001546001600160a01b03161415610cce57600880546000198101908110610c2f57fe5b600091825260209091200154600880546001600160a01b039092169183908110610c5557fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610ca757fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610cd6565b600101610be1565b5050565b60006109ed610ce7611821565b84610a9f8560056000610cf8611821565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611c63565b600f5481565b6000610d38611821565b6001600160a01b03811660009081526007602052604090205490915060ff1615610d935760405162461bcd60e51b815260040180806020018281038252602c815260200180612ae9602c913960400191505060405180910390fd5b6000610d9e83611cbd565b505050506001600160a01b038416600090815260036020526040902054919250610dca91905082611d0c565b6001600160a01b038316600090815260036020526040902055600a54610df09082611d0c565b600a55600b54610e009084611c63565b600b55505050565b610e10611821565b6000546001600160a01b03908116911614610e60576040805162461bcd60e51b81526020600482018190526024820152600080516020612a37833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115610edd576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610efc576000610eed84611cbd565b509395506109f1945050505050565b6000610f0784611cbd565b509295506109f1945050505050565b7f0000000000000000000000001e6bfc11572b074fd573737d869d6ddc53480d1f81565b601354600160a81b900460ff1681565b610f52611821565b6000546001600160a01b03908116911614610fa2576040805162461bcd60e51b81526020600482018190526024820152600080516020612a37833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615611010576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600360205260409020541561106a576001600160a01b03811660009081526003602052604090205461105090610aae565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60115481565b6001600160a01b03811660009081526007602052604081205460ff161561113457506001600160a01b038116600090815260046020526040902054610b0b565b6001600160a01b0382166000908152600360205260409020546109f190610aae565b61115e611821565b6000546001600160a01b039081169116146111ae576040805162461bcd60e51b81526020600482018190526024820152600080516020612a37833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612a57833981519152908390a3600080546001600160a01b0319169055565b6013546001600160a01b031681565b60145481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b611230611821565b6000546001600160a01b03908116911614611280576040805162461bcd60e51b81526020600482018190526024820152600080516020612a37833981519152604482015290519081900360640190fd5b601155565b600d8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109cf5780601f106109a4576101008083540402835291602001916109cf565b60006109ed6112f3611821565b84610a9f85604051806060016040528060258152602001612b38602591396005600061131d611821565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b60565b6001546001600160a01b031633146113975760405162461bcd60e51b8152600401808060200182810382526023815260200180612b156023913960400191505060405180910390fd5b60025442116113ed576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612a5783398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60006109ed611449611821565b8484611911565b60025490565b61145e611821565b6000546001600160a01b039081169116146114ae576040805162461bcd60e51b81526020600482018190526024820152600080516020612a37833981519152604482015290519081900360640190fd5b60138054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611509611821565b6000546001600160a01b03908116911614611559576040805162461bcd60e51b81526020600482018190526024820152600080516020612a37833981519152604482015290519081900360640190fd5b601380546001600160a01b0319166001600160a01b0392909216919091179055565b611583611821565b6000546001600160a01b039081169116146115d3576040805162461bcd60e51b81526020600482018190526024820152600080516020612a37833981519152604482015290519081900360640190fd5b6115f360646115ed83600954611d4e90919063ffffffff16565b90611c1a565b60145550565b611601611821565b6000546001600160a01b03908116911614611651576040805162461bcd60e51b81526020600482018190526024820152600080516020612a37833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612a57833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6116ca611821565b6000546001600160a01b0390811691161461171a576040805162461bcd60e51b81526020600482018190526024820152600080516020612a37833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b611743611821565b6000546001600160a01b03908116911614611793576040805162461bcd60e51b81526020600482018190526024820152600080516020612a37833981519152604482015290519081900360640190fd5b6001600160a01b0381166117d85760405162461bcd60e51b815260040180806020018281038252602681526020018061297e6026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612a5783398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b03831661186a5760405162461bcd60e51b8152600401808060200182810382526024815260200180612ac56024913960400191505060405180910390fd5b6001600160a01b0382166118af5760405162461bcd60e51b81526004018080602001828103825260228152602001806129a46022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166119565760405162461bcd60e51b8152600401808060200182810382526025815260200180612aa06025913960400191505060405180910390fd5b6001600160a01b03821661199b5760405162461bcd60e51b81526004018080602001828103825260238152602001806129316023913960400191505060405180910390fd5b600081116119da5760405162461bcd60e51b8152600401808060200182810382526029815260200180612a776029913960400191505060405180910390fd5b6119e2611219565b6001600160a01b0316836001600160a01b031614158015611a1c5750611a06611219565b6001600160a01b0316826001600160a01b031614155b15611a6257601454811115611a625760405162461bcd60e51b81526004018080602001828103825260288152602001806129c66028913960400191505060405180910390fd5b6000611a6d306110f4565b90506014548110611a7d57506014545b60155481108015908190611a9b5750601354600160a01b900460ff16155b8015611ad957507f0000000000000000000000001e6bfc11572b074fd573737d869d6ddc53480d1f6001600160a01b0316856001600160a01b031614155b8015611aee5750601354600160a81b900460ff165b15611b01576015549150611b0182611da7565b6001600160a01b03851660009081526006602052604090205460019060ff1680611b4357506001600160a01b03851660009081526006602052604090205460ff165b15611b4c575060005b611b5886868684611e70565b505050505050565b60008184841115611bef5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611bb4578181015183820152602001611b9c565b50505050905090810190601f168015611be15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611c04611fe4565b9092509050611c138282611c1a565b9250505090565b6000611c5c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612147565b9392505050565b600082820183811015611c5c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611cd48a6121ac565b9250925092506000806000611cf28d8686611ced611bf7565b6121e8565b919f909e50909c50959a5093985091965092945050505050565b6000611c5c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b60565b600082611d5d575060006109f1565b82820282848281611d6a57fe5b0414611c5c5760405162461bcd60e51b81526004018080602001828103825260218152602001806129ee6021913960400191505060405180910390fd5b6013805460ff60a01b1916600160a01b1790556000611dc7826004611c1a565b90506000611dd6836004611c1a565b90506000611dee82611de88686611d0c565b90611d0c565b905047611dfa84612238565b6000611e064783611d0c565b9050611e128482612447565b611e1b83612545565b604080518681526020810183905280820186905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506013805460ff60a01b1916905550505050565b80611e7d57611e7d612587565b6001600160a01b03841660009081526007602052604090205460ff168015611ebe57506001600160a01b03831660009081526007602052604090205460ff16155b15611ed357611ece8484846125b9565b611fd1565b6001600160a01b03841660009081526007602052604090205460ff16158015611f1457506001600160a01b03831660009081526007602052604090205460ff165b15611f2457611ece8484846126dd565b6001600160a01b03841660009081526007602052604090205460ff16158015611f6657506001600160a01b03831660009081526007602052604090205460ff16155b15611f7657611ece848484612786565b6001600160a01b03841660009081526007602052604090205460ff168015611fb657506001600160a01b03831660009081526007602052604090205460ff165b15611fc657611ece8484846127ca565b611fd1848484612786565b80611fde57611fde61283d565b50505050565b600a546009546000918291825b6008548110156121155782600360006008848154811061200d57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612072575081600460006008848154811061204b57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561208957600a5460095494509450505050612143565b6120c9600360006008848154811061209d57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611d0c565b925061210b60046000600884815481106120df57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611d0c565b9150600101611ff1565b50600954600a5461212591611c1a565b82101561213d57600a54600954935093505050612143565b90925090505b9091565b600081836121965760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611bb4578181015183820152602001611b9c565b5060008385816121a257fe5b0495945050505050565b6000806000806121bb8561284b565b905060006121c886612867565b905060006121da82611de88986611d0c565b979296509094509092505050565b60008080806121f78886611d4e565b905060006122058887611d4e565b905060006122138888611d4e565b9050600061222582611de88686611d0c565b939b939a50919850919650505050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061226657fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156122df57600080fd5b505afa1580156122f3573d6000803e3d6000fd5b505050506040513d602081101561230957600080fd5b505181518290600190811061231a57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612365307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611825565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561240a5781810151838201526020016123f2565b505050509050019650505050505050600060405180830381600087803b15801561243357600080fd5b505af1158015611b58573d6000803e3d6000fd5b612472307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611825565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806124af611219565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561251a57600080fd5b505af115801561252e573d6000803e3d6000fd5b50505050506040513d6060811015611fde57600080fd5b61254e81612238565b6013546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610cd6573d6000803e3d6000fd5b600f541580156125975750601154155b156125a1576125b7565b600f805460105560118054601255600091829055555b565b6000806000806000806125cb87611cbd565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506125fd9088611d0c565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461262c9087611d0c565b6001600160a01b03808b1660009081526003602052604080822093909355908a168152205461265b9086611c63565b6001600160a01b03891660009081526003602052604090205561267d81612883565b612687848361290c565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806126ef87611cbd565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506127219087611d0c565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546127579084611c63565b6001600160a01b03891660009081526004602090815260408083209390935560039052205461265b9086611c63565b60008060008060008061279887611cbd565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061262c9087611d0c565b6000806000806000806127dc87611cbd565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061280e9088611d0c565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546127219087611d0c565b601054600f55601254601155565b60006109f160646115ed600f5485611d4e90919063ffffffff16565b60006109f160646115ed60115485611d4e90919063ffffffff16565b600061288d611bf7565b9050600061289b8383611d4e565b306000908152600360205260409020549091506128b89082611c63565b3060009081526003602090815260408083209390935560079052205460ff161561290757306000908152600460205260409020546128f69084611c63565b306000908152600460205260409020555b505050565b600a546129199083611d0c565b600a55600b546129299082611c63565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122033a7e8bb2880b63cf6c585bf2c175f3d38c321912f0865489af3e6aa8efa4afb64736f6c634300060c0033

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

000000000000000000000000c6c45539407bf32991ad27ef83c79d5f28adb290

-----Decoded View---------------
Arg [0] : charityWalletAddress (address): 0xC6c45539407bf32991aD27EF83C79d5F28aDB290

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000c6c45539407bf32991ad27ef83c79d5f28adb290


Deployed Bytecode Sourcemap

25911:19004:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33496:98;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33496:98:0;;:::i;:::-;;28431:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29343:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29343:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;30464:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26863:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;26863:51:0;;;;;;;;;;;;;;28708:95;;;;;;;;;;;;;:::i;29512:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29512:313:0;;;;;;;;;;;;;;;;;:::i;31388:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31388:253:0;;:::i;28617:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32104:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32104:479:0;-1:-1:-1;;;;;32104:479:0;;:::i;29833:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29833:218:0;;;;;;;;:::i;26674:26::-;;;;;;;;;;;;;:::i;30559:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30559:377:0;;:::i;33251:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33251:111:0;-1:-1:-1;;;;;33251:111:0;;:::i;30944:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30944:436:0;;;;;;;;;:::i;26921:38::-;;;;;;;;;;;;;:::i;27051:40::-;;;;;;;;;;;;;:::i;31649:447::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31649:447:0;-1:-1:-1;;;;;31649:447:0;;:::i;37393:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37393:123:0;-1:-1:-1;;;;;37393:123:0;;:::i;26761:33::-;;;;;;;;;;;;;:::i;28811:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28811:198:0;-1:-1:-1;;;;;28811:198:0;;:::i;16506:148::-;;;;;;;;;;;;;:::i;26966:44::-;;;;;;;;;;;;;:::i;27104:49::-;;;;;;;;;;;;;:::i;30336:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30336:120:0;-1:-1:-1;;;;;30336:120:0;;:::i;15863:79::-;;;;;;;;;;;;;:::i;33606:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33606:122:0;;:::i;28522:87::-;;;;;;;;;;;;;:::i;30059:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30059:269:0;;;;;;;;:::i;17516:293::-;;;;;;;;;;;;;:::i;29017:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29017:167:0;;;;;;;;:::i;17061:89::-;;;;;;;;;;;;;:::i;33909:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33909:171:0;;;;:::i;37700:149::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37700:149:0;-1:-1:-1;;;;;37700:149:0;;:::i;33739:162::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33739:162:0;;:::i;17226:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17226:214:0;;:::i;29192:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29192:143:0;;;;;;;;;;:::i;33374:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33374:110:0;-1:-1:-1;;;;;33374:110:0;;:::i;16809:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16809:244:0;-1:-1:-1;;;;;16809:244:0;;:::i;33496:98::-;16085:12;:10;:12::i;:::-;16075:6;;-1:-1:-1;;;;;16075:6:0;;;:22;;;16067:67;;;;;-1:-1:-1;;;16067:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16067:67:0;;;;;;;;;;;;;;;33570:7:::1;:16:::0;33496:98::o;28431:83::-;28501:5;28494:12;;;;;;;;-1:-1:-1;;28494:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28468:13;;28494:12;;28501:5;;28494:12;;28501:5;28494:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28431:83;:::o;29343:161::-;29418:4;29435:39;29444:12;:10;:12::i;:::-;29458:7;29467:6;29435:8;:39::i;:::-;-1:-1:-1;29492:4:0;29343:161;;;;;:::o;30464:87::-;30533:10;;30464:87;:::o;26863:51::-;;;:::o;28708:95::-;28788:7;;28708:95;:::o;29512:313::-;29610:4;29627:36;29637:6;29645:9;29656:6;29627:9;:36::i;:::-;29674:121;29683:6;29691:12;:10;:12::i;:::-;29705:89;29743:6;29705:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29705:19:0;;;;;;:11;:19;;;;;;29725:12;:10;:12::i;:::-;-1:-1:-1;;;;;29705:33:0;;;;;;;;;;;;-1:-1:-1;29705:33:0;;;:89;:37;:89::i;:::-;29674:8;:121::i;:::-;-1:-1:-1;29813:4:0;29512:313;;;;;:::o;31388:253::-;31454:7;31493;;31482;:18;;31474:73;;;;-1:-1:-1;;;31474:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31558:19;31581:10;:8;:10::i;:::-;31558:33;-1:-1:-1;31609:24:0;:7;31558:33;31609:11;:24::i;:::-;31602:31;;;31388:253;;;;:::o;28617:83::-;28683:9;;;;28617:83;:::o;32104:479::-;16085:12;:10;:12::i;:::-;16075:6;;-1:-1:-1;;;;;16075:6:0;;;:22;;;16067:67;;;;;-1:-1:-1;;;16067:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16067:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32186:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32178:60;;;::::0;;-1:-1:-1;;;32178:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32254:9;32249:327;32273:9;:16:::0;32269:20;::::1;32249:327;;;32331:7;-1:-1:-1::0;;;;;32315:23:0::1;:9;32325:1;32315:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;32315:12:0::1;:23;32311:254;;;32374:9;32384:16:::0;;-1:-1:-1;;32384:20:0;;;32374:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;32359:9:::1;:12:::0;;-1:-1:-1;;;;;32374:31:0;;::::1;::::0;32369:1;;32359:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;32359:46:0::1;-1:-1:-1::0;;;;;32359:46:0;;::::1;;::::0;;32424:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;32463:11:::1;:20:::0;;;;:28;;-1:-1:-1;;32463:28:0::1;::::0;;32510:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;32510:15:0;;;;;-1:-1:-1;;;;;;32510:15:0::1;::::0;;;;;32544:5:::1;;32311:254;32291:3;;32249:327;;;;32104:479:::0;:::o;29833:218::-;29921:4;29938:83;29947:12;:10;:12::i;:::-;29961:7;29970:50;30009:10;29970:11;:25;29982:12;:10;:12::i;:::-;-1:-1:-1;;;;;29970:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29970:25:0;;;:34;;;;;;;;;;;:38;:50::i;26674:26::-;;;;:::o;30559:377::-;30611:14;30628:12;:10;:12::i;:::-;-1:-1:-1;;;;;30660:19:0;;;;;;:11;:19;;;;;;30611:29;;-1:-1:-1;30660:19:0;;30659:20;30651:77;;;;-1:-1:-1;;;30651:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30740:15;30764:19;30775:7;30764:10;:19::i;:::-;-1:-1:-1;;;;;;;;;30812:15:0;;;;;;:7;:15;;;;;;30739:44;;-1:-1:-1;30812:28:0;;:15;-1:-1:-1;30739:44:0;30812:19;:28::i;:::-;-1:-1:-1;;;;;30794:15:0;;;;;;:7;:15;;;;;:46;30861:7;;:20;;30873:7;30861:11;:20::i;:::-;30851:7;:30;30905:10;;:23;;30920:7;30905:14;:23::i;:::-;30892:10;:36;-1:-1:-1;;;30559:377:0:o;33251:111::-;16085:12;:10;:12::i;:::-;16075:6;;-1:-1:-1;;;;;16075:6:0;;;:22;;;16067:67;;;;;-1:-1:-1;;;16067:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16067:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33320:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;33320:34:0::1;33350:4;33320:34;::::0;;33251:111::o;30944:436::-;31034:7;31073;;31062;:18;;31054:62;;;;;-1:-1:-1;;;31054:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31132:17;31127:246;;31167:15;31191:19;31202:7;31191:10;:19::i;:::-;-1:-1:-1;31166:44:0;;-1:-1:-1;31225:14:0;;-1:-1:-1;;;;;31225:14:0;31127:246;31274:23;31305:19;31316:7;31305:10;:19::i;:::-;-1:-1:-1;31272:52:0;;-1:-1:-1;31339:22:0;;-1:-1:-1;;;;;31339:22:0;26921:38;;;:::o;27051:40::-;;;-1:-1:-1;;;27051:40:0;;;;;:::o;31649:447::-;16085:12;:10;:12::i;:::-;16075:6;;-1:-1:-1;;;;;16075:6:0;;;:22;;;16067:67;;;;;-1:-1:-1;;;16067:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16067:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31846:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31845:21;31837:61;;;::::0;;-1:-1:-1;;;31837:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;31912:16:0;::::1;31931:1;31912:16:::0;;;:7:::1;:16;::::0;;;;;:20;31909:108:::1;;-1:-1:-1::0;;;;;31988:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;31968:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;31949:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;31909:108:::1;-1:-1:-1::0;;;;;32027:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;32027:27:0::1;32050:4;32027:27:::0;;::::1;::::0;;;32065:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;32065:23:0::1;::::0;;::::1;::::0;;31649:447::o;37393:123::-;-1:-1:-1;;;;;37481:27:0;37457:4;37481:27;;;:18;:27;;;;;;;;;37393:123::o;26761:33::-;;;;:::o;28811:198::-;-1:-1:-1;;;;;28901:20:0;;28877:7;28901:20;;;:11;:20;;;;;;;;28897:49;;;-1:-1:-1;;;;;;28930:16:0;;;;;;:7;:16;;;;;;28923:23;;28897:49;-1:-1:-1;;;;;28984:16:0;;;;;;:7;:16;;;;;;28964:37;;:19;:37::i;16506:148::-;16085:12;:10;:12::i;:::-;16075:6;;-1:-1:-1;;;;;16075:6:0;;;:22;;;16067:67;;;;;-1:-1:-1;;;16067:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16067:67:0;;;;;;;;;;;;;;;16613:1:::1;16597:6:::0;;16576:40:::1;::::0;-1:-1:-1;;;;;16597:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16576:40:0;16613:1;;16576:40:::1;16644:1;16627:19:::0;;-1:-1:-1;;;;;;16627:19:0::1;::::0;;16506:148::o;26966:44::-;;;-1:-1:-1;;;;;26966:44:0;;:::o;27104:49::-;;;;:::o;30336:120::-;-1:-1:-1;;;;;30428:20:0;30404:4;30428:20;;;:11;:20;;;;;;;;;30336:120::o;15863:79::-;15901:7;15928:6;-1:-1:-1;;;;;15928:6:0;15863:79;:::o;33606:122::-;16085:12;:10;:12::i;:::-;16075:6;;-1:-1:-1;;;;;16075:6:0;;;:22;;;16067:67;;;;;-1:-1:-1;;;16067:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16067:67:0;;;;;;;;;;;;;;;33692:13:::1;:28:::0;33606:122::o;28522:87::-;28594:7;28587:14;;;;;;;;-1:-1:-1;;28587:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28561:13;;28587:14;;28594:7;;28587:14;;28594:7;28587:14;;;;;;;;;;;;;;;;;;;;;;;;30059:269;30152:4;30169:129;30178:12;:10;:12::i;:::-;30192:7;30201:96;30240:15;30201:96;;;;;;;;;;;;;;;;;:11;:25;30213:12;:10;:12::i;:::-;-1:-1:-1;;;;;30201:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30201:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17516:293::-;17568:14;;-1:-1:-1;;;;;17568:14:0;17586:10;17568:28;17560:76;;;;-1:-1:-1;;;17560:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17661:9;;17655:3;:15;17647:60;;;;;-1:-1:-1;;;17647:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17752:14;;;17744:6;;17723:44;;-1:-1:-1;;;;;17752:14:0;;;;17744:6;;;;-1:-1:-1;;;;;;;;;;;17723:44:0;;17787:14;;;17778:23;;-1:-1:-1;;;;;;17778:23:0;-1:-1:-1;;;;;17787:14:0;;;17778:23;;;;;;17516:293::o;29017:167::-;29095:4;29112:42;29122:12;:10;:12::i;:::-;29136:9;29147:6;29112:9;:42::i;17061:89::-;17133:9;;17061:89;:::o;33909:171::-;16085:12;:10;:12::i;:::-;16075:6;;-1:-1:-1;;;;;16075:6:0;;;:22;;;16067:67;;;;;-1:-1:-1;;;16067:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16067:67:0;;;;;;;;;;;;;;;33986:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;33986:32:0;::::1;-1:-1:-1::0;;;;33986:32:0;;::::1;::::0;;;::::1;::::0;;;34034:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;33909:171:::0;:::o;37700:149::-;16085:12;:10;:12::i;:::-;16075:6;;-1:-1:-1;;;;;16075:6:0;;;:22;;;16067:67;;;;;-1:-1:-1;;;16067:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16067:67:0;;;;;;;;;;;;;;;37797:21:::1;:44:::0;;-1:-1:-1;;;;;;37797:44:0::1;-1:-1:-1::0;;;;;37797:44:0;;;::::1;::::0;;;::::1;::::0;;37700:149::o;33739:162::-;16085:12;:10;:12::i;:::-;16075:6;;-1:-1:-1;;;;;16075:6:0;;;:22;;;16067:67;;;;;-1:-1:-1;;;16067:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16067:67:0;;;;;;;;;;;;;;;33833:60:::1;33877:5;33833:25;33845:12;33833:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;33818:12;:75:::0;-1:-1:-1;33739:162:0:o;17226:214::-;16085:12;:10;:12::i;:::-;16075:6;;-1:-1:-1;;;;;16075:6:0;;;:22;;;16067:67;;;;;-1:-1:-1;;;16067:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16067:67:0;;;;;;;;;;;;;;;17307:6:::1;::::0;;;17290:23;;-1:-1:-1;;;;;;17290:23:0;;::::1;-1:-1:-1::0;;;;;17307:6:0;::::1;17290:23;::::0;;;17324:19:::1;::::0;;17366:3:::1;:10:::0;::::1;17354:9;:22:::0;17392:40:::1;::::0;17307:6;;-1:-1:-1;;;;;;;;;;;17392:40:0;17307:6;;17392:40:::1;17226:214:::0;:::o;29192:143::-;-1:-1:-1;;;;;29300:18:0;;;29273:7;29300:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29192:143::o;33374:110::-;16085:12;:10;:12::i;:::-;16075:6;;-1:-1:-1;;;;;16075:6:0;;;:22;;;16067:67;;;;;-1:-1:-1;;;16067:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16067:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33441:27:0::1;33471:5;33441:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;33441:35:0::1;::::0;;33374:110::o;16809:244::-;16085:12;:10;:12::i;:::-;16075:6;;-1:-1:-1;;;;;16075:6:0;;;:22;;;16067:67;;;;;-1:-1:-1;;;16067:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16067:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16898:22:0;::::1;16890:73;;;;-1:-1:-1::0;;;16890:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17000:6;::::0;;16979:38:::1;::::0;-1:-1:-1;;;;;16979:38:0;;::::1;::::0;17000:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16979:38:0;::::1;17028:6;:17:::0;;-1:-1:-1;;;;;;17028:17:0::1;-1:-1:-1::0;;;;;17028:17:0;;;::::1;::::0;;;::::1;::::0;;16809:244::o;8271:106::-;8359:10;8271:106;:::o;37857:337::-;-1:-1:-1;;;;;37950:19:0;;37942:68;;;;-1:-1:-1;;;37942:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38029:21:0;;38021:68;;;;-1:-1:-1;;;38021:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38102:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;38154:32;;;;;;;;;;;;;;;;;37857:337;;;:::o;38202:1813::-;-1:-1:-1;;;;;38324:18:0;;38316:68;;;;-1:-1:-1;;;38316:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38403:16:0;;38395:64;;;;-1:-1:-1;;;38395:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38487:1;38478:6;:10;38470:64;;;;-1:-1:-1;;;38470:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38556:7;:5;:7::i;:::-;-1:-1:-1;;;;;38548:15:0;:4;-1:-1:-1;;;;;38548:15:0;;;:32;;;;;38573:7;:5;:7::i;:::-;-1:-1:-1;;;;;38567:13:0;:2;-1:-1:-1;;;;;38567:13:0;;;38548:32;38545:125;;;38613:12;;38603:6;:22;;38595:75;;;;-1:-1:-1;;;38595:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38965:28;38996:24;39014:4;38996:9;:24::i;:::-;38965:55;;39068:12;;39044:20;:36;39041:112;;-1:-1:-1;39129:12:0;;39041:112;39224:29;;39200:53;;;;;;;39282;;-1:-1:-1;39319:16:0;;-1:-1:-1;;;39319:16:0;;;;39318:17;39282:53;:91;;;;;39360:13;-1:-1:-1;;;;;39352:21:0;:4;-1:-1:-1;;;;;39352:21:0;;;39282:91;:129;;;;-1:-1:-1;39390:21:0;;-1:-1:-1;;;39390:21:0;;;;39282:129;39264:318;;;39461:29;;39438:52;;39534:36;39549:20;39534:14;:36::i;:::-;-1:-1:-1;;;;;39790:24:0;;39663:12;39790:24;;;:18;:24;;;;;;39678:4;;39790:24;;;:50;;-1:-1:-1;;;;;;39818:22:0;;;;;;:18;:22;;;;;;;;39790:50;39787:96;;;-1:-1:-1;39866:5:0;39787:96;39969:38;39984:4;39989:2;39992:6;39999:7;39969:14;:38::i;:::-;38202:1813;;;;;;:::o;4681:192::-;4767:7;4803:12;4795:6;;;;4787:29;;;;-1:-1:-1;;;4787:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4839:5:0;;;4681:192::o;35543:163::-;35584:7;35605:15;35622;35641:19;:17;:19::i;:::-;35604:56;;-1:-1:-1;35604:56:0;-1:-1:-1;35678:20:0;35604:56;;35678:11;:20::i;:::-;35671:27;;;;35543:163;:::o;6079:132::-;6137:7;6164:39;6168:1;6171;6164:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6157:46;6079:132;-1:-1:-1;;;6079:132:0:o;3778:181::-;3836:7;3868:5;;;3892:6;;;;3884:46;;;;;-1:-1:-1;;;3884:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;34341:419;34400:7;34409;34418;34427;34436;34445;34466:23;34491:12;34505:18;34527:20;34539:7;34527:11;:20::i;:::-;34465:82;;;;;;34559:15;34576:23;34601:12;34617:50;34629:7;34638:4;34644:10;34656;:8;:10::i;:::-;34617:11;:50::i;:::-;34558:109;;;;-1:-1:-1;34558:109:0;;-1:-1:-1;34718:15:0;;-1:-1:-1;34735:4:0;;-1:-1:-1;34741:10:0;;-1:-1:-1;34341:419:0;;-1:-1:-1;;;;;34341:419:0:o;4242:136::-;4300:7;4327:43;4331:1;4334;4327:43;;;;;;;;;;;;;;;;;:3;:43::i;5132:471::-;5190:7;5435:6;5431:47;;-1:-1:-1;5465:1:0;5458:8;;5431:47;5502:5;;;5506:1;5502;:5;:1;5526:5;;;;;:10;5518:56;;;;-1:-1:-1;;;5518:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40023:1178;27533:16;:23;;-1:-1:-1;;;;27533:23:0;-1:-1:-1;;;27533:23:0;;;;40183:27:::1;:20:::0;40208:1:::1;40183:24;:27::i;:::-;40159:51:::0;-1:-1:-1;40221:26:0::1;40250:27;:20:::0;40275:1:::1;40250:24;:27::i;:::-;40221:56:::0;-1:-1:-1;40288:22:0::1;40313:63;40221:56:::0;40313:39:::1;:20:::0;40338:13;40313:24:::1;:39::i;:::-;:43:::0;::::1;:63::i;:::-;40288:88:::0;-1:-1:-1;40679:21:0::1;40745:31;40762:13:::0;40745:16:::1;:31::i;:::-;40907:18;40928:41;:21;40954:14:::0;40928:25:::1;:41::i;:::-;40907:62;;41019:44;41032:18;41052:10;41019:12;:44::i;:::-;41074:32;41091:14;41074:16;:32::i;:::-;41132:61;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;27579:16:0;:24;;-1:-1:-1;;;;27579:24:0;;;-1:-1:-1;;;;40023:1178:0:o;42400:834::-;42511:7;42507:40;;42533:14;:12;:14::i;:::-;-1:-1:-1;;;;;42572:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;42596:22:0;;;;;;:11;:22;;;;;;;;42595:23;42572:46;42568:597;;;42635:48;42657:6;42665:9;42676:6;42635:21;:48::i;:::-;42568:597;;;-1:-1:-1;;;;;42706:19:0;;;;;;:11;:19;;;;;;;;42705:20;:46;;;;-1:-1:-1;;;;;;42729:22:0;;;;;;:11;:22;;;;;;;;42705:46;42701:464;;;42768:46;42788:6;42796:9;42807:6;42768:19;:46::i;42701:464::-;-1:-1:-1;;;;;42837:19:0;;;;;;:11;:19;;;;;;;;42836:20;:47;;;;-1:-1:-1;;;;;;42861:22:0;;;;;;:11;:22;;;;;;;;42860:23;42836:47;42832:333;;;42900:44;42918:6;42926:9;42937:6;42900:17;:44::i;42832:333::-;-1:-1:-1;;;;;42966:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;42989:22:0;;;;;;:11;:22;;;;;;;;42966:45;42962:203;;;43028:48;43050:6;43058:9;43069:6;43028:21;:48::i;42962:203::-;43109:44;43127:6;43135:9;43146:6;43109:17;:44::i;:::-;43189:7;43185:41;;43211:15;:13;:15::i;:::-;42400:834;;;;:::o;35714:561::-;35811:7;;35847;;35764;;;;;35871:289;35895:9;:16;35891:20;;35871:289;;;35961:7;35937;:21;35945:9;35955:1;35945:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35945:12:0;35937:21;;;;;;;;;;;;;:31;;:66;;;35996:7;35972;:21;35980:9;35990:1;35980:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35980:12:0;35972:21;;;;;;;;;;;;;:31;35937:66;35933:97;;;36013:7;;36022;;36005:25;;;;;;;;;35933:97;36055:34;36067:7;:21;36075:9;36085:1;36075:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36075:12:0;36067:21;;;;;;;;;;;;;36055:7;;:11;:34::i;:::-;36045:44;;36114:34;36126:7;:21;36134:9;36144:1;36134:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36134:12:0;36126:21;;;;;;;;;;;;;36114:7;;:11;:34::i;:::-;36104:44;-1:-1:-1;35913:3:0;;35871:289;;;-1:-1:-1;36196:7:0;;36184;;:20;;:11;:20::i;:::-;36174:7;:30;36170:61;;;36214:7;;36223;;36206:25;;;;;;;;36170:61;36250:7;;-1:-1:-1;36259:7:0;-1:-1:-1;35714:561:0;;;:::o;6707:278::-;6793:7;6828:12;6821:5;6813:28;;;;-1:-1:-1;;;6813:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6852:9;6868:1;6864;:5;;;;;;;6707:278;-1:-1:-1;;;;;6707:278:0:o;34768:330::-;34828:7;34837;34846;34866:12;34881:24;34897:7;34881:15;:24::i;:::-;34866:39;;34916:18;34937:30;34959:7;34937:21;:30::i;:::-;34916:51;-1:-1:-1;34978:23:0;35004:33;34916:51;35004:17;:7;35016:4;35004:11;:17::i;:33::-;34978:59;35073:4;;-1:-1:-1;35079:10:0;;-1:-1:-1;34768:330:0;;-1:-1:-1;;;34768:330:0:o;35106:429::-;35221:7;;;;35277:24;:7;35289:11;35277;:24::i;:::-;35259:42;-1:-1:-1;35312:12:0;35327:21;:4;35336:11;35327:8;:21::i;:::-;35312:36;-1:-1:-1;35359:18:0;35380:27;:10;35395:11;35380:14;:27::i;:::-;35359:48;-1:-1:-1;35418:23:0;35444:33;35359:48;35444:17;:7;35456:4;35444:11;:17::i;:33::-;35496:7;;;;-1:-1:-1;35522:4:0;;-1:-1:-1;35106:429:0;;-1:-1:-1;;;;;;;35106:429:0:o;41209:589::-;41359:16;;;41373:1;41359:16;;;41335:21;41359:16;;;;;41335:21;41359:16;;;;;;;;;;-1:-1:-1;41359:16:0;41335:40;;41404:4;41386;41391:1;41386:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;41386:23:0;;;-1:-1:-1;;;;;41386:23:0;;;;;41430:15;-1:-1:-1;;;;;41430:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41430:22:0;41420:7;;:4;;41425:1;;41420:7;;;;;;;;;;;:32;-1:-1:-1;;;;;41420:32:0;;;-1:-1:-1;;;;;41420:32:0;;;;;41465:62;41482:4;41497:15;41515:11;41465:8;:62::i;:::-;41566:15;-1:-1:-1;;;;;41566:66:0;;41647:11;41673:1;41717:4;41744;41764:15;41566:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41566:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41806:513;41954:62;41971:4;41986:15;42004:11;41954:8;:62::i;:::-;42059:15;-1:-1:-1;;;;;42059:31:0;;42098:9;42131:4;42151:11;42177:1;42220;42263:7;:5;:7::i;:::-;42285:15;42059:252;;;;;;;;;;;;;-1:-1:-1;;;;;42059:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42059:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37528:160;37590:24;37607:6;37590:16;:24::i;:::-;37626:21;;:53;;-1:-1:-1;;;;;37626:21:0;;;;37657;37626:53;;;;;:21;:53;:21;:53;37657:21;37626;:53;;;;;;;;;;;;;;;;;;;36994:250;37040:7;;:12;:34;;;;-1:-1:-1;37056:13:0;;:18;37040:34;37037:46;;;37076:7;;37037:46;37121:7;;;37103:15;:25;37163:13;;;37139:21;:37;-1:-1:-1;37197:11:0;;;;37219:17;36994:250;:::o;44346:566::-;44449:15;44466:23;44491:12;44505:23;44530:12;44544:18;44566:19;44577:7;44566:10;:19::i;:::-;-1:-1:-1;;;;;44614:15:0;;;;;;:7;:15;;;;;;44448:137;;-1:-1:-1;44448:137:0;;-1:-1:-1;44448:137:0;;-1:-1:-1;44448:137:0;-1:-1:-1;44448:137:0;-1:-1:-1;44448:137:0;-1:-1:-1;44614:28:0;;44634:7;44614:19;:28::i;:::-;-1:-1:-1;;;;;44596:15:0;;;;;;:7;:15;;;;;;;;:46;;;;44671:7;:15;;;;:28;;44691:7;44671:19;:28::i;:::-;-1:-1:-1;;;;;44653:15:0;;;;;;;:7;:15;;;;;;:46;;;;44731:18;;;;;;;:39;;44754:15;44731:22;:39::i;:::-;-1:-1:-1;;;;;44710:18:0;;;;;;:7;:18;;;;;:60;44784:26;44799:10;44784:14;:26::i;:::-;44821:23;44833:4;44839;44821:11;:23::i;:::-;44877:9;-1:-1:-1;;;;;44860:44:0;44869:6;-1:-1:-1;;;;;44860:44:0;;44888:15;44860:44;;;;;;;;;;;;;;;;;;44346:566;;;;;;;;;:::o;43752:586::-;43853:15;43870:23;43895:12;43909:23;43934:12;43948:18;43970:19;43981:7;43970:10;:19::i;:::-;-1:-1:-1;;;;;44018:15:0;;;;;;:7;:15;;;;;;43852:137;;-1:-1:-1;43852:137:0;;-1:-1:-1;43852:137:0;;-1:-1:-1;43852:137:0;-1:-1:-1;43852:137:0;-1:-1:-1;43852:137:0;-1:-1:-1;44018:28:0;;43852:137;44018:19;:28::i;:::-;-1:-1:-1;;;;;44000:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;44078:18;;;;;:7;:18;;;;;:39;;44101:15;44078:22;:39::i;:::-;-1:-1:-1;;;;;44057:18:0;;;;;;:7;:18;;;;;;;;:60;;;;44149:7;:18;;;;:39;;44172:15;44149:22;:39::i;43242:502::-;43341:15;43358:23;43383:12;43397:23;43422:12;43436:18;43458:19;43469:7;43458:10;:19::i;:::-;-1:-1:-1;;;;;43506:15:0;;;;;;:7;:15;;;;;;43340:137;;-1:-1:-1;43340:137:0;;-1:-1:-1;43340:137:0;;-1:-1:-1;43340:137:0;-1:-1:-1;43340:137:0;-1:-1:-1;43340:137:0;-1:-1:-1;43506:28:0;;43340:137;43506:19;:28::i;32593:642::-;32696:15;32713:23;32738:12;32752:23;32777:12;32791:18;32813:19;32824:7;32813:10;:19::i;:::-;-1:-1:-1;;;;;32861:15:0;;;;;;:7;:15;;;;;;32695:137;;-1:-1:-1;32695:137:0;;-1:-1:-1;32695:137:0;;-1:-1:-1;32695:137:0;-1:-1:-1;32695:137:0;-1:-1:-1;32695:137:0;-1:-1:-1;32861:28:0;;32881:7;32861:19;:28::i;:::-;-1:-1:-1;;;;;32843:15:0;;;;;;:7;:15;;;;;;;;:46;;;;32918:7;:15;;;;:28;;32938:7;32918:19;:28::i;37256:125::-;37310:15;;37300:7;:25;37352:21;;37336:13;:37;37256:125::o;36654:154::-;36718:7;36745:55;36784:5;36745:20;36757:7;;36745;:11;;:20;;;;:::i;36816:166::-;36886:7;36913:61;36958:5;36913:26;36925:13;;36913:7;:11;;:26;;;;:::i;36287:355::-;36350:19;36373:10;:8;:10::i;:::-;36350:33;-1:-1:-1;36394:18:0;36415:27;:10;36350:33;36415:14;:27::i;:::-;36494:4;36478:22;;;;:7;:22;;;;;;36394:48;;-1:-1:-1;36478:38:0;;36394:48;36478:26;:38::i;:::-;36469:4;36453:22;;;;:7;:22;;;;;;;;:63;;;;36530:11;:26;;;;;;36527:107;;;36612:4;36596:22;;;;:7;:22;;;;;;:38;;36623:10;36596:26;:38::i;:::-;36587:4;36571:22;;;;:7;:22;;;;;:63;36527:107;36287:355;;;:::o;34186:147::-;34264:7;;:17;;34276:4;34264:11;:17::i;:::-;34254:7;:27;34305:10;;:20;;34320:4;34305:14;:20::i;:::-;34292:10;:33;-1:-1:-1;;34186:147:0:o

Swarm Source

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