ETH Price: $3,393.79 (-1.24%)
Gas: 2 Gwei

Token

Rail (RAIL)
 

Overview

Max Total Supply

57,500,000 RAIL

Holders

3,257 ( -0.061%)

Market

Price

$0.68 @ 0.000200 ETH (-2.13%)

Onchain Market Cap

$39,121,447.50

Circulating Supply Market Cap

$39,085,705.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000000001 RAIL

Value
$0.00 ( ~0 Eth) [0.0000%]
0x2bbf864762d79c417809024077d5f75f835e27f1
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

RAILGUN can generate a verifiable report of actions and balances (for an auditor or compliance officer, for example), with a privacy preserving Zero Knowledge method.

Market

Volume (24H):$837,826.00
Market Capitalization:$39,085,705.00
Circulating Supply:57,500,000.00 RAIL
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RailToken

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 1600 runs

Other Settings:
default evmVersion
File 1 of 6 : Rail.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
pragma abicoder v2;

// OpenZeppelin v4
import { Ownable } from  "@openzeppelin/contracts/access/Ownable.sol";
import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";

/**
 * @title RailToken
 * @author Railgun Contributors
 * @notice ERC20 Railgun Governance Token
 */

contract RailToken is Ownable, ERC20 {
  // Time of deployment
  // solhint-disable-next-line var-name-mixedcase
  uint256 public DEPLOY_TIME = block.timestamp;
  
  // Time for anti-bot protections to be active
  uint256 private constant ANTI_BOT_LOCKTIME = 3 days;

  // Gwei
  uint256 private constant GWEI = 1e9;

  // Soft gas limit
  uint256 private constant ANTI_BOT_SOFT_GASLIMIT = 18 * GWEI;

  // Hard gas limit
  uint256 private constant ANTI_BOT_HARD_GASLIMIT = 100 * GWEI;

  // Anti-bot amount cap
  uint256 private constant ANTI_BOT_AMOUNT_CAP = 10000 * 10**18; // 10k

  // Minting cap
  uint256 public cap;

  // LPs
  mapping(address => bool) private lps;

  // Gardener
  address private constant GARDENER = 0x897BD7Ffae52BFB0F841Fab69ce97a50F6a74BbB;
  // Gardener might do some weeding, ask nicely :)

  /**
   * @notice Mints initial token supply
   */

  constructor(address _initialHolder, uint256 _initialSupply, uint256 _cap, address _owner, address[] memory _lps) ERC20("Rail", "RAIL") {
    // Save cap
    cap = _cap;

    // Mint initial tokens
    _mint(_initialHolder, _initialSupply);

    // Transfer ownership
    Ownable.transferOwnership(_owner);

    // Set LPs
    for (uint i = 0; i < _lps.length; i++) {
      lps[_lps[i]] = true;
    }
  }

  /**
   * @notice See ERC20._mint
   * @dev Overrides ERC20 mint to add hard cap check
   * @param _account - account to mint to
   * @param _amount - amount to mint
   */

  function _mint(address _account, uint256 _amount) internal override {
    require(ERC20.totalSupply() + _amount <= cap, "RailToken: Can't mint more than hard cap");
    super._mint(_account, _amount);
  }

  /**
   * @notice Mints new coins if governance contract requests
   * @dev ONLY MINTABLE IF GOVERNANCE PROCESS PASSES, CANNOT MINT MORE THAN HARD CAP (cap())
   * @param _account - account to mint to
   * @param _amount - amount to mint
   * @return success
   */

  function governanceMint(address _account, uint256 _amount) external onlyOwner returns (bool success) {
    _mint(_account, _amount);
    return true;
  }

  /**
   * @notice No bots
   * @dev OpenZeppelin ERC20 transfer override
   */

  function transfer(address _recipient, uint256 _amount) public virtual override returns (bool) {
    if (
      block.timestamp >= DEPLOY_TIME + ANTI_BOT_LOCKTIME
      // solhint-disable-next-line avoid-tx-origin
      || tx.origin == msg.sender
      // solhint-disable-next-line avoid-tx-origin
      || lps[tx.origin]
      || tx.gasprice <= ANTI_BOT_SOFT_GASLIMIT
    ) {
      _transfer(_msgSender(), _recipient, _amount);
    } else {
      // This one isn't too bad
      require(
        tx.gasprice < ANTI_BOT_HARD_GASLIMIT || _amount < ANTI_BOT_AMOUNT_CAP,
        "true"
      );
      // This bot gets a retry

      // Send bots to gardener
      _transfer(_msgSender(), GARDENER, _amount);
      // To the garden with you
    }

    return true;
  }
}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

