ETH Price: $3,376.06 (-1.17%)
Gas: 10 Gwei

Token

DogstonksLite (dogstonks.com) (DOGLITE)
 

Overview

Max Total Supply

57,184,755,852.930715273245862841 DOGLITE

Holders

85

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
525960.eth
Balance
742,846,057.203116085276112019 DOGLITE

Value
$0.00
0x97013995b4866f7279e2bf6dbd7677529b21a762
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:
DogstonksLite

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : DogstonksLite.sol
// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.0;

import '@openzeppelin/contracts/token/ERC20/ERC20.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';
import '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol';

/**
 * @notice ERC20 token with cost basis tracking and restricted loss-taking
 */
contract DogstonksLite is ERC20 {
  using Address for address payable;

  enum Phase { PENDING, OPEN, CLOSED }

  uint private immutable INITIAL_LIQUIDITY;

  Phase public _phase;
  uint public _phaseChangedAt;

  address private constant UNISWAP_ROUTER = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
  address private immutable WETH;

  uint private constant SUPPLY = 1e12 ether;

  // rates defined as amount needed in addition to sale amount
  uint private constant TAX_RATE_ITM = 2500;
  uint private constant TAX_RATE_OTM = 10000;
  uint private constant BP_DIVISOR = 10000;

  address private _owner;
  address private _pair;

  mapping (address => uint) public basisOf;
  mapping (address => uint) public cooldownOf;

  // all time high
  uint private _ath;
  uint private _athTimestamp;

  // values to prevent adding liquidity directly
  address private _lastOrigin;
  uint private _lastBlock;

  struct Minting {
    address recipient;
    uint amount;
  }

  modifier phase (Phase p) {
    require(_phase == p, 'ERR: invalid phase');
    _;
  }

  /**
   * @notice deploy
   */
  constructor () payable ERC20('DogstonksLite (dogstonks.com)', 'DOGLITE') {
    _owner = msg.sender;
    _phaseChangedAt = block.timestamp;

    INITIAL_LIQUIDITY = msg.value - 1;

    address weth = IUniswapV2Router02(UNISWAP_ROUTER).WETH();
    WETH = weth;

    // setup uniswap pair and store address

    _pair = IUniswapV2Factory(
      IUniswapV2Router02(UNISWAP_ROUTER).factory()
    ).createPair(weth, address(this));

    // prepare to add/remove liquidity

    _approve(address(this), UNISWAP_ROUTER, type(uint).max);
    IERC20(_pair).approve(UNISWAP_ROUTER, type(uint).max);
  }

  receive () external payable {}

  /**
   * @inheritdoc ERC20
   * @dev reverts if Uniswap pair holds more WETH than accounted for in reserves (suggesting liquidity is being added)
   */
  function balanceOf (
    address account
  ) override public view returns (uint) {
    if (msg.sender == _pair && tx.origin == _lastOrigin && block.number == _lastBlock) {
      (uint res0, uint res1, ) = IUniswapV2Pair(_pair).getReserves();
      require(
        (address(this) > WETH ? res0 : res1) > IERC20(WETH).balanceOf(_pair),
        'ERR: liquidity add'
      );
    }
    return super.balanceOf(account);
  }

  /**
   * @notice calculate current cost basis for sale of given quantity of tokens
   * @param amount quantity of tokens sold
   * @return cost basis for sale
   */
  function basisOfSale (
    uint amount
  ) public view returns (uint) {
    address[] memory path = new address[](2);
    path[0] = address(this);
    path[1] = WETH;

    uint[] memory amounts = IUniswapV2Router02(UNISWAP_ROUTER).getAmountsOut(
      amount,
      path
    );

    return (1 ether) * amounts[1] / amount;
  }

  /**
   * @notice calculate tax for given cost bases and sale amount
   * @param fromBasis cost basis of seller
   * @param toBasis cost basis for sale
   * @param amount quantity of tokens sold
   * @return tax amount
   */
  function taxFor (
    uint fromBasis,
    uint toBasis,
    uint amount
  ) public pure returns (uint) {
    return amount * (toBasis >= fromBasis ? TAX_RATE_ITM : TAX_RATE_OTM) / BP_DIVISOR;
  }

  /**
   * @notice open trading
   * @dev sender must be owner
   * @dev trading must not yet have been opened
   */
  function open () external phase(Phase.PENDING) {
    require(msg.sender == _owner, 'ERR: sender must be owner');

    _incrementPhase();

    // add liquidity

    _mint(address(this), SUPPLY);

    IUniswapV2Router02(
      UNISWAP_ROUTER
    ).addLiquidityETH{
      value: address(this).balance
    }(
      address(this),
      balanceOf(address(this)),
      0,
      0,
      address(this),
      block.timestamp
    );

    // prevent close before first trade takes place

    _athTimestamp = block.timestamp;
  }

  /**
   * @notice close trading
   * @dev trading must not yet have been closed
   * @dev minimum time since open must have elapsed
   */
  function close () external phase(Phase.OPEN) {
    require(
      block.timestamp > _athTimestamp + (1 weeks),
      'ERR: recent ATH'
    );

    _incrementPhase();

    uint univ2 = IERC20(_pair).balanceOf(address(this));

    (uint amountToken, ) = IUniswapV2Router02(
      UNISWAP_ROUTER
    ).removeLiquidityETH(
      address(this),
      univ2,
      0,
      0,
      address(this),
      block.timestamp
    );

    _burn(address(this), amountToken);

    payable(_owner).sendValue(INITIAL_LIQUIDITY);
  }

  /**
   * @notice exchange DOGLITE for proportion of ETH in contract
   * @dev trading must have been closed
   */
  function liquidate () external phase(Phase.CLOSED) {
    uint balance = balanceOf(msg.sender);

    require(balance != 0, 'ERR: zero balance');

    uint payout = address(this).balance * balance / totalSupply();

    _burn(msg.sender, balance);
    payable(msg.sender).sendValue(payout);
  }

  /**
   * @notice withdraw remaining ETH from contract
   * @dev trading must have been closed
   * @dev minimum time since close must have elapsed
   */
  function liquidateUnclaimed () external phase(Phase.CLOSED) {
    require(block.timestamp > _phaseChangedAt + (52 weeks), 'ERR: too soon');
    payable(_owner).sendValue(address(this).balance);
  }

  /**
   * @notice update contract phase and track timestamp
   */
  function _incrementPhase () private {
    _phase = Phase(uint8(_phase) + 1);
    _phaseChangedAt = block.timestamp;
  }

  /**
   * @notice ERC20 hook: enforce transfer restrictions and cost basis; collect tax
   * @param from tranfer sender
   * @param to transfer recipient
   * @param amount quantity of tokens transferred
   */
  function _beforeTokenTransfer (
    address from,
    address to,
    uint amount
  ) override internal {
    super._beforeTokenTransfer(from, to, amount);

    // ignore minting and burning
    if (from == address(0) || to == address(0)) return;

    // ignore add/remove liquidity
    if (from == address(this) || to == address(this)) return;
    if (from == UNISWAP_ROUTER || to == UNISWAP_ROUTER) return;

    require(uint8(_phase) >= uint8(Phase.OPEN));

    require(
      msg.sender == UNISWAP_ROUTER || msg.sender == _pair,
      'ERR: sender must be uniswap'
    );

    require(amount <= 5e9 ether /* revert message not returned by Uniswap */);

    if (from == _pair) {
      require(cooldownOf[to] < block.timestamp /* revert message not returned by Uniswap */);
      cooldownOf[to] = block.timestamp + (5 minutes);

      address[] memory path = new address[](2);
      path[0] = WETH;
      path[1] = address(this);

      uint[] memory amounts = IUniswapV2Router02(UNISWAP_ROUTER).getAmountsIn(
        amount,
        path
      );

      uint balance = balanceOf(to);
      uint fromBasis = (1 ether) * amounts[0] / amount;
      basisOf[to] = (fromBasis * amount + basisOf[to] * balance) / (amount + balance);

      if (fromBasis > _ath) {
        _ath = fromBasis;
        _athTimestamp = block.timestamp;
      }
    } else if (to == _pair) {
      _lastOrigin = tx.origin;
      _lastBlock = block.number;

      require(cooldownOf[from] < block.timestamp /* revert message not returned by Uniswap */);
      cooldownOf[from] = block.timestamp + (5 minutes);

      uint fromBasis = basisOf[from];
      uint toBasis = basisOfSale(amount);

      // collect tax
      _burn(from, taxFor(fromBasis, toBasis, amount));
    }
  }
}

