ETH Price: $2,617.41 (+0.19%)
Gas: 9.49 Gwei

Token

Aktio Coin (AKTIO)
 

Overview

Max Total Supply

100,000,000 AKTIO

Holders

328

Market

Price

$0.26 @ 0.000100 ETH (-0.48%)

Onchain Market Cap

$26,129,419.98

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000007168 AKTIO

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

Market

Volume (24H):$382,407.71
Market Capitalization:$0.00
Circulating Supply:0.00 AKTIO
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Aktio

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-11
*/

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

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

    /**
     * @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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/utils/Context.sol


// 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: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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 Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

        _afterTokenTransfer(address(0), account, amount);
    }

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

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

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

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

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

// File: contracts/token/ERC20/behaviours/ERC20Mintable.sol



pragma solidity ^0.8.0;


/**
 * @title ERC20Mintable
 * @dev Implementation of the ERC20Mintable. Extension of {ERC20} that adds a minting behaviour.
 */
abstract contract ERC20Mintable is ERC20 {

  // indicates if minting is finished
  bool private _mintingFinished = false;

  /**
   * @dev Emitted during finish minting
   */
  event MintFinished();

  /**
   * @dev Tokens can be minted only before minting finished.
   */
  modifier canMint() {
    require(!_mintingFinished, "ERC20Mintable: minting is finished");
    _;
  }

  /**
   * @return if minting is finished or not.
   */
  function mintingFinished() public view returns (bool) {
    return _mintingFinished;
  }

  /**
   * @dev Function to mint tokens.
   *
   * WARNING: it allows everyone to mint new tokens. Access controls MUST be defined in derived contracts.
   *
   * @param account The address that will receive the minted tokens
   * @param amount The amount of tokens to mint
   */
  function mint(address account, uint256 amount) public canMint {
    _mint(account, amount);
  }

  /**
   * @dev Function to stop minting new tokens.
   *
   * WARNING: it allows everyone to finish minting. Access controls MUST be defined in derived contracts.
   */
  function finishMinting() public canMint {
    _finishMinting();
  }

  /**
   * @dev Function to stop minting new tokens.
   */
  function _finishMinting() internal virtual {
    _mintingFinished = true;

    emit MintFinished();
  }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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 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 {
        _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: contracts/token/ERC20/CommonPausableERC20.sol



pragma solidity 0.8.13;







/**
 * @title Aktio
 * @dev Implementation of the Aktio
 */
contract Aktio is ERC20Capped, ERC20Mintable, ERC20Burnable, Pausable, Ownable {
  uint8 private _decimals;

  function _setupDecimals(uint8 __decimals) internal {
    _decimals = __decimals;
  }

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

  constructor (
    string memory name,
    string memory symbol,
    uint8 __decimals,
    uint256 cap,
    uint256 initialBalance
  )
  ERC20(name, symbol)
  ERC20Capped(cap)
  {
    _setupDecimals(__decimals);
    require(initialBalance <= cap, "ERC20Capped: cap exceeded");
    ERC20._mint(_msgSender(), initialBalance);
  }

  function pause() external onlyOwner {
    _pause();
  }

  function unpause() external onlyOwner {
    _unpause();
  }

  /**
   * @dev Function to mint tokens.
   *
   * NOTE: restricting access to owner only. See {ERC20Mintable-mint}.
   *
   * @param account The address that will receive the minted tokens
   * @param amount The amount of tokens to mint
   */
  function _mint(address account, uint256 amount) internal override(ERC20Capped, ERC20) onlyOwner {
    ERC20Capped._mint(account, amount);
  }

  /**
   * @dev Function to stop minting new tokens.
   *
   * NOTE: restricting access to owner only. See {ERC20Mintable-finishMinting}.
   */
  function _finishMinting() internal override onlyOwner {
    super._finishMinting();
  }

  /**
     * @dev See {ERC20-_beforeTokenTransfer}. See {ERC20Capped-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
  function _beforeTokenTransfer(address from, address to, uint256 amount) internal override(ERC20) whenNotPaused {
    super._beforeTokenTransfer(from, to, amount);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"__decimals","type":"uint8"},{"internalType":"uint256","name":"cap","type":"uint256"},{"internalType":"uint256","name":"initialBalance","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":[],"name":"finishMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingFinished","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526005805460ff191690553480156200001b57600080fd5b50604051620017dd380380620017dd8339810160408190526200003e91620004a0565b8185858160039080519060200190620000599291906200032d565b5080516200006f9060049060208401906200032d565b50505060008111620000c85760405162461bcd60e51b815260206004820152601560248201527f45524332304361707065643a206361702069732030000000000000000000000060448201526064015b60405180910390fd5b6080526005805461ff0019169055620000e1336200016d565b6005805460ff60b01b1916600160b01b60ff861602179055818111156200014b5760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a20636170206578636565646564000000000000006044820152606401620000bf565b620001623382620001c960201b620006dc1760201c565b505050505062000599565b600580546001600160a01b038381166201000081810262010000600160b01b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002215760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620000bf565b6200022f60008383620002bc565b806002600082825462000243919062000536565b90915550506001600160a01b038216600090815260208190526040812080548392906200027290849062000536565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b620002ce600554610100900460ff1690565b15620003105760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401620000bf565b620003288383836200032860201b620007c71760201c565b505050565b8280546200033b906200055d565b90600052602060002090601f0160209004810192826200035f5760008555620003aa565b82601f106200037a57805160ff1916838001178555620003aa565b82800160010185558215620003aa579182015b82811115620003aa5782518255916020019190600101906200038d565b50620003b8929150620003bc565b5090565b5b80821115620003b85760008155600101620003bd565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620003fb57600080fd5b81516001600160401b0380821115620004185762000418620003d3565b604051601f8301601f19908116603f01168101908282118183101715620004435762000443620003d3565b816040528381526020925086838588010111156200046057600080fd5b600091505b8382101562000484578582018301518183018401529082019062000465565b83821115620004965760008385830101525b9695505050505050565b600080600080600060a08688031215620004b957600080fd5b85516001600160401b0380821115620004d157600080fd5b620004df89838a01620003e9565b96506020880151915080821115620004f657600080fd5b506200050588828901620003e9565b945050604086015160ff811681146200051d57600080fd5b6060870151608090970151959894975095949392505050565b600082198211156200055857634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200057257607f821691505b6020821081036200059357634e487b7160e01b600052602260045260246000fd5b50919050565b608051611221620005bc600039600081816101dc0152610eed01526112216000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80635c975abb116100c35780638da5cb5b1161007c5780638da5cb5b146102a757806395d89b41146102d1578063a457c2d7146102d9578063a9059cbb146102ec578063dd62ed3e146102ff578063f2fde38b1461033857600080fd5b80635c975abb1461024357806370a0823114610253578063715018a61461027c57806379cc6790146102845780637d64bcb4146102975780638456cb591461029f57600080fd5b8063313ce56711610115578063313ce567146101bb578063355274ea146101da57806339509351146102005780633f4ba83a1461021357806340c10f191461021d57806342966c681461023057600080fd5b806305d2035b1461015257806306fdde031461016e578063095ea7b31461018357806318160ddd1461019657806323b872dd146101a8575b600080fd5b60055460ff165b60405190151581526020015b60405180910390f35b61017661034b565b6040516101659190610fb0565b610159610191366004611021565b6103dd565b6002545b604051908152602001610165565b6101596101b636600461104b565b6103f5565b600554600160b01b900460ff1660405160ff9091168152602001610165565b7f000000000000000000000000000000000000000000000000000000000000000061019a565b61015961020e366004611021565b610419565b61021b610458565b005b61021b61022b366004611021565b61049c565b61021b61023e366004611087565b6104cd565b600554610100900460ff16610159565b61019a6102613660046110a0565b6001600160a01b031660009081526020819052604090205490565b61021b6104da565b61021b610292366004611021565b610515565b61021b61052a565b61021b610555565b6005546201000090046001600160a01b03166040516001600160a01b039091168152602001610165565b61017661058e565b6101596102e7366004611021565b61059d565b6101596102fa366004611021565b61062f565b61019a61030d3660046110c2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61021b6103463660046110a0565b61063d565b60606003805461035a906110f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610386906110f5565b80156103d35780601f106103a8576101008083540402835291602001916103d3565b820191906000526020600020905b8154815290600101906020018083116103b657829003601f168201915b5050505050905090565b6000336103eb8185856107cc565b5060019392505050565b6000336104038582856108f0565b61040e858585610982565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906103eb9082908690610453908790611145565b6107cc565b6005546001600160a01b03620100009091041633146104925760405162461bcd60e51b81526004016104899061115d565b60405180910390fd5b61049a610b5b565b565b60055460ff16156104bf5760405162461bcd60e51b815260040161048990611192565b6104c98282610bf4565b5050565b6104d73382610c2f565b50565b6005546001600160a01b036201000090910416331461050b5760405162461bcd60e51b81526004016104899061115d565b61049a6000610d89565b6105208233836108f0565b6104c98282610c2f565b60055460ff161561054d5760405162461bcd60e51b815260040161048990611192565b61049a610de5565b6005546001600160a01b03620100009091041633146105865760405162461bcd60e51b81526004016104899061115d565b61049a610e1e565b60606004805461035a906110f5565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156106225760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610489565b61040e82868684036107cc565b6000336103eb818585610982565b6005546001600160a01b036201000090910416331461066e5760405162461bcd60e51b81526004016104899061115d565b6001600160a01b0381166106d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610489565b6104d781610d89565b6001600160a01b0382166107325760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610489565b61073e60008383610ea0565b80600260008282546107509190611145565b90915550506001600160a01b0382166000908152602081905260408120805483929061077d908490611145565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b6001600160a01b03831661082e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610489565b6001600160a01b03821661088f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610489565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461097c578181101561096f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610489565b61097c84848484036107cc565b50505050565b6001600160a01b0383166109e65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610489565b6001600160a01b038216610a485760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610489565b610a53838383610ea0565b6001600160a01b03831660009081526020819052604090205481811015610acb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610489565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610b02908490611145565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b4e91815260200190565b60405180910390a361097c565b600554610100900460ff16610ba95760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610489565b6005805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6005546001600160a01b0362010000909104163314610c255760405162461bcd60e51b81526004016104899061115d565b6104c98282610eeb565b6001600160a01b038216610c8f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610489565b610c9b82600083610ea0565b6001600160a01b03821660009081526020819052604090205481811015610d0f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610489565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610d3e9084906111d4565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166201000081810262010000600160b01b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b0362010000909104163314610e165760405162461bcd60e51b81526004016104899061115d565b61049a610f78565b600554610100900460ff1615610e695760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610489565b6005805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610bd73390565b600554610100900460ff16156107c75760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610489565b7f000000000000000000000000000000000000000000000000000000000000000081610f1660025490565b610f209190611145565b1115610f6e5760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a20636170206578636565646564000000000000006044820152606401610489565b6104c982826106dc565b6005805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a1565b600060208083528351808285015260005b81811015610fdd57858101830151858201604001528201610fc1565b81811115610fef576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461101c57600080fd5b919050565b6000806040838503121561103457600080fd5b61103d83611005565b946020939093013593505050565b60008060006060848603121561106057600080fd5b61106984611005565b925061107760208501611005565b9150604084013590509250925092565b60006020828403121561109957600080fd5b5035919050565b6000602082840312156110b257600080fd5b6110bb82611005565b9392505050565b600080604083850312156110d557600080fd5b6110de83611005565b91506110ec60208401611005565b90509250929050565b600181811c9082168061110957607f821691505b60208210810361112957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156111585761115861112f565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526022908201527f45524332304d696e7461626c653a206d696e74696e672069732066696e697368604082015261195960f21b606082015260800190565b6000828210156111e6576111e661112f565b50039056fea26469706673582212207cc57798cf18245bf595b2fb32de1cca3f9ead2a139b910dfe4e445c34a94d6164736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000052b7d2dcc80cd2e400000000000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000000000000000000000000000000000000000000a416b74696f20436f696e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005414b54494f000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80635c975abb116100c35780638da5cb5b1161007c5780638da5cb5b146102a757806395d89b41146102d1578063a457c2d7146102d9578063a9059cbb146102ec578063dd62ed3e146102ff578063f2fde38b1461033857600080fd5b80635c975abb1461024357806370a0823114610253578063715018a61461027c57806379cc6790146102845780637d64bcb4146102975780638456cb591461029f57600080fd5b8063313ce56711610115578063313ce567146101bb578063355274ea146101da57806339509351146102005780633f4ba83a1461021357806340c10f191461021d57806342966c681461023057600080fd5b806305d2035b1461015257806306fdde031461016e578063095ea7b31461018357806318160ddd1461019657806323b872dd146101a8575b600080fd5b60055460ff165b60405190151581526020015b60405180910390f35b61017661034b565b6040516101659190610fb0565b610159610191366004611021565b6103dd565b6002545b604051908152602001610165565b6101596101b636600461104b565b6103f5565b600554600160b01b900460ff1660405160ff9091168152602001610165565b7f00000000000000000000000000000000000000000052b7d2dcc80cd2e400000061019a565b61015961020e366004611021565b610419565b61021b610458565b005b61021b61022b366004611021565b61049c565b61021b61023e366004611087565b6104cd565b600554610100900460ff16610159565b61019a6102613660046110a0565b6001600160a01b031660009081526020819052604090205490565b61021b6104da565b61021b610292366004611021565b610515565b61021b61052a565b61021b610555565b6005546201000090046001600160a01b03166040516001600160a01b039091168152602001610165565b61017661058e565b6101596102e7366004611021565b61059d565b6101596102fa366004611021565b61062f565b61019a61030d3660046110c2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61021b6103463660046110a0565b61063d565b60606003805461035a906110f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610386906110f5565b80156103d35780601f106103a8576101008083540402835291602001916103d3565b820191906000526020600020905b8154815290600101906020018083116103b657829003601f168201915b5050505050905090565b6000336103eb8185856107cc565b5060019392505050565b6000336104038582856108f0565b61040e858585610982565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906103eb9082908690610453908790611145565b6107cc565b6005546001600160a01b03620100009091041633146104925760405162461bcd60e51b81526004016104899061115d565b60405180910390fd5b61049a610b5b565b565b60055460ff16156104bf5760405162461bcd60e51b815260040161048990611192565b6104c98282610bf4565b5050565b6104d73382610c2f565b50565b6005546001600160a01b036201000090910416331461050b5760405162461bcd60e51b81526004016104899061115d565b61049a6000610d89565b6105208233836108f0565b6104c98282610c2f565b60055460ff161561054d5760405162461bcd60e51b815260040161048990611192565b61049a610de5565b6005546001600160a01b03620100009091041633146105865760405162461bcd60e51b81526004016104899061115d565b61049a610e1e565b60606004805461035a906110f5565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156106225760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610489565b61040e82868684036107cc565b6000336103eb818585610982565b6005546001600160a01b036201000090910416331461066e5760405162461bcd60e51b81526004016104899061115d565b6001600160a01b0381166106d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610489565b6104d781610d89565b6001600160a01b0382166107325760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610489565b61073e60008383610ea0565b80600260008282546107509190611145565b90915550506001600160a01b0382166000908152602081905260408120805483929061077d908490611145565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b6001600160a01b03831661082e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610489565b6001600160a01b03821661088f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610489565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461097c578181101561096f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610489565b61097c84848484036107cc565b50505050565b6001600160a01b0383166109e65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610489565b6001600160a01b038216610a485760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610489565b610a53838383610ea0565b6001600160a01b03831660009081526020819052604090205481811015610acb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610489565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610b02908490611145565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b4e91815260200190565b60405180910390a361097c565b600554610100900460ff16610ba95760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610489565b6005805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6005546001600160a01b0362010000909104163314610c255760405162461bcd60e51b81526004016104899061115d565b6104c98282610eeb565b6001600160a01b038216610c8f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610489565b610c9b82600083610ea0565b6001600160a01b03821660009081526020819052604090205481811015610d0f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610489565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610d3e9084906111d4565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166201000081810262010000600160b01b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b0362010000909104163314610e165760405162461bcd60e51b81526004016104899061115d565b61049a610f78565b600554610100900460ff1615610e695760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610489565b6005805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610bd73390565b600554610100900460ff16156107c75760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610489565b7f00000000000000000000000000000000000000000052b7d2dcc80cd2e400000081610f1660025490565b610f209190611145565b1115610f6e5760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a20636170206578636565646564000000000000006044820152606401610489565b6104c982826106dc565b6005805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a1565b600060208083528351808285015260005b81811015610fdd57858101830151858201604001528201610fc1565b81811115610fef576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461101c57600080fd5b919050565b6000806040838503121561103457600080fd5b61103d83611005565b946020939093013593505050565b60008060006060848603121561106057600080fd5b61106984611005565b925061107760208501611005565b9150604084013590509250925092565b60006020828403121561109957600080fd5b5035919050565b6000602082840312156110b257600080fd5b6110bb82611005565b9392505050565b600080604083850312156110d557600080fd5b6110de83611005565b91506110ec60208401611005565b90509250929050565b600181811c9082168061110957607f821691505b60208210810361112957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156111585761115861112f565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526022908201527f45524332304d696e7461626c653a206d696e74696e672069732066696e697368604082015261195960f21b606082015260800190565b6000828210156111e6576111e661112f565b50039056fea26469706673582212207cc57798cf18245bf595b2fb32de1cca3f9ead2a139b910dfe4e445c34a94d6164736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000052b7d2dcc80cd2e400000000000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000000000000000000000000000000000000000000a416b74696f20436f696e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005414b54494f000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Aktio Coin
Arg [1] : symbol (string): AKTIO
Arg [2] : __decimals (uint8): 18
Arg [3] : cap (uint256): 100000000000000000000000000
Arg [4] : initialBalance (uint256): 100000000000000000000000000

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [4] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 416b74696f20436f696e00000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 414b54494f000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

26260:1788:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18135:90;18203:16;;;;18135:90;;;179:14:1;;172:22;154:41;;142:2;127:18;18135:90:0;;;;;;;;6653:100;;;:::i;:::-;;;;;;;:::i;9004:201::-;;;;;;:::i;:::-;;:::i;7773:108::-;7861:12;;7773:108;;;1391:25:1;;;1379:2;1364:18;7773:108:0;1245:177:1;9785:295:0;;;;;;:::i;:::-;;:::i;26466:101::-;26552:9;;-1:-1:-1;;;26552:9:0;;;;26466:101;;1932:4:1;1920:17;;;1902:36;;1890:2;1875:18;26466:101:0;1760:184:1;20892:83:0;20963:4;20892:83;;10489:240;;;;;;:::i;:::-;;:::i;26981:61::-;;;:::i;:::-;;18519:97;;;;;;:::i;:::-;;:::i;19631:91::-;;;;;;:::i;:::-;;:::i;22379:86::-;22450:7;;;;;;;22379:86;;7944:127;;;;;;:::i;:::-;-1:-1:-1;;;;;8045:18:0;8018:7;8045:18;;;;;;;;;;;;7944:127;25278:103;;;:::i;20041:164::-;;;;;;:::i;:::-;;:::i;18797:69::-;;;:::i;26918:57::-;;;:::i;24627:87::-;24700:6;;;;;-1:-1:-1;;;;;24700:6:0;24627:87;;-1:-1:-1;;;;;2489:32:1;;;2471:51;;2459:2;2444:18;24627:87:0;2325:203:1;6872:104:0;;;:::i;11232:438::-;;;;;;:::i;:::-;;:::i;8277:193::-;;;;;;:::i;:::-;;:::i;8533:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8649:18:0;;;8622:7;8649:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8533:151;25536:201;;;;;;:::i;:::-;;:::i;6653:100::-;6707:13;6740:5;6733:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6653:100;:::o;9004:201::-;9087:4;4373:10;9143:32;4373:10;9159:7;9168:6;9143:8;:32::i;:::-;-1:-1:-1;9193:4:0;;9004:201;-1:-1:-1;;;9004:201:0:o;9785:295::-;9916:4;4373:10;9974:38;9990:4;4373:10;10005:6;9974:15;:38::i;:::-;10023:27;10033:4;10039:2;10043:6;10023:9;:27::i;:::-;-1:-1:-1;10068:4:0;;9785:295;-1:-1:-1;;;;9785:295:0:o;10489:240::-;4373:10;10577:4;10658:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;10658:27:0;;;;;;;;;;10577:4;;4373:10;10633:66;;4373:10;;10658:27;;:40;;10688:10;;10658:40;:::i;:::-;10633:8;:66::i;26981:61::-;24700:6;;-1:-1:-1;;;;;24700:6:0;;;;;4373:10;24847:23;24839:68;;;;-1:-1:-1;;;24839:68:0;;;;;;;:::i;:::-;;;;;;;;;27026:10:::1;:8;:10::i;:::-;26981:61::o:0;18519:97::-;18001:16;;;;18000:17;17992:64;;;;-1:-1:-1;;;17992:64:0;;;;;;;:::i;:::-;18588:22:::1;18594:7;18603:6;18588:5;:22::i;:::-;18519:97:::0;;:::o;19631:91::-;19687:27;4373:10;19707:6;19687:5;:27::i;:::-;19631:91;:::o;25278:103::-;24700:6;;-1:-1:-1;;;;;24700:6:0;;;;;4373:10;24847:23;24839:68;;;;-1:-1:-1;;;24839:68:0;;;;;;;:::i;:::-;25343:30:::1;25370:1;25343:18;:30::i;20041:164::-:0;20118:46;20134:7;4373:10;20157:6;20118:15;:46::i;:::-;20175:22;20181:7;20190:6;20175:5;:22::i;18797:69::-;18001:16;;;;18000:17;17992:64;;;;-1:-1:-1;;;17992:64:0;;;;;;;:::i;:::-;18844:16:::1;:14;:16::i;26918:57::-:0;24700:6;;-1:-1:-1;;;;;24700:6:0;;;;;4373:10;24847:23;24839:68;;;;-1:-1:-1;;;24839:68:0;;;;;;;:::i;:::-;26961:8:::1;:6;:8::i;6872:104::-:0;6928:13;6961:7;6954:14;;;;;:::i;11232:438::-;4373:10;11325:4;11408:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11408:27:0;;;;;;;;;;11325:4;;4373:10;11454:35;;;;11446:85;;;;-1:-1:-1;;;11446:85:0;;4414:2:1;11446:85:0;;;4396:21:1;4453:2;4433:18;;;4426:30;4492:34;4472:18;;;4465:62;-1:-1:-1;;;4543:18:1;;;4536:35;4588:19;;11446:85:0;4212:401:1;11446:85:0;11567:60;11576:5;11583:7;11611:15;11592:16;:34;11567:8;:60::i;8277:193::-;8356:4;4373:10;8412:28;4373:10;8429:2;8433:6;8412:9;:28::i;25536:201::-;24700:6;;-1:-1:-1;;;;;24700:6:0;;;;;4373:10;24847:23;24839:68;;;;-1:-1:-1;;;24839:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25625:22:0;::::1;25617:73;;;::::0;-1:-1:-1;;;25617:73:0;;4820:2:1;25617:73:0::1;::::0;::::1;4802:21:1::0;4859:2;4839:18;;;4832:30;4898:34;4878:18;;;4871:62;-1:-1:-1;;;4949:18:1;;;4942:36;4995:19;;25617:73:0::1;4618:402:1::0;25617:73:0::1;25701:28;25720:8;25701:18;:28::i;13107:399::-:0;-1:-1:-1;;;;;13191:21:0;;13183:65;;;;-1:-1:-1;;;13183:65:0;;5227:2:1;13183:65:0;;;5209:21:1;5266:2;5246:18;;;5239:30;5305:33;5285:18;;;5278:61;5356:18;;13183:65:0;5025:355:1;13183:65:0;13261:49;13290:1;13294:7;13303:6;13261:20;:49::i;:::-;13339:6;13323:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13356:18:0;;:9;:18;;;;;;;;;;:28;;13378:6;;13356:9;:28;;13378:6;;13356:28;:::i;:::-;;;;-1:-1:-1;;13400:37:0;;1391:25:1;;;-1:-1:-1;;;;;13400:37:0;;;13417:1;;13400:37;;1379:2:1;1364:18;13400:37:0;;;;;;;18519:97;;:::o;16588:125::-;;;;:::o;14868:380::-;-1:-1:-1;;;;;15004:19:0;;14996:68;;;;-1:-1:-1;;;14996:68:0;;5587:2:1;14996:68:0;;;5569:21:1;5626:2;5606:18;;;5599:30;5665:34;5645:18;;;5638:62;-1:-1:-1;;;5716:18:1;;;5709:34;5760:19;;14996:68:0;5385:400:1;14996:68:0;-1:-1:-1;;;;;15083:21:0;;15075:68;;;;-1:-1:-1;;;15075:68:0;;5992:2:1;15075:68:0;;;5974:21:1;6031:2;6011:18;;;6004:30;6070:34;6050:18;;;6043:62;-1:-1:-1;;;6121:18:1;;;6114:32;6163:19;;15075:68:0;5790:398:1;15075:68:0;-1:-1:-1;;;;;15156:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15208:32;;1391:25:1;;;15208:32:0;;1364:18:1;15208:32:0;;;;;;;14868:380;;;:::o;15535:453::-;-1:-1:-1;;;;;8649:18:0;;;15670:24;8649:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;15737:37:0;;15733:248;;15819:6;15799:16;:26;;15791:68;;;;-1:-1:-1;;;15791:68:0;;6395:2:1;15791:68:0;;;6377:21:1;6434:2;6414:18;;;6407:30;6473:31;6453:18;;;6446:59;6522:18;;15791:68:0;6193:353:1;15791:68:0;15903:51;15912:5;15919:7;15947:6;15928:16;:25;15903:8;:51::i;:::-;15659:329;15535:453;;;:::o;12149:671::-;-1:-1:-1;;;;;12280:18:0;;12272:68;;;;-1:-1:-1;;;12272:68:0;;6753:2:1;12272:68:0;;;6735:21:1;6792:2;6772:18;;;6765:30;6831:34;6811:18;;;6804:62;-1:-1:-1;;;6882:18:1;;;6875:35;6927:19;;12272:68:0;6551:401:1;12272:68:0;-1:-1:-1;;;;;12359:16:0;;12351:64;;;;-1:-1:-1;;;12351:64:0;;7159:2:1;12351:64:0;;;7141:21:1;7198:2;7178:18;;;7171:30;7237:34;7217:18;;;7210:62;-1:-1:-1;;;7288:18:1;;;7281:33;7331:19;;12351:64:0;6957:399:1;12351:64:0;12428:38;12449:4;12455:2;12459:6;12428:20;:38::i;:::-;-1:-1:-1;;;;;12501:15:0;;12479:19;12501:15;;;;;;;;;;;12535:21;;;;12527:72;;;;-1:-1:-1;;;12527:72:0;;7563:2:1;12527:72:0;;;7545:21:1;7602:2;7582:18;;;7575:30;7641:34;7621:18;;;7614:62;-1:-1:-1;;;7692:18:1;;;7685:36;7738:19;;12527:72:0;7361:402:1;12527:72:0;-1:-1:-1;;;;;12635:15:0;;;:9;:15;;;;;;;;;;;12653:20;;;12635:38;;12695:13;;;;;;;;:23;;12667:6;;12635:9;12695:23;;12667:6;;12695:23;:::i;:::-;;;;;;;;12751:2;-1:-1:-1;;;;;12736:26:0;12745:4;-1:-1:-1;;;;;12736:26:0;;12755:6;12736:26;;;;1391:25:1;;1379:2;1364:18;;1245:177;12736:26:0;;;;;;;;12775:37;16588:125;23438:120;22450:7;;;;;;;22974:41;;;;-1:-1:-1;;;22974:41:0;;7970:2:1;22974:41:0;;;7952:21:1;8009:2;7989:18;;;7982:30;-1:-1:-1;;;8028:18:1;;;8021:50;8088:18;;22974:41:0;7768:344:1;22974:41:0;23497:7:::1;:15:::0;;-1:-1:-1;;23497:15:0::1;::::0;;23528:22:::1;4373:10:::0;23537:12:::1;23528:22;::::0;-1:-1:-1;;;;;2489:32:1;;;2471:51;;2459:2;2444:18;23528:22:0::1;;;;;;;23438:120::o:0;27300:143::-;24700:6;;-1:-1:-1;;;;;24700:6:0;;;;;4373:10;24847:23;24839:68;;;;-1:-1:-1;;;24839:68:0;;;;;;;:::i;:::-;27403:34:::1;27421:7;27430:6;27403:17;:34::i;13839:591::-:0;-1:-1:-1;;;;;13923:21:0;;13915:67;;;;-1:-1:-1;;;13915:67:0;;8319:2:1;13915:67:0;;;8301:21:1;8358:2;8338:18;;;8331:30;8397:34;8377:18;;;8370:62;-1:-1:-1;;;8448:18:1;;;8441:31;8489:19;;13915:67:0;8117:397:1;13915:67:0;13995:49;14016:7;14033:1;14037:6;13995:20;:49::i;:::-;-1:-1:-1;;;;;14082:18:0;;14057:22;14082:18;;;;;;;;;;;14119:24;;;;14111:71;;;;-1:-1:-1;;;14111:71:0;;8721:2:1;14111:71:0;;;8703:21:1;8760:2;8740:18;;;8733:30;8799:34;8779:18;;;8772:62;-1:-1:-1;;;8850:18:1;;;8843:32;8892:19;;14111:71:0;8519:398:1;14111:71:0;-1:-1:-1;;;;;14218:18:0;;:9;:18;;;;;;;;;;14239:23;;;14218:44;;14284:12;:22;;14256:6;;14218:9;14284:22;;14256:6;;14284:22;:::i;:::-;;;;-1:-1:-1;;14324:37:0;;1391:25:1;;;14350:1:0;;-1:-1:-1;;;;;14324:37:0;;;;;1379:2:1;1364:18;14324:37:0;;;;;;;16588:125;;;:::o;25897:191::-;25990:6;;;-1:-1:-1;;;;;26007:17:0;;;25990:6;26007:17;;;-1:-1:-1;;;;;;26007:17:0;;;;;;26040:40;;25990:6;;;;;;;;26040:40;;25971:16;;26040:40;25960:128;25897:191;:::o;27598:89::-;24700:6;;-1:-1:-1;;;;;24700:6:0;;;;;4373:10;24847:23;24839:68;;;;-1:-1:-1;;;24839:68:0;;;;;;;:::i;:::-;27659:22:::1;:20;:22::i;23179:118::-:0;22450:7;;;;;;;22704:9;22696:38;;;;-1:-1:-1;;;22696:38:0;;9254:2:1;22696:38:0;;;9236:21:1;9293:2;9273:18;;;9266:30;-1:-1:-1;;;9312:18:1;;;9305:46;9368:18;;22696:38:0;9052:340:1;22696:38:0;23239:7:::1;:14:::0;;-1:-1:-1;;23239:14:0::1;;;::::0;;23269:20:::1;23276:12;4373:10:::0;;4293:98;27877:168;22450:7;;;;;;;22704:9;22696:38;;;;-1:-1:-1;;;22696:38:0;;9254:2:1;22696:38:0;;;9236:21:1;9293:2;9273:18;;;9266:30;-1:-1:-1;;;9312:18:1;;;9305:46;9368:18;;22696:38:0;9052:340:1;21033:207:0;20963:4;21148:6;21126:19;7861:12;;;7773:108;21126:19;:28;;;;:::i;:::-;:37;;21118:75;;;;-1:-1:-1;;;21118:75:0;;9599:2:1;21118:75:0;;;9581:21:1;9638:2;9618:18;;;9611:30;9677:27;9657:18;;;9650:55;9722:18;;21118:75:0;9397:349:1;21118:75:0;21204:28;21216:7;21225:6;21204:11;:28::i;18934:107::-;18984:16;:23;;-1:-1:-1;;18984:23:0;19003:4;18984:23;;;19021:14;;;;18984:16;;19021:14;18934:107::o;206:597:1:-;318:4;347:2;376;365:9;358:21;408:6;402:13;451:6;446:2;435:9;431:18;424:34;476:1;486:140;500:6;497:1;494:13;486:140;;;595:14;;;591:23;;585:30;561:17;;;580:2;557:26;550:66;515:10;;486:140;;;644:6;641:1;638:13;635:91;;;714:1;709:2;700:6;689:9;685:22;681:31;674:42;635:91;-1:-1:-1;787:2:1;766:15;-1:-1:-1;;762:29:1;747:45;;;;794:2;743:54;;206:597;-1:-1:-1;;;206:597:1:o;808:173::-;876:20;;-1:-1:-1;;;;;925:31:1;;915:42;;905:70;;971:1;968;961:12;905:70;808:173;;;:::o;986:254::-;1054:6;1062;1115:2;1103:9;1094:7;1090:23;1086:32;1083:52;;;1131:1;1128;1121:12;1083:52;1154:29;1173:9;1154:29;:::i;:::-;1144:39;1230:2;1215:18;;;;1202:32;;-1:-1:-1;;;986:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:180::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;-1:-1:-1;2100:23:1;;1949:180;-1:-1:-1;1949:180:1:o;2134:186::-;2193:6;2246:2;2234:9;2225:7;2221:23;2217:32;2214:52;;;2262:1;2259;2252:12;2214:52;2285:29;2304:9;2285:29;:::i;:::-;2275:39;2134:186;-1:-1:-1;;;2134:186:1:o;2533:260::-;2601:6;2609;2662:2;2650:9;2641:7;2637:23;2633:32;2630:52;;;2678:1;2675;2668:12;2630:52;2701:29;2720:9;2701:29;:::i;:::-;2691:39;;2749:38;2783:2;2772:9;2768:18;2749:38;:::i;:::-;2739:48;;2533:260;;;;;:::o;2798:380::-;2877:1;2873:12;;;;2920;;;2941:61;;2995:4;2987:6;2983:17;2973:27;;2941:61;3048:2;3040:6;3037:14;3017:18;3014:38;3011:161;;3094:10;3089:3;3085:20;3082:1;3075:31;3129:4;3126:1;3119:15;3157:4;3154:1;3147:15;3011:161;;2798:380;;;:::o;3183:127::-;3244:10;3239:3;3235:20;3232:1;3225:31;3275:4;3272:1;3265:15;3299:4;3296:1;3289:15;3315:128;3355:3;3386:1;3382:6;3379:1;3376:13;3373:39;;;3392:18;;:::i;:::-;-1:-1:-1;3428:9:1;;3315:128::o;3448:356::-;3650:2;3632:21;;;3669:18;;;3662:30;3728:34;3723:2;3708:18;;3701:62;3795:2;3780:18;;3448:356::o;3809:398::-;4011:2;3993:21;;;4050:2;4030:18;;;4023:30;4089:34;4084:2;4069:18;;4062:62;-1:-1:-1;;;4155:2:1;4140:18;;4133:32;4197:3;4182:19;;3809:398::o;8922:125::-;8962:4;8990:1;8987;8984:8;8981:34;;;8995:18;;:::i;:::-;-1:-1:-1;9032:9:1;;8922:125::o

Swarm Source

ipfs://7cc57798cf18245bf595b2fb32de1cca3f9ead2a139b910dfe4e445c34a94d61
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.