File 4 of 6 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 5 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_initialHolder","type":"address"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"uint256","name":"_cap","type":"uint256"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address[]","name":"_lps","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":"DEPLOY_TIME","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":"cap","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":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"governanceMint","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":[],"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":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052426006553480156200001557600080fd5b506040516200164b3803806200164b8339810160408190526200003891620004f1565b6040518060400160405280600481526020016314985a5b60e21b815250604051806040016040528060048152602001631490525360e21b8152506000620000846200018d60201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350916000805160206200162b833981519152908290a3508151620000d29060049060208501906200042e565b508051620000e89060059060208401906200042e565b5050506007839055620000fc858562000191565b62000112826200023660201b620007221760201c565b60005b815181101562000181576001600860008484815181106200013a576200013a62000692565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558062000178816200065e565b91505062000115565b505050505050620006be565b3390565b60075481620001aa6200034360201b6200033d1760201c565b620001b6919062000606565b11156200021b5760405162461bcd60e51b815260206004820152602860248201527f5261696c546f6b656e3a2043616e2774206d696e74206d6f7265207468616e20604482015267068617264206361760c41b60648201526084015b60405180910390fd5b6200023282826200034960201b6200086b1760201c565b5050565b6000546001600160a01b03163314620002925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000212565b6001600160a01b038116620002f95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000212565b600080546040516001600160a01b03808516939216916000805160206200162b83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60035490565b6001600160a01b038216620003a15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000212565b8060036000828254620003b5919062000606565b90915550506001600160a01b03821660009081526001602052604081208054839290620003e490849062000606565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200043c9062000621565b90600052602060002090601f016020900481019282620004605760008555620004ab565b82601f106200047b57805160ff1916838001178555620004ab565b82800160010185558215620004ab579182015b82811115620004ab5782518255916020019190600101906200048e565b50620004b9929150620004bd565b5090565b5b80821115620004b95760008155600101620004be565b80516001600160a01b0381168114620004ec57600080fd5b919050565b600080600080600060a086880312156200050a57600080fd5b6200051586620004d4565b94506020808701519450604087015193506200053460608801620004d4565b60808801519093506001600160401b03808211156200055257600080fd5b818901915089601f8301126200056757600080fd5b8151818111156200057c576200057c620006a8565b8060051b604051601f19603f83011681018181108582111715620005a457620005a4620006a8565b604052828152858101935084860182860187018e1015620005c457600080fd5b600095505b83861015620005f257620005dd81620004d4565b855260019590950194938601938601620005c9565b508096505050505050509295509295909350565b600082198211156200061c576200061c6200067c565b500190565b600181811c908216806200063657607f821691505b602082108114156200065857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200067557620006756200067c565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b610f5d80620006ce6000396000f3fe608060405234801561001057600080fd5b506004361061011b5760003560e01c8063715018a6116100b2578063a457c2d711610081578063dd329b5c11610066578063dd329b5c14610236578063dd62ed3e14610249578063f2fde38b1461028257600080fd5b8063a457c2d714610210578063a9059cbb1461022357600080fd5b8063715018a6146101da5780638da5cb5b146101e457806390d92e76146101ff57806395d89b411461020857600080fd5b8063313ce567116100ee578063313ce56714610186578063355274ea14610195578063395093511461019e57806370a08231146101b157600080fd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd1461016157806323b872dd14610173575b600080fd5b610128610295565b6040516101359190610e33565b60405180910390f35b61015161014c366004610e09565b610327565b6040519015158152602001610135565b6003545b604051908152602001610135565b610151610181366004610dcd565b610343565b60405160128152602001610135565b61016560075481565b6101516101ac366004610e09565b61040e565b6101656101bf366004610d78565b6001600160a01b031660009081526001602052604090205490565b6101e2610445565b005b6000546040516001600160a01b039091168152602001610135565b61016560065481565b610128610501565b61015161021e366004610e09565b610510565b610151610231366004610e09565b6105c3565b610151610244366004610e09565b6106bd565b610165610257366004610d9a565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101e2610290366004610d78565b610722565b6060600480546102a490610ed6565b80601f01602080910402602001604051908101604052809291908181526020018280546102d090610ed6565b801561031d5780601f106102f25761010080835404028352916020019161031d565b820191906000526020600020905b81548152906001019060200180831161030057829003601f168201915b5050505050905090565b600061033433848461094a565b50600192915050565b60035490565b6000610350848484610aa2565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103ef5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61040385336103fe8685610ebf565b61094a565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103349185906103fe908690610e88565b6000546001600160a01b0316331461049f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103e6565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b6060600580546102a490610ed6565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105aa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016103e6565b6105b933856103fe8685610ebf565b5060019392505050565b60006203f4806006546105d69190610e88565b421015806105e357503233145b806105fd57503260009081526008602052604090205460ff165b806106165750610612633b9aca006012610ea0565b3a11155b1561062b57610626338484610aa2565b610334565b61063a633b9aca006064610ea0565b3a1080610650575069021e19e0c9bab240000082105b61069e5760405162461bcd60e51b81526004016103e69060208082526004908201527f7472756500000000000000000000000000000000000000000000000000000000604082015260600190565b6103343373897bd7ffae52bfb0f841fab69ce97a50f6a74bbb84610aa2565b600080546001600160a01b031633146107185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103e6565b6103348383610cc3565b6000546001600160a01b0316331461077c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103e6565b6001600160a01b0381166107f85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016103e6565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6001600160a01b0382166108c15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103e6565b80600360008282546108d39190610e88565b90915550506001600160a01b03821660009081526001602052604081208054839290610900908490610e88565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0383166109c55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016103e6565b6001600160a01b038216610a415760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016103e6565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b1e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103e6565b6001600160a01b038216610b9a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103e6565b6001600160a01b03831660009081526001602052604090205481811015610c295760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016103e6565b610c338282610ebf565b6001600160a01b038086166000908152600160205260408082209390935590851681529081208054849290610c69908490610e88565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cb591815260200190565b60405180910390a350505050565b60075481610cd060035490565b610cda9190610e88565b1115610d4e5760405162461bcd60e51b815260206004820152602860248201527f5261696c546f6b656e3a2043616e2774206d696e74206d6f7265207468616e2060448201527f686172642063617000000000000000000000000000000000000000000000000060648201526084016103e6565b610d58828261086b565b5050565b80356001600160a01b0381168114610d7357600080fd5b919050565b600060208284031215610d8a57600080fd5b610d9382610d5c565b9392505050565b60008060408385031215610dad57600080fd5b610db683610d5c565b9150610dc460208401610d5c565b90509250929050565b600080600060608486031215610de257600080fd5b610deb84610d5c565b9250610df960208501610d5c565b9150604084013590509250925092565b60008060408385031215610e1c57600080fd5b610e2583610d5c565b946020939093013593505050565b600060208083528351808285015260005b81811015610e6057858101830151858201604001528201610e44565b81811115610e72576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610e9b57610e9b610f11565b500190565b6000816000190483118215151615610eba57610eba610f11565b500290565b600082821015610ed157610ed1610f11565b500390565b600181811c90821680610eea57607f821691505b60208210811415610f0b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212209b6ae849d35a8b4daa1f9e89836aad3df7f1843bce503905181233ceb245945364736f6c634300080600338be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000000000000000000000076eb574eff49fb64de6f7f2854952b05b5e24624000000000000000000000000000000000000000000295be96e6406697200000000000000000000000000000000000000000000000052b7d2dcc80cd2e400000000000000000000000000000076eb574eff49fb64de6f7f2854952b05b5e2462400000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000018000000000000000000000000325bd50ded48e9072eb7759cbf9f93f13699dd1d000000000000000000000000878cca1f123fd9702e8fdf78ed6ee35a44fb6085000000000000000000000000ffa0fccd21516500299a7471870517415cbddb6e000000000000000000000000b1a7dca92fccbba989e5cd5bbc2b66d1ab923b3f0000000000000000000000007c53d0faaf5034adcff0d3521ada0d7b5bcb5933000000000000000000000000cf6fbcf41af73a2129c5ec9fe450eddcbfe1dccd000000000000000000000000f527cdaa85dcca821a4a87bedcc8cbf33c1293e9000000000000000000000000fc0e327a861a862b2f2f7fc44409ca158783cb5b00000000000000000000000065a3dcdc71cc5d61300f9b383955f4eeb0932ffa000000000000000000000000d02c0aa3ab2ead244a632bbdd93df6e6b300f62f0000000000000000000000001b4fb02ddc50951f6a8476cdf09f03e2f4f5ca100000000000000000000000002ece8f4d04c16f368930e633d55b8015d1a0008d000000000000000000000000fb48125b026dead986750fae2accbed29edf61980000000000000000000000005a670c9a7ef7b4330284a6669149962a464c4eae000000000000000000000000a4dc2373d9ea3ce968427161a01c4960a90b8431000000000000000000000000f1036958e7c38644250bacd66f633aec7ae156a30000000000000000000000006c1a47bda036f3ac130b020b02dcae384485075b0000000000000000000000004a10621011457cbcf5be6517f17c12ae356884cb0000000000000000000000002331060b1b43d925c7e2e84f9e65a36d93104cbd00000000000000000000000067e18de0aab10fa08747848fe1168ab9d9fa7b760000000000000000000000000b16a6984e4c9a5a74bcdae84e0b2f5b1169f6d400000000000000000000000066c128ef1980e86218de5179485ae16a7efb289a0000000000000000000000005f67e070a9e8a42ada20d31fe440074993321f9f00000000000000000000000076eb574eff49fb64de6f7f2854952b05b5e24624

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061011b5760003560e01c8063715018a6116100b2578063a457c2d711610081578063dd329b5c11610066578063dd329b5c14610236578063dd62ed3e14610249578063f2fde38b1461028257600080fd5b8063a457c2d714610210578063a9059cbb1461022357600080fd5b8063715018a6146101da5780638da5cb5b146101e457806390d92e76146101ff57806395d89b411461020857600080fd5b8063313ce567116100ee578063313ce56714610186578063355274ea14610195578063395093511461019e57806370a08231146101b157600080fd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd1461016157806323b872dd14610173575b600080fd5b610128610295565b6040516101359190610e33565b60405180910390f35b61015161014c366004610e09565b610327565b6040519015158152602001610135565b6003545b604051908152602001610135565b610151610181366004610dcd565b610343565b60405160128152602001610135565b61016560075481565b6101516101ac366004610e09565b61040e565b6101656101bf366004610d78565b6001600160a01b031660009081526001602052604090205490565b6101e2610445565b005b6000546040516001600160a01b039091168152602001610135565b61016560065481565b610128610501565b61015161021e366004610e09565b610510565b610151610231366004610e09565b6105c3565b610151610244366004610e09565b6106bd565b610165610257366004610d9a565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101e2610290366004610d78565b610722565b6060600480546102a490610ed6565b80601f01602080910402602001604051908101604052809291908181526020018280546102d090610ed6565b801561031d5780601f106102f25761010080835404028352916020019161031d565b820191906000526020600020905b81548152906001019060200180831161030057829003601f168201915b5050505050905090565b600061033433848461094a565b50600192915050565b60035490565b6000610350848484610aa2565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103ef5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61040385336103fe8685610ebf565b61094a565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103349185906103fe908690610e88565b6000546001600160a01b0316331461049f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103e6565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b6060600580546102a490610ed6565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105aa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016103e6565b6105b933856103fe8685610ebf565b5060019392505050565b60006203f4806006546105d69190610e88565b421015806105e357503233145b806105fd57503260009081526008602052604090205460ff165b806106165750610612633b9aca006012610ea0565b3a11155b1561062b57610626338484610aa2565b610334565b61063a633b9aca006064610ea0565b3a1080610650575069021e19e0c9bab240000082105b61069e5760405162461bcd60e51b81526004016103e69060208082526004908201527f7472756500000000000000000000000000000000000000000000000000000000604082015260600190565b6103343373897bd7ffae52bfb0f841fab69ce97a50f6a74bbb84610aa2565b600080546001600160a01b031633146107185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103e6565b6103348383610cc3565b6000546001600160a01b0316331461077c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103e6565b6001600160a01b0381166107f85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016103e6565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6001600160a01b0382166108c15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103e6565b80600360008282546108d39190610e88565b90915550506001600160a01b03821660009081526001602052604081208054839290610900908490610e88565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0383166109c55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016103e6565b6001600160a01b038216610a415760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016103e6565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b1e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103e6565b6001600160a01b038216610b9a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103e6565b6001600160a01b03831660009081526001602052604090205481811015610c295760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016103e6565b610c338282610ebf565b6001600160a01b038086166000908152600160205260408082209390935590851681529081208054849290610c69908490610e88565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cb591815260200190565b60405180910390a350505050565b60075481610cd060035490565b610cda9190610e88565b1115610d4e5760405162461bcd60e51b815260206004820152602860248201527f5261696c546f6b656e3a2043616e2774206d696e74206d6f7265207468616e2060448201527f686172642063617000000000000000000000000000000000000000000000000060648201526084016103e6565b610d58828261086b565b5050565b80356001600160a01b0381168114610d7357600080fd5b919050565b600060208284031215610d8a57600080fd5b610d9382610d5c565b9392505050565b60008060408385031215610dad57600080fd5b610db683610d5c565b9150610dc460208401610d5c565b90509250929050565b600080600060608486031215610de257600080fd5b610deb84610d5c565b9250610df960208501610d5c565b9150604084013590509250925092565b60008060408385031215610e1c57600080fd5b610e2583610d5c565b946020939093013593505050565b600060208083528351808285015260005b81811015610e6057858101830151858201604001528201610e44565b81811115610e72576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610e9b57610e9b610f11565b500190565b6000816000190483118215151615610eba57610eba610f11565b500290565b600082821015610ed157610ed1610f11565b500390565b600181811c90821680610eea57607f821691505b60208210811415610f0b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212209b6ae849d35a8b4daa1f9e89836aad3df7f1843bce503905181233ceb245945364736f6c63430008060033

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