File 2 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        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);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

File 3 of 10 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @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");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        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);
            }
        }
    }
}

File 4 of 10 : IUniswapV2Factory.sol
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;
}

File 5 of 10 : IUniswapV2Pair.sol
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;
}

File 6 of 10 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

File 7 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 8 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 9 of 10 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

File 10 of 10 : IUniswapV2Router01.sol
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);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","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":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":"_phase","outputs":[{"internalType":"enum DogstonksLite.Phase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_phaseChangedAt","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":[{"internalType":"address","name":"","type":"address"}],"name":"basisOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"basisOfSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"close","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"cooldownOf","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":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidateUnclaimed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"open","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"fromBasis","type":"uint256"},{"internalType":"uint256","name":"toBasis","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"taxFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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"},{"stateMutability":"payable","type":"receive"}]

601d60c08181527f446f6773746f6e6b734c6974652028646f6773746f6e6b732e636f6d2900000060e0908152610140604052600761010090815266444f474c49544560c81b61012052919262000059916003916200046a565b5080516200006f9060049060208401906200046a565b5050600780546001600160a01b0319163317905550426006556200009560013462000562565b608081815250506000737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620000ec57600080fd5b505afa15801562000101573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000127919062000510565b9050806001600160a01b031660a0816001600160a01b031660601b81525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200019457600080fd5b505afa158015620001a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001cf919062000510565b6040516364e329cb60e11b81526001600160a01b038381166004830152306024830152919091169063c9c6539690604401602060405180830381600087803b1580156200021b57600080fd5b505af115801562000230573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000256919062000510565b600880546001600160a01b0319166001600160a01b03929092169190911790556200029930737a250d5630b4cf539739df2c5dacb4c659f2488d6000196200033e565b60085460405163095ea7b360e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d600482015260001960248201526001600160a01b039091169063095ea7b390604401602060405180830381600087803b158015620002fb57600080fd5b505af115801562000310573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000336919062000540565b5050620005c3565b6001600160a01b038316620003a65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620004095760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200039d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b828054620004789062000586565b90600052602060002090601f0160209004810192826200049c5760008555620004e7565b82601f10620004b757805160ff1916838001178555620004e7565b82800160010185558215620004e7579182015b82811115620004e7578251825591602001919060010190620004ca565b50620004f5929150620004f9565b5090565b5b80821115620004f55760008155600101620004fa565b60006020828403121562000522578081fd5b81516001600160a01b038116811462000539578182fd5b9392505050565b60006020828403121562000552578081fd5b8151801515811462000539578182fd5b6000828210156200058157634e487b7160e01b81526011600452602481fd5b500390565b600181811c908216806200059b57607f821691505b60208210811415620005bd57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160601c611f8462000601600039600081816109f601528181610a7c01528181610b8301526117c9015260006108da0152611f846000f3fe60806040526004361061012e5760003560e01c80634e7a6a02116100ab578063a457c2d71161006f578063a457c2d714610314578063a9059cbb14610334578063b2ec663814610354578063b33a7a1714610374578063dd62ed3e146103a1578063fcfff16f146103e757600080fd5b80634e7a6a021461026b57806370a082311461029857806395d89b41146102b857806397301059146102cd578063a136773b146102f457600080fd5b806328a07025116100f257806328a07025146101ee5780632fc0139114610205578063313ce5671461021a578063395093511461023657806343d726d61461025657600080fd5b806306fdde031461013a5780630842566d14610165578063095ea7b31461018957806318160ddd146101b957806323b872dd146101ce57600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061014f6103fc565b60405161015c9190611d7f565b60405180910390f35b34801561017157600080fd5b5061017b60065481565b60405190815260200161015c565b34801561019557600080fd5b506101a96101a4366004611b3a565b61048e565b604051901515815260200161015c565b3480156101c557600080fd5b5060025461017b565b3480156101da57600080fd5b506101a96101e9366004611aff565b6104a4565b3480156101fa57600080fd5b5061020361055a565b005b34801561021157600080fd5b50610203610627565b34801561022657600080fd5b506040516012815260200161015c565b34801561024257600080fd5b506101a9610251366004611b3a565b6106d4565b34801561026257600080fd5b5061020361070b565b34801561027757600080fd5b5061017b610286366004611aac565b60096020526000908152604090205481565b3480156102a457600080fd5b5061017b6102b3366004611aac565b6108fe565b3480156102c457600080fd5b5061014f610b0b565b3480156102d957600080fd5b506005546102e79060ff1681565b60405161015c9190611d57565b34801561030057600080fd5b5061017b61030f366004611c71565b610b1a565b34801561032057600080fd5b506101a961032f366004611b3a565b610cbc565b34801561034057600080fd5b506101a961034f366004611b3a565b610d57565b34801561036057600080fd5b5061017b61036f366004611cc4565b610d64565b34801561038057600080fd5b5061017b61038f366004611aac565b600a6020526000908152604090205481565b3480156103ad57600080fd5b5061017b6103bc366004611acd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156103f357600080fd5b50610203610d87565b60606003805461040b90611ee7565b80601f016020809104026020016040519081016040528092919081815260200182805461043790611ee7565b80156104845780601f1061045957610100808354040283529160200191610484565b820191906000526020600020905b81548152906001019060200180831161046757829003601f168201915b5050505050905090565b600061049b338484610eec565b50600192915050565b60006104b1848484611011565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561053b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61054f853361054a8685611ed0565b610eec565b506001949350505050565b60028060055460ff16600281111561058257634e487b7160e01b600052602160045260246000fd5b1461059f5760405162461bcd60e51b815260040161053290611dd2565b60006105aa336108fe565b9050806105ed5760405162461bcd60e51b81526020600482015260116024820152704552523a207a65726f2062616c616e636560781b6044820152606401610532565b60006105f860025490565b6106028347611eb1565b61060c9190611e91565b905061061833836111f4565b610622338261134f565b505050565b60028060055460ff16600281111561064f57634e487b7160e01b600052602160045260246000fd5b1461066c5760405162461bcd60e51b815260040161053290611dd2565b60065461067d906301dfe200611e54565b42116106bb5760405162461bcd60e51b815260206004820152600d60248201526c22a9291d103a37b79039b7b7b760991b6044820152606401610532565b6007546106d1906001600160a01b03164761134f565b50565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161049b91859061054a908690611e54565b60018060055460ff16600281111561073357634e487b7160e01b600052602160045260246000fd5b146107505760405162461bcd60e51b815260040161053290611dd2565b600c546107609062093a80611e54565b42116107a05760405162461bcd60e51b815260206004820152600f60248201526e08aa4a47440e4cac6cadce84082a89608b1b6044820152606401610532565b6107a8611468565b6008546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156107ec57600080fd5b505afa158015610800573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108249190611c89565b604051629d473b60e21b8152909150600090737a250d5630b4cf539739df2c5dacb4c659f2488d906302751cec9061086a90309086908690819084904290600401611d1c565b6040805180830381600087803b15801561088357600080fd5b505af1158015610897573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108bb9190611ca1565b5090506108c830826111f4565b600754610622906001600160a01b03167f000000000000000000000000000000000000000000000000000000000000000061134f565b6008546000906001600160a01b0316331480156109255750600d546001600160a01b031632145b80156109325750600e5443145b15610aef57600080600860009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561098857600080fd5b505afa15801561099c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c09190611c23565b506008546040516370a0823160e01b81526001600160a01b0391821660048201526001600160701b0393841695509190921692507f0000000000000000000000000000000000000000000000000000000000000000909116906370a082319060240160206040518083038186803b158015610a3a57600080fd5b505afa158015610a4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a729190611c89565b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163011610aa85781610aaa565b825b11610aec5760405162461bcd60e51b81526020600482015260126024820152711154948e881b1a5c5d5a591a5d1e4818591960721b6044820152606401610532565b50505b506001600160a01b031660009081526020819052604090205490565b60606004805461040b90611ee7565b604080516002808252606082018352600092839291906020830190803683370190505090503081600081518110610b6157634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110610bc357634e487b7160e01b600052603260045260246000fd5b6001600160a01b039092166020928302919091019091015260405163d06ca61f60e01b8152600090737a250d5630b4cf539739df2c5dacb4c659f2488d9063d06ca61f90610c179087908690600401611dfe565b60006040518083038186803b158015610c2f57600080fd5b505afa158015610c43573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610c6b9190810190611b63565b90508381600181518110610c8f57634e487b7160e01b600052603260045260246000fd5b6020026020010151670de0b6b3a7640000610caa9190611eb1565b610cb49190611e91565b949350505050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610d3e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610532565b610d4d338561054a8685611ed0565b5060019392505050565b600061049b338484611011565b600061271084841015610d7957612710610d7d565b6109c45b610caa9084611eb1565b60008060055460ff166002811115610daf57634e487b7160e01b600052602160045260246000fd5b14610dcc5760405162461bcd60e51b815260040161053290611dd2565b6007546001600160a01b03163314610e265760405162461bcd60e51b815260206004820152601960248201527f4552523a2073656e646572206d757374206265206f776e6572000000000000006044820152606401610532565b610e2e611468565b610e45306c0c9f2c9cd04674edea400000006114ef565b737a250d5630b4cf539739df2c5dacb4c659f2488d63f305d7194730610e6a816108fe565b60008030426040518863ffffffff1660e01b8152600401610e9096959493929190611d1c565b6060604051808303818588803b158015610ea957600080fd5b505af1158015610ebd573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ee29190611cef565b505042600c555050565b6001600160a01b038316610f4e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610532565b6001600160a01b038216610faf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610532565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166110755760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610532565b6001600160a01b0382166110d75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610532565b6110e28383836115da565b6001600160a01b0383166000908152602081905260409020548181101561115a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610532565b6111648282611ed0565b6001600160a01b03808616600090815260208190526040808220939093559085168152908120805484929061119a908490611e54565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111e691815260200190565b60405180910390a350505050565b6001600160a01b0382166112545760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610532565b611260826000836115da565b6001600160a01b038216600090815260208190526040902054818110156112d45760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610532565b6112de8282611ed0565b6001600160a01b0384166000908152602081905260408120919091556002805484929061130c908490611ed0565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611004565b8047101561139f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610532565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146113ec576040519150601f19603f3d011682016040523d82523d6000602084013e6113f1565b606091505b50509050806106225760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610532565b60055460ff16600281111561148d57634e487b7160e01b600052602160045260246000fd5b611498906001611e6c565b60ff1660028111156114ba57634e487b7160e01b600052602160045260246000fd5b6005805460ff191660018360028111156114e457634e487b7160e01b600052602160045260246000fd5b021790555042600655565b6001600160a01b0382166115455760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610532565b611551600083836115da565b80600260008282546115639190611e54565b90915550506001600160a01b03821660009081526020819052604081208054839290611590908490611e54565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03831615806115f757506001600160a01b038216155b1561160157505050565b6001600160a01b03831630148061162057506001600160a01b03821630145b1561162a57505050565b6001600160a01b038316737a250d5630b4cf539739df2c5dacb4c659f2488d148061167157506001600160a01b038216737a250d5630b4cf539739df2c5dacb4c659f2488d145b1561167b57505050565b60055460019060ff1660028111156116a357634e487b7160e01b600052602160045260246000fd5b60ff1610156116b157600080fd5b33737a250d5630b4cf539739df2c5dacb4c659f2488d14806116dd57506008546001600160a01b031633145b6117295760405162461bcd60e51b815260206004820152601b60248201527f4552523a2073656e646572206d75737420626520756e697377617000000000006044820152606401610532565b6b1027e72f1f1281308800000081111561174257600080fd5b6008546001600160a01b03848116911614156119cf576001600160a01b0382166000908152600a6020526040902054421161177c57600080fd5b6117884261012c611e54565b6001600160a01b0383166000908152600a602052604080822092909255815160028082526060820190935290918160200160208202803683370190505090507f00000000000000000000000000000000000000000000000000000000000000008160008151811061180957634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b031681525050308160018151811061184b57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03909216602092830291909101909101526040516307c0329d60e21b8152600090737a250d5630b4cf539739df2c5dacb4c659f2488d90631f00ca749061189f9086908690600401611dfe565b60006040518083038186803b1580156118b757600080fd5b505afa1580156118cb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526118f39190810190611b63565b90506000611900856108fe565b90506000848360008151811061192657634e487b7160e01b600052603260045260246000fd5b6020026020010151670de0b6b3a76400006119419190611eb1565b61194b9190611e91565b90506119578286611e54565b6001600160a01b03871660009081526009602052604090205461197b908490611eb1565b6119858784611eb1565b61198f9190611e54565b6119999190611e91565b6001600160a01b038716600090815260096020526040902055600b548111156119c657600b81905542600c555b50505050505050565b6008546001600160a01b038381169116141561062257600d80546001600160a01b0319163217905543600e556001600160a01b0383166000908152600a60205260409020544211611a1f57600080fd5b611a2b4261012c611e54565b6001600160a01b0384166000908152600a6020908152604080832093909355600990529081205490611a5c83610b1a565b9050611a7285611a6d848487610d64565b6111f4565b5050505050565b80356001600160a01b0381168114611a9057600080fd5b919050565b80516001600160701b0381168114611a9057600080fd5b600060208284031215611abd578081fd5b611ac682611a79565b9392505050565b60008060408385031215611adf578081fd5b611ae883611a79565b9150611af660208401611a79565b90509250929050565b600080600060608486031215611b13578081fd5b611b1c84611a79565b9250611b2a60208501611a79565b9150604084013590509250925092565b60008060408385031215611b4c578182fd5b611b5583611a79565b946020939093013593505050565b60006020808385031215611b75578182fd5b825167ffffffffffffffff80821115611b8c578384fd5b818501915085601f830112611b9f578384fd5b815181811115611bb157611bb1611f38565b8060051b604051601f19603f83011681018181108582111715611bd657611bd6611f38565b604052828152858101935084860182860187018a1015611bf4578788fd5b8795505b83861015611c16578051855260019590950194938601938601611bf8565b5098975050505050505050565b600080600060608486031215611c37578283fd5b611c4084611a95565b9250611c4e60208501611a95565b9150604084015163ffffffff81168114611c66578182fd5b809150509250925092565b600060208284031215611c82578081fd5b5035919050565b600060208284031215611c9a578081fd5b5051919050565b60008060408385031215611cb3578182fd5b505080516020909101519092909150565b600080600060608486031215611cd8578283fd5b505081359360208301359350604090920135919050565b600080600060608486031215611d03578283fd5b8351925060208401519150604084015190509250925092565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b6020810160038310611d7957634e487b7160e01b600052602160045260246000fd5b91905290565b6000602080835283518082850152825b81811015611dab57858101830151858201604001528201611d8f565b81811115611dbc5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252601290820152714552523a20696e76616c696420706861736560701b604082015260600190565b60006040820184835260206040818501528185518084526060860191508287019350845b81811015611e475784516001600160a01b031683529383019391830191600101611e22565b5090979650505050505050565b60008219821115611e6757611e67611f22565b500190565b600060ff821660ff84168060ff03821115611e8957611e89611f22565b019392505050565b600082611eac57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615611ecb57611ecb611f22565b500290565b600082821015611ee257611ee2611f22565b500390565b600181811c90821680611efb57607f821691505b60208210811415611f1c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220b9b42bf7b8fca9f648fddbd6af82e0a4486e145a73855175fe56f66f3a629c5864736f6c63430008040033

Deployed Bytecode

0x60806040526004361061012e5760003560e01c80634e7a6a02116100ab578063a457c2d71161006f578063a457c2d714610314578063a9059cbb14610334578063b2ec663814610354578063b33a7a1714610374578063dd62ed3e146103a1578063fcfff16f146103e757600080fd5b80634e7a6a021461026b57806370a082311461029857806395d89b41146102b857806397301059146102cd578063a136773b146102f457600080fd5b806328a07025116100f257806328a07025146101ee5780632fc0139114610205578063313ce5671461021a578063395093511461023657806343d726d61461025657600080fd5b806306fdde031461013a5780630842566d14610165578063095ea7b31461018957806318160ddd146101b957806323b872dd146101ce57600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061014f6103fc565b60405161015c9190611d7f565b60405180910390f35b34801561017157600080fd5b5061017b60065481565b60405190815260200161015c565b34801561019557600080fd5b506101a96101a4366004611b3a565b61048e565b604051901515815260200161015c565b3480156101c557600080fd5b5060025461017b565b3480156101da57600080fd5b506101a96101e9366004611aff565b6104a4565b3480156101fa57600080fd5b5061020361055a565b005b34801561021157600080fd5b50610203610627565b34801561022657600080fd5b506040516012815260200161015c565b34801561024257600080fd5b506101a9610251366004611b3a565b6106d4565b34801561026257600080fd5b5061020361070b565b34801561027757600080fd5b5061017b610286366004611aac565b60096020526000908152604090205481565b3480156102a457600080fd5b5061017b6102b3366004611aac565b6108fe565b3480156102c457600080fd5b5061014f610b0b565b3480156102d957600080fd5b506005546102e79060ff1681565b60405161015c9190611d57565b34801561030057600080fd5b5061017b61030f366004611c71565b610b1a565b34801561032057600080fd5b506101a961032f366004611b3a565b610cbc565b34801561034057600080fd5b506101a961034f366004611b3a565b610d57565b34801561036057600080fd5b5061017b61036f366004611cc4565b610d64565b34801561038057600080fd5b5061017b61038f366004611aac565b600a6020526000908152604090205481565b3480156103ad57600080fd5b5061017b6103bc366004611acd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156103f357600080fd5b50610203610d87565b60606003805461040b90611ee7565b80601f016020809104026020016040519081016040528092919081815260200182805461043790611ee7565b80156104845780601f1061045957610100808354040283529160200191610484565b820191906000526020600020905b81548152906001019060200180831161046757829003601f168201915b5050505050905090565b600061049b338484610eec565b50600192915050565b60006104b1848484611011565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561053b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61054f853361054a8685611ed0565b610eec565b506001949350505050565b60028060055460ff16600281111561058257634e487b7160e01b600052602160045260246000fd5b1461059f5760405162461bcd60e51b815260040161053290611dd2565b60006105aa336108fe565b9050806105ed5760405162461bcd60e51b81526020600482015260116024820152704552523a207a65726f2062616c616e636560781b6044820152606401610532565b60006105f860025490565b6106028347611eb1565b61060c9190611e91565b905061061833836111f4565b610622338261134f565b505050565b60028060055460ff16600281111561064f57634e487b7160e01b600052602160045260246000fd5b1461066c5760405162461bcd60e51b815260040161053290611dd2565b60065461067d906301dfe200611e54565b42116106bb5760405162461bcd60e51b815260206004820152600d60248201526c22a9291d103a37b79039b7b7b760991b6044820152606401610532565b6007546106d1906001600160a01b03164761134f565b50565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161049b91859061054a908690611e54565b60018060055460ff16600281111561073357634e487b7160e01b600052602160045260246000fd5b146107505760405162461bcd60e51b815260040161053290611dd2565b600c546107609062093a80611e54565b42116107a05760405162461bcd60e51b815260206004820152600f60248201526e08aa4a47440e4cac6cadce84082a89608b1b6044820152606401610532565b6107a8611468565b6008546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156107ec57600080fd5b505afa158015610800573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108249190611c89565b604051629d473b60e21b8152909150600090737a250d5630b4cf539739df2c5dacb4c659f2488d906302751cec9061086a90309086908690819084904290600401611d1c565b6040805180830381600087803b15801561088357600080fd5b505af1158015610897573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108bb9190611ca1565b5090506108c830826111f4565b600754610622906001600160a01b03167f000000000000000000000000000000000000000000000000ad78ebc5ac61ffff61134f565b6008546000906001600160a01b0316331480156109255750600d546001600160a01b031632145b80156109325750600e5443145b15610aef57600080600860009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561098857600080fd5b505afa15801561099c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c09190611c23565b506008546040516370a0823160e01b81526001600160a01b0391821660048201526001600160701b0393841695509190921692507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2909116906370a082319060240160206040518083038186803b158015610a3a57600080fd5b505afa158015610a4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a729190611c89565b6001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2163011610aa85781610aaa565b825b11610aec5760405162461bcd60e51b81526020600482015260126024820152711154948e881b1a5c5d5a591a5d1e4818591960721b6044820152606401610532565b50505b506001600160a01b031660009081526020819052604090205490565b60606004805461040b90611ee7565b604080516002808252606082018352600092839291906020830190803683370190505090503081600081518110610b6157634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110610bc357634e487b7160e01b600052603260045260246000fd5b6001600160a01b039092166020928302919091019091015260405163d06ca61f60e01b8152600090737a250d5630b4cf539739df2c5dacb4c659f2488d9063d06ca61f90610c179087908690600401611dfe565b60006040518083038186803b158015610c2f57600080fd5b505afa158015610c43573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610c6b9190810190611b63565b90508381600181518110610c8f57634e487b7160e01b600052603260045260246000fd5b6020026020010151670de0b6b3a7640000610caa9190611eb1565b610cb49190611e91565b949350505050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610d3e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610532565b610d4d338561054a8685611ed0565b5060019392505050565b600061049b338484611011565b600061271084841015610d7957612710610d7d565b6109c45b610caa9084611eb1565b60008060055460ff166002811115610daf57634e487b7160e01b600052602160045260246000fd5b14610dcc5760405162461bcd60e51b815260040161053290611dd2565b6007546001600160a01b03163314610e265760405162461bcd60e51b815260206004820152601960248201527f4552523a2073656e646572206d757374206265206f776e6572000000000000006044820152606401610532565b610e2e611468565b610e45306c0c9f2c9cd04674edea400000006114ef565b737a250d5630b4cf539739df2c5dacb4c659f2488d63f305d7194730610e6a816108fe565b60008030426040518863ffffffff1660e01b8152600401610e9096959493929190611d1c565b6060604051808303818588803b158015610ea957600080fd5b505af1158015610ebd573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ee29190611cef565b505042600c555050565b6001600160a01b038316610f4e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610532565b6001600160a01b038216610faf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610532565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166110755760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610532565b6001600160a01b0382166110d75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610532565b6110e28383836115da565b6001600160a01b0383166000908152602081905260409020548181101561115a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610532565b6111648282611ed0565b6001600160a01b03808616600090815260208190526040808220939093559085168152908120805484929061119a908490611e54565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111e691815260200190565b60405180910390a350505050565b6001600160a01b0382166112545760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610532565b611260826000836115da565b6001600160a01b038216600090815260208190526040902054818110156112d45760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610532565b6112de8282611ed0565b6001600160a01b0384166000908152602081905260408120919091556002805484929061130c908490611ed0565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611004565b8047101561139f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610532565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146113ec576040519150601f19603f3d011682016040523d82523d6000602084013e6113f1565b606091505b50509050806106225760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610532565b60055460ff16600281111561148d57634e487b7160e01b600052602160045260246000fd5b611498906001611e6c565b60ff1660028111156114ba57634e487b7160e01b600052602160045260246000fd5b6005805460ff191660018360028111156114e457634e487b7160e01b600052602160045260246000fd5b021790555042600655565b6001600160a01b0382166115455760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610532565b611551600083836115da565b80600260008282546115639190611e54565b90915550506001600160a01b03821660009081526020819052604081208054839290611590908490611e54565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03831615806115f757506001600160a01b038216155b1561160157505050565b6001600160a01b03831630148061162057506001600160a01b03821630145b1561162a57505050565b6001600160a01b038316737a250d5630b4cf539739df2c5dacb4c659f2488d148061167157506001600160a01b038216737a250d5630b4cf539739df2c5dacb4c659f2488d145b1561167b57505050565b60055460019060ff1660028111156116a357634e487b7160e01b600052602160045260246000fd5b60ff1610156116b157600080fd5b33737a250d5630b4cf539739df2c5dacb4c659f2488d14806116dd57506008546001600160a01b031633145b6117295760405162461bcd60e51b815260206004820152601b60248201527f4552523a2073656e646572206d75737420626520756e697377617000000000006044820152606401610532565b6b1027e72f1f1281308800000081111561174257600080fd5b6008546001600160a01b03848116911614156119cf576001600160a01b0382166000908152600a6020526040902054421161177c57600080fd5b6117884261012c611e54565b6001600160a01b0383166000908152600a602052604080822092909255815160028082526060820190935290918160200160208202803683370190505090507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28160008151811061180957634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b031681525050308160018151811061184b57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03909216602092830291909101909101526040516307c0329d60e21b8152600090737a250d5630b4cf539739df2c5dacb4c659f2488d90631f00ca749061189f9086908690600401611dfe565b60006040518083038186803b1580156118b757600080fd5b505afa1580156118cb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526118f39190810190611b63565b90506000611900856108fe565b90506000848360008151811061192657634e487b7160e01b600052603260045260246000fd5b6020026020010151670de0b6b3a76400006119419190611eb1565b61194b9190611e91565b90506119578286611e54565b6001600160a01b03871660009081526009602052604090205461197b908490611eb1565b6119858784611eb1565b61198f9190611e54565b6119999190611e91565b6001600160a01b038716600090815260096020526040902055600b548111156119c657600b81905542600c555b50505050505050565b6008546001600160a01b038381169116141561062257600d80546001600160a01b0319163217905543600e556001600160a01b0383166000908152600a60205260409020544211611a1f57600080fd5b611a2b4261012c611e54565b6001600160a01b0384166000908152600a6020908152604080832093909355600990529081205490611a5c83610b1a565b9050611a7285611a6d848487610d64565b6111f4565b5050505050565b80356001600160a01b0381168114611a9057600080fd5b919050565b80516001600160701b0381168114611a9057600080fd5b600060208284031215611abd578081fd5b611ac682611a79565b9392505050565b60008060408385031215611adf578081fd5b611ae883611a79565b9150611af660208401611a79565b90509250929050565b600080600060608486031215611b13578081fd5b611b1c84611a79565b9250611b2a60208501611a79565b9150604084013590509250925092565b60008060408385031215611b4c578182fd5b611b5583611a79565b946020939093013593505050565b60006020808385031215611b75578182fd5b825167ffffffffffffffff80821115611b8c578384fd5b818501915085601f830112611b9f578384fd5b815181811115611bb157611bb1611f38565b8060051b604051601f19603f83011681018181108582111715611bd657611bd6611f38565b604052828152858101935084860182860187018a1015611bf4578788fd5b8795505b83861015611c16578051855260019590950194938601938601611bf8565b5098975050505050505050565b600080600060608486031215611c37578283fd5b611c4084611a95565b9250611c4e60208501611a95565b9150604084015163ffffffff81168114611c66578182fd5b809150509250925092565b600060208284031215611c82578081fd5b5035919050565b600060208284031215611c9a578081fd5b5051919050565b60008060408385031215611cb3578182fd5b505080516020909101519092909150565b600080600060608486031215611cd8578283fd5b505081359360208301359350604090920135919050565b600080600060608486031215611d03578283fd5b8351925060208401519150604084015190509250925092565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b6020810160038310611d7957634e487b7160e01b600052602160045260246000fd5b91905290565b6000602080835283518082850152825b81811015611dab57858101830151858201604001528201611d8f565b81811115611dbc5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252601290820152714552523a20696e76616c696420706861736560701b604082015260600190565b60006040820184835260206040818501528185518084526060860191508287019350845b81811015611e475784516001600160a01b031683529383019391830191600101611e22565b5090979650505050505050565b60008219821115611e6757611e67611f22565b500190565b600060ff821660ff84168060ff03821115611e8957611e89611f22565b019392505050565b600082611eac57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615611ecb57611ecb611f22565b500290565b600082821015611ee257611ee2611f22565b500390565b600181811c90821680611efb57607f821691505b60208210811415611f1c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220b9b42bf7b8fca9f648fddbd6af82e0a4486e145a73855175fe56f66f3a629c5864736f6c63430008040033

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.