ETH Price: $2,958.43 (+0.93%)
Gas: 2 Gwei

Token

LLM Protocol (LLM)
 

Overview

Max Total Supply

100,000,000 LLM

Holders

131

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
802050.eth
Balance
0.000000000000000001 LLM

Value
$0.00
0xC5D22D8f6A550c1510Dd7E513689B6DBD9716943
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:
LLMToken

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

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

interface ILLMStaking {
  function postProcessLLMReward(uint256 _amount) external;
}

File 2 of 10 : LLMToken.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

import "./ILLMStaking.sol";

import "../openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "../openzeppelin/contracts/token/ERC20/IERC20.sol";
import "../openzeppelin/contracts/access/Ownable.sol";
import "../openzeppelin/contracts/utils/Context.sol";

import "../uniswap/IUniswapV2Factory.sol";
import "../uniswap/IUniswapV2Router02.sol";
import "../uniswap/IUniswapV2Pair.sol";

contract LLMToken is Context, IERC20, IERC20Metadata, Ownable {
    string private _name;
    string private _symbol;

    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) public excludeFromFees;

    uint256 private _totalSupply;

    uint16 public feeBpsTotal;
    uint16 public feeBpsToStakers;
    uint16 public maxBpsPerWallet;

    address public dexPair;
    address public feeWallet;
    ILLMStaking public stakingContract;

    uint256 private uuid = 7503918;

    constructor(
        string memory name_,
        string memory symbol_,
        address feeWallet_,
        uint16 feeBpsTotal_,
        uint16 feeBpsToStakers_,
        uint16 maxBpsPerWallet_) {
        require(feeWallet_!=address(0));
        require(feeBpsTotal_ <= 10000);
        require(feeBpsToStakers_ <= feeBpsTotal_);
        require(maxBpsPerWallet_ <= 10000);

        _name = name_;
        _symbol = symbol_;
        feeWallet = feeWallet_;

        feeBpsTotal = feeBpsTotal_;
        feeBpsToStakers = feeBpsToStakers_;
        maxBpsPerWallet = maxBpsPerWallet_;

        excludeFromFees[msg.sender] = true;
        excludeFromFees[feeWallet_] = true;

        if (block.chainid == 1) {
            IUniswapV2Factory factory = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f); // Uniswap
            dexPair = factory.createPair(address(this), 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2); // WETH
        }

        _mint(msg.sender, 100 * 1000 * 1000 * (10**18));
    }

    function setFees(uint16 feeBptsTotal_, uint16 feeBpsToStakers_) public onlyOwner {
      require(feeBptsTotal_ <= 10000);
      require(feeBpsToStakers_ <= feeBptsTotal_);

      feeBpsTotal = feeBptsTotal_;
      feeBpsToStakers = feeBpsToStakers_;
    }

    function setMaxBpsPerWallet(uint16 maxBpsPerWallet_) public onlyOwner {
      require(maxBpsPerWallet_ <= 10000);
      maxBpsPerWallet = maxBpsPerWallet_;
    }

    function setExcludeFromFees(address account, bool value) public onlyOwner {
      excludeFromFees[account] = value;
    }

    function setFeeWallet(address feeWallet_) public onlyOwner {
      require(feeWallet_!=address(0));
      feeWallet = feeWallet_;
      excludeFromFees[feeWallet_] = true;
    }

    function setStakingContract(ILLMStaking stakingContract_) public onlyOwner {
      require(address(stakingContract_)!=address(0));
      stakingContract = stakingContract_;
      excludeFromFees[address(stakingContract_)] = true;
    }

    function setDexPair(address dexPair_) public onlyOwner {
      dexPair = dexPair_;
    }

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

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

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

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

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");

        if ((from==dexPair || to==dexPair) &&
            !excludeFromFees[from] &&
            !excludeFromFees[to]) {
            uint256 feeTotal = amount * feeBpsTotal / 10000;
            uint256 feeToStakers = amount * feeBpsToStakers / 10000;
            require(feeToStakers <= feeTotal); // Sanity check
            uint256 feeRemaining = feeTotal - feeToStakers;

            uint256 receiveAmount = amount - feeTotal;

            _balances[from] = fromBalance - amount;

            require(
                to==dexPair ||
                maxBpsPerWallet == 0 ||
                (_balances[to]+receiveAmount) <= (_totalSupply * maxBpsPerWallet / 10000)
            );

            _balances[to] += receiveAmount;
            emit Transfer(from, to, receiveAmount);

            if (feeRemaining > 0) {
                require(feeWallet!=address(0));

                _balances[feeWallet] += feeRemaining;
                emit Transfer(from, feeWallet, feeRemaining);
            }
            if (feeToStakers > 0) {
                require(address(stakingContract)!=address(0));

                _balances[address(stakingContract)] += feeToStakers;
                stakingContract.postProcessLLMReward(feeToStakers);
                emit Transfer(from, address(stakingContract), feeToStakers);
            }
        }
        else {
            _balances[from] = fromBalance - amount;
            _balances[to] += amount;

            emit Transfer(from, to, amount);
        }
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