00000000000000000000000076eb574eff49fb64de6f7f2854952b05b5e24624000000000000000000000000000000000000000000295be96e6406697200000000000000000000000000000000000000000000000052b7d2dcc80cd2e400000000000000000000000000000076eb574eff49fb64de6f7f2854952b05b5e2462400000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000018000000000000000000000000325bd50ded48e9072eb7759cbf9f93f13699dd1d000000000000000000000000878cca1f123fd9702e8fdf78ed6ee35a44fb6085000000000000000000000000ffa0fccd21516500299a7471870517415cbddb6e000000000000000000000000b1a7dca92fccbba989e5cd5bbc2b66d1ab923b3f0000000000000000000000007c53d0faaf5034adcff0d3521ada0d7b5bcb5933000000000000000000000000cf6fbcf41af73a2129c5ec9fe450eddcbfe1dccd000000000000000000000000f527cdaa85dcca821a4a87bedcc8cbf33c1293e9000000000000000000000000fc0e327a861a862b2f2f7fc44409ca158783cb5b00000000000000000000000065a3dcdc71cc5d61300f9b383955f4eeb0932ffa000000000000000000000000d02c0aa3ab2ead244a632bbdd93df6e6b300f62f0000000000000000000000001b4fb02ddc50951f6a8476cdf09f03e2f4f5ca100000000000000000000000002ece8f4d04c16f368930e633d55b8015d1a0008d000000000000000000000000fb48125b026dead986750fae2accbed29edf61980000000000000000000000005a670c9a7ef7b4330284a6669149962a464c4eae000000000000000000000000a4dc2373d9ea3ce968427161a01c4960a90b8431000000000000000000000000f1036958e7c38644250bacd66f633aec7ae156a30000000000000000000000006c1a47bda036f3ac130b020b02dcae384485075b0000000000000000000000004a10621011457cbcf5be6517f17c12ae356884cb0000000000000000000000002331060b1b43d925c7e2e84f9e65a36d93104cbd00000000000000000000000067e18de0aab10fa08747848fe1168ab9d9fa7b760000000000000000000000000b16a6984e4c9a5a74bcdae84e0b2f5b1169f6d400000000000000000000000066c128ef1980e86218de5179485ae16a7efb289a0000000000000000000000005f67e070a9e8a42ada20d31fe440074993321f9f00000000000000000000000076eb574eff49fb64de6f7f2854952b05b5e24624

