ETH Price: $3,385.00 (-1.80%)
Gas: 1 Gwei

Token

ERC20 ***
 

Overview

Max Total Supply

1,000,000 ERC20 ***

Holders

150

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,525.55270793487419692 ERC20 ***

Value
$0.00
0x0d5da38c9ec77c50c1aad5e58341338882299e82
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:
ExtendAIProtocol02

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : 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 2 of 8 : 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 3 of 8 : 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 4 of 8 : 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 5 of 8 : ExtendAIProtocol02.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

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

contract ExtendAIProtocol02 is Context, IERC20, IERC20Metadata, Ownable {
    string private _name;
    string private _symbol;
    uint256 private _totalSupply;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    address public uniswapPair;
    address public lpWallet;
    mapping(address => bool) public excludeFromTax;
    uint16 public taxBps;
    uint256 public VERSION = 2;

    constructor(uint256 totalSupply_, address lpWallet_) {
        require(lpWallet_!=address(0));

        _name = "ExtendAI Protocol";
        _symbol = "GPU";
        lpWallet = lpWallet_;

        excludeFromTax[msg.sender] = true;
        excludeFromTax[lpWallet_] = true;

        // No further minting possible
        _mint(msg.sender, totalSupply_);
    }

    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==uniswapPair || to==uniswapPair) &&
            !excludeFromTax[from] &&
            !excludeFromTax[to]) {
            uint256 tax = amount * taxBps / 10000;
            uint256 receiveAmount = amount - tax;

            _balances[from] = fromBalance - amount;

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

            if (tax > 0) {
                require(lpWallet!=address(0));

                _balances[lpWallet] += tax;
                emit Transfer(from, lpWallet, tax);
            }
        }
        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(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);
            }
        }
    }

    function initUniswapPair(IUniswapV2Router02 router) public onlyOwner {
        require(address(router)!=address(0));
        IUniswapV2Factory factory = IUniswapV2Factory(router.factory());
        uniswapPair = factory.createPair(address(this), router.WETH());
    }

    function setUniswapPair(address uniswapPair_) public onlyOwner {
        require(uniswapPair_!=address(0));
        uniswapPair = uniswapPair_;
    }

    function setTax(uint16 taxBps_) public onlyOwner {
        require(taxBps_ <= 10000);

        taxBps = taxBps_;
    }

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

    function setLpWallet(address lpWallet_) public onlyOwner {
        require(lpWallet_!=address(0));
        lpWallet = lpWallet_;
        excludeFromTax[lpWallet_] = true;
    }
}

