ETH Price: $3,259.93 (-2.83%)
 

Overview

Max Total Supply

98,963,657 STYL

Holders

11

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: STYL 2
Balance
0.000000000000000001 STYL

Value
$0.00
0x11bc56540ed103a80fc1684a6c287611d8e04bc8
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:
StylikeToken

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : StylikeToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import './access/Ownable.sol';
import './token/ERC20/ERC20.sol';
import './token/ERC20/extensions/ERC20Burnable.sol';

import './interfaces/IUniswapV2Factory.sol';
import './interfaces/IUniswapV2Pair.sol';
import './interfaces/IUniswapV2Router02.sol';

contract StylikeToken is ERC20, ERC20Burnable, Ownable {
  IUniswapV2Router02 public uniswapV2Router;
  IUniswapV2Router02 public dexRouter;
  address public uniswapV2Pair;

  address operationsAddress;
  address bridge;

  uint256 public constant FEE_DENOMINATOR = 10000;

  uint256 tokenSupply = 98_963_657 * 1e18;

  uint256 public maxBuyAmount;
  uint256 public maxSellAmount;

  uint256 public buyTotalFees;
  uint256 public buyOperationsFee;
  uint256 public buyLiquidityFee;

  uint256 public sellTotalFees;
  uint256 public sellOperationsFee;
  uint256 public sellLiquidityFee;

  uint256 public tokensForOperations;
  uint256 public tokensForLiquidity;

  bool private _swapping;

  bool public swapEnabled = true;
  bool public tradingActive = false;
  bool public limitsInEffect = true;

  uint256 public swapTokensAtAmount;

  mapping(address => bool) private _isExcludedFromFees;
  mapping(address => bool) public isExcludedMaxTransactionAmount;
  mapping(address => bool) public automatedMarketMakerPairs;

  event ExcludeFromFees(address indexed account, bool isExcluded);
  event IncludedInFee(address indexed account);
  event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
  event MaxTransactionExclusion(address _address, bool excluded);
  event UpdatedMaxSellAmount(uint256 newAmount);
  event UpdatedMaxBuyAmount(uint256 newAmount);
  event OwnerForcedSwapBack(uint256 timestamp);
  event UpdateSellFees(uint256 sellOperationsFee, uint256 sellLiquidityFee);
  event UpdateBuyFees(uint256 buyOperationsFee, uint256 buyLiquidityFee);
  event EnabledTrading();
  event EnabledSwap();
  event EnabledLimits();
  event RemovedLimits();

  constructor(address _bridge) ERC20('Stylike Governance', 'STYL') {
    dexRouter = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address _uniswapV2Pair = IUniswapV2Factory(dexRouter.factory()).createPair(
      address(this),
      dexRouter.WETH()
    );

    uniswapV2Router = dexRouter;
    uniswapV2Pair = _uniswapV2Pair;

    _approve(address(this), address(uniswapV2Router), type(uint256).max);

    _excludeFromMaxTransaction(uniswapV2Pair, true);
    _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

    maxBuyAmount = (tokenSupply * 4) / 1000; // 0.4%
    maxSellAmount = (tokenSupply * 4) / 1000; // 0.4%
    swapTokensAtAmount = (tokenSupply * 20) / 1000000; // 0.0020%

    buyOperationsFee = 1000;
    buyLiquidityFee = 0;
    buyTotalFees = buyOperationsFee + buyLiquidityFee;

    sellLiquidityFee = 0;
    sellOperationsFee = 1000;
    sellTotalFees = sellOperationsFee + sellLiquidityFee;

    _excludeFromMaxTransaction(owner(), true);
    _excludeFromMaxTransaction(operationsAddress, true);
    _excludeFromMaxTransaction(address(this), true);
    _excludeFromMaxTransaction(address(0xdead), true);
    _excludeFromMaxTransaction(address(uniswapV2Router), true);

    excludeFromFees(owner(), true);
    excludeFromFees(address(0xdead), true);
    excludeFromFees(operationsAddress, true);
    excludeFromFees(address(this), true);

    bridge = _bridge;
    _mint(owner(), tokenSupply);
  }

  receive() external payable {}

  function mint(address recipient, uint256 amount) public virtual onlyBridge {
    _mint(recipient, amount);
  }

  function burn(uint256 amount)
    public
    virtual
    override(ERC20Burnable)
    onlyBridge
  {
    super.burn(amount);
  }

  function burnFrom(address account, uint256 amount)
    public
    virtual
    override(ERC20Burnable)
    onlyBridge
  {
    super.burnFrom(account, amount);
  }

  function setAutomatedMarketMakerPair(address pair, bool value)
    external
    onlyOwner
  {
    require(
      pair != uniswapV2Pair,
      'The pair cannot be removed from automatedMarketMakerPairs'
    );

    _setAutomatedMarketMakerPair(pair, value);
    emit SetAutomatedMarketMakerPair(pair, value);
  }

  function _setAutomatedMarketMakerPair(address pair, bool value) private {
    require(
      automatedMarketMakerPairs[pair] != value,
      'Automated market maker pair is already set to that value'
    );
    automatedMarketMakerPairs[pair] = value;

    emit SetAutomatedMarketMakerPair(pair, value);
  }

  function excludeFromFees(address account, bool excluded) public onlyOwner {
    _isExcludedFromFees[account] = excluded;
    emit ExcludeFromFees(account, excluded);
  }

  function includeInFee(address account) external onlyOwner {
    _isExcludedFromFees[account] = false;
    emit IncludedInFee(account);
  }

  function isExcludedFromFees(address account) external view returns (bool) {
    return _isExcludedFromFees[account];
  }

  function updateSellFees(uint256 operationsFee, uint256 liquidityFee)
    external
    onlyOwner
  {
    sellOperationsFee = operationsFee;
    sellLiquidityFee = liquidityFee;
    sellTotalFees = sellOperationsFee + sellLiquidityFee;
    require(sellTotalFees <= 2000, 'Must keep fees at 20% or less');
    emit UpdateSellFees(sellOperationsFee, sellLiquidityFee);
  }

  function updateBuyFees(uint256 operationsFee, uint256 liquidityFee)
    external
    onlyOwner
  {
    buyOperationsFee = operationsFee;
    buyLiquidityFee = liquidityFee;
    buyTotalFees = buyOperationsFee + buyLiquidityFee;
    require(buyTotalFees <= 1000, 'Must keep fees at 10% or less');
    emit UpdateBuyFees(buyOperationsFee, buyLiquidityFee);
  }

  function _excludeFromMaxTransaction(address updAds, bool isExcluded) private {
    isExcludedMaxTransactionAmount[updAds] = isExcluded;
    emit MaxTransactionExclusion(updAds, isExcluded);
  }

  function _transfer(
    address from,
    address to,
    uint256 amount
  ) internal override {
    require(from != address(0), 'ERC20: transfer from the zero address');
    require(to != address(0), 'ERC20: transfer to the zero address');
    require(amount > 0, 'ERC20: transfer must be greater than 0');

    if (!tradingActive) {
      require(
        _isExcludedFromFees[from] || _isExcludedFromFees[to],
        'Trading is not active.'
      );
    }

    if (limitsInEffect) {
      if (
        from != owner() &&
        to != owner() &&
        to != address(0) &&
        to != address(0xdead) &&
        !_isExcludedFromFees[from] &&
        !_isExcludedFromFees[to]
      ) {
        //when buy
        if (
          automatedMarketMakerPairs[from] && !isExcludedMaxTransactionAmount[to]
        ) {
          require(amount <= maxBuyAmount);
        }
        //when sell
        else if (
          automatedMarketMakerPairs[to] && !isExcludedMaxTransactionAmount[from]
        ) {
          require(amount <= maxSellAmount);
        }
      }
    }

    uint256 contractTokenBalance = balanceOf(address(this));

    bool canSwap = contractTokenBalance >= swapTokensAtAmount;

    if (
      canSwap &&
      swapEnabled &&
      !_swapping &&
      !automatedMarketMakerPairs[from] &&
      !_isExcludedFromFees[from] &&
      !_isExcludedFromFees[to]
    ) {
      _swapping = true;
      swapBack();
      _swapping = false;
    }

    bool takeFee = true;

    if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
      takeFee = false;
    }

    uint256 fees = 0;

    if (takeFee) {
      // sell
      if (
        automatedMarketMakerPairs[to] &&
        !automatedMarketMakerPairs[from] &&
        sellTotalFees > 0
      ) {
        fees = (amount * sellTotalFees) / FEE_DENOMINATOR;
        tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
        tokensForOperations += (fees * sellOperationsFee) / sellTotalFees;
      }
      // buy
      else if (
        automatedMarketMakerPairs[from] &&
        !automatedMarketMakerPairs[to] &&
        buyTotalFees > 0
      ) {
        fees = (amount * buyTotalFees) / FEE_DENOMINATOR;
        tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
        tokensForOperations += (fees * buyOperationsFee) / buyTotalFees;
      }

      if (fees > 0) {
        super._transfer(from, address(this), fees);
      }

      amount -= fees;
    }

    super._transfer(from, to, amount);
  }

  function swapTokensForEth(uint256 tokenAmount) private {
    // generate the uniswap pair path of token -> weth
    address[] memory path = new address[](2);
    path[0] = address(this);
    path[1] = uniswapV2Router.WETH();

    _approve(address(this), address(uniswapV2Router), tokenAmount);

    // make the swap
    uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
      tokenAmount,
      0, // accept any amount of ETH
      path,
      address(this),
      block.timestamp
    );
  }

  function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
    // approve token transfer to cover all possible scenarios
    _approve(address(this), address(uniswapV2Router), tokenAmount);

    // add the liquidity
    uniswapV2Router.addLiquidityETH{ value: ethAmount }(
      address(this),
      tokenAmount,
      0, // slippage is unavoidable
      0, // slippage is unavoidable
      address(0xdead),
      block.timestamp
    );
  }

  function changeSwapStatus(bool _enabled) external onlyOwner {
    swapEnabled = _enabled;
  }

  function swapBack() private {
    uint256 contractBalance = balanceOf(address(this));
    uint256 totalTokensToSwap = tokensForLiquidity + tokensForOperations;

    if (contractBalance == 0 || totalTokensToSwap == 0) {
      return;
    }

    if (contractBalance > swapTokensAtAmount * 10) {
      contractBalance = swapTokensAtAmount * 10;
    }

    bool success;

    // Halve the amount of liquidity tokens
    uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
      totalTokensToSwap /
      2;

    uint256 initialBalance = address(this).balance;
    swapTokensForEth(contractBalance - liquidityTokens);

    uint256 ethBalance = address(this).balance - initialBalance;
    uint256 ethForLiquidity = ethBalance;

    uint256 ethForOperations = (ethBalance * tokensForOperations) /
      (totalTokensToSwap - (tokensForLiquidity / 2));

    ethForLiquidity -= ethForOperations;

    tokensForLiquidity = 0;
    tokensForOperations = 0;

    if (liquidityTokens > 0 && ethForLiquidity > 0) {
      addLiquidity(liquidityTokens, ethForLiquidity);
    }

    if (ethForOperations > 0) {
      (success, ) = address(operationsAddress).call{ value: ethForOperations }(
        ''
      );
      require(success, 'Failure! fund not sent');
    }
  }

  function enableTrading() external onlyOwner {
    tradingActive = true;
    emit EnabledTrading();
  }

  function enableSwap() external onlyOwner {
    swapEnabled = true;
    emit EnabledSwap();
  }

  function removeLimits() external onlyOwner {
    limitsInEffect = false;
    emit RemovedLimits();
  }

  function enableLimits() external onlyOwner {
    limitsInEffect = true;
    emit EnabledLimits();
  }

  function claimStuckTokens(address token) external onlyOwner {
    require(token != address(this), 'Owner cannot claim native tokens');
    if (token == address(0x0)) {
      payable(msg.sender).transfer(address(this).balance);
      return;
    }
    IERC20 ERC20token = IERC20(token);
    uint256 balance = ERC20token.balanceOf(address(this));
    ERC20token.transfer(msg.sender, balance);
  }

  function setOperationsAddress(address operationsNewAddress)
    external
    onlyOwner
  {
    require(operationsNewAddress != address(0));
    operationsAddress = payable(operationsNewAddress);
  }

  function forceSwapBack() external onlyOwner {
    require(
      balanceOf(address(this)) >= swapTokensAtAmount,
      'Can only swap when token amount is at or higher than restriction'
    );
    _swapping = true;
    swapBack();
    _swapping = false;
    emit OwnerForcedSwapBack(block.timestamp);
  }

  function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
    require(newAmount >= (tokenSupply * 1) / 1000000);
    require(newAmount <= (tokenSupply * 1) / 1000);
    swapTokensAtAmount = newAmount;
  }

  function updateMaxBuyAmount(uint256 newNum) external onlyOwner {
    require(newNum >= ((tokenSupply * 25) / 10000) / (10**decimals()));
    maxBuyAmount = newNum * (10**decimals());
    emit UpdatedMaxBuyAmount(maxBuyAmount);
  }

  function updateMaxSellAmount(uint256 newNum) external onlyOwner {
    require(newNum >= ((tokenSupply * 25) / 10000) / (10**decimals()));
    maxSellAmount = newNum * (10**decimals());
    emit UpdatedMaxSellAmount(maxSellAmount);
  }

  function updateBridgeAddress(address bridgeNewAddress) external onlyOwner {
    require(bridgeNewAddress != address(0));
    bridge = bridgeNewAddress;
  }

  modifier onlyBridge() {
    require(
      msg.sender == bridge,
      'only bridge has access to this token function'
    );
    _;
  }
}

File 2 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

pragma solidity 0.8.10;

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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead 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 default 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:
   *
   * - `to` cannot be the zero address.
   * - the caller must have a balance of at least `amount`.
   */
  function transfer(address to, uint256 amount)
    public
    virtual
    override
    returns (bool)
  {
    address owner = _msgSender();
    _transfer(owner, to, 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}.
   *
   * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
   * `transferFrom`. This is semantically equivalent to an infinite approval.
   *
   * Requirements:
   *
   * - `spender` cannot be the zero address.
   */
  function approve(address spender, uint256 amount)
    public
    virtual
    override
    returns (bool)
  {
    address owner = _msgSender();
    _approve(owner, 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}.
   *
   * NOTE: Does not update the allowance if the current allowance
   * is the maximum `uint256`.
   *
   * Requirements:
   *
   * - `from` and `to` cannot be the zero address.
   * - `from` must have a balance of at least `amount`.
   * - the caller must have allowance for ``from``'s tokens of at least
   * `amount`.
   */
  function transferFrom(
    address from,
    address to,
    uint256 amount
  ) public virtual override returns (bool) {
    address spender = _msgSender();
    _spendAllowance(from, spender, amount);
    _transfer(from, to, 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)
  {
    address owner = _msgSender();
    _approve(owner, spender, allowance(owner, 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)
  {
    address owner = _msgSender();
    uint256 currentAllowance = allowance(owner, spender);
    require(
      currentAllowance >= subtractedValue,
      'ERC20: decreased allowance below zero'
    );
    unchecked {
      _approve(owner, spender, currentAllowance - subtractedValue);
    }

    return true;
  }

  /**
   * @dev Moves `amount` of tokens from `from` to `to`.
   *
   * This 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:
   *
   * - `from` cannot be the zero address.
   * - `to` cannot be the zero address.
   * - `from` must have a balance of at least `amount`.
   */
  function _transfer(
    address from,
    address to,
    uint256 amount
  ) internal virtual {
    require(from != address(0), 'ERC20: transfer from the zero address');
    require(to != address(0), 'ERC20: transfer to the zero address');

    _beforeTokenTransfer(from, to, amount);

    uint256 fromBalance = _balances[from];
    require(fromBalance >= amount, 'ERC20: transfer amount exceeds balance');
    unchecked {
      _balances[from] = fromBalance - amount;
      // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
      // decrementing then incrementing.
      _balances[to] += amount;
    }

    emit Transfer(from, to, amount);

    _afterTokenTransfer(from, to, 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:
   *
   * - `account` 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;
    unchecked {
      // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
      _balances[account] += amount;
    }
    emit Transfer(address(0), account, amount);

    _afterTokenTransfer(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');
    unchecked {
      _balances[account] = accountBalance - amount;
      // Overflow not possible: amount <= accountBalance <= totalSupply.
      _totalSupply -= amount;
    }

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

    _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`.
   *
   * Does not update the allowance amount in case of infinite allowance.
   * Revert if not enough allowance is available.
   *
   * Might emit an {Approval} event.
   */
  function _spendAllowance(
    address owner,
    address spender,
    uint256 amount
  ) internal virtual {
    uint256 currentAllowance = allowance(owner, spender);
    if (currentAllowance != type(uint256).max) {
      require(currentAllowance >= amount, 'ERC20: insufficient allowance');
      unchecked {
        _approve(owner, spender, currentAllowance - 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 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 {}

  /**
   * @dev Hook that is called after any transfer of tokens. This includes
   * minting and burning.
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
   * has been transferred to `to`.
   * - when `from` is zero, `amount` tokens have been minted for `to`.
   * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
    address from,
    address to,
    uint256 amount
  ) internal virtual {}
}

File 4 of 10 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.10;

import '../ERC20.sol';
import '../../../utils/Context.sol';

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
  /**
   * @dev Destroys `amount` tokens from the caller.
   *
   * See {ERC20-_burn}.
   */
  function burn(uint256 amount) public virtual {
    _burn(_msgSender(), amount);
  }

  /**
   * @dev Destroys `amount` tokens from `account`, deducting from the caller's
   * allowance.
   *
   * See {ERC20-_burn} and {ERC20-allowance}.
   *
   * Requirements:
   *
   * - the caller must have allowance for ``accounts``'s tokens of at least
   * `amount`.
   */
  function burnFrom(address account, uint256 amount) public virtual {
    _spendAllowance(account, _msgSender(), amount);
    _burn(account, amount);
  }
}

File 5 of 10 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.10;

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

  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(uint256) external view returns (address pair);

  function allPairsLength() external view returns (uint256);

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

  function setFeeTo(address) external;

  function setFeeToSetter(address) external;
}

File 6 of 10 : IUniswapV2Pair.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.10;

interface IUniswapV2Pair {
  event Approval(address indexed owner, address indexed spender, uint256 value);
  event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

  function balanceOf(address owner) external view returns (uint256);

  function allowance(address owner, address spender)
    external
    view
    returns (uint256);

  function approve(address spender, uint256 value) external returns (bool);

  function transfer(address to, uint256 value) external returns (bool);

  function transferFrom(
    address from,
    address to,
    uint256 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 (uint256);

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

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

  function MINIMUM_LIQUIDITY() external pure returns (uint256);

  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 (uint256);

  function price1CumulativeLast() external view returns (uint256);

  function kLast() external view returns (uint256);

  function mint(address to) external returns (uint256 liquidity);

  function burn(address to) external returns (uint256 amount0, uint256 amount1);

  function swap(
    uint256 amount0Out,
    uint256 amount1Out,
    address to,
    bytes calldata data
  ) external;

  function skim(address to) external;

  function sync() external;

  function initialize(address, address) external;
}

File 7 of 10 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.10;

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

  function WETH() external pure returns (address);

  function addLiquidity(
    address tokenA,
    address tokenB,
    uint256 amountADesired,
    uint256 amountBDesired,
    uint256 amountAMin,
    uint256 amountBMin,
    address to,
    uint256 deadline
  )
    external
    returns (
      uint256 amountA,
      uint256 amountB,
      uint256 liquidity
    );

  function addLiquidityETH(
    address token,
    uint256 amountTokenDesired,
    uint256 amountTokenMin,
    uint256 amountETHMin,
    address to,
    uint256 deadline
  )
    external
    payable
    returns (
      uint256 amountToken,
      uint256 amountETH,
      uint256 liquidity
    );

  function removeLiquidity(
    address tokenA,
    address tokenB,
    uint256 liquidity,
    uint256 amountAMin,
    uint256 amountBMin,
    address to,
    uint256 deadline
  ) external returns (uint256 amountA, uint256 amountB);

  function removeLiquidityETH(
    address token,
    uint256 liquidity,
    uint256 amountTokenMin,
    uint256 amountETHMin,
    address to,
    uint256 deadline
  ) external returns (uint256 amountToken, uint256 amountETH);

  function removeLiquidityWithPermit(
    address tokenA,
    address tokenB,
    uint256 liquidity,
    uint256 amountAMin,
    uint256 amountBMin,
    address to,
    uint256 deadline,
    bool approveMax,
    uint8 v,
    bytes32 r,
    bytes32 s
  ) external returns (uint256 amountA, uint256 amountB);

  function removeLiquidityETHWithPermit(
    address token,
    uint256 liquidity,
    uint256 amountTokenMin,
    uint256 amountETHMin,
    address to,
    uint256 deadline,
    bool approveMax,
    uint8 v,
    bytes32 r,
    bytes32 s
  ) external returns (uint256 amountToken, uint256 amountETH);

  function swapExactTokensForTokens(
    uint256 amountIn,
    uint256 amountOutMin,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external returns (uint256[] memory amounts);

  function swapTokensForExactTokens(
    uint256 amountOut,
    uint256 amountInMax,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external returns (uint256[] memory amounts);

  function swapExactETHForTokens(
    uint256 amountOutMin,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external payable returns (uint256[] memory amounts);

  function swapTokensForExactETH(
    uint256 amountOut,
    uint256 amountInMax,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external returns (uint256[] memory amounts);

  function swapExactTokensForETH(
    uint256 amountIn,
    uint256 amountOutMin,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external returns (uint256[] memory amounts);

  function swapETHForExactTokens(
    uint256 amountOut,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external payable returns (uint256[] memory amounts);

  function quote(
    uint256 amountA,
    uint256 reserveA,
    uint256 reserveB
  ) external pure returns (uint256 amountB);

  function getAmountOut(
    uint256 amountIn,
    uint256 reserveIn,
    uint256 reserveOut
  ) external pure returns (uint256 amountOut);

  function getAmountIn(
    uint256 amountOut,
    uint256 reserveIn,
    uint256 reserveOut
  ) external pure returns (uint256 amountIn);

  function getAmountsOut(uint256 amountIn, address[] calldata path)
    external
    view
    returns (uint256[] memory amounts);

  function getAmountsIn(uint256 amountOut, address[] calldata path)
    external
    view
    returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
  function removeLiquidityETHSupportingFeeOnTransferTokens(
    address token,
    uint256 liquidity,
    uint256 amountTokenMin,
    uint256 amountETHMin,
    address to,
    uint256 deadline
  ) external returns (uint256 amountETH);

  function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
    address token,
    uint256 liquidity,
    uint256 amountTokenMin,
    uint256 amountETHMin,
    address to,
    uint256 deadline,
    bool approveMax,
    uint8 v,
    bytes32 r,
    bytes32 s
  ) external returns (uint256 amountETH);

  function swapExactTokensForTokensSupportingFeeOnTransferTokens(
    uint256 amountIn,
    uint256 amountOutMin,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external;

  function swapExactETHForTokensSupportingFeeOnTransferTokens(
    uint256 amountOutMin,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external payable;

  function swapExactTokensForETHSupportingFeeOnTransferTokens(
    uint256 amountIn,
    uint256 amountOutMin,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external;
}

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

pragma solidity 0.8.10;

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 9 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.10;

interface IERC20 {
  function totalSupply() external view returns (uint256);

  function balanceOf(address account) external view returns (uint256);

  function transfer(address recipient, uint256 amount) external returns (bool);

  function allowance(address owner, address spender)
    external
    view
    returns (uint256);

  function approve(address spender, uint256 amount) external returns (bool);

  function transferFrom(
    address sender,
    address recipient,
    uint256 amount
  ) external returns (bool);

  event Transfer(address indexed from, address indexed to, uint256 value);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

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

pragma solidity 0.8.10;

import '../IERC20.sol';

interface IERC20Metadata is IERC20 {
  function name() external view returns (string memory);

  function symbol() external view returns (string memory);

  function decimals() external view returns (uint8);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_bridge","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":[],"name":"EnabledLimits","type":"event"},{"anonymous":false,"inputs":[],"name":"EnabledSwap","type":"event"},{"anonymous":false,"inputs":[],"name":"EnabledTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"IncludedInFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"MaxTransactionExclusion","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"OwnerForcedSwapBack","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":[],"name":"RemovedLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyOperationsFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyLiquidityFee","type":"uint256"}],"name":"UpdateBuyFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"sellOperationsFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellLiquidityFee","type":"uint256"}],"name":"UpdateSellFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxBuyAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxSellAmount","type":"event"},{"inputs":[],"name":"FEE_DENOMINATOR","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyOperationsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"changeSwapStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSwapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","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":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellOperationsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operationsNewAddress","type":"address"}],"name":"setOperationsAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForOperations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"bridgeNewAddress","type":"address"}],"name":"updateBridgeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"operationsFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"operationsFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526a51dc5e9888055cad840000600b556016805463ffffff00191663010001001790553480156200003357600080fd5b506040516200354b3803806200354b833981016040819052620000569162000980565b60408051808201825260128152715374796c696b6520476f7665726e616e636560701b60208083019182528351808501909452600484526314d5165360e21b908401528151919291620000ac91600391620008da565b508051620000c2906004906020840190620008da565b505050620000df620000d96200048060201b60201c565b62000484565b600780546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b815290516000929163c45a01559160048083019260209291908290030181865afa15801562000147573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016d919062000980565b6001600160a01b031663c9c6539630600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f6919062000980565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000244573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026a919062000980565b600754600680546001600160a01b039283166001600160a01b031991821681179092556008805490911692841692909217909155909150620002b1903090600019620004d6565b600854620002ca906001600160a01b0316600162000602565b620002d781600162000665565b6103e8600b546004620002eb9190620009c8565b620002f79190620009ea565b600c55600b546103e8906200030e906004620009c8565b6200031a9190620009ea565b600d55600b54620f42409062000332906014620009c8565b6200033e9190620009ea565b6017556103e8600f819055600060108190556200035b9162000a0d565b600e55600060138190556103e8601281905562000379919062000a0d565b6011556200039b620003936005546001600160a01b031690565b600162000602565b600954620003b4906001600160a01b0316600162000602565b620003c130600162000602565b620003d061dead600162000602565b600654620003e9906001600160a01b0316600162000602565b62000408620004006005546001600160a01b031690565b600162000750565b6200041761dead600162000750565b60095462000430906001600160a01b0316600162000750565b6200043d30600162000750565b600a80546001600160a01b0319166001600160a01b038416179055620004786200046f6005546001600160a01b031690565b600b54620007b9565b505062000a65565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166200053e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620005a15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000535565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216600081815260196020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b6001600160a01b0382166000908152601a602052604090205460ff1615158115151415620006fc5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c75650000000000000000606482015260840162000535565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6200075a6200087c565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620008115760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000535565b806002600082825462000825919062000a0d565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620008d85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000535565b565b828054620008e89062000a28565b90600052602060002090601f0160209004810192826200090c576000855562000957565b82601f106200092757805160ff191683800117855562000957565b8280016001018555821562000957579182015b82811115620009575782518255916020019190600101906200093a565b506200096592915062000969565b5090565b5b808211156200096557600081556001016200096a565b6000602082840312156200099357600080fd5b81516001600160a01b0381168114620009ab57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620009e557620009e5620009b2565b500290565b60008262000a0857634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000a235762000a23620009b2565b500190565b600181811c9082168062000a3d57607f821691505b6020821081141562000a5f57634e487b7160e01b600052602260045260246000fd5b50919050565b612ad68062000a756000396000f3fe6080604052600436106103545760003560e01c80636ddd1713116101c6578063bbc0c742116100f7578063e2f4560511610095578063f2fde38b1161006f578063f2fde38b1461098c578063f6374342146109ac578063f9d0831a146109c2578063fb002c97146109e257600080fd5b8063e2f4560514610940578063ea2f0b3714610956578063f11a24d31461097657600080fd5b8063d73792a9116100d1578063d73792a9146108d4578063d85ba063146108ea578063dc3f0d0f14610900578063dd62ed3e1461092057600080fd5b8063bbc0c74214610874578063c024666814610894578063d257b34f146108b457600080fd5b80638a8c523c116101645780639a7a23d61161013e5780639a7a23d6146107e4578063a457c2d714610804578063a9059cbb14610824578063b62496f51461084457600080fd5b80638a8c523c1461079c5780638da5cb5b146107b157806395d89b41146107cf57600080fd5b8063751039fc116101a0578063751039fc1461073157806376e88ddb1461074657806379cc67901461076657806388e765ff1461078657600080fd5b80636ddd1713146106c757806370a08231146106e6578063715018a61461071c57600080fd5b806342966c68116102a057806351f205e41161023e57806366ca9b831161021857806366ca9b831461066657806366d602ae146106865780636902ca611461069c5780636a486a8e146106b157600080fd5b806351f205e41461061b5780635a139dd414610630578063645c8a4b1461064657600080fd5b80634a62bb651161027a5780634a62bb651461057b5780634bb2c7851461059c5780634f77f6c0146105cc5780634fbee193146105e257600080fd5b806342966c681461051b578063499b83941461053b57806349bd5a5e1461055b57600080fd5b80631a8145bb1161030d5780632be32b61116102e75780632be32b611461049f578063313ce567146104bf57806339509351146104db57806340c10f19146104fb57600080fd5b80631a8145bb1461045457806323b872dd1461046a578063296914481461048a57600080fd5b806302dbd8f81461036057806306fdde03146103825780630758d924146103ad578063095ea7b3146103e55780631694505e1461041557806318160ddd1461043557600080fd5b3661035b57005b600080fd5b34801561036c57600080fd5b5061038061037b366004612547565b6109f8565b005b34801561038e57600080fd5b50610397610ab9565b6040516103a49190612569565b60405180910390f35b3480156103b957600080fd5b506007546103cd906001600160a01b031681565b6040516001600160a01b0390911681526020016103a4565b3480156103f157600080fd5b506104056104003660046125d3565b610b4b565b60405190151581526020016103a4565b34801561042157600080fd5b506006546103cd906001600160a01b031681565b34801561044157600080fd5b506002545b6040519081526020016103a4565b34801561046057600080fd5b5061044660155481565b34801561047657600080fd5b506104056104853660046125ff565b610b65565b34801561049657600080fd5b50610380610b89565b3480156104ab57600080fd5b506103806104ba366004612640565b610bcb565b3480156104cb57600080fd5b50604051601281526020016103a4565b3480156104e757600080fd5b506104056104f63660046125d3565b610c63565b34801561050757600080fd5b506103806105163660046125d3565b610c85565b34801561052757600080fd5b50610380610536366004612640565b610cbd565b34801561054757600080fd5b50610380610556366004612659565b610cf3565b34801561056757600080fd5b506008546103cd906001600160a01b031681565b34801561058757600080fd5b50601654610405906301000000900460ff1681565b3480156105a857600080fd5b506104056105b7366004612659565b60196020526000908152604090205460ff1681565b3480156105d857600080fd5b5061044660125481565b3480156105ee57600080fd5b506104056105fd366004612659565b6001600160a01b031660009081526018602052604090205460ff1690565b34801561062757600080fd5b50610380610d30565b34801561063c57600080fd5b50610446600f5481565b34801561065257600080fd5b50610380610661366004612659565b610e15565b34801561067257600080fd5b50610380610681366004612547565b610e52565b34801561069257600080fd5b50610446600d5481565b3480156106a857600080fd5b50610380610f02565b3480156106bd57600080fd5b5061044660115481565b3480156106d357600080fd5b5060165461040590610100900460ff1681565b3480156106f257600080fd5b50610446610701366004612659565b6001600160a01b031660009081526020819052604090205490565b34801561072857600080fd5b50610380610f48565b34801561073d57600080fd5b50610380610f5c565b34801561075257600080fd5b5061038061076136600461268b565b610f9c565b34801561077257600080fd5b506103806107813660046125d3565b610fbe565b34801561079257600080fd5b50610446600c5481565b3480156107a857600080fd5b50610380610ff2565b3480156107bd57600080fd5b506005546001600160a01b03166103cd565b3480156107db57600080fd5b50610397611036565b3480156107f057600080fd5b506103806107ff3660046126a8565b611045565b34801561081057600080fd5b5061040561081f3660046125d3565b611117565b34801561083057600080fd5b5061040561083f3660046125d3565b611192565b34801561085057600080fd5b5061040561085f366004612659565b601a6020526000908152604090205460ff1681565b34801561088057600080fd5b506016546104059062010000900460ff1681565b3480156108a057600080fd5b506103806108af3660046126a8565b6111a0565b3480156108c057600080fd5b506103806108cf366004612640565b611207565b3480156108e057600080fd5b5061044661271081565b3480156108f657600080fd5b50610446600e5481565b34801561090c57600080fd5b5061038061091b366004612640565b611265565b34801561092c57600080fd5b5061044661093b3660046126e1565b6112f6565b34801561094c57600080fd5b5061044660175481565b34801561096257600080fd5b50610380610971366004612659565b611321565b34801561098257600080fd5b5061044660105481565b34801561099857600080fd5b506103806109a7366004612659565b611372565b3480156109b857600080fd5b5061044660135481565b3480156109ce57600080fd5b506103806109dd366004612659565b6113e8565b3480156109ee57600080fd5b5061044660145481565b610a0061156a565b60128290556013819055610a148183612725565b60118190556107d01015610a6f5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c65737300000060448201526064015b60405180910390fd5b7f12dd4f8337f0c236c7994706854cca8cd53921c0032cb0fba8cdb797e73f67c6601254601354604051610aad929190918252602082015260400190565b60405180910390a15050565b606060038054610ac89061273d565b80601f0160208091040260200160405190810160405280929190818152602001828054610af49061273d565b8015610b415780601f10610b1657610100808354040283529160200191610b41565b820191906000526020600020905b815481529060010190602001808311610b2457829003601f168201915b5050505050905090565b600033610b598185856115c4565b60019150505b92915050565b600033610b738582856116e8565b610b7e85858561175c565b506001949350505050565b610b9161156a565b6016805461ff0019166101001790556040517fc49c1e96242859ad1fcebbc65d8629059ac9afdb0f8a7524f5097a388ed304c190600090a1565b610bd361156a565b610bdf6012600a61285c565b612710600b546019610bf1919061286b565b610bfb919061288a565b610c05919061288a565b811015610c1157600080fd5b610c1d6012600a61285c565b610c27908261286b565b600c8190556040519081527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b600033610b59818585610c7683836112f6565b610c809190612725565b6115c4565b600a546001600160a01b03163314610caf5760405162461bcd60e51b8152600401610a66906128ac565b610cb98282611d00565b5050565b600a546001600160a01b03163314610ce75760405162461bcd60e51b8152600401610a66906128ac565b610cf081611dbf565b50565b610cfb61156a565b6001600160a01b038116610d0e57600080fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b610d3861156a565b601754306000908152602081905260409020541015610dc1576040805162461bcd60e51b81526020600482015260248101919091527f43616e206f6e6c792073776170207768656e20746f6b656e20616d6f756e742060448201527f6973206174206f7220686967686572207468616e207265737472696374696f6e6064820152608401610a66565b6016805460ff19166001179055610dd6611dc9565b6016805460ff191690556040514281527f1b56c383f4f48fc992e45667ea4eabae777b9cca68b516a9562d8cda78f1bb329060200160405180910390a1565b610e1d61156a565b6001600160a01b038116610e3057600080fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b610e5a61156a565b600f8290556010819055610e6e8183612725565b600e8190556103e81015610ec45760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610a66565b7fccd61cb5df2cb048d1a7af40a431d6f247af01b6cf048f7a3f2aa9d313e2bc50600f54601054604051610aad929190918252602082015260400190565b610f0a61156a565b6016805463ff000000191663010000001790556040517f10d778167c503500f2cf7f114521871c5ab9b6ac8e63dfc9284c73e05d94b49690600090a1565b610f5061156a565b610f5a6000611f8f565b565b610f6461156a565b6016805463ff000000191690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c90600090a1565b610fa461156a565b601680549115156101000261ff0019909216919091179055565b600a546001600160a01b03163314610fe85760405162461bcd60e51b8152600401610a66906128ac565b610cb98282611fe1565b610ffa61156a565b6016805462ff00001916620100001790556040517fa56feb2d31b9a7424db0be063fd450863979c9e2382cf5110f869bd1ad361bb790600090a1565b606060048054610ac89061273d565b61104d61156a565b6008546001600160a01b03838116911614156110d15760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a66565b6110db8282611ff6565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6000338161112582866112f6565b9050838110156111855760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a66565b610b7e82868684036115c4565b600033610b5981858561175c565b6111a861156a565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b61120f61156a565b620f4240600b546001611222919061286b565b61122c919061288a565b81101561123857600080fd5b6103e8600b54600161124a919061286b565b611254919061288a565b81111561126057600080fd5b601755565b61126d61156a565b6112796012600a61285c565b612710600b54601961128b919061286b565b611295919061288a565b61129f919061288a565b8110156112ab57600080fd5b6112b76012600a61285c565b6112c1908261286b565b600d8190556040519081527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e90602001610c58565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61132961156a565b6001600160a01b038116600081815260186020526040808220805460ff19169055517f78ce087db51d01d3e32355f2d83455d5a39f99194c8d3d1c2614893695cee4429190a250565b61137a61156a565b6001600160a01b0381166113df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a66565b610cf081611f8f565b6113f061156a565b6001600160a01b0381163014156114495760405162461bcd60e51b815260206004820181905260248201527f4f776e65722063616e6e6f7420636c61696d206e617469766520746f6b656e736044820152606401610a66565b6001600160a01b0381166114835760405133904780156108fc02916000818181858888f19350505050158015610cb9573d6000803e3d6000fd5b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156114cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f091906128f9565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015611540573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115649190612912565b50505050565b6005546001600160a01b03163314610f5a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b6001600160a01b0383166116265760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a66565b6001600160a01b0382166116875760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a66565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006116f484846112f6565b90506000198114611564578181101561174f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a66565b61156484848484036115c4565b6001600160a01b0383166117825760405162461bcd60e51b8152600401610a669061292f565b6001600160a01b0382166117a85760405162461bcd60e51b8152600401610a6690612974565b600081116118075760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e73666572206d75737420626520677265617465722060448201526507468616e20360d41b6064820152608401610a66565b60165462010000900460ff1661189b576001600160a01b03831660009081526018602052604090205460ff168061185657506001600160a01b03821660009081526018602052604090205460ff165b61189b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a66565b6016546301000000900460ff1615611a02576005546001600160a01b038481169116148015906118d957506005546001600160a01b03838116911614155b80156118ed57506001600160a01b03821615155b801561190457506001600160a01b03821661dead14155b801561192957506001600160a01b03831660009081526018602052604090205460ff16155b801561194e57506001600160a01b03821660009081526018602052604090205460ff16155b15611a02576001600160a01b0383166000908152601a602052604090205460ff16801561199457506001600160a01b03821660009081526019602052604090205460ff16155b156119ad57600c548111156119a857600080fd5b611a02565b6001600160a01b0382166000908152601a602052604090205460ff1680156119ee57506001600160a01b03831660009081526019602052604090205460ff16155b15611a0257600d54811115611a0257600080fd5b3060009081526020819052604090205460175481108015908190611a2d5750601654610100900460ff165b8015611a3c575060165460ff16155b8015611a6157506001600160a01b0385166000908152601a602052604090205460ff16155b8015611a8657506001600160a01b03851660009081526018602052604090205460ff16155b8015611aab57506001600160a01b03841660009081526018602052604090205460ff16155b15611ad0576016805460ff19166001179055611ac5611dc9565b6016805460ff191690555b6001600160a01b03851660009081526018602052604090205460019060ff1680611b1257506001600160a01b03851660009081526018602052604090205460ff165b15611b1b575060005b60008115611cec576001600160a01b0386166000908152601a602052604090205460ff168015611b6457506001600160a01b0387166000908152601a602052604090205460ff16155b8015611b7257506000601154115b15611bfb5761271060115486611b88919061286b565b611b92919061288a565b905060115460135482611ba5919061286b565b611baf919061288a565b60156000828254611bc09190612725565b9091555050601154601254611bd5908361286b565b611bdf919061288a565b60146000828254611bf09190612725565b90915550611cce9050565b6001600160a01b0387166000908152601a602052604090205460ff168015611c3c57506001600160a01b0386166000908152601a602052604090205460ff16155b8015611c4a57506000600e54115b15611cce57612710600e5486611c60919061286b565b611c6a919061288a565b9050600e5460105482611c7d919061286b565b611c87919061288a565b60156000828254611c989190612725565b9091555050600e54600f54611cad908361286b565b611cb7919061288a565b60146000828254611cc89190612725565b90915550505b8015611cdf57611cdf8730836120df565b611ce981866129b7565b94505b611cf78787876120df565b50505050505050565b6001600160a01b038216611d565760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610a66565b8060026000828254611d689190612725565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b610cf03382612209565b3060009081526020819052604081205490506000601454601554611ded9190612725565b9050811580611dfa575080155b15611e03575050565b601754611e1190600a61286b565b821115611e2957601754611e2690600a61286b565b91505b60008060028360155486611e3d919061286b565b611e47919061288a565b611e51919061288a565b905047611e66611e6183876129b7565b61233b565b6000611e7282476129b7565b9050600081905060006002601554611e8a919061288a565b611e9490886129b7565b601454611ea1908561286b565b611eab919061288a565b9050611eb781836129b7565b6000601581905560145591508415801590611ed25750600082115b15611ee157611ee18583612495565b8015611f85576009546040516001600160a01b03909116908290600081818185875af1925050503d8060008114611f34576040519150601f19603f3d011682016040523d82523d6000602084013e611f39565b606091505b50508096505085611f855760405162461bcd60e51b815260206004820152601660248201527511985a5b1d5c994848199d5b99081b9bdd081cd95b9d60521b6044820152606401610a66565b5050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611fec8233836116e8565b610cb98282612209565b6001600160a01b0382166000908152601a602052604090205460ff161515811515141561208b5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c756500000000000000006064820152608401610a66565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166121055760405162461bcd60e51b8152600401610a669061292f565b6001600160a01b03821661212b5760405162461bcd60e51b8152600401610a6690612974565b6001600160a01b038316600090815260208190526040902054818110156121a35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a66565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611564565b6001600160a01b0382166122695760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a66565b6001600160a01b038216600090815260208190526040902054818110156122dd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a66565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612370576123706129ce565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156123c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123ed91906129e4565b81600181518110612400576124006129ce565b6001600160a01b03928316602091820292909201015260065461242691309116846115c4565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac9479061245f908590600090869030904290600401612a01565b600060405180830381600087803b15801561247957600080fd5b505af115801561248d573d6000803e3d6000fd5b505050505050565b6006546124ad9030906001600160a01b0316846115c4565b60065460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af115801561251b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906125409190612a72565b5050505050565b6000806040838503121561255a57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b818110156125965785810183015185820160400152820161257a565b818111156125a8576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610cf057600080fd5b600080604083850312156125e657600080fd5b82356125f1816125be565b946020939093013593505050565b60008060006060848603121561261457600080fd5b833561261f816125be565b9250602084013561262f816125be565b929592945050506040919091013590565b60006020828403121561265257600080fd5b5035919050565b60006020828403121561266b57600080fd5b8135612676816125be565b9392505050565b8015158114610cf057600080fd5b60006020828403121561269d57600080fd5b81356126768161267d565b600080604083850312156126bb57600080fd5b82356126c6816125be565b915060208301356126d68161267d565b809150509250929050565b600080604083850312156126f457600080fd5b82356126ff816125be565b915060208301356126d6816125be565b634e487b7160e01b600052601160045260246000fd5b600082198211156127385761273861270f565b500190565b600181811c9082168061275157607f821691505b6020821081141561277257634e487b7160e01b600052602260045260246000fd5b50919050565b600181815b808511156127b35781600019048211156127995761279961270f565b808516156127a657918102915b93841c939080029061277d565b509250929050565b6000826127ca57506001610b5f565b816127d757506000610b5f565b81600181146127ed57600281146127f757612813565b6001915050610b5f565b60ff8411156128085761280861270f565b50506001821b610b5f565b5060208310610133831016604e8410600b8410161715612836575081810a610b5f565b6128408383612778565b80600019048211156128545761285461270f565b029392505050565b600061267660ff8416836127bb565b60008160001904831182151516156128855761288561270f565b500290565b6000826128a757634e487b7160e01b600052601260045260246000fd5b500490565b6020808252602d908201527f6f6e6c7920627269646765206861732061636365737320746f2074686973207460408201526c37b5b2b710333ab731ba34b7b760991b606082015260800190565b60006020828403121561290b57600080fd5b5051919050565b60006020828403121561292457600080fd5b81516126768161267d565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156129c9576129c961270f565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156129f657600080fd5b8151612676816125be565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612a515784516001600160a01b031683529383019391830191600101612a2c565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612a8757600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220a3c2b3522a1d7b3363d8a72e9b8d8e44db1b5250202ddb27cd4809ec8be0128a64736f6c634300080a00330000000000000000000000000032d87b8f29de1e50008aa7d10413f7695c246d

Deployed Bytecode

0x6080604052600436106103545760003560e01c80636ddd1713116101c6578063bbc0c742116100f7578063e2f4560511610095578063f2fde38b1161006f578063f2fde38b1461098c578063f6374342146109ac578063f9d0831a146109c2578063fb002c97146109e257600080fd5b8063e2f4560514610940578063ea2f0b3714610956578063f11a24d31461097657600080fd5b8063d73792a9116100d1578063d73792a9146108d4578063d85ba063146108ea578063dc3f0d0f14610900578063dd62ed3e1461092057600080fd5b8063bbc0c74214610874578063c024666814610894578063d257b34f146108b457600080fd5b80638a8c523c116101645780639a7a23d61161013e5780639a7a23d6146107e4578063a457c2d714610804578063a9059cbb14610824578063b62496f51461084457600080fd5b80638a8c523c1461079c5780638da5cb5b146107b157806395d89b41146107cf57600080fd5b8063751039fc116101a0578063751039fc1461073157806376e88ddb1461074657806379cc67901461076657806388e765ff1461078657600080fd5b80636ddd1713146106c757806370a08231146106e6578063715018a61461071c57600080fd5b806342966c68116102a057806351f205e41161023e57806366ca9b831161021857806366ca9b831461066657806366d602ae146106865780636902ca611461069c5780636a486a8e146106b157600080fd5b806351f205e41461061b5780635a139dd414610630578063645c8a4b1461064657600080fd5b80634a62bb651161027a5780634a62bb651461057b5780634bb2c7851461059c5780634f77f6c0146105cc5780634fbee193146105e257600080fd5b806342966c681461051b578063499b83941461053b57806349bd5a5e1461055b57600080fd5b80631a8145bb1161030d5780632be32b61116102e75780632be32b611461049f578063313ce567146104bf57806339509351146104db57806340c10f19146104fb57600080fd5b80631a8145bb1461045457806323b872dd1461046a578063296914481461048a57600080fd5b806302dbd8f81461036057806306fdde03146103825780630758d924146103ad578063095ea7b3146103e55780631694505e1461041557806318160ddd1461043557600080fd5b3661035b57005b600080fd5b34801561036c57600080fd5b5061038061037b366004612547565b6109f8565b005b34801561038e57600080fd5b50610397610ab9565b6040516103a49190612569565b60405180910390f35b3480156103b957600080fd5b506007546103cd906001600160a01b031681565b6040516001600160a01b0390911681526020016103a4565b3480156103f157600080fd5b506104056104003660046125d3565b610b4b565b60405190151581526020016103a4565b34801561042157600080fd5b506006546103cd906001600160a01b031681565b34801561044157600080fd5b506002545b6040519081526020016103a4565b34801561046057600080fd5b5061044660155481565b34801561047657600080fd5b506104056104853660046125ff565b610b65565b34801561049657600080fd5b50610380610b89565b3480156104ab57600080fd5b506103806104ba366004612640565b610bcb565b3480156104cb57600080fd5b50604051601281526020016103a4565b3480156104e757600080fd5b506104056104f63660046125d3565b610c63565b34801561050757600080fd5b506103806105163660046125d3565b610c85565b34801561052757600080fd5b50610380610536366004612640565b610cbd565b34801561054757600080fd5b50610380610556366004612659565b610cf3565b34801561056757600080fd5b506008546103cd906001600160a01b031681565b34801561058757600080fd5b50601654610405906301000000900460ff1681565b3480156105a857600080fd5b506104056105b7366004612659565b60196020526000908152604090205460ff1681565b3480156105d857600080fd5b5061044660125481565b3480156105ee57600080fd5b506104056105fd366004612659565b6001600160a01b031660009081526018602052604090205460ff1690565b34801561062757600080fd5b50610380610d30565b34801561063c57600080fd5b50610446600f5481565b34801561065257600080fd5b50610380610661366004612659565b610e15565b34801561067257600080fd5b50610380610681366004612547565b610e52565b34801561069257600080fd5b50610446600d5481565b3480156106a857600080fd5b50610380610f02565b3480156106bd57600080fd5b5061044660115481565b3480156106d357600080fd5b5060165461040590610100900460ff1681565b3480156106f257600080fd5b50610446610701366004612659565b6001600160a01b031660009081526020819052604090205490565b34801561072857600080fd5b50610380610f48565b34801561073d57600080fd5b50610380610f5c565b34801561075257600080fd5b5061038061076136600461268b565b610f9c565b34801561077257600080fd5b506103806107813660046125d3565b610fbe565b34801561079257600080fd5b50610446600c5481565b3480156107a857600080fd5b50610380610ff2565b3480156107bd57600080fd5b506005546001600160a01b03166103cd565b3480156107db57600080fd5b50610397611036565b3480156107f057600080fd5b506103806107ff3660046126a8565b611045565b34801561081057600080fd5b5061040561081f3660046125d3565b611117565b34801561083057600080fd5b5061040561083f3660046125d3565b611192565b34801561085057600080fd5b5061040561085f366004612659565b601a6020526000908152604090205460ff1681565b34801561088057600080fd5b506016546104059062010000900460ff1681565b3480156108a057600080fd5b506103806108af3660046126a8565b6111a0565b3480156108c057600080fd5b506103806108cf366004612640565b611207565b3480156108e057600080fd5b5061044661271081565b3480156108f657600080fd5b50610446600e5481565b34801561090c57600080fd5b5061038061091b366004612640565b611265565b34801561092c57600080fd5b5061044661093b3660046126e1565b6112f6565b34801561094c57600080fd5b5061044660175481565b34801561096257600080fd5b50610380610971366004612659565b611321565b34801561098257600080fd5b5061044660105481565b34801561099857600080fd5b506103806109a7366004612659565b611372565b3480156109b857600080fd5b5061044660135481565b3480156109ce57600080fd5b506103806109dd366004612659565b6113e8565b3480156109ee57600080fd5b5061044660145481565b610a0061156a565b60128290556013819055610a148183612725565b60118190556107d01015610a6f5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c65737300000060448201526064015b60405180910390fd5b7f12dd4f8337f0c236c7994706854cca8cd53921c0032cb0fba8cdb797e73f67c6601254601354604051610aad929190918252602082015260400190565b60405180910390a15050565b606060038054610ac89061273d565b80601f0160208091040260200160405190810160405280929190818152602001828054610af49061273d565b8015610b415780601f10610b1657610100808354040283529160200191610b41565b820191906000526020600020905b815481529060010190602001808311610b2457829003601f168201915b5050505050905090565b600033610b598185856115c4565b60019150505b92915050565b600033610b738582856116e8565b610b7e85858561175c565b506001949350505050565b610b9161156a565b6016805461ff0019166101001790556040517fc49c1e96242859ad1fcebbc65d8629059ac9afdb0f8a7524f5097a388ed304c190600090a1565b610bd361156a565b610bdf6012600a61285c565b612710600b546019610bf1919061286b565b610bfb919061288a565b610c05919061288a565b811015610c1157600080fd5b610c1d6012600a61285c565b610c27908261286b565b600c8190556040519081527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b600033610b59818585610c7683836112f6565b610c809190612725565b6115c4565b600a546001600160a01b03163314610caf5760405162461bcd60e51b8152600401610a66906128ac565b610cb98282611d00565b5050565b600a546001600160a01b03163314610ce75760405162461bcd60e51b8152600401610a66906128ac565b610cf081611dbf565b50565b610cfb61156a565b6001600160a01b038116610d0e57600080fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b610d3861156a565b601754306000908152602081905260409020541015610dc1576040805162461bcd60e51b81526020600482015260248101919091527f43616e206f6e6c792073776170207768656e20746f6b656e20616d6f756e742060448201527f6973206174206f7220686967686572207468616e207265737472696374696f6e6064820152608401610a66565b6016805460ff19166001179055610dd6611dc9565b6016805460ff191690556040514281527f1b56c383f4f48fc992e45667ea4eabae777b9cca68b516a9562d8cda78f1bb329060200160405180910390a1565b610e1d61156a565b6001600160a01b038116610e3057600080fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b610e5a61156a565b600f8290556010819055610e6e8183612725565b600e8190556103e81015610ec45760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610a66565b7fccd61cb5df2cb048d1a7af40a431d6f247af01b6cf048f7a3f2aa9d313e2bc50600f54601054604051610aad929190918252602082015260400190565b610f0a61156a565b6016805463ff000000191663010000001790556040517f10d778167c503500f2cf7f114521871c5ab9b6ac8e63dfc9284c73e05d94b49690600090a1565b610f5061156a565b610f5a6000611f8f565b565b610f6461156a565b6016805463ff000000191690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c90600090a1565b610fa461156a565b601680549115156101000261ff0019909216919091179055565b600a546001600160a01b03163314610fe85760405162461bcd60e51b8152600401610a66906128ac565b610cb98282611fe1565b610ffa61156a565b6016805462ff00001916620100001790556040517fa56feb2d31b9a7424db0be063fd450863979c9e2382cf5110f869bd1ad361bb790600090a1565b606060048054610ac89061273d565b61104d61156a565b6008546001600160a01b03838116911614156110d15760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a66565b6110db8282611ff6565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6000338161112582866112f6565b9050838110156111855760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a66565b610b7e82868684036115c4565b600033610b5981858561175c565b6111a861156a565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b61120f61156a565b620f4240600b546001611222919061286b565b61122c919061288a565b81101561123857600080fd5b6103e8600b54600161124a919061286b565b611254919061288a565b81111561126057600080fd5b601755565b61126d61156a565b6112796012600a61285c565b612710600b54601961128b919061286b565b611295919061288a565b61129f919061288a565b8110156112ab57600080fd5b6112b76012600a61285c565b6112c1908261286b565b600d8190556040519081527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e90602001610c58565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61132961156a565b6001600160a01b038116600081815260186020526040808220805460ff19169055517f78ce087db51d01d3e32355f2d83455d5a39f99194c8d3d1c2614893695cee4429190a250565b61137a61156a565b6001600160a01b0381166113df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a66565b610cf081611f8f565b6113f061156a565b6001600160a01b0381163014156114495760405162461bcd60e51b815260206004820181905260248201527f4f776e65722063616e6e6f7420636c61696d206e617469766520746f6b656e736044820152606401610a66565b6001600160a01b0381166114835760405133904780156108fc02916000818181858888f19350505050158015610cb9573d6000803e3d6000fd5b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156114cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f091906128f9565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015611540573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115649190612912565b50505050565b6005546001600160a01b03163314610f5a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a66565b6001600160a01b0383166116265760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a66565b6001600160a01b0382166116875760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a66565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006116f484846112f6565b90506000198114611564578181101561174f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a66565b61156484848484036115c4565b6001600160a01b0383166117825760405162461bcd60e51b8152600401610a669061292f565b6001600160a01b0382166117a85760405162461bcd60e51b8152600401610a6690612974565b600081116118075760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e73666572206d75737420626520677265617465722060448201526507468616e20360d41b6064820152608401610a66565b60165462010000900460ff1661189b576001600160a01b03831660009081526018602052604090205460ff168061185657506001600160a01b03821660009081526018602052604090205460ff165b61189b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a66565b6016546301000000900460ff1615611a02576005546001600160a01b038481169116148015906118d957506005546001600160a01b03838116911614155b80156118ed57506001600160a01b03821615155b801561190457506001600160a01b03821661dead14155b801561192957506001600160a01b03831660009081526018602052604090205460ff16155b801561194e57506001600160a01b03821660009081526018602052604090205460ff16155b15611a02576001600160a01b0383166000908152601a602052604090205460ff16801561199457506001600160a01b03821660009081526019602052604090205460ff16155b156119ad57600c548111156119a857600080fd5b611a02565b6001600160a01b0382166000908152601a602052604090205460ff1680156119ee57506001600160a01b03831660009081526019602052604090205460ff16155b15611a0257600d54811115611a0257600080fd5b3060009081526020819052604090205460175481108015908190611a2d5750601654610100900460ff165b8015611a3c575060165460ff16155b8015611a6157506001600160a01b0385166000908152601a602052604090205460ff16155b8015611a8657506001600160a01b03851660009081526018602052604090205460ff16155b8015611aab57506001600160a01b03841660009081526018602052604090205460ff16155b15611ad0576016805460ff19166001179055611ac5611dc9565b6016805460ff191690555b6001600160a01b03851660009081526018602052604090205460019060ff1680611b1257506001600160a01b03851660009081526018602052604090205460ff165b15611b1b575060005b60008115611cec576001600160a01b0386166000908152601a602052604090205460ff168015611b6457506001600160a01b0387166000908152601a602052604090205460ff16155b8015611b7257506000601154115b15611bfb5761271060115486611b88919061286b565b611b92919061288a565b905060115460135482611ba5919061286b565b611baf919061288a565b60156000828254611bc09190612725565b9091555050601154601254611bd5908361286b565b611bdf919061288a565b60146000828254611bf09190612725565b90915550611cce9050565b6001600160a01b0387166000908152601a602052604090205460ff168015611c3c57506001600160a01b0386166000908152601a602052604090205460ff16155b8015611c4a57506000600e54115b15611cce57612710600e5486611c60919061286b565b611c6a919061288a565b9050600e5460105482611c7d919061286b565b611c87919061288a565b60156000828254611c989190612725565b9091555050600e54600f54611cad908361286b565b611cb7919061288a565b60146000828254611cc89190612725565b90915550505b8015611cdf57611cdf8730836120df565b611ce981866129b7565b94505b611cf78787876120df565b50505050505050565b6001600160a01b038216611d565760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610a66565b8060026000828254611d689190612725565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b610cf03382612209565b3060009081526020819052604081205490506000601454601554611ded9190612725565b9050811580611dfa575080155b15611e03575050565b601754611e1190600a61286b565b821115611e2957601754611e2690600a61286b565b91505b60008060028360155486611e3d919061286b565b611e47919061288a565b611e51919061288a565b905047611e66611e6183876129b7565b61233b565b6000611e7282476129b7565b9050600081905060006002601554611e8a919061288a565b611e9490886129b7565b601454611ea1908561286b565b611eab919061288a565b9050611eb781836129b7565b6000601581905560145591508415801590611ed25750600082115b15611ee157611ee18583612495565b8015611f85576009546040516001600160a01b03909116908290600081818185875af1925050503d8060008114611f34576040519150601f19603f3d011682016040523d82523d6000602084013e611f39565b606091505b50508096505085611f855760405162461bcd60e51b815260206004820152601660248201527511985a5b1d5c994848199d5b99081b9bdd081cd95b9d60521b6044820152606401610a66565b5050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611fec8233836116e8565b610cb98282612209565b6001600160a01b0382166000908152601a602052604090205460ff161515811515141561208b5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c756500000000000000006064820152608401610a66565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166121055760405162461bcd60e51b8152600401610a669061292f565b6001600160a01b03821661212b5760405162461bcd60e51b8152600401610a6690612974565b6001600160a01b038316600090815260208190526040902054818110156121a35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a66565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611564565b6001600160a01b0382166122695760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a66565b6001600160a01b038216600090815260208190526040902054818110156122dd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a66565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612370576123706129ce565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156123c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123ed91906129e4565b81600181518110612400576124006129ce565b6001600160a01b03928316602091820292909201015260065461242691309116846115c4565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac9479061245f908590600090869030904290600401612a01565b600060405180830381600087803b15801561247957600080fd5b505af115801561248d573d6000803e3d6000fd5b505050505050565b6006546124ad9030906001600160a01b0316846115c4565b60065460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af115801561251b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906125409190612a72565b5050505050565b6000806040838503121561255a57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b818110156125965785810183015185820160400152820161257a565b818111156125a8576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610cf057600080fd5b600080604083850312156125e657600080fd5b82356125f1816125be565b946020939093013593505050565b60008060006060848603121561261457600080fd5b833561261f816125be565b9250602084013561262f816125be565b929592945050506040919091013590565b60006020828403121561265257600080fd5b5035919050565b60006020828403121561266b57600080fd5b8135612676816125be565b9392505050565b8015158114610cf057600080fd5b60006020828403121561269d57600080fd5b81356126768161267d565b600080604083850312156126bb57600080fd5b82356126c6816125be565b915060208301356126d68161267d565b809150509250929050565b600080604083850312156126f457600080fd5b82356126ff816125be565b915060208301356126d6816125be565b634e487b7160e01b600052601160045260246000fd5b600082198211156127385761273861270f565b500190565b600181811c9082168061275157607f821691505b6020821081141561277257634e487b7160e01b600052602260045260246000fd5b50919050565b600181815b808511156127b35781600019048211156127995761279961270f565b808516156127a657918102915b93841c939080029061277d565b509250929050565b6000826127ca57506001610b5f565b816127d757506000610b5f565b81600181146127ed57600281146127f757612813565b6001915050610b5f565b60ff8411156128085761280861270f565b50506001821b610b5f565b5060208310610133831016604e8410600b8410161715612836575081810a610b5f565b6128408383612778565b80600019048211156128545761285461270f565b029392505050565b600061267660ff8416836127bb565b60008160001904831182151516156128855761288561270f565b500290565b6000826128a757634e487b7160e01b600052601260045260246000fd5b500490565b6020808252602d908201527f6f6e6c7920627269646765206861732061636365737320746f2074686973207460408201526c37b5b2b710333ab731ba34b7b760991b606082015260800190565b60006020828403121561290b57600080fd5b5051919050565b60006020828403121561292457600080fd5b81516126768161267d565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156129c9576129c961270f565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156129f657600080fd5b8151612676816125be565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612a515784516001600160a01b031683529383019391830191600101612a2c565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612a8757600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220a3c2b3522a1d7b3363d8a72e9b8d8e44db1b5250202ddb27cd4809ec8be0128a64736f6c634300080a0033

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

0000000000000000000000000032d87b8f29de1e50008aa7d10413f7695c246d

-----Decoded View---------------
Arg [0] : _bridge (address): 0x0032D87B8f29dE1E50008Aa7D10413f7695C246d

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000032d87b8f29de1e50008aa7d10413f7695c246d


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.