-----Decoded View---------------
Arg [0] : _initialHolder (address): 0x76EB574EFF49FB64DE6f7F2854952B05B5E24624
Arg [1] : _initialSupply (uint256): 50000000000000000000000000
Arg [2] : _cap (uint256): 100000000000000000000000000
Arg [3] : _owner (address): 0x76EB574EFF49FB64DE6f7F2854952B05B5E24624
Arg [4] : _lps (address[]): 0x325Bd50DEd48E9072EB7759CBF9f93f13699Dd1D,0x878CcA1F123fD9702E8FDf78ED6EE35a44Fb6085,0xfFa0fCcD21516500299A7471870517415cBddb6E,0xb1a7dCa92fCCBbA989E5Cd5Bbc2B66D1AB923b3F,0x7C53d0FAAf5034adcfF0d3521aDA0d7b5bcB5933,0xCF6FBcf41AF73a2129c5Ec9fe450EDdcbfE1dCCd,0xF527CdAa85DCCA821a4A87BEDCc8Cbf33c1293e9,0xfC0E327a861A862B2f2F7FC44409Ca158783cB5b,0x65a3DCdC71CC5d61300f9B383955f4EEB0932fFa,0xD02c0Aa3AB2EaD244A632BBDD93Df6e6b300f62F,0x1b4FB02dDC50951f6A8476CDF09f03E2f4F5ca10,0x2eCE8F4D04C16f368930e633d55b8015d1A0008d,0xfB48125B026dEaD986750FAe2ACCBeD29EDf6198,0x5A670c9a7EF7b4330284a6669149962a464C4EAe,0xa4Dc2373d9EA3ce968427161a01c4960A90B8431,0xF1036958e7c38644250bACd66f633aEc7Ae156a3,0x6c1A47BDa036f3ac130B020b02DcAE384485075B,0x4A10621011457CbCf5BE6517F17c12ae356884cb,0x2331060b1b43d925C7e2e84f9E65a36d93104cbD,0x67E18dE0AAB10Fa08747848fe1168AB9D9FA7B76,0x0B16a6984e4C9a5a74bCDAe84E0b2f5B1169F6d4,0x66c128eF1980E86218De5179485aE16a7eFb289a,0x5F67E070A9E8a42ada20d31fE440074993321f9F,0x76EB574EFF49FB64DE6f7F2854952B05B5E24624

-----Encoded View---------------
30 Constructor Arguments found :
Arg [0] : 00000000000000000000000076eb574eff49fb64de6f7f2854952b05b5e24624
Arg [1] : 000000000000000000000000000000000000000000295be96e64066972000000
Arg [2] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [3] : 00000000000000000000000076eb574eff49fb64de6f7f2854952b05b5e24624
Arg [4] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [6] : 000000000000000000000000325bd50ded48e9072eb7759cbf9f93f13699dd1d
Arg [7] : 000000000000000000000000878cca1f123fd9702e8fdf78ed6ee35a44fb6085
Arg [8] : 000000000000000000000000ffa0fccd21516500299a7471870517415cbddb6e
Arg [9] : 000000000000000000000000b1a7dca92fccbba989e5cd5bbc2b66d1ab923b3f
Arg [10] : 0000000000000000000000007c53d0faaf5034adcff0d3521ada0d7b5bcb5933
Arg [11] : 000000000000000000000000cf6fbcf41af73a2129c5ec9fe450eddcbfe1dccd
Arg [12] : 000000000000000000000000f527cdaa85dcca821a4a87bedcc8cbf33c1293e9
Arg [13] : 000000000000000000000000fc0e327a861a862b2f2f7fc44409ca158783cb5b
Arg [14] : 00000000000000000000000065a3dcdc71cc5d61300f9b383955f4eeb0932ffa
Arg [15] : 000000000000000000000000d02c0aa3ab2ead244a632bbdd93df6e6b300f62f
Arg [16] : 0000000000000000000000001b4fb02ddc50951f6a8476cdf09f03e2f4f5ca10
Arg [17] : 0000000000000000000000002ece8f4d04c16f368930e633d55b8015d1a0008d
Arg [18] : 000000000000000000000000fb48125b026dead986750fae2accbed29edf6198
Arg [19] : 0000000000000000000000005a670c9a7ef7b4330284a6669149962a464c4eae
Arg [20] : 000000000000000000000000a4dc2373d9ea3ce968427161a01c4960a90b8431
Arg [21] : 000000000000000000000000f1036958e7c38644250bacd66f633aec7ae156a3
Arg [22] : 0000000000000000000000006c1a47bda036f3ac130b020b02dcae384485075b
Arg [23] : 0000000000000000000000004a10621011457cbcf5be6517f17c12ae356884cb
Arg [24] : 0000000000000000000000002331060b1b43d925c7e2e84f9e65a36d93104cbd
Arg [25] : 00000000000000000000000067e18de0aab10fa08747848fe1168ab9d9fa7b76
Arg [26] : 0000000000000000000000000b16a6984e4c9a5a74bcdae84e0b2f5b1169f6d4
Arg [27] : 00000000000000000000000066c128ef1980e86218de5179485ae16a7efb289a
Arg [28] : 0000000000000000000000005f67e070a9e8a42ada20d31fe440074993321f9f
Arg [29] : 00000000000000000000000076eb574eff49fb64de6f7f2854952b05b5e24624


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.