File 6 of 8 : 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 7 of 8 : 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 8 of 8 : 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":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"address","name":"lpWallet_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[],"name":"VERSION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludeFromTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"contract IUniswapV2Router02","name":"router","type":"address"}],"name":"initUniswapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lpWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setExcludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpWallet_","type":"address"}],"name":"setLpWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"taxBps_","type":"uint16"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"uniswapPair_","type":"address"}],"name":"setUniswapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxBps","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526002600a553480156200001657600080fd5b5060405162002c4938038062002c4983398181016040528101906200003c9190620004e6565b6200005c620000506200022f60201b60201c565b6200023760201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200009657600080fd5b6040518060400160405280601181526020017f457874656e6441492050726f746f636f6c00000000000000000000000000000081525060019081620000dc91906200079d565b506040518060400160405280600381526020017f4750550000000000000000000000000000000000000000000000000000000000815250600290816200012391906200079d565b5080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002273383620002fb60201b60201c565b50506200099f565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200036d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036490620008e5565b60405180910390fd5b806003600082825462000381919062000936565b9250508190555080600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000435919062000982565b60405180910390a35050565b600080fd5b6000819050919050565b6200045b8162000446565b81146200046757600080fd5b50565b6000815190506200047b8162000450565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620004ae8262000481565b9050919050565b620004c081620004a1565b8114620004cc57600080fd5b50565b600081519050620004e081620004b5565b92915050565b600080604083850312156200050057620004ff62000441565b5b600062000510858286016200046a565b92505060206200052385828601620004cf565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005af57607f821691505b602082108103620005c557620005c462000567565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200062f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005f0565b6200063b8683620005f0565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200067e62000678620006728462000446565b62000653565b62000446565b9050919050565b6000819050919050565b6200069a836200065d565b620006b2620006a98262000685565b848454620005fd565b825550505050565b600090565b620006c9620006ba565b620006d68184846200068f565b505050565b5b81811015620006fe57620006f2600082620006bf565b600181019050620006dc565b5050565b601f8211156200074d576200071781620005cb565b6200072284620005e0565b8101602085101562000732578190505b6200074a6200074185620005e0565b830182620006db565b50505b505050565b600082821c905092915050565b6000620007726000198460080262000752565b1980831691505092915050565b60006200078d83836200075f565b9150826002028217905092915050565b620007a8826200052d565b67ffffffffffffffff811115620007c457620007c362000538565b5b620007d0825462000596565b620007dd82828562000702565b600060209050601f83116001811462000815576000841562000800578287015190505b6200080c85826200077f565b8655506200087c565b601f1984166200082586620005cb565b60005b828110156200084f5784890151825560018201915060208501945060208101905062000828565b868310156200086f57848901516200086b601f8916826200075f565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620008cd601f8362000884565b9150620008da8262000895565b602082019050919050565b600060208201905081810360008301526200090081620008be565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620009438262000446565b9150620009508362000446565b92508282019050808211156200096b576200096a62000907565b5b92915050565b6200097c8162000446565b82525050565b600060208201905062000999600083018462000971565b92915050565b61229a80620009af6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063c816841b1161007c578063c816841b146103dd578063d5aed6bf146103fb578063d63cad2214610417578063dd62ed3e14610433578063f2fde38b14610463578063ffa1ad741461047f57610158565b806370a0823114610307578063715018a6146103375780638da5cb5b1461034157806395d89b411461035f578063a457c2d71461037d578063a9059cbb146103ad57610158565b8063395093511161011557806339509351146102335780633ad1d1d2146102635780633eacd2f81461027f578063468c7ee21461029d57806360d1259e146102b95780636303516c146102e957610158565b806306fdde031461015d578063095ea7b31461017b57806318160ddd146101ab57806323b872dd146101c9578063313ce567146101f9578063319f5f6a14610217575b600080fd5b61016561049d565b60405161017291906117a6565b60405180910390f35b61019560048036038101906101909190611861565b61052f565b6040516101a291906118bc565b60405180910390f35b6101b3610552565b6040516101c091906118e6565b60405180910390f35b6101e360048036038101906101de9190611901565b61055c565b6040516101f091906118bc565b60405180910390f35b61020161058b565b60405161020e9190611970565b60405180910390f35b610231600480360381019061022c91906119c5565b610594565b005b61024d60048036038101906102489190611861565b6105cf565b60405161025a91906118bc565b60405180910390f35b61027d60048036038101906102789190611a30565b610606565b005b6102876107ea565b6040516102949190611a6c565b60405180910390f35b6102b760048036038101906102b29190611a87565b6107fe565b005b6102d360048036038101906102ce9190611a87565b6108db565b6040516102e091906118bc565b60405180910390f35b6102f16108fb565b6040516102fe9190611ac3565b60405180910390f35b610321600480360381019061031c9190611a87565b610921565b60405161032e91906118e6565b60405180910390f35b61033f61096a565b005b61034961097e565b6040516103569190611ac3565b60405180910390f35b6103676109a7565b60405161037491906117a6565b60405180910390f35b61039760048036038101906103929190611861565b610a39565b6040516103a491906118bc565b60405180910390f35b6103c760048036038101906103c29190611861565b610ab0565b6040516103d491906118bc565b60405180910390f35b6103e5610ad3565b6040516103f29190611ac3565b60405180910390f35b61041560048036038101906104109190611a87565b610af9565b005b610431600480360381019061042c9190611b0a565b610b7e565b005b61044d60048036038101906104489190611b4a565b610be1565b60405161045a91906118e6565b60405180910390f35b61047d60048036038101906104789190611a87565b610c68565b005b610487610ceb565b60405161049491906118e6565b60405180910390f35b6060600180546104ac90611bb9565b80601f01602080910402602001604051908101604052809291908181526020018280546104d890611bb9565b80156105255780601f106104fa57610100808354040283529160200191610525565b820191906000526020600020905b81548152906001019060200180831161050857829003601f168201915b5050505050905090565b60008061053a610cf1565b9050610547818585610cf9565b600191505092915050565b6000600354905090565b600080610567610cf1565b9050610574858285610ec2565b61057f858585610f4e565b60019150509392505050565b60006012905090565b61059c6115d4565b6127108161ffff1611156105af57600080fd5b80600960006101000a81548161ffff021916908361ffff16021790555050565b6000806105da610cf1565b90506105fb8185856105ec8589610be1565b6105f69190611c19565b610cf9565b600191505092915050565b61060e6115d4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361064757600080fd5b60008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610694573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b89190611c62565b90508073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610722573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107469190611c62565b6040518363ffffffff1660e01b8152600401610763929190611c8f565b6020604051808303816000875af1158015610782573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107a69190611c62565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600960009054906101000a900461ffff1681565b6108066115d4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361083f57600080fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60086020528060005260406000206000915054906101000a900460ff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109726115d4565b61097c6000611652565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546109b690611bb9565b80601f01602080910402602001604051908101604052809291908181526020018280546109e290611bb9565b8015610a2f5780601f10610a0457610100808354040283529160200191610a2f565b820191906000526020600020905b815481529060010190602001808311610a1257829003601f168201915b5050505050905090565b600080610a44610cf1565b90506000610a528286610be1565b905083811015610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e90611d2a565b60405180910390fd5b610aa48286868403610cf9565b60019250505092915050565b600080610abb610cf1565b9050610ac8818585610f4e565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b016115d4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b3a57600080fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610b866115d4565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c706115d4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690611dbc565b60405180910390fd5b610ce881611652565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f90611e4e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce90611ee0565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610eb591906118e6565b60405180910390a3505050565b6000610ece8484610be1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f485781811015610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3190611f4c565b60405180910390fd5b610f478484848403610cf9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490611fde565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361102c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102390612070565b60405180910390fd5b6000600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa90612102565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061115c5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80156111b25750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156112085750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156114c3576000612710600960009054906101000a900461ffff1661ffff16846112329190612122565b61123c9190612193565b90506000818461124c91906121c4565b9050838361125a91906121c4565b600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112ec9190611c19565b925050819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161135091906118e6565b60405180910390a360008211156114bc57600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036113bc57600080fd5b8160046000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461142d9190611c19565b92505081905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114b391906118e6565b60405180910390a35b50506115ce565b81816114cf91906121c4565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115619190611c19565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115c591906118e6565b60405180910390a35b50505050565b6115dc610cf1565b73ffffffffffffffffffffffffffffffffffffffff166115fa61097e565b73ffffffffffffffffffffffffffffffffffffffff1614611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790612244565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611750578082015181840152602081019050611735565b60008484015250505050565b6000601f19601f8301169050919050565b600061177882611716565b6117828185611721565b9350611792818560208601611732565b61179b8161175c565b840191505092915050565b600060208201905081810360008301526117c0818461176d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117f8826117cd565b9050919050565b611808816117ed565b811461181357600080fd5b50565b600081359050611825816117ff565b92915050565b6000819050919050565b61183e8161182b565b811461184957600080fd5b50565b60008135905061185b81611835565b92915050565b60008060408385031215611878576118776117c8565b5b600061188685828601611816565b92505060206118978582860161184c565b9150509250929050565b60008115159050919050565b6118b6816118a1565b82525050565b60006020820190506118d160008301846118ad565b92915050565b6118e08161182b565b82525050565b60006020820190506118fb60008301846118d7565b92915050565b60008060006060848603121561191a576119196117c8565b5b600061192886828701611816565b935050602061193986828701611816565b925050604061194a8682870161184c565b9150509250925092565b600060ff82169050919050565b61196a81611954565b82525050565b60006020820190506119856000830184611961565b92915050565b600061ffff82169050919050565b6119a28161198b565b81146119ad57600080fd5b50565b6000813590506119bf81611999565b92915050565b6000602082840312156119db576119da6117c8565b5b60006119e9848285016119b0565b91505092915050565b60006119fd826117ed565b9050919050565b611a0d816119f2565b8114611a1857600080fd5b50565b600081359050611a2a81611a04565b92915050565b600060208284031215611a4657611a456117c8565b5b6000611a5484828501611a1b565b91505092915050565b611a668161198b565b82525050565b6000602082019050611a816000830184611a5d565b92915050565b600060208284031215611a9d57611a9c6117c8565b5b6000611aab84828501611816565b91505092915050565b611abd816117ed565b82525050565b6000602082019050611ad86000830184611ab4565b92915050565b611ae7816118a1565b8114611af257600080fd5b50565b600081359050611b0481611ade565b92915050565b60008060408385031215611b2157611b206117c8565b5b6000611b2f85828601611816565b9250506020611b4085828601611af5565b9150509250929050565b60008060408385031215611b6157611b606117c8565b5b6000611b6f85828601611816565b9250506020611b8085828601611816565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611bd157607f821691505b602082108103611be457611be3611b8a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c248261182b565b9150611c2f8361182b565b9250828201905080821115611c4757611c46611bea565b5b92915050565b600081519050611c5c816117ff565b92915050565b600060208284031215611c7857611c776117c8565b5b6000611c8684828501611c4d565b91505092915050565b6000604082019050611ca46000830185611ab4565b611cb16020830184611ab4565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d14602583611721565b9150611d1f82611cb8565b604082019050919050565b60006020820190508181036000830152611d4381611d07565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611da6602683611721565b9150611db182611d4a565b604082019050919050565b60006020820190508181036000830152611dd581611d99565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611e38602483611721565b9150611e4382611ddc565b604082019050919050565b60006020820190508181036000830152611e6781611e2b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611eca602283611721565b9150611ed582611e6e565b604082019050919050565b60006020820190508181036000830152611ef981611ebd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611f36601d83611721565b9150611f4182611f00565b602082019050919050565b60006020820190508181036000830152611f6581611f29565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611fc8602583611721565b9150611fd382611f6c565b604082019050919050565b60006020820190508181036000830152611ff781611fbb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061205a602383611721565b915061206582611ffe565b604082019050919050565b600060208201905081810360008301526120898161204d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120ec602683611721565b91506120f782612090565b604082019050919050565b6000602082019050818103600083015261211b816120df565b9050919050565b600061212d8261182b565b91506121388361182b565b92508282026121468161182b565b9150828204841483151761215d5761215c611bea565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061219e8261182b565b91506121a98361182b565b9250826121b9576121b8612164565b5b828204905092915050565b60006121cf8261182b565b91506121da8361182b565b92508282039050818111156121f2576121f1611bea565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061222e602083611721565b9150612239826121f8565b602082019050919050565b6000602082019050818103600083015261225d81612221565b905091905056fea26469706673582212206a2dd1e5541f48443d72ecba59cf0f428ea8de89cbec889be8cf933dc456060f64736f6c6343000813003300000000000000000000000000000000000000000000d3c21bcecceda1000000000000000000000000000000e49437abc7f592ab99557d2629b19be2e74cca7c

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063c816841b1161007c578063c816841b146103dd578063d5aed6bf146103fb578063d63cad2214610417578063dd62ed3e14610433578063f2fde38b14610463578063ffa1ad741461047f57610158565b806370a0823114610307578063715018a6146103375780638da5cb5b1461034157806395d89b411461035f578063a457c2d71461037d578063a9059cbb146103ad57610158565b8063395093511161011557806339509351146102335780633ad1d1d2146102635780633eacd2f81461027f578063468c7ee21461029d57806360d1259e146102b95780636303516c146102e957610158565b806306fdde031461015d578063095ea7b31461017b57806318160ddd146101ab57806323b872dd146101c9578063313ce567146101f9578063319f5f6a14610217575b600080fd5b61016561049d565b60405161017291906117a6565b60405180910390f35b61019560048036038101906101909190611861565b61052f565b6040516101a291906118bc565b60405180910390f35b6101b3610552565b6040516101c091906118e6565b60405180910390f35b6101e360048036038101906101de9190611901565b61055c565b6040516101f091906118bc565b60405180910390f35b61020161058b565b60405161020e9190611970565b60405180910390f35b610231600480360381019061022c91906119c5565b610594565b005b61024d60048036038101906102489190611861565b6105cf565b60405161025a91906118bc565b60405180910390f35b61027d60048036038101906102789190611a30565b610606565b005b6102876107ea565b6040516102949190611a6c565b60405180910390f35b6102b760048036038101906102b29190611a87565b6107fe565b005b6102d360048036038101906102ce9190611a87565b6108db565b6040516102e091906118bc565b60405180910390f35b6102f16108fb565b6040516102fe9190611ac3565b60405180910390f35b610321600480360381019061031c9190611a87565b610921565b60405161032e91906118e6565b60405180910390f35b61033f61096a565b005b61034961097e565b6040516103569190611ac3565b60405180910390f35b6103676109a7565b60405161037491906117a6565b60405180910390f35b61039760048036038101906103929190611861565b610a39565b6040516103a491906118bc565b60405180910390f35b6103c760048036038101906103c29190611861565b610ab0565b6040516103d491906118bc565b60405180910390f35b6103e5610ad3565b6040516103f29190611ac3565b60405180910390f35b61041560048036038101906104109190611a87565b610af9565b005b610431600480360381019061042c9190611b0a565b610b7e565b005b61044d60048036038101906104489190611b4a565b610be1565b60405161045a91906118e6565b60405180910390f35b61047d60048036038101906104789190611a87565b610c68565b005b610487610ceb565b60405161049491906118e6565b60405180910390f35b6060600180546104ac90611bb9565b80601f01602080910402602001604051908101604052809291908181526020018280546104d890611bb9565b80156105255780601f106104fa57610100808354040283529160200191610525565b820191906000526020600020905b81548152906001019060200180831161050857829003601f168201915b5050505050905090565b60008061053a610cf1565b9050610547818585610cf9565b600191505092915050565b6000600354905090565b600080610567610cf1565b9050610574858285610ec2565b61057f858585610f4e565b60019150509392505050565b60006012905090565b61059c6115d4565b6127108161ffff1611156105af57600080fd5b80600960006101000a81548161ffff021916908361ffff16021790555050565b6000806105da610cf1565b90506105fb8185856105ec8589610be1565b6105f69190611c19565b610cf9565b600191505092915050565b61060e6115d4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361064757600080fd5b60008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610694573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b89190611c62565b90508073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610722573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107469190611c62565b6040518363ffffffff1660e01b8152600401610763929190611c8f565b6020604051808303816000875af1158015610782573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107a69190611c62565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600960009054906101000a900461ffff1681565b6108066115d4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361083f57600080fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60086020528060005260406000206000915054906101000a900460ff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109726115d4565b61097c6000611652565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546109b690611bb9565b80601f01602080910402602001604051908101604052809291908181526020018280546109e290611bb9565b8015610a2f5780601f10610a0457610100808354040283529160200191610a2f565b820191906000526020600020905b815481529060010190602001808311610a1257829003601f168201915b5050505050905090565b600080610a44610cf1565b90506000610a528286610be1565b905083811015610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e90611d2a565b60405180910390fd5b610aa48286868403610cf9565b60019250505092915050565b600080610abb610cf1565b9050610ac8818585610f4e565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b016115d4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b3a57600080fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610b866115d4565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c706115d4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690611dbc565b60405180910390fd5b610ce881611652565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f90611e4e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce90611ee0565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610eb591906118e6565b60405180910390a3505050565b6000610ece8484610be1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f485781811015610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3190611f4c565b60405180910390fd5b610f478484848403610cf9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490611fde565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361102c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102390612070565b60405180910390fd5b6000600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa90612102565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061115c5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80156111b25750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156112085750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156114c3576000612710600960009054906101000a900461ffff1661ffff16846112329190612122565b61123c9190612193565b90506000818461124c91906121c4565b9050838361125a91906121c4565b600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112ec9190611c19565b925050819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161135091906118e6565b60405180910390a360008211156114bc57600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036113bc57600080fd5b8160046000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461142d9190611c19565b92505081905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114b391906118e6565b60405180910390a35b50506115ce565b81816114cf91906121c4565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115619190611c19565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115c591906118e6565b60405180910390a35b50505050565b6115dc610cf1565b73ffffffffffffffffffffffffffffffffffffffff166115fa61097e565b73ffffffffffffffffffffffffffffffffffffffff1614611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790612244565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611750578082015181840152602081019050611735565b60008484015250505050565b6000601f19601f8301169050919050565b600061177882611716565b6117828185611721565b9350611792818560208601611732565b61179b8161175c565b840191505092915050565b600060208201905081810360008301526117c0818461176d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117f8826117cd565b9050919050565b611808816117ed565b811461181357600080fd5b50565b600081359050611825816117ff565b92915050565b6000819050919050565b61183e8161182b565b811461184957600080fd5b50565b60008135905061185b81611835565b92915050565b60008060408385031215611878576118776117c8565b5b600061188685828601611816565b92505060206118978582860161184c565b9150509250929050565b60008115159050919050565b6118b6816118a1565b82525050565b60006020820190506118d160008301846118ad565b92915050565b6118e08161182b565b82525050565b60006020820190506118fb60008301846118d7565b92915050565b60008060006060848603121561191a576119196117c8565b5b600061192886828701611816565b935050602061193986828701611816565b925050604061194a8682870161184c565b9150509250925092565b600060ff82169050919050565b61196a81611954565b82525050565b60006020820190506119856000830184611961565b92915050565b600061ffff82169050919050565b6119a28161198b565b81146119ad57600080fd5b50565b6000813590506119bf81611999565b92915050565b6000602082840312156119db576119da6117c8565b5b60006119e9848285016119b0565b91505092915050565b60006119fd826117ed565b9050919050565b611a0d816119f2565b8114611a1857600080fd5b50565b600081359050611a2a81611a04565b92915050565b600060208284031215611a4657611a456117c8565b5b6000611a5484828501611a1b565b91505092915050565b611a668161198b565b82525050565b6000602082019050611a816000830184611a5d565b92915050565b600060208284031215611a9d57611a9c6117c8565b5b6000611aab84828501611816565b91505092915050565b611abd816117ed565b82525050565b6000602082019050611ad86000830184611ab4565b92915050565b611ae7816118a1565b8114611af257600080fd5b50565b600081359050611b0481611ade565b92915050565b60008060408385031215611b2157611b206117c8565b5b6000611b2f85828601611816565b9250506020611b4085828601611af5565b9150509250929050565b60008060408385031215611b6157611b606117c8565b5b6000611b6f85828601611816565b9250506020611b8085828601611816565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611bd157607f821691505b602082108103611be457611be3611b8a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c248261182b565b9150611c2f8361182b565b9250828201905080821115611c4757611c46611bea565b5b92915050565b600081519050611c5c816117ff565b92915050565b600060208284031215611c7857611c776117c8565b5b6000611c8684828501611c4d565b91505092915050565b6000604082019050611ca46000830185611ab4565b611cb16020830184611ab4565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d14602583611721565b9150611d1f82611cb8565b604082019050919050565b60006020820190508181036000830152611d4381611d07565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611da6602683611721565b9150611db182611d4a565b604082019050919050565b60006020820190508181036000830152611dd581611d99565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611e38602483611721565b9150611e4382611ddc565b604082019050919050565b60006020820190508181036000830152611e6781611e2b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611eca602283611721565b9150611ed582611e6e565b604082019050919050565b60006020820190508181036000830152611ef981611ebd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611f36601d83611721565b9150611f4182611f00565b602082019050919050565b60006020820190508181036000830152611f6581611f29565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611fc8602583611721565b9150611fd382611f6c565b604082019050919050565b60006020820190508181036000830152611ff781611fbb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061205a602383611721565b915061206582611ffe565b604082019050919050565b600060208201905081810360008301526120898161204d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120ec602683611721565b91506120f782612090565b604082019050919050565b6000602082019050818103600083015261211b816120df565b9050919050565b600061212d8261182b565b91506121388361182b565b92508282026121468161182b565b9150828204841483151761215d5761215c611bea565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061219e8261182b565b91506121a98361182b565b9250826121b9576121b8612164565b5b828204905092915050565b60006121cf8261182b565b91506121da8361182b565b92508282039050818111156121f2576121f1611bea565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061222e602083611721565b9150612239826121f8565b602082019050919050565b6000602082019050818103600083015261225d81612221565b905091905056fea26469706673582212206a2dd1e5541f48443d72ecba59cf0f428ea8de89cbec889be8cf933dc456060f64736f6c63430008130033

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

00000000000000000000000000000000000000000000d3c21bcecceda1000000000000000000000000000000e49437abc7f592ab99557d2629b19be2e74cca7c

-----Decoded View---------------
Arg [0] : totalSupply_ (uint256): 1000000000000000000000000
Arg [1] : lpWallet_ (address): 0xe49437ABc7f592aB99557D2629B19BE2E74CCa7C

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000
Arg [1] : 000000000000000000000000e49437abc7f592ab99557d2629b19be2e74cca7c


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.