File 3 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 4 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 5 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

File 6 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 7 of 10 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

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

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

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

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

File 8 of 10 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

File 9 of 10 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

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

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

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

import './IUniswapV2Router01.sol';

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"feeWallet_","type":"address"},{"internalType":"uint16","name":"feeBpsTotal_","type":"uint16"},{"internalType":"uint16","name":"feeBpsToStakers_","type":"uint16"},{"internalType":"uint16","name":"maxBpsPerWallet_","type":"uint16"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","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":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludeFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeBpsToStakers","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeBpsTotal","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxBpsPerWallet","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"dexPair_","type":"address"}],"name":"setDexPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setExcludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"feeWallet_","type":"address"}],"name":"setFeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"feeBptsTotal_","type":"uint16"},{"internalType":"uint16","name":"feeBpsToStakers_","type":"uint16"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"maxBpsPerWallet_","type":"uint16"}],"name":"setMaxBpsPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ILLMStaking","name":"stakingContract_","type":"address"}],"name":"setStakingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingContract","outputs":[{"internalType":"contract ILLMStaking","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}]

60806040526272802e600a553480156200001857600080fd5b50604051620036ee380380620036ee83398181016040528101906200003e9190620007af565b6200005e620000526200036660201b60201c565b6200036e60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036200009857600080fd5b6127108361ffff161115620000ac57600080fd5b8261ffff168261ffff161115620000c257600080fd5b6127108161ffff161115620000d657600080fd5b8560019081620000e7919062000ad4565b508460029081620000f9919062000ad4565b5083600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600760006101000a81548161ffff021916908361ffff16021790555081600760026101000a81548161ffff021916908361ffff16021790555080600760046101000a81548161ffff021916908361ffff1602179055506001600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600146036200033d576000735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f90508073ffffffffffffffffffffffffffffffffffffffff1663c9c653963073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26040518363ffffffff1660e01b8152600401620002b592919062000bcc565b6020604051808303816000875af1158015620002d5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002fb919062000bf9565b600760066101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b6200035a336a52b7d2dcc80cd2e40000006200043260201b60201c565b50505050505062000d46565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200049b9062000c8c565b60405180910390fd5b8060066000828254620004b8919062000cdd565b9250508190555080600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200056c919062000d29565b60405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620005e18262000596565b810181811067ffffffffffffffff82111715620006035762000602620005a7565b5b80604052505050565b60006200061862000578565b9050620006268282620005d6565b919050565b600067ffffffffffffffff821115620006495762000648620005a7565b5b620006548262000596565b9050602081019050919050565b60005b838110156200068157808201518184015260208101905062000664565b60008484015250505050565b6000620006a46200069e846200062b565b6200060c565b905082815260208101848484011115620006c357620006c262000591565b5b620006d084828562000661565b509392505050565b600082601f830112620006f057620006ef6200058c565b5b8151620007028482602086016200068d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000738826200070b565b9050919050565b6200074a816200072b565b81146200075657600080fd5b50565b6000815190506200076a816200073f565b92915050565b600061ffff82169050919050565b620007898162000770565b81146200079557600080fd5b50565b600081519050620007a9816200077e565b92915050565b60008060008060008060c08789031215620007cf57620007ce62000582565b5b600087015167ffffffffffffffff811115620007f057620007ef62000587565b5b620007fe89828a01620006d8565b965050602087015167ffffffffffffffff81111562000822576200082162000587565b5b6200083089828a01620006d8565b95505060406200084389828a0162000759565b94505060606200085689828a0162000798565b93505060806200086989828a0162000798565b92505060a06200087c89828a0162000798565b9150509295509295509295565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008dc57607f821691505b602082108103620008f257620008f162000894565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200095c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200091d565b6200096886836200091d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620009b5620009af620009a98462000980565b6200098a565b62000980565b9050919050565b6000819050919050565b620009d18362000994565b620009e9620009e082620009bc565b8484546200092a565b825550505050565b600090565b62000a00620009f1565b62000a0d818484620009c6565b505050565b5b8181101562000a355762000a29600082620009f6565b60018101905062000a13565b5050565b601f82111562000a845762000a4e81620008f8565b62000a59846200090d565b8101602085101562000a69578190505b62000a8162000a78856200090d565b83018262000a12565b50505b505050565b600082821c905092915050565b600062000aa96000198460080262000a89565b1980831691505092915050565b600062000ac4838362000a96565b9150826002028217905092915050565b62000adf8262000889565b67ffffffffffffffff81111562000afb5762000afa620005a7565b5b62000b078254620008c3565b62000b1482828562000a39565b600060209050601f83116001811462000b4c576000841562000b37578287015190505b62000b43858262000ab6565b86555062000bb3565b601f19841662000b5c86620008f8565b60005b8281101562000b865784890151825560018201915060208501945060208101905062000b5f565b8683101562000ba6578489015162000ba2601f89168262000a96565b8355505b6001600288020188555050505b505050505050565b62000bc6816200072b565b82525050565b600060408201905062000be3600083018562000bbb565b62000bf2602083018462000bbb565b9392505050565b60006020828403121562000c125762000c1162000582565b5b600062000c228482850162000759565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c74601f8362000c2b565b915062000c818262000c3c565b602082019050919050565b6000602082019050818103600083015262000ca78162000c65565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cea8262000980565b915062000cf78362000980565b925082820190508082111562000d125762000d1162000cae565b5b92915050565b62000d238162000980565b82525050565b600060208201905062000d40600083018462000d18565b92915050565b6129988062000d566000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806394f78767116100f9578063d63cad2211610097578063ee99205c11610071578063ee99205c14610507578063f242ab4114610525578063f25f4b5614610543578063f2fde38b14610561576101c4565b8063d63cad221461048b578063dd62ed3e146104a7578063e57f14e1146104d7576101c4565b80639ef833d4116100d35780639ef833d4146103f3578063a457c2d71461040f578063a9059cbb1461043f578063ae36f5c81461046f576101c4565b806394f787671461039b57806395d89b41146103b95780639dd373b9146103d7576101c4565b8063395093511161016657806370a082311161014057806370a0823114610327578063715018a6146103575780638da5cb5b1461036157806390d49b9d1461037f576101c4565b806339509351146102bd57806340ec4e91146102ed57806342966c681461030b576101c4565b806318160ddd116101a257806318160ddd1461023557806323b872dd146102535780632e92f74e14610283578063313ce5671461029f576101c4565b8063056764b1146101c957806306fdde03146101e7578063095ea7b314610205575b600080fd5b6101d161057d565b6040516101de9190611c91565b60405180910390f35b6101ef610591565b6040516101fc9190611d3c565b60405180910390f35b61021f600480360381019061021a9190611df7565b610623565b60405161022c9190611e52565b60405180910390f35b61023d610646565b60405161024a9190611e7c565b60405180910390f35b61026d60048036038101906102689190611e97565b610650565b60405161027a9190611e52565b60405180910390f35b61029d60048036038101906102989190611f16565b61067f565b005b6102a76106ba565b6040516102b49190611f5f565b60405180910390f35b6102d760048036038101906102d29190611df7565b6106c3565b6040516102e49190611e52565b60405180910390f35b6102f56106fa565b6040516103029190611c91565b60405180910390f35b61032560048036038101906103209190611f7a565b61070e565b005b610341600480360381019061033c9190611fa7565b610722565b60405161034e9190611e7c565b60405180910390f35b61035f61076b565b005b61036961077f565b6040516103769190611fe3565b60405180910390f35b61039960048036038101906103949190611fa7565b6107a8565b005b6103a3610885565b6040516103b09190611c91565b60405180910390f35b6103c1610899565b6040516103ce9190611d3c565b60405180910390f35b6103f160048036038101906103ec919061203c565b61092b565b005b61040d60048036038101906104089190612069565b610a08565b005b61042960048036038101906104249190611df7565b610a76565b6040516104369190611e52565b60405180910390f35b61045960048036038101906104549190611df7565b610aed565b6040516104669190611e52565b60405180910390f35b61048960048036038101906104849190611fa7565b610b10565b005b6104a560048036038101906104a091906120d5565b610b5c565b005b6104c160048036038101906104bc9190612115565b610bbf565b6040516104ce9190611e7c565b60405180910390f35b6104f160048036038101906104ec9190611fa7565b610c46565b6040516104fe9190611e52565b60405180910390f35b61050f610c66565b60405161051c91906121b4565b60405180910390f35b61052d610c8c565b60405161053a9190611fe3565b60405180910390f35b61054b610cb2565b6040516105589190611fe3565b60405180910390f35b61057b60048036038101906105769190611fa7565b610cd8565b005b600760049054906101000a900461ffff1681565b6060600180546105a0906121fe565b80601f01602080910402602001604051908101604052809291908181526020018280546105cc906121fe565b80156106195780601f106105ee57610100808354040283529160200191610619565b820191906000526020600020905b8154815290600101906020018083116105fc57829003601f168201915b5050505050905090565b60008061062e610d5b565b905061063b818585610d63565b600191505092915050565b6000600654905090565b60008061065b610d5b565b9050610668858285610f2c565b610673858585610fb8565b60019150509392505050565b61068761197b565b6127108161ffff16111561069a57600080fd5b80600760046101000a81548161ffff021916908361ffff16021790555050565b60006012905090565b6000806106ce610d5b565b90506106ef8185856106e08589610bbf565b6106ea919061225e565b610d63565b600191505092915050565b600760009054906101000a900461ffff1681565b61071f610719610d5b565b826119f9565b50565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61077361197b565b61077d6000611bb0565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6107b061197b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107e957600080fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600760029054906101000a900461ffff1681565b6060600280546108a8906121fe565b80601f01602080910402602001604051908101604052809291908181526020018280546108d4906121fe565b80156109215780601f106108f657610100808354040283529160200191610921565b820191906000526020600020905b81548152906001019060200180831161090457829003601f168201915b5050505050905090565b61093361197b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361096c57600080fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610a1061197b565b6127108261ffff161115610a2357600080fd5b8161ffff168161ffff161115610a3857600080fd5b81600760006101000a81548161ffff021916908361ffff16021790555080600760026101000a81548161ffff021916908361ffff1602179055505050565b600080610a81610d5b565b90506000610a8f8286610bbf565b905083811015610ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acb90612304565b60405180910390fd5b610ae18286868403610d63565b60019250505092915050565b600080610af8610d5b565b9050610b05818585610fb8565b600191505092915050565b610b1861197b565b80600760066101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610b6461197b565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60056020528060005260406000206000915054906101000a900460ff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760069054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ce061197b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690612396565b60405180910390fd5b610d5881611bb0565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc990612428565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e38906124ba565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f1f9190611e7c565b60405180910390a3505050565b6000610f388484610bbf565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fb25781811015610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b90612526565b60405180910390fd5b610fb18484848403610d63565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e906125b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d9061264a565b60405180910390fd5b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561111d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611114906126dc565b60405180910390fd5b600760069054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806111c65750600760069054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b801561121c5750600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156112725750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561186a576000612710600760009054906101000a900461ffff1661ffff168461129c91906126fc565b6112a6919061276d565b90506000612710600760029054906101000a900461ffff1661ffff16856112cd91906126fc565b6112d7919061276d565b9050818111156112e657600080fd5b600081836112f4919061279e565b905060008386611304919061279e565b90508585611312919061279e565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760069054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614806113c557506000600760049054906101000a900461ffff1661ffff16145b806114485750612710600760049054906101000a900461ffff1661ffff166006546113f091906126fc565b6113fa919061276d565b81600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611445919061225e565b11155b61145157600080fd5b80600360008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114a0919061225e565b925050819055508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115049190611e7c565b60405180910390a3600082111561167057600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361157057600080fd5b8160036000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115e1919061225e565b92505081905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116679190611e7c565b60405180910390a35b600083111561186157600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036116d457600080fd5b8260036000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611745919061225e565b92505081905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635917b852846040518263ffffffff1660e01b81526004016117a79190611e7c565b600060405180830381600087803b1580156117c157600080fd5b505af11580156117d5573d6000803e3d6000fd5b50505050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516118589190611e7c565b60405180910390a35b50505050611975565b8181611876919061279e565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611908919061225e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161196c9190611e7c565b60405180910390a35b50505050565b611983610d5b565b73ffffffffffffffffffffffffffffffffffffffff166119a161077f565b73ffffffffffffffffffffffffffffffffffffffff16146119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee9061281e565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5f906128b0565b60405180910390fd5b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae690612942565b60405180910390fd5b818103600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600660008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ba39190611e7c565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061ffff82169050919050565b611c8b81611c74565b82525050565b6000602082019050611ca66000830184611c82565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ce6578082015181840152602081019050611ccb565b60008484015250505050565b6000601f19601f8301169050919050565b6000611d0e82611cac565b611d188185611cb7565b9350611d28818560208601611cc8565b611d3181611cf2565b840191505092915050565b60006020820190508181036000830152611d568184611d03565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d8e82611d63565b9050919050565b611d9e81611d83565b8114611da957600080fd5b50565b600081359050611dbb81611d95565b92915050565b6000819050919050565b611dd481611dc1565b8114611ddf57600080fd5b50565b600081359050611df181611dcb565b92915050565b60008060408385031215611e0e57611e0d611d5e565b5b6000611e1c85828601611dac565b9250506020611e2d85828601611de2565b9150509250929050565b60008115159050919050565b611e4c81611e37565b82525050565b6000602082019050611e676000830184611e43565b92915050565b611e7681611dc1565b82525050565b6000602082019050611e916000830184611e6d565b92915050565b600080600060608486031215611eb057611eaf611d5e565b5b6000611ebe86828701611dac565b9350506020611ecf86828701611dac565b9250506040611ee086828701611de2565b9150509250925092565b611ef381611c74565b8114611efe57600080fd5b50565b600081359050611f1081611eea565b92915050565b600060208284031215611f2c57611f2b611d5e565b5b6000611f3a84828501611f01565b91505092915050565b600060ff82169050919050565b611f5981611f43565b82525050565b6000602082019050611f746000830184611f50565b92915050565b600060208284031215611f9057611f8f611d5e565b5b6000611f9e84828501611de2565b91505092915050565b600060208284031215611fbd57611fbc611d5e565b5b6000611fcb84828501611dac565b91505092915050565b611fdd81611d83565b82525050565b6000602082019050611ff86000830184611fd4565b92915050565b600061200982611d83565b9050919050565b61201981611ffe565b811461202457600080fd5b50565b60008135905061203681612010565b92915050565b60006020828403121561205257612051611d5e565b5b600061206084828501612027565b91505092915050565b600080604083850312156120805761207f611d5e565b5b600061208e85828601611f01565b925050602061209f85828601611f01565b9150509250929050565b6120b281611e37565b81146120bd57600080fd5b50565b6000813590506120cf816120a9565b92915050565b600080604083850312156120ec576120eb611d5e565b5b60006120fa85828601611dac565b925050602061210b858286016120c0565b9150509250929050565b6000806040838503121561212c5761212b611d5e565b5b600061213a85828601611dac565b925050602061214b85828601611dac565b9150509250929050565b6000819050919050565b600061217a61217561217084611d63565b612155565b611d63565b9050919050565b600061218c8261215f565b9050919050565b600061219e82612181565b9050919050565b6121ae81612193565b82525050565b60006020820190506121c960008301846121a5565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061221657607f821691505b602082108103612229576122286121cf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061226982611dc1565b915061227483611dc1565b925082820190508082111561228c5761228b61222f565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006122ee602583611cb7565b91506122f982612292565b604082019050919050565b6000602082019050818103600083015261231d816122e1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612380602683611cb7565b915061238b82612324565b604082019050919050565b600060208201905081810360008301526123af81612373565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612412602483611cb7565b915061241d826123b6565b604082019050919050565b6000602082019050818103600083015261244181612405565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006124a4602283611cb7565b91506124af82612448565b604082019050919050565b600060208201905081810360008301526124d381612497565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612510601d83611cb7565b915061251b826124da565b602082019050919050565b6000602082019050818103600083015261253f81612503565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006125a2602583611cb7565b91506125ad82612546565b604082019050919050565b600060208201905081810360008301526125d181612595565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612634602383611cb7565b915061263f826125d8565b604082019050919050565b6000602082019050818103600083015261266381612627565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006126c6602683611cb7565b91506126d18261266a565b604082019050919050565b600060208201905081810360008301526126f5816126b9565b9050919050565b600061270782611dc1565b915061271283611dc1565b925082820261272081611dc1565b915082820484148315176127375761273661222f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061277882611dc1565b915061278383611dc1565b9250826127935761279261273e565b5b828204905092915050565b60006127a982611dc1565b91506127b483611dc1565b92508282039050818111156127cc576127cb61222f565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612808602083611cb7565b9150612813826127d2565b602082019050919050565b60006020820190508181036000830152612837816127fb565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061289a602183611cb7565b91506128a58261283e565b604082019050919050565b600060208201905081810360008301526128c98161288d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061292c602283611cb7565b9150612937826128d0565b604082019050919050565b6000602082019050818103600083015261295b8161291f565b905091905056fea26469706673582212204252496f2636d28b659c038c43ccbd4afa7d310486aab8c50fde322835b86be164736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000f1bb6d51d61e69b0827a56b59518085c92a485380000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000c4c4c4d2050726f746f636f6c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c4c4d0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806394f78767116100f9578063d63cad2211610097578063ee99205c11610071578063ee99205c14610507578063f242ab4114610525578063f25f4b5614610543578063f2fde38b14610561576101c4565b8063d63cad221461048b578063dd62ed3e146104a7578063e57f14e1146104d7576101c4565b80639ef833d4116100d35780639ef833d4146103f3578063a457c2d71461040f578063a9059cbb1461043f578063ae36f5c81461046f576101c4565b806394f787671461039b57806395d89b41146103b95780639dd373b9146103d7576101c4565b8063395093511161016657806370a082311161014057806370a0823114610327578063715018a6146103575780638da5cb5b1461036157806390d49b9d1461037f576101c4565b806339509351146102bd57806340ec4e91146102ed57806342966c681461030b576101c4565b806318160ddd116101a257806318160ddd1461023557806323b872dd146102535780632e92f74e14610283578063313ce5671461029f576101c4565b8063056764b1146101c957806306fdde03146101e7578063095ea7b314610205575b600080fd5b6101d161057d565b6040516101de9190611c91565b60405180910390f35b6101ef610591565b6040516101fc9190611d3c565b60405180910390f35b61021f600480360381019061021a9190611df7565b610623565b60405161022c9190611e52565b60405180910390f35b61023d610646565b60405161024a9190611e7c565b60405180910390f35b61026d60048036038101906102689190611e97565b610650565b60405161027a9190611e52565b60405180910390f35b61029d60048036038101906102989190611f16565b61067f565b005b6102a76106ba565b6040516102b49190611f5f565b60405180910390f35b6102d760048036038101906102d29190611df7565b6106c3565b6040516102e49190611e52565b60405180910390f35b6102f56106fa565b6040516103029190611c91565b60405180910390f35b61032560048036038101906103209190611f7a565b61070e565b005b610341600480360381019061033c9190611fa7565b610722565b60405161034e9190611e7c565b60405180910390f35b61035f61076b565b005b61036961077f565b6040516103769190611fe3565b60405180910390f35b61039960048036038101906103949190611fa7565b6107a8565b005b6103a3610885565b6040516103b09190611c91565b60405180910390f35b6103c1610899565b6040516103ce9190611d3c565b60405180910390f35b6103f160048036038101906103ec919061203c565b61092b565b005b61040d60048036038101906104089190612069565b610a08565b005b61042960048036038101906104249190611df7565b610a76565b6040516104369190611e52565b60405180910390f35b61045960048036038101906104549190611df7565b610aed565b6040516104669190611e52565b60405180910390f35b61048960048036038101906104849190611fa7565b610b10565b005b6104a560048036038101906104a091906120d5565b610b5c565b005b6104c160048036038101906104bc9190612115565b610bbf565b6040516104ce9190611e7c565b60405180910390f35b6104f160048036038101906104ec9190611fa7565b610c46565b6040516104fe9190611e52565b60405180910390f35b61050f610c66565b60405161051c91906121b4565b60405180910390f35b61052d610c8c565b60405161053a9190611fe3565b60405180910390f35b61054b610cb2565b6040516105589190611fe3565b60405180910390f35b61057b60048036038101906105769190611fa7565b610cd8565b005b600760049054906101000a900461ffff1681565b6060600180546105a0906121fe565b80601f01602080910402602001604051908101604052809291908181526020018280546105cc906121fe565b80156106195780601f106105ee57610100808354040283529160200191610619565b820191906000526020600020905b8154815290600101906020018083116105fc57829003601f168201915b5050505050905090565b60008061062e610d5b565b905061063b818585610d63565b600191505092915050565b6000600654905090565b60008061065b610d5b565b9050610668858285610f2c565b610673858585610fb8565b60019150509392505050565b61068761197b565b6127108161ffff16111561069a57600080fd5b80600760046101000a81548161ffff021916908361ffff16021790555050565b60006012905090565b6000806106ce610d5b565b90506106ef8185856106e08589610bbf565b6106ea919061225e565b610d63565b600191505092915050565b600760009054906101000a900461ffff1681565b61071f610719610d5b565b826119f9565b50565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61077361197b565b61077d6000611bb0565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6107b061197b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107e957600080fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600760029054906101000a900461ffff1681565b6060600280546108a8906121fe565b80601f01602080910402602001604051908101604052809291908181526020018280546108d4906121fe565b80156109215780601f106108f657610100808354040283529160200191610921565b820191906000526020600020905b81548152906001019060200180831161090457829003601f168201915b5050505050905090565b61093361197b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361096c57600080fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610a1061197b565b6127108261ffff161115610a2357600080fd5b8161ffff168161ffff161115610a3857600080fd5b81600760006101000a81548161ffff021916908361ffff16021790555080600760026101000a81548161ffff021916908361ffff1602179055505050565b600080610a81610d5b565b90506000610a8f8286610bbf565b905083811015610ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acb90612304565b60405180910390fd5b610ae18286868403610d63565b60019250505092915050565b600080610af8610d5b565b9050610b05818585610fb8565b600191505092915050565b610b1861197b565b80600760066101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610b6461197b565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60056020528060005260406000206000915054906101000a900460ff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760069054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ce061197b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690612396565b60405180910390fd5b610d5881611bb0565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc990612428565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e38906124ba565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f1f9190611e7c565b60405180910390a3505050565b6000610f388484610bbf565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fb25781811015610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b90612526565b60405180910390fd5b610fb18484848403610d63565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e906125b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d9061264a565b60405180910390fd5b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561111d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611114906126dc565b60405180910390fd5b600760069054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806111c65750600760069054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b801561121c5750600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156112725750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561186a576000612710600760009054906101000a900461ffff1661ffff168461129c91906126fc565b6112a6919061276d565b90506000612710600760029054906101000a900461ffff1661ffff16856112cd91906126fc565b6112d7919061276d565b9050818111156112e657600080fd5b600081836112f4919061279e565b905060008386611304919061279e565b90508585611312919061279e565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760069054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614806113c557506000600760049054906101000a900461ffff1661ffff16145b806114485750612710600760049054906101000a900461ffff1661ffff166006546113f091906126fc565b6113fa919061276d565b81600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611445919061225e565b11155b61145157600080fd5b80600360008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114a0919061225e565b925050819055508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115049190611e7c565b60405180910390a3600082111561167057600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361157057600080fd5b8160036000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115e1919061225e565b92505081905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116679190611e7c565b60405180910390a35b600083111561186157600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036116d457600080fd5b8260036000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611745919061225e565b92505081905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635917b852846040518263ffffffff1660e01b81526004016117a79190611e7c565b600060405180830381600087803b1580156117c157600080fd5b505af11580156117d5573d6000803e3d6000fd5b50505050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516118589190611e7c565b60405180910390a35b50505050611975565b8181611876919061279e565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611908919061225e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161196c9190611e7c565b60405180910390a35b50505050565b611983610d5b565b73ffffffffffffffffffffffffffffffffffffffff166119a161077f565b73ffffffffffffffffffffffffffffffffffffffff16146119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee9061281e565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5f906128b0565b60405180910390fd5b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae690612942565b60405180910390fd5b818103600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600660008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ba39190611e7c565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061ffff82169050919050565b611c8b81611c74565b82525050565b6000602082019050611ca66000830184611c82565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ce6578082015181840152602081019050611ccb565b60008484015250505050565b6000601f19601f8301169050919050565b6000611d0e82611cac565b611d188185611cb7565b9350611d28818560208601611cc8565b611d3181611cf2565b840191505092915050565b60006020820190508181036000830152611d568184611d03565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d8e82611d63565b9050919050565b611d9e81611d83565b8114611da957600080fd5b50565b600081359050611dbb81611d95565b92915050565b6000819050919050565b611dd481611dc1565b8114611ddf57600080fd5b50565b600081359050611df181611dcb565b92915050565b60008060408385031215611e0e57611e0d611d5e565b5b6000611e1c85828601611dac565b9250506020611e2d85828601611de2565b9150509250929050565b60008115159050919050565b611e4c81611e37565b82525050565b6000602082019050611e676000830184611e43565b92915050565b611e7681611dc1565b82525050565b6000602082019050611e916000830184611e6d565b92915050565b600080600060608486031215611eb057611eaf611d5e565b5b6000611ebe86828701611dac565b9350506020611ecf86828701611dac565b9250506040611ee086828701611de2565b9150509250925092565b611ef381611c74565b8114611efe57600080fd5b50565b600081359050611f1081611eea565b92915050565b600060208284031215611f2c57611f2b611d5e565b5b6000611f3a84828501611f01565b91505092915050565b600060ff82169050919050565b611f5981611f43565b82525050565b6000602082019050611f746000830184611f50565b92915050565b600060208284031215611f9057611f8f611d5e565b5b6000611f9e84828501611de2565b91505092915050565b600060208284031215611fbd57611fbc611d5e565b5b6000611fcb84828501611dac565b91505092915050565b611fdd81611d83565b82525050565b6000602082019050611ff86000830184611fd4565b92915050565b600061200982611d83565b9050919050565b61201981611ffe565b811461202457600080fd5b50565b60008135905061203681612010565b92915050565b60006020828403121561205257612051611d5e565b5b600061206084828501612027565b91505092915050565b600080604083850312156120805761207f611d5e565b5b600061208e85828601611f01565b925050602061209f85828601611f01565b9150509250929050565b6120b281611e37565b81146120bd57600080fd5b50565b6000813590506120cf816120a9565b92915050565b600080604083850312156120ec576120eb611d5e565b5b60006120fa85828601611dac565b925050602061210b858286016120c0565b9150509250929050565b6000806040838503121561212c5761212b611d5e565b5b600061213a85828601611dac565b925050602061214b85828601611dac565b9150509250929050565b6000819050919050565b600061217a61217561217084611d63565b612155565b611d63565b9050919050565b600061218c8261215f565b9050919050565b600061219e82612181565b9050919050565b6121ae81612193565b82525050565b60006020820190506121c960008301846121a5565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061221657607f821691505b602082108103612229576122286121cf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061226982611dc1565b915061227483611dc1565b925082820190508082111561228c5761228b61222f565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006122ee602583611cb7565b91506122f982612292565b604082019050919050565b6000602082019050818103600083015261231d816122e1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612380602683611cb7565b915061238b82612324565b604082019050919050565b600060208201905081810360008301526123af81612373565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612412602483611cb7565b915061241d826123b6565b604082019050919050565b6000602082019050818103600083015261244181612405565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006124a4602283611cb7565b91506124af82612448565b604082019050919050565b600060208201905081810360008301526124d381612497565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612510601d83611cb7565b915061251b826124da565b602082019050919050565b6000602082019050818103600083015261253f81612503565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006125a2602583611cb7565b91506125ad82612546565b604082019050919050565b600060208201905081810360008301526125d181612595565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612634602383611cb7565b915061263f826125d8565b604082019050919050565b6000602082019050818103600083015261266381612627565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006126c6602683611cb7565b91506126d18261266a565b604082019050919050565b600060208201905081810360008301526126f5816126b9565b9050919050565b600061270782611dc1565b915061271283611dc1565b925082820261272081611dc1565b915082820484148315176127375761273661222f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061277882611dc1565b915061278383611dc1565b9250826127935761279261273e565b5b828204905092915050565b60006127a982611dc1565b91506127b483611dc1565b92508282039050818111156127cc576127cb61222f565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612808602083611cb7565b9150612813826127d2565b602082019050919050565b60006020820190508181036000830152612837816127fb565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061289a602183611cb7565b91506128a58261283e565b604082019050919050565b600060208201905081810360008301526128c98161288d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061292c602283611cb7565b9150612937826128d0565b604082019050919050565b6000602082019050818103600083015261295b8161291f565b905091905056fea26469706673582212204252496f2636d28b659c038c43ccbd4afa7d310486aab8c50fde322835b86be164736f6c63430008130033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000f1bb6d51d61e69b0827a56b59518085c92a485380000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000c4c4c4d2050726f746f636f6c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c4c4d0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): LLM Protocol
Arg [1] : symbol_ (string): LLM
Arg [2] : feeWallet_ (address): 0xF1Bb6d51D61e69B0827a56b59518085c92A48538
Arg [3] : feeBpsTotal_ (uint16): 3000
Arg [4] : feeBpsToStakers_ (uint16): 100
Arg [5] : maxBpsPerWallet_ (uint16): 50

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 000000000000000000000000f1bb6d51d61e69b0827a56b59518085c92a48538
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000bb8
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [7] : 4c4c4d2050726f746f636f6c0000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 4c4c4d0000000000000000000000000000000000000000000000000000000000


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.