ETH Price: $3,102.06 (-1.77%)
Gas: 9.82 Gwei

Token

SkyToken (SKY)
 

Overview

Max Total Supply

37,562,499.999999999999999991 SKY

Holders

468 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
101.643054340362968243 SKY

Value
$0.00
0x43d811843b7df3fbcb4f85ed6b50aa9cd4d5ecb5
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

SkyToken is a charity token, created to work with Skypath Security. Skypath Security has developed an technology designed to secure public spaces. The SkyToken Foundation will allow those in need a grant for free access to Skypath Security’s Mobile Threat Assessment & Defense Platform.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
skytoken

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
Yes with 9999 runs

Other Settings:
default evmVersion
File 1 of 1 : skytoken.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.3;

/*
 * @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;
    }
}

/**
 * @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;
    }
}

/**
 * @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
    );
}

/**
 * @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);
}

/**
 * @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 Moves tokens `amount` from `sender` to `recipient` with fee applied.
     * @param sender Sender of tokens
     * @param recipient Receiver of tokens
     * @param amount Amount of tokens to be transferred, receiver gets amount - fee
     * @param feeRecipient Recipient of fee amount
     * @param feeAmount Fee amount to be send to feeRecipient
     * 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 _transferWithFee(
        address sender,
        address recipient,
        uint256 amount,
        address feeRecipient,
        uint256 feeAmount
    ) 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);
        _beforeTokenTransfer(sender, feeRecipient, feeAmount);

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

        _balances[sender] = senderBalance - amount;
        _balances[recipient] += (amount - feeAmount);
        _balances[feeRecipient] += feeAmount;

        emit Transfer(sender, recipient, amount - feeAmount);
        emit Transfer(sender, feeRecipient, feeAmount);
    }

    /** @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 {}
}

contract skytoken is ERC20, Ownable {
    //whitelisted minters and mint receivers
    mapping(address => bool) public whitelistedMinter;
    mapping(address => bool) public whitelistedReceiver;
    mapping(address => bool) public feelessSender;
    mapping(address => bool) public feelessRecipient;

    address public feeReceiver;
    uint256 public feePercentage = 35;

    //minting killswitch
    bool public minting_killed = false;

    constructor(
        string memory _name,
        string memory _symbol,
        address _feeReceiver,
        uint256 _feePercentage
    ) ERC20(_name, _symbol) {
        _mint(msg.sender, 37.5 * 1e6 * 1e18);
        whitelistedMinter[msg.sender] = true;
        whitelistedReceiver[msg.sender] = true;

        feeReceiver = _feeReceiver;
        feePercentage = _feePercentage;
    }

    /**
     * @dev Modified transfer function to include transfer with fee
     * @param recipient Receiver of tokens
     * @param amount Amount of tokens to send in total (including fee)
     */
    function transfer(address recipient, uint256 amount)
        public
        override
        returns (bool)
    {
        //do not apply fees when sender or recipient are feeless
        if (feelessSender[msg.sender] || feelessRecipient[recipient]) {
            _transfer(_msgSender(), recipient, amount);
        } else {
            uint256 fee = (amount * feePercentage) / 1000;

            _transferWithFee(_msgSender(), recipient, amount, feeReceiver, fee);
        }

        return true;
    }

    /**
     * @dev Modified transferFrom function to include transfer with fee
     * @param sender Sender of tokens
     * @param recipient Receiver of tokens
     * @param amount Amount of tokens to send in total (including fee)
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        //do not apply fees when sender or recipient are feeless
        if (feelessSender[sender] || feelessRecipient[recipient]) {
            _transfer(sender, recipient, amount);
        } else {
            uint256 fee = (amount * feePercentage) / 1000;

            _transferWithFee(sender, recipient, amount, feeReceiver, fee);
        }

        uint256 currentAllowance = allowance(sender, _msgSender());

        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        _approve(sender, _msgSender(), currentAllowance - amount);
        return true;
    }

    /**
     * @dev Public burn function, tokens from msg.sender are irretrievably destroyed to 0x00 address
     * @param   _amount Amount of tokens to burn
     */
    function burn(uint256 _amount) external returns (bool) {
        _burn(msg.sender, _amount);
        return true;
    }

    /**
     * @dev Edit if address is feeless sender
     * @param state If address is feeless sender (true = feeless)
     */
    function editFeelessSender(address _addr, bool state)
        external
        onlyOwner
        returns (bool)
    {
        feelessSender[_addr] = state;
        return true;
    }

    /**
     * @dev Edit if address is feeless recipient
     * @param state If address is feeless recipient (true = feeless)
     */
    function editFeelessRecipient(address _addr, bool state)
        external
        onlyOwner
        returns (bool)
    {
        feelessRecipient[_addr] = state;
        return true;
    }

    /**
     * @dev Edit whitelisted minters, only minters can add/remove new minters
     * @param   _addr Address to be edited
     *          state true = whitelisted, false = not whitelisted
     */
    function editMinter(address _addr, bool state)
        external
        onlyOwner
        returns (bool)
    {
        require(whitelistedMinter[msg.sender], "Sender not minter");
        whitelistedMinter[_addr] = state;
        return true;
    }

    /**
     * @dev Edit whitelisted receivers of token mints, only minters can add/remove new receivers
     * @param   _addr Address to be edited
     *          state true = whitelisted, false = not whitelisted
     */
    function editReceiver(address _addr, bool state)
        external
        onlyOwner
        returns (bool)
    {
        require(whitelistedMinter[msg.sender], "Sender not minter");
        whitelistedReceiver[_addr] = state;
        return true;
    }

    /**
     * @dev Minting kill switch, disables minting forever. WARNING: action cannot be reversed.
     */
    function killMinting() external onlyOwner returns (bool) {
        minting_killed = true;
        return true;
    }

    /**
     * @dev Mint new tokens, only whitelisted minters and receivers are elligble.
     * @param _addr Receiver of tokens
     * @param _amount Amount of tokens to be minted
     */
    function extMint(address _addr, uint256 _amount) external returns (bool) {
        require(!minting_killed);
        require(whitelistedMinter[msg.sender], "Sender not whitelisted");
        require(whitelistedReceiver[_addr], "Receiver not whitelisted");
        _mint(_addr, _amount);
        return true;
    }

    /**
    * @dev Check if receiver is whitelisted for minting new tokens
    * @param _addr Address that will receive newly minted tokens
     */
    function isWhitelistedReceiver(address _addr) external view returns (bool) {
        return whitelistedReceiver[_addr];
    }

    /**
    * @dev Check if address is whitelisted for minting new tokens
    * @param _addr Address that will mint new tokens
     */
    function isWhitelistedMinter(address _addr) external view returns (bool) {
        return whitelistedMinter[_addr];
    }

    /**
     * @dev Receiver of fees
     * @param _addr Address of fee receiver
     */
    function editFeeReceiver(address _addr) onlyOwner external {
        feeReceiver = _addr ; 
    }

    /**
     * @dev Fee percentage in tens (e.g. 1% -> _fee = 10)
     * @param _fee Fee percentage in tens
     */
    function editFeePercentage(uint _fee) onlyOwner external {
        feePercentage = _fee ;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_feeReceiver","type":"address"},{"internalType":"uint256","name":"_feePercentage","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":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"editFeePercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"editFeeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"editFeelessRecipient","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"editFeelessSender","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"editMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"editReceiver","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"extMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feePercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"feelessRecipient","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"feelessSender","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"isWhitelistedMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"isWhitelistedReceiver","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"killMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minting_killed","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":"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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedReceiver","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526023600b55600c805460ff191690553480156200002057600080fd5b5060405162001fd838038062001fd8833981016040819052620000439162000390565b8351849084906200005c90600390602085019062000237565b5080516200007290600490602084019062000237565b5050506000620000876200014b60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620000ec336a1f04ef12cb04cf158000006200014f565b3360009081526006602090815260408083208054600160ff1991821681179092556007909352922080549091169091179055600a80546001600160a01b0319166001600160a01b039390931692909217909155600b5550620004979050565b3390565b6001600160a01b038216620001aa5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001be91906200041f565b90915550506001600160a01b03821660009081526020819052604081208054839290620001ed9084906200041f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620002459062000444565b90600052602060002090601f016020900481019282620002695760008555620002b4565b82601f106200028457805160ff1916838001178555620002b4565b82800160010185558215620002b4579182015b82811115620002b457825182559160200191906001019062000297565b50620002c2929150620002c6565b5090565b5b80821115620002c25760008155600101620002c7565b600082601f830112620002ee578081fd5b81516001600160401b03808211156200030b576200030b62000481565b604051601f8301601f19908116603f0116810190828211818310171562000336576200033662000481565b8160405283815260209250868385880101111562000352578485fd5b8491505b8382101562000375578582018301518183018401529082019062000356565b838211156200038657848385830101525b9695505050505050565b60008060008060808587031215620003a6578384fd5b84516001600160401b0380821115620003bd578586fd5b620003cb88838901620002dd565b95506020870151915080821115620003e1578485fd5b50620003f087828801620002dd565b604087015190945090506001600160a01b03811681146200040f578283fd5b6060959095015193969295505050565b600082198211156200043f57634e487b7160e01b81526011600452602481fd5b500190565b600181811c908216806200045957607f821691505b602082108114156200047b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611b3180620004a76000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c8063697f44f91161010f578063a9059cbb116100a2578063dc5aa14911610071578063dc5aa14914610495578063dd62ed3e146104a8578063f2fde38b146104e1578063f9ca1240146104f4576101f0565b8063a9059cbb14610439578063b3f006741461044c578063b978933f1461045f578063c3defc9214610482576101f0565b80638da5cb5b116100de5780638da5cb5b146103f057806395d89b4114610415578063a001ecdd1461041d578063a457c2d714610426576101f0565b8063697f44f91461038057806370a0823114610393578063715018a6146103bc57806385102404146103c4576101f0565b8063313ce567116101875780634d2b4343116101565780634d2b43431461031b5780634f056c621461032e5780635034632314610341578063555c300214610354576101f0565b8063313ce567146102c357806339509351146102d257806342966c68146102e55780634a6f01b1146102f8576101f0565b8063245e0082116101c3578063245e00821461025b5780632ed471391461027e5780632fa293bc146102935780632fb8e2aa146102b6576101f0565b806306fdde03146101f5578063095ea7b31461021357806318160ddd1461023657806323b872dd14610248575b600080fd5b6101fd6104fc565b60405161020a9190611962565b60405180910390f35b610226610221366004611921565b61058e565b604051901515815260200161020a565b6002545b60405190815260200161020a565b6102266102563660046118ac565b6105a4565b610226610269366004611859565b60096020526000908152604090205460ff1681565b61029161028c366004611859565b6106de565b005b6102266102a1366004611859565b60076020526000908152604090205460ff1681565b600c546102269060ff1681565b6040516012815260200161020a565b6102266102e0366004611921565b610772565b6102266102f336600461194a565b6107a9565b610226610306366004611859565b60086020526000908152604090205460ff1681565b61029161032936600461194a565b6107be565b61022661033c3660046118e7565b61081d565b61022661034f3660046118e7565b610908565b610226610362366004611859565b6001600160a01b031660009081526006602052604090205460ff1690565b61022661038e3660046118e7565b610994565b61023a6103a1366004611859565b6001600160a01b031660009081526020819052604090205490565b610291610a20565b6102266103d2366004611859565b6001600160a01b031660009081526007602052604090205460ff1690565b6005546001600160a01b03165b6040516001600160a01b03909116815260200161020a565b6101fd610adc565b61023a600b5481565b610226610434366004611921565b610aeb565b610226610447366004611921565b610b9e565b600a546103fd906001600160a01b031681565b61022661046d366004611859565b60066020526000908152604090205460ff1681565b610226610490366004611921565b610c2c565b6102266104a33660046118e7565b610d10565b61023a6104b636600461187a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102916104ef366004611859565b610dfb565b610226610f45565b60606003805461050b90611a78565b80601f016020809104026020016040519081016040528092919081815260200182805461053790611a78565b80156105845780601f1061055957610100808354040283529160200191610584565b820191906000526020600020905b81548152906001019060200180831161056757829003601f168201915b5050505050905090565b600061059b338484610fb6565b50600192915050565b6001600160a01b03831660009081526008602052604081205460ff16806105e357506001600160a01b03831660009081526009602052604090205460ff165b156105f8576105f384848461110f565b610636565b60006103e8600b548461060b9190611a24565b61061591906119eb565b600a54909150610634908690869086906001600160a01b031685611330565b505b600061064285336104b6565b9050828110156106bf5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6106d385336106ce8685611a61565b610fb6565b506001949350505050565b6005546001600160a01b031633146107385760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b6565b600a80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161059b9185906106ce9086906119d3565b60006107b533836115dd565b5060015b919050565b6005546001600160a01b031633146108185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b6565b600b55565b6005546000906001600160a01b0316331461087a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b6565b3360009081526006602052604090205460ff166108d95760405162461bcd60e51b815260206004820152601160248201527f53656e646572206e6f74206d696e74657200000000000000000000000000000060448201526064016106b6565b506001600160a01b0382166000908152600660205260409020805482151560ff19909116179055600192915050565b6005546000906001600160a01b031633146109655760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b6565b506001600160a01b0382166000908152600860205260409020805482151560ff19909116179055600192915050565b6005546000906001600160a01b031633146109f15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b6565b506001600160a01b0382166000908152600960205260409020805482151560ff19909116179055600192915050565b6005546001600160a01b03163314610a7a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b6565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60606004805461050b90611a78565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b855760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016106b6565b610b9433856106ce8685611a61565b5060019392505050565b3360009081526008602052604081205460ff1680610bd457506001600160a01b03831660009081526009602052604090205460ff165b15610be957610be433848461110f565b61059b565b60006103e8600b5484610bfc9190611a24565b610c0691906119eb565b9050610c2233600a54869086906001600160a01b031685611330565b5050600192915050565b600c5460009060ff1615610c3f57600080fd5b3360009081526006602052604090205460ff16610c9e5760405162461bcd60e51b815260206004820152601660248201527f53656e646572206e6f742077686974656c69737465640000000000000000000060448201526064016106b6565b6001600160a01b03831660009081526007602052604090205460ff16610d065760405162461bcd60e51b815260206004820152601860248201527f5265636569766572206e6f742077686974656c6973746564000000000000000060448201526064016106b6565b61059b8383611763565b6005546000906001600160a01b03163314610d6d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b6565b3360009081526006602052604090205460ff16610dcc5760405162461bcd60e51b815260206004820152601160248201527f53656e646572206e6f74206d696e74657200000000000000000000000000000060448201526064016106b6565b506001600160a01b0382166000908152600760205260409020805482151560ff19909116179055600192915050565b6005546001600160a01b03163314610e555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b6565b6001600160a01b038116610ed15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106b6565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6005546000906001600160a01b03163314610fa25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b6565b50600c805460ff1916600190811790915590565b6001600160a01b0383166110315760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106b6565b6001600160a01b0382166110ad5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016106b6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661118b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016106b6565b6001600160a01b0382166112075760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016106b6565b6001600160a01b038316600090815260208190526040902054818110156112965760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016106b6565b6112a08282611a61565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906112d69084906119d3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161132291815260200190565b60405180910390a350505050565b6001600160a01b0385166113ac5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016106b6565b6001600160a01b0384166114285760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016106b6565b6001600160a01b038516600090815260208190526040902054838110156114b75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016106b6565b6114c18482611a61565b6001600160a01b0387166000908152602081905260409020556114e48285611a61565b6001600160a01b0386166000908152602081905260408120805490919061150c9084906119d3565b90915550506001600160a01b038316600090815260208190526040812080548492906115399084906119d3565b90915550506001600160a01b038086169087167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6115778588611a61565b60405190815260200160405180910390a3826001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115cd91815260200190565b60405180910390a3505050505050565b6001600160a01b0382166116595760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016106b6565b6001600160a01b038216600090815260208190526040902054818110156116e85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016106b6565b6116f28282611a61565b6001600160a01b03841660009081526020819052604081209190915560028054849290611720908490611a61565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611102565b6001600160a01b0382166117b95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106b6565b80600260008282546117cb91906119d3565b90915550506001600160a01b038216600090815260208190526040812080548392906117f89084906119d3565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b80356001600160a01b03811681146107b957600080fd5b60006020828403121561186a578081fd5b61187382611842565b9392505050565b6000806040838503121561188c578081fd5b61189583611842565b91506118a360208401611842565b90509250929050565b6000806000606084860312156118c0578081fd5b6118c984611842565b92506118d760208501611842565b9150604084013590509250925092565b600080604083850312156118f9578182fd5b61190283611842565b915060208301358015158114611916578182fd5b809150509250929050565b60008060408385031215611933578182fd5b61193c83611842565b946020939093013593505050565b60006020828403121561195b578081fd5b5035919050565b6000602080835283518082850152825b8181101561198e57858101830151858201604001528201611972565b8181111561199f5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b600082198211156119e6576119e6611acc565b500190565b600082611a1f577f4e487b710000000000000000000000000000000000000000000000000000000081526012600452602481fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611a5c57611a5c611acc565b500290565b600082821015611a7357611a73611acc565b500390565b600181811c90821680611a8c57607f821691505b60208210811415611ac6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea264697066735822122059edc992c115641a6d110f6476c80b930d3f62ec354a9e9f538d0bef1d5c8a2864736f6c63430008030033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000741a81d12f05999493256b119a31913db8d4b44100000000000000000000000000000000000000000000000000000000000000230000000000000000000000000000000000000000000000000000000000000008536b79546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003534b590000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c8063697f44f91161010f578063a9059cbb116100a2578063dc5aa14911610071578063dc5aa14914610495578063dd62ed3e146104a8578063f2fde38b146104e1578063f9ca1240146104f4576101f0565b8063a9059cbb14610439578063b3f006741461044c578063b978933f1461045f578063c3defc9214610482576101f0565b80638da5cb5b116100de5780638da5cb5b146103f057806395d89b4114610415578063a001ecdd1461041d578063a457c2d714610426576101f0565b8063697f44f91461038057806370a0823114610393578063715018a6146103bc57806385102404146103c4576101f0565b8063313ce567116101875780634d2b4343116101565780634d2b43431461031b5780634f056c621461032e5780635034632314610341578063555c300214610354576101f0565b8063313ce567146102c357806339509351146102d257806342966c68146102e55780634a6f01b1146102f8576101f0565b8063245e0082116101c3578063245e00821461025b5780632ed471391461027e5780632fa293bc146102935780632fb8e2aa146102b6576101f0565b806306fdde03146101f5578063095ea7b31461021357806318160ddd1461023657806323b872dd14610248575b600080fd5b6101fd6104fc565b60405161020a9190611962565b60405180910390f35b610226610221366004611921565b61058e565b604051901515815260200161020a565b6002545b60405190815260200161020a565b6102266102563660046118ac565b6105a4565b610226610269366004611859565b60096020526000908152604090205460ff1681565b61029161028c366004611859565b6106de565b005b6102266102a1366004611859565b60076020526000908152604090205460ff1681565b600c546102269060ff1681565b6040516012815260200161020a565b6102266102e0366004611921565b610772565b6102266102f336600461194a565b6107a9565b610226610306366004611859565b60086020526000908152604090205460ff1681565b61029161032936600461194a565b6107be565b61022661033c3660046118e7565b61081d565b61022661034f3660046118e7565b610908565b610226610362366004611859565b6001600160a01b031660009081526006602052604090205460ff1690565b61022661038e3660046118e7565b610994565b61023a6103a1366004611859565b6001600160a01b031660009081526020819052604090205490565b610291610a20565b6102266103d2366004611859565b6001600160a01b031660009081526007602052604090205460ff1690565b6005546001600160a01b03165b6040516001600160a01b03909116815260200161020a565b6101fd610adc565b61023a600b5481565b610226610434366004611921565b610aeb565b610226610447366004611921565b610b9e565b600a546103fd906001600160a01b031681565b61022661046d366004611859565b60066020526000908152604090205460ff1681565b610226610490366004611921565b610c2c565b6102266104a33660046118e7565b610d10565b61023a6104b636600461187a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102916104ef366004611859565b610dfb565b610226610f45565b60606003805461050b90611a78565b80601f016020809104026020016040519081016040528092919081815260200182805461053790611a78565b80156105845780601f1061055957610100808354040283529160200191610584565b820191906000526020600020905b81548152906001019060200180831161056757829003601f168201915b5050505050905090565b600061059b338484610fb6565b50600192915050565b6001600160a01b03831660009081526008602052604081205460ff16806105e357506001600160a01b03831660009081526009602052604090205460ff165b156105f8576105f384848461110f565b610636565b60006103e8600b548461060b9190611a24565b61061591906119eb565b600a54909150610634908690869086906001600160a01b031685611330565b505b600061064285336104b6565b9050828110156106bf5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6106d385336106ce8685611a61565b610fb6565b506001949350505050565b6005546001600160a01b031633146107385760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b6565b600a80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161059b9185906106ce9086906119d3565b60006107b533836115dd565b5060015b919050565b6005546001600160a01b031633146108185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b6565b600b55565b6005546000906001600160a01b0316331461087a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b6565b3360009081526006602052604090205460ff166108d95760405162461bcd60e51b815260206004820152601160248201527f53656e646572206e6f74206d696e74657200000000000000000000000000000060448201526064016106b6565b506001600160a01b0382166000908152600660205260409020805482151560ff19909116179055600192915050565b6005546000906001600160a01b031633146109655760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b6565b506001600160a01b0382166000908152600860205260409020805482151560ff19909116179055600192915050565b6005546000906001600160a01b031633146109f15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b6565b506001600160a01b0382166000908152600960205260409020805482151560ff19909116179055600192915050565b6005546001600160a01b03163314610a7a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b6565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60606004805461050b90611a78565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b855760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016106b6565b610b9433856106ce8685611a61565b5060019392505050565b3360009081526008602052604081205460ff1680610bd457506001600160a01b03831660009081526009602052604090205460ff165b15610be957610be433848461110f565b61059b565b60006103e8600b5484610bfc9190611a24565b610c0691906119eb565b9050610c2233600a54869086906001600160a01b031685611330565b5050600192915050565b600c5460009060ff1615610c3f57600080fd5b3360009081526006602052604090205460ff16610c9e5760405162461bcd60e51b815260206004820152601660248201527f53656e646572206e6f742077686974656c69737465640000000000000000000060448201526064016106b6565b6001600160a01b03831660009081526007602052604090205460ff16610d065760405162461bcd60e51b815260206004820152601860248201527f5265636569766572206e6f742077686974656c6973746564000000000000000060448201526064016106b6565b61059b8383611763565b6005546000906001600160a01b03163314610d6d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b6565b3360009081526006602052604090205460ff16610dcc5760405162461bcd60e51b815260206004820152601160248201527f53656e646572206e6f74206d696e74657200000000000000000000000000000060448201526064016106b6565b506001600160a01b0382166000908152600760205260409020805482151560ff19909116179055600192915050565b6005546001600160a01b03163314610e555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b6565b6001600160a01b038116610ed15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106b6565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6005546000906001600160a01b03163314610fa25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b6565b50600c805460ff1916600190811790915590565b6001600160a01b0383166110315760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106b6565b6001600160a01b0382166110ad5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016106b6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661118b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016106b6565b6001600160a01b0382166112075760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016106b6565b6001600160a01b038316600090815260208190526040902054818110156112965760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016106b6565b6112a08282611a61565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906112d69084906119d3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161132291815260200190565b60405180910390a350505050565b6001600160a01b0385166113ac5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016106b6565b6001600160a01b0384166114285760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016106b6565b6001600160a01b038516600090815260208190526040902054838110156114b75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016106b6565b6114c18482611a61565b6001600160a01b0387166000908152602081905260409020556114e48285611a61565b6001600160a01b0386166000908152602081905260408120805490919061150c9084906119d3565b90915550506001600160a01b038316600090815260208190526040812080548492906115399084906119d3565b90915550506001600160a01b038086169087167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6115778588611a61565b60405190815260200160405180910390a3826001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115cd91815260200190565b60405180910390a3505050505050565b6001600160a01b0382166116595760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016106b6565b6001600160a01b038216600090815260208190526040902054818110156116e85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016106b6565b6116f28282611a61565b6001600160a01b03841660009081526020819052604081209190915560028054849290611720908490611a61565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611102565b6001600160a01b0382166117b95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106b6565b80600260008282546117cb91906119d3565b90915550506001600160a01b038216600090815260208190526040812080548392906117f89084906119d3565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b80356001600160a01b03811681146107b957600080fd5b60006020828403121561186a578081fd5b61187382611842565b9392505050565b6000806040838503121561188c578081fd5b61189583611842565b91506118a360208401611842565b90509250929050565b6000806000606084860312156118c0578081fd5b6118c984611842565b92506118d760208501611842565b9150604084013590509250925092565b600080604083850312156118f9578182fd5b61190283611842565b915060208301358015158114611916578182fd5b809150509250929050565b60008060408385031215611933578182fd5b61193c83611842565b946020939093013593505050565b60006020828403121561195b578081fd5b5035919050565b6000602080835283518082850152825b8181101561198e57858101830151858201604001528201611972565b8181111561199f5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b600082198211156119e6576119e6611acc565b500190565b600082611a1f577f4e487b710000000000000000000000000000000000000000000000000000000081526012600452602481fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611a5c57611a5c611acc565b500290565b600082821015611a7357611a73611acc565b500390565b600181811c90821680611a8c57607f821691505b60208210811415611ac6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea264697066735822122059edc992c115641a6d110f6476c80b930d3f62ec354a9e9f538d0bef1d5c8a2864736f6c63430008030033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000741a81d12f05999493256b119a31913db8d4b44100000000000000000000000000000000000000000000000000000000000000230000000000000000000000000000000000000000000000000000000000000008536b79546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003534b590000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): SkyToken
Arg [1] : _symbol (string): SKY
Arg [2] : _feeReceiver (address): 0x741a81D12f05999493256b119a31913Db8D4b441
Arg [3] : _feePercentage (uint256): 35

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000741a81d12f05999493256b119a31913db8d4b441
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 536b79546f6b656e000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 534b590000000000000000000000000000000000000000000000000000000000


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.