AVAX Price: $22.39 (+4.78%)
Gas: 1 nAVAX
 

Overview

AVAX Balance

Avalanche C-Chain LogoAvalanche C-Chain LogoAvalanche C-Chain Logo0 AVAX

AVAX Value

$0.00

More Info

Private Name Tags

TokenTracker

Zeus Finance (ZEUS) (@$0.0017)

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Approve598130962025-04-06 21:44:4616 days ago1743975886IN
Zeus Finance: ZEUS Token
0 AVAX0.000116462.5
Approve598129192025-04-06 21:39:2616 days ago1743975566IN
Zeus Finance: ZEUS Token
0 AVAX0.000116462.5
Approve598127592025-04-06 21:34:4716 days ago1743975287IN
Zeus Finance: ZEUS Token
0 AVAX0.000116462.5
Approve598124062025-04-06 21:25:1916 days ago1743974719IN
Zeus Finance: ZEUS Token
0 AVAX0.000117612.5245883
Approve598107642025-04-06 20:42:4816 days ago1743972168IN
Zeus Finance: ZEUS Token
0 AVAX0.0010898423.39376807
Approve587676872025-03-15 17:42:0738 days ago1742060527IN
Zeus Finance: ZEUS Token
0 AVAX0.000036741.2625
Approve579163922025-02-26 18:33:2455 days ago1740594804IN
Zeus Finance: ZEUS Token
0 AVAX0.000292936.28782739
Approve575747002025-02-19 22:36:4362 days ago1740004603IN
Zeus Finance: ZEUS Token
0 AVAX0.000069941.51
Approve543868082024-12-15 17:17:32128 days ago1734283052IN
Zeus Finance: ZEUS Token
0 AVAX0.0012578427
Transfer543867522024-12-15 17:15:39128 days ago1734282939IN
Zeus Finance: ZEUS Token
0 AVAX0.0014887126.5
Transfer543863682024-12-15 17:02:29128 days ago1734282149IN
Zeus Finance: ZEUS Token
0 AVAX0.0014887126.5
Transfer534138742024-11-22 18:43:41151 days ago1732301021IN
Zeus Finance: ZEUS Token
0 AVAX0.0014041525
Approve530379332024-11-13 21:25:04160 days ago1731533104IN
Zeus Finance: ZEUS Token
0 AVAX0.001270427.425
Transfer530378702024-11-13 21:23:01160 days ago1731532981IN
Zeus Finance: ZEUS Token
0 AVAX0.0017162330.55
Transfer529774942024-11-12 11:37:30162 days ago1731411450IN
Zeus Finance: ZEUS Token
0 AVAX0.0014890326.5
Approve518371952024-10-16 4:19:41189 days ago1729052381IN
Zeus Finance: ZEUS Token
0 AVAX0.0007712226.5
Approve518371852024-10-16 4:19:19189 days ago1729052359IN
Zeus Finance: ZEUS Token
0 AVAX0.0007712226.5
Approve518371762024-10-16 4:18:56189 days ago1729052336IN
Zeus Finance: ZEUS Token
0 AVAX0.0007712226.5
Transfer506452872024-09-17 12:01:14218 days ago1726574474IN
Zeus Finance: ZEUS Token
0 AVAX0.0015989228.46179267
Approve501388112024-09-05 5:17:48230 days ago1725513468IN
Zeus Finance: ZEUS Token
0 AVAX0.0007712226.5
Approve501388012024-09-05 5:17:28230 days ago1725513448IN
Zeus Finance: ZEUS Token
0 AVAX0.000854629.365
Approve501044332024-09-04 9:15:10231 days ago1725441310IN
Zeus Finance: ZEUS Token
0 AVAX0.0012925427.91
Approve500306682024-09-02 14:17:34233 days ago1725286654IN
Zeus Finance: ZEUS Token
0 AVAX0.0012891727.8518
Transfer497155922024-08-25 23:46:35240 days ago1724629595IN
Zeus Finance: ZEUS Token
0 AVAX0.0015940155
Transfer497155902024-08-25 23:46:31240 days ago1724629591IN
Zeus Finance: ZEUS Token
0 AVAX0.0015940155
View all transactions

Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ZEUSV2

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at snowscan.xyz on 2022-07-16
*/

/**
 
███████╗███████╗██╗░░░██╗░██████╗  ███████╗██╗███╗░░██╗░█████╗░███╗░░██╗░█████╗░███████╗
╚════██║██╔════╝██║░░░██║██╔════╝  ██╔════╝██║████╗░██║██╔══██╗████╗░██║██╔══██╗██╔════╝
░░███╔═╝█████╗░░██║░░░██║╚█████╗░  █████╗░░██║██╔██╗██║███████║██╔██╗██║██║░░╚═╝█████╗░░
██╔══╝░░██╔══╝░░██║░░░██║░╚═══██╗  ██╔══╝░░██║██║╚████║██╔══██║██║╚████║██║░░██╗██╔══╝░░
███████╗███████╗╚██████╔╝██████╔╝  ██║░░░░░██║██║░╚███║██║░░██║██║░╚███║╚█████╔╝███████╗
╚══════╝╚══════╝░╚═════╝░╚═════╝░  ╚═╝░░░░░╚═╝╚═╝░░╚══╝╚═╝░░╚═╝╚═╝░░╚══╝░╚════╝░╚══════╝
 
    ZEUS FINANCE V2
       Web:      https://zeusfinance.org
 */
 
// SPDX-License-Identifier: GPL-3.0-only
 
pragma solidity ^0.8.0;
 
contract Authorization {
    address public owner;
    address public newOwner;
    mapping(address => uint8) public isPermitted;
    event Authorize(address user);
    event Deauthorize(address user);
    event StartOwnershipTransfer(address user);
    event TransferOwnership(address user);
    constructor() {
        owner = msg.sender;
    }
    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }
    modifier auth {
        require(isPermitted[msg.sender] == 1, "Fuck off!.");
        _;
    }
    function transferOwnership(address newOwner_) external onlyOwner {
        newOwner = newOwner_;
        emit StartOwnershipTransfer(newOwner_);
    }
    function takeOwnership() external {
        require(msg.sender == newOwner, "Fuck off!.");
        owner = newOwner;
        newOwner = address(0x0000000000000000000000000000000000000000);
        emit TransferOwnership(owner);
    }
    function permit(address user) external onlyOwner {
        isPermitted[user] = 1;
        emit Authorize(user);
    }
    function deny(address user) external onlyOwner {
        isPermitted[user] = 0;
        emit Deauthorize(user);
    }
}
 
 
 
pragma solidity ^0.8.0;
 
/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);
 
    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);
 
    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);
 
    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);
 
    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
 
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);
 
    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
 
 
 
pragma solidity ^0.8.0;
 
 
/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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);
}
 
 
 
pragma solidity ^0.8.0;
 
/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
 
    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}
 
 
 
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 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
     * overloaded;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }
 
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
 
    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
 
    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
 
    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
 
        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);
 
        return true;
    }
 
    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }
 
    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);
 
        return true;
    }
 
    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
 
        _beforeTokenTransfer(sender, recipient, amount);
 
        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;
 
        emit Transfer(sender, recipient, amount);
    }
 
    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
 
        _beforeTokenTransfer(address(0), account, amount);
 
        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }
 
    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
 
        _beforeTokenTransfer(account, address(0), amount);
 
        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;
 
        emit Transfer(account, address(0), amount);
    }
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
 
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
 
    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}
 
 
 
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 {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        _approve(account, _msgSender(), currentAllowance - amount);
        _burn(account, amount);
    }
}
 
 
pragma solidity ^0.8.0;
 
 
 
contract ZEUSV2 is Authorization, ERC20Burnable {
     mapping(address => bool) public _isBlacklisted;

    constructor(string memory name_, string memory symbol_) ERC20(name_, symbol_) {
        isPermitted[msg.sender] = 1;
    }
    
    function mint(address account, uint256 amount) public auth returns (bool) {
        _mint(account, amount);
        return true;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(
            !_isBlacklisted[from] && !_isBlacklisted[to],
            "Blacklisted address"
        );

        super._transfer(from, to, amount);
    }

    function blacklistMalicious(address account, bool value)
        external
        auth
    {
        _isBlacklisted[account] = value;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"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":false,"internalType":"address","name":"user","type":"address"}],"name":"Authorize","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"}],"name":"Deauthorize","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"}],"name":"StartOwnershipTransfer","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":"user","type":"address"}],"name":"TransferOwnership","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistMalicious","outputs":[],"stateMutability":"nonpayable","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"deny","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":"","type":"address"}],"name":"isPermitted","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"newOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"takeOwnership","outputs":[],"stateMutability":"nonpayable","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"}]

60806040523480156200001157600080fd5b506040516200145f3803806200145f833981016040819052620000349162000158565b600080546001600160a01b031916331790558181600662000056838262000251565b50600762000065828262000251565b5050336000908152600260205260409020805460ff19166001179055506200031d915050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620000b357600080fd5b81516001600160401b0380821115620000d057620000d06200008b565b604051601f8301601f19908116603f01168101908282118183101715620000fb57620000fb6200008b565b816040528381526020925086838588010111156200011857600080fd5b600091505b838210156200013c57858201830151818301840152908201906200011d565b838211156200014e5760008385830101525b9695505050505050565b600080604083850312156200016c57600080fd5b82516001600160401b03808211156200018457600080fd5b6200019286838701620000a1565b93506020850151915080821115620001a957600080fd5b50620001b885828601620000a1565b9150509250929050565b600181811c90821680620001d757607f821691505b602082108103620001f857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200024c57600081815260208120601f850160051c81016020861015620002275750805b601f850160051c820191505b81811015620002485782815560010162000233565b5050505b505050565b81516001600160401b038111156200026d576200026d6200008b565b62000285816200027e8454620001c2565b84620001fe565b602080601f831160018114620002bd5760008415620002a45750858301515b600019600386901b1c1916600185901b17855562000248565b600085815260208120601f198616915b82811015620002ee57888601518255948401946001909101908401620002cd565b50858210156200030d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611132806200032d6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a457c2d71161007c578063a457c2d7146102eb578063a9059cbb146102fe578063d4ee1d9014610311578063d892934214610324578063dd62ed3e14610337578063f2fde38b1461037057600080fd5b806370a082311461025657806379cc67901461027f5780638da5cb5b1461029257806395d89b41146102bd5780639c52a7f1146102c5578063a2f55ae5146102d857600080fd5b8063313ce56711610115578063313ce567146101db57806339509351146101f05780633fd8cc4e1461020357806340c10f191461022657806342966c6814610239578063605361721461024e57600080fd5b806306fdde0314610152578063095ea7b31461017057806318160ddd146101935780631cdd3be3146101a557806323b872dd146101c8575b600080fd5b61015a610383565b6040516101679190610e50565b60405180910390f35b61018361017e366004610ec1565b610415565b6040519015158152602001610167565b6005545b604051908152602001610167565b6101836101b3366004610eeb565b60086020526000908152604090205460ff1681565b6101836101d6366004610f0d565b61042b565b60125b60405160ff9091168152602001610167565b6101836101fe366004610ec1565b6104e1565b6101de610211366004610eeb565b60026020526000908152604090205460ff1681565b610183610234366004610ec1565b610518565b61024c610247366004610f49565b610554565b005b61024c610561565b610197610264366004610eeb565b6001600160a01b031660009081526003602052604090205490565b61024c61028d366004610ec1565b6105e9565b6000546102a5906001600160a01b031681565b6040516001600160a01b039091168152602001610167565b61015a610671565b61024c6102d3366004610eeb565b610680565b61024c6102e6366004610eeb565b6106ef565b6101836102f9366004610ec1565b61075a565b61018361030c366004610ec1565b6107f5565b6001546102a5906001600160a01b031681565b61024c610332366004610f62565b610802565b610197610345366004610f9e565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b61024c61037e366004610eeb565b61085f565b60606006805461039290610fd1565b80601f01602080910402602001604051908101604052809291908181526020018280546103be90610fd1565b801561040b5780601f106103e05761010080835404028352916020019161040b565b820191906000526020600020905b8154815290600101906020018083116103ee57829003601f168201915b5050505050905090565b60006104223384846108c4565b50600192915050565b60006104388484846109e9565b6001600160a01b0384166000908152600460209081526040808320338452909152902054828110156104c25760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104d685336104d18685611021565b6108c4565b506001949350505050565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916104229185906104d1908690611038565b3360009081526002602052604081205460ff1660011461054a5760405162461bcd60e51b81526004016104b990611050565b6104228383610ac4565b61055e3382610ba3565b50565b6001546001600160a01b0316331461058b5760405162461bcd60e51b81526004016104b990611050565b60018054600080546001600160a01b0383166001600160a01b031991821681179092559091169091556040519081527fcfaaa26691e16e66e73290fc725eee1a6b4e0e693a1640484937aac25ffb55a49060200160405180910390a1565b60006105f58333610345565b9050818110156106535760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016104b9565b61066283336104d18585611021565b61066c8383610ba3565b505050565b60606007805461039290610fd1565b6000546001600160a01b0316331461069757600080fd5b6001600160a01b038116600081815260026020908152604091829020805460ff1916905590519182527f79ede3839cd7a7d8bd77e97e5c890565fe4f76cdbbeaa364646e28a8695a788491015b60405180910390a150565b6000546001600160a01b0316331461070657600080fd5b6001600160a01b038116600081815260026020908152604091829020805460ff1916600117905590519182527f6d81a01b39982517ba331aeb4f387b0f9cc32334b65bb9a343a077973cf7adf591016106e4565b3360009081526004602090815260408083206001600160a01b0386168452909152812054828110156107dc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104b9565b6107eb33856104d18685611021565b5060019392505050565b60006104223384846109e9565b3360009081526002602052604090205460ff166001146108345760405162461bcd60e51b81526004016104b990611050565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331461087657600080fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040519081527f686a7ab184e6928ddedba810af7b443d6baa40bf32c4787ccd72c5b4b28cae1b906020016106e4565b6001600160a01b0383166109265760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104b9565b6001600160a01b0382166109875760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104b9565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610a0f5760405162461bcd60e51b81526004016104b990611074565b6001600160a01b038216610a355760405162461bcd60e51b81526004016104b9906110b9565b6001600160a01b03831660009081526008602052604090205460ff16158015610a7757506001600160a01b03821660009081526008602052604090205460ff16155b610ab95760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b60448201526064016104b9565b61066c838383610cf2565b6001600160a01b038216610b1a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104b9565b8060056000828254610b2c9190611038565b90915550506001600160a01b03821660009081526003602052604081208054839290610b59908490611038565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610c035760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104b9565b6001600160a01b03821660009081526003602052604090205481811015610c775760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104b9565b610c818282611021565b6001600160a01b03841660009081526003602052604081209190915560058054849290610caf908490611021565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016109dc565b6001600160a01b038316610d185760405162461bcd60e51b81526004016104b990611074565b6001600160a01b038216610d3e5760405162461bcd60e51b81526004016104b9906110b9565b6001600160a01b03831660009081526003602052604090205481811015610db65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104b9565b610dc08282611021565b6001600160a01b038086166000908152600360205260408082209390935590851681529081208054849290610df6908490611038565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e4291815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015610e7d57858101830151858201604001528201610e61565b81811115610e8f576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610ebc57600080fd5b919050565b60008060408385031215610ed457600080fd5b610edd83610ea5565b946020939093013593505050565b600060208284031215610efd57600080fd5b610f0682610ea5565b9392505050565b600080600060608486031215610f2257600080fd5b610f2b84610ea5565b9250610f3960208501610ea5565b9150604084013590509250925092565b600060208284031215610f5b57600080fd5b5035919050565b60008060408385031215610f7557600080fd5b610f7e83610ea5565b915060208301358015158114610f9357600080fd5b809150509250929050565b60008060408385031215610fb157600080fd5b610fba83610ea5565b9150610fc860208401610ea5565b90509250929050565b600181811c90821680610fe557607f821691505b60208210810361100557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156110335761103361100b565b500390565b6000821982111561104b5761104b61100b565b500190565b6020808252600a9082015269233ab1b59037b333109760b11b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b60608201526080019056fea26469706673582212205c514eda86b58aa567093b6d9b50f929c371d1d634370e36ef4b705c0ff4ec9964736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c5a6575732046696e616e6365000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045a45555300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a457c2d71161007c578063a457c2d7146102eb578063a9059cbb146102fe578063d4ee1d9014610311578063d892934214610324578063dd62ed3e14610337578063f2fde38b1461037057600080fd5b806370a082311461025657806379cc67901461027f5780638da5cb5b1461029257806395d89b41146102bd5780639c52a7f1146102c5578063a2f55ae5146102d857600080fd5b8063313ce56711610115578063313ce567146101db57806339509351146101f05780633fd8cc4e1461020357806340c10f191461022657806342966c6814610239578063605361721461024e57600080fd5b806306fdde0314610152578063095ea7b31461017057806318160ddd146101935780631cdd3be3146101a557806323b872dd146101c8575b600080fd5b61015a610383565b6040516101679190610e50565b60405180910390f35b61018361017e366004610ec1565b610415565b6040519015158152602001610167565b6005545b604051908152602001610167565b6101836101b3366004610eeb565b60086020526000908152604090205460ff1681565b6101836101d6366004610f0d565b61042b565b60125b60405160ff9091168152602001610167565b6101836101fe366004610ec1565b6104e1565b6101de610211366004610eeb565b60026020526000908152604090205460ff1681565b610183610234366004610ec1565b610518565b61024c610247366004610f49565b610554565b005b61024c610561565b610197610264366004610eeb565b6001600160a01b031660009081526003602052604090205490565b61024c61028d366004610ec1565b6105e9565b6000546102a5906001600160a01b031681565b6040516001600160a01b039091168152602001610167565b61015a610671565b61024c6102d3366004610eeb565b610680565b61024c6102e6366004610eeb565b6106ef565b6101836102f9366004610ec1565b61075a565b61018361030c366004610ec1565b6107f5565b6001546102a5906001600160a01b031681565b61024c610332366004610f62565b610802565b610197610345366004610f9e565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b61024c61037e366004610eeb565b61085f565b60606006805461039290610fd1565b80601f01602080910402602001604051908101604052809291908181526020018280546103be90610fd1565b801561040b5780601f106103e05761010080835404028352916020019161040b565b820191906000526020600020905b8154815290600101906020018083116103ee57829003601f168201915b5050505050905090565b60006104223384846108c4565b50600192915050565b60006104388484846109e9565b6001600160a01b0384166000908152600460209081526040808320338452909152902054828110156104c25760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104d685336104d18685611021565b6108c4565b506001949350505050565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916104229185906104d1908690611038565b3360009081526002602052604081205460ff1660011461054a5760405162461bcd60e51b81526004016104b990611050565b6104228383610ac4565b61055e3382610ba3565b50565b6001546001600160a01b0316331461058b5760405162461bcd60e51b81526004016104b990611050565b60018054600080546001600160a01b0383166001600160a01b031991821681179092559091169091556040519081527fcfaaa26691e16e66e73290fc725eee1a6b4e0e693a1640484937aac25ffb55a49060200160405180910390a1565b60006105f58333610345565b9050818110156106535760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016104b9565b61066283336104d18585611021565b61066c8383610ba3565b505050565b60606007805461039290610fd1565b6000546001600160a01b0316331461069757600080fd5b6001600160a01b038116600081815260026020908152604091829020805460ff1916905590519182527f79ede3839cd7a7d8bd77e97e5c890565fe4f76cdbbeaa364646e28a8695a788491015b60405180910390a150565b6000546001600160a01b0316331461070657600080fd5b6001600160a01b038116600081815260026020908152604091829020805460ff1916600117905590519182527f6d81a01b39982517ba331aeb4f387b0f9cc32334b65bb9a343a077973cf7adf591016106e4565b3360009081526004602090815260408083206001600160a01b0386168452909152812054828110156107dc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104b9565b6107eb33856104d18685611021565b5060019392505050565b60006104223384846109e9565b3360009081526002602052604090205460ff166001146108345760405162461bcd60e51b81526004016104b990611050565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331461087657600080fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040519081527f686a7ab184e6928ddedba810af7b443d6baa40bf32c4787ccd72c5b4b28cae1b906020016106e4565b6001600160a01b0383166109265760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104b9565b6001600160a01b0382166109875760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104b9565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610a0f5760405162461bcd60e51b81526004016104b990611074565b6001600160a01b038216610a355760405162461bcd60e51b81526004016104b9906110b9565b6001600160a01b03831660009081526008602052604090205460ff16158015610a7757506001600160a01b03821660009081526008602052604090205460ff16155b610ab95760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b60448201526064016104b9565b61066c838383610cf2565b6001600160a01b038216610b1a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104b9565b8060056000828254610b2c9190611038565b90915550506001600160a01b03821660009081526003602052604081208054839290610b59908490611038565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610c035760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104b9565b6001600160a01b03821660009081526003602052604090205481811015610c775760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104b9565b610c818282611021565b6001600160a01b03841660009081526003602052604081209190915560058054849290610caf908490611021565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016109dc565b6001600160a01b038316610d185760405162461bcd60e51b81526004016104b990611074565b6001600160a01b038216610d3e5760405162461bcd60e51b81526004016104b9906110b9565b6001600160a01b03831660009081526003602052604090205481811015610db65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104b9565b610dc08282611021565b6001600160a01b038086166000908152600360205260408082209390935590851681529081208054849290610df6908490611038565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e4291815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015610e7d57858101830151858201604001528201610e61565b81811115610e8f576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610ebc57600080fd5b919050565b60008060408385031215610ed457600080fd5b610edd83610ea5565b946020939093013593505050565b600060208284031215610efd57600080fd5b610f0682610ea5565b9392505050565b600080600060608486031215610f2257600080fd5b610f2b84610ea5565b9250610f3960208501610ea5565b9150604084013590509250925092565b600060208284031215610f5b57600080fd5b5035919050565b60008060408385031215610f7557600080fd5b610f7e83610ea5565b915060208301358015158114610f9357600080fd5b809150509250929050565b60008060408385031215610fb157600080fd5b610fba83610ea5565b9150610fc860208401610ea5565b90509250929050565b600181811c90821680610fe557607f821691505b60208210810361100557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156110335761103361100b565b500390565b6000821982111561104b5761104b61100b565b500190565b6020808252600a9082015269233ab1b59037b333109760b11b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b60608201526080019056fea26469706673582212205c514eda86b58aa567093b6d9b50f929c371d1d634370e36ef4b705c0ff4ec9964736f6c634300080f0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c5a6575732046696e616e6365000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045a45555300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Zeus Finance
Arg [1] : symbol_ (string): ZEUS

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [3] : 5a6575732046696e616e63650000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 5a45555300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

19212:992:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9206:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11380:169;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;11380:169:0;1053:187:1;10329:108:0;10417:12;;10329:108;;;1391:25:1;;;1379:2;1364:18;10329:108:0;1245:177:1;19268:46:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;12032:424;;;;;;:::i;:::-;;:::i;10170:93::-;10253:2;10170:93;;;2123:4:1;2111:17;;;2093:36;;2081:2;2066:18;10170:93:0;1951:184:1;12866:215:0;;;;;;:::i;:::-;;:::i;1838:44::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;19459:137;;;;;;:::i;:::-;;:::i;18424:91::-;;;;;;:::i;:::-;;:::i;:::-;;2458:238;;;:::i;10501:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10602:18:0;10575:7;10602:18;;;:9;:18;;;;;;;10501:127;18835:332;;;;;;:::i;:::-;;:::i;1781:20::-;;;;;-1:-1:-1;;;;;1781:20:0;;;;;;-1:-1:-1;;;;;2489:32:1;;;2471:51;;2459:2;2444:18;1781:20:0;2325:203:1;9426:104:0;;;:::i;2828:120::-;;;;;;:::i;:::-;;:::i;2702:::-;;;;;;:::i;:::-;;:::i;13585:378::-;;;;;;:::i;:::-;;:::i;10842:175::-;;;;;;:::i;:::-;;:::i;1808:23::-;;;;;-1:-1:-1;;;;;1808:23:0;;;20057:144;;;;;;:::i;:::-;;:::i;11081:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11197:18:0;;;11170:7;11197:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11081:151;2299:153;;;;;;:::i;:::-;;:::i;9206:100::-;9260:13;9293:5;9286:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9206:100;:::o;11380:169::-;11463:4;11480:39;6918:10;11503:7;11512:6;11480:8;:39::i;:::-;-1:-1:-1;11537:4:0;11380:169;;;;:::o;12032:424::-;12138:4;12155:36;12165:6;12173:9;12184:6;12155:9;:36::i;:::-;-1:-1:-1;;;;;12232:19:0;;12205:24;12232:19;;;:11;:19;;;;;;;;6918:10;12232:33;;;;;;;;12284:26;;;;12276:79;;;;-1:-1:-1;;;12276:79:0;;3737:2:1;12276:79:0;;;3719:21:1;3776:2;3756:18;;;3749:30;3815:34;3795:18;;;3788:62;-1:-1:-1;;;3866:18:1;;;3859:38;3914:19;;12276:79:0;;;;;;;;;12366:57;12375:6;6918:10;12397:25;12416:6;12397:16;:25;:::i;:::-;12366:8;:57::i;:::-;-1:-1:-1;12444:4:0;;12032:424;-1:-1:-1;;;;12032:424:0:o;12866:215::-;6918:10;12954:4;13003:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13003:34:0;;;;;;;;;;12954:4;;12971:80;;12994:7;;13003:47;;13040:10;;13003:47;:::i;19459:137::-;2242:10;19527:4;2230:23;;;:11;:23;;;;;;;;;:28;2222:51;;;;-1:-1:-1;;;2222:51:0;;;;;;;:::i;:::-;19544:22:::1;19550:7;19559:6;19544:5;:22::i;18424:91::-:0;18480:27;6918:10;18500:6;18480:5;:27::i;:::-;18424:91;:::o;2458:238::-;2525:8;;-1:-1:-1;;;;;2525:8:0;2511:10;:22;2503:45;;;;-1:-1:-1;;;2503:45:0;;;;;;;:::i;:::-;2567:8;;;;2559:16;;-1:-1:-1;;;;;2567:8:0;;-1:-1:-1;;;;;;2559:16:0;;;;;;;;2586:62;;;;;;2664:24;;2471:51:1;;;2664:24:0;;2459:2:1;2444:18;2664:24:0;;;;;;;2458:238::o;18835:332::-;18912:24;18939:32;18949:7;6918:10;11081:151;:::i;18939:32::-;18912:59;;19010:6;18990:16;:26;;18982:75;;;;-1:-1:-1;;;18982:75:0;;4880:2:1;18982:75:0;;;4862:21:1;4919:2;4899:18;;;4892:30;4958:34;4938:18;;;4931:62;-1:-1:-1;;;5009:18:1;;;5002:34;5053:19;;18982:75:0;4678:400:1;18982:75:0;19068:58;19077:7;6918:10;19100:25;19119:6;19100:16;:25;:::i;19068:58::-;19137:22;19143:7;19152:6;19137:5;:22::i;:::-;18901:266;18835:332;;:::o;9426:104::-;9482:13;9515:7;9508:14;;;;;:::i;2828:120::-;2165:5;;-1:-1:-1;;;;;2165:5:0;2151:10;:19;2143:28;;;;;;-1:-1:-1;;;;;2886:17:0;::::1;2906:1;2886:17:::0;;;:11:::1;:17;::::0;;;;;;;;:21;;-1:-1:-1;;2886:21:0::1;::::0;;2923:17;;2471:51:1;;;2923:17:0::1;::::0;2444:18:1;2923:17:0::1;;;;;;;;2828:120:::0;:::o;2702:::-;2165:5;;-1:-1:-1;;;;;2165:5:0;2151:10;:19;2143:28;;;;;;-1:-1:-1;;;;;2762:17:0;::::1;;::::0;;;:11:::1;:17;::::0;;;;;;;;:21;;-1:-1:-1;;2762:21:0::1;2782:1;2762:21;::::0;;2799:15;;2471:51:1;;;2799:15:0::1;::::0;2444:18:1;2799:15:0::1;2325:203:1::0;13585:378:0;6918:10;13678:4;13722:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13722:34:0;;;;;;;;;;13775:35;;;;13767:85;;;;-1:-1:-1;;;13767:85:0;;5285:2:1;13767:85:0;;;5267:21:1;5324:2;5304:18;;;5297:30;5363:34;5343:18;;;5336:62;-1:-1:-1;;;5414:18:1;;;5407:35;5459:19;;13767:85:0;5083:401:1;13767:85:0;13863:67;6918:10;13886:7;13895:34;13914:15;13895:16;:34;:::i;13863:67::-;-1:-1:-1;13951:4:0;;13585:378;-1:-1:-1;;;13585:378:0:o;10842:175::-;10928:4;10945:42;6918:10;10969:9;10980:6;10945:9;:42::i;20057:144::-;2242:10;2230:23;;;;:11;:23;;;;;;;;;:28;2222:51;;;;-1:-1:-1;;;2222:51:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20162:23:0;;;::::1;;::::0;;;:14:::1;:23;::::0;;;;:31;;-1:-1:-1;;20162:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;20057:144::o;2299:153::-;2165:5;;-1:-1:-1;;;;;2165:5:0;2151:10;:19;2143:28;;;;;;2375:8:::1;:20:::0;;-1:-1:-1;;;;;;2375:20:0::1;-1:-1:-1::0;;;;;2375:20:0;::::1;::::0;;::::1;::::0;;;2411:33:::1;::::0;2471:51:1;;;2411:33:0::1;::::0;2459:2:1;2444:18;2411:33:0::1;2325:203:1::0;16954:347:0;-1:-1:-1;;;;;17056:19:0;;17048:68;;;;-1:-1:-1;;;17048:68:0;;5691:2:1;17048:68:0;;;5673:21:1;5730:2;5710:18;;;5703:30;5769:34;5749:18;;;5742:62;-1:-1:-1;;;5820:18:1;;;5813:34;5864:19;;17048:68:0;5489:400:1;17048:68:0;-1:-1:-1;;;;;17135:21:0;;17127:68;;;;-1:-1:-1;;;17127:68:0;;6096:2:1;17127:68:0;;;6078:21:1;6135:2;6115:18;;;6108:30;6174:34;6154:18;;;6147:62;-1:-1:-1;;;6225:18:1;;;6218:32;6267:19;;17127:68:0;5894:398:1;17127:68:0;-1:-1:-1;;;;;17209:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17261:32;;1391:25:1;;;17261:32:0;;1364:18:1;17261:32:0;;;;;;;;16954:347;;;:::o;19604:445::-;-1:-1:-1;;;;;19736:18:0;;19728:68;;;;-1:-1:-1;;;19728:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19815:16:0;;19807:64;;;;-1:-1:-1;;;19807:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19905:20:0;;;;;;:14;:20;;;;;;;;19904:21;:44;;;;-1:-1:-1;;;;;;19930:18:0;;;;;;:14;:18;;;;;;;;19929:19;19904:44;19882:113;;;;-1:-1:-1;;;19882:113:0;;7309:2:1;19882:113:0;;;7291:21:1;7348:2;7328:18;;;7321:30;-1:-1:-1;;;7367:18:1;;;7360:49;7426:18;;19882:113:0;7107:343:1;19882:113:0;20008:33;20024:4;20030:2;20034:6;20008:15;:33::i;15344:340::-;-1:-1:-1;;;;;15428:21:0;;15420:65;;;;-1:-1:-1;;;15420:65:0;;7657:2:1;15420:65:0;;;7639:21:1;7696:2;7676:18;;;7669:30;7735:33;7715:18;;;7708:61;7786:18;;15420:65:0;7455:355:1;15420:65:0;15578:6;15562:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;15595:18:0;;;;;;:9;:18;;;;;:28;;15617:6;;15595:18;:28;;15617:6;;15595:28;:::i;:::-;;;;-1:-1:-1;;15639:37:0;;1391:25:1;;;-1:-1:-1;;;;;15639:37:0;;;15656:1;;15639:37;;1379:2:1;1364:18;15639:37:0;;;;;;;15344:340;;:::o;16018:497::-;-1:-1:-1;;;;;16102:21:0;;16094:67;;;;-1:-1:-1;;;16094:67:0;;8017:2:1;16094:67:0;;;7999:21:1;8056:2;8036:18;;;8029:30;8095:34;8075:18;;;8068:62;-1:-1:-1;;;8146:18:1;;;8139:31;8187:19;;16094:67:0;7815:397:1;16094:67:0;-1:-1:-1;;;;;16263:18:0;;16238:22;16263:18;;;:9;:18;;;;;;16300:24;;;;16292:71;;;;-1:-1:-1;;;16292:71:0;;8419:2:1;16292:71:0;;;8401:21:1;8458:2;8438:18;;;8431:30;8497:34;8477:18;;;8470:62;-1:-1:-1;;;8548:18:1;;;8541:32;8590:19;;16292:71:0;8217:398:1;16292:71:0;16395:23;16412:6;16395:14;:23;:::i;:::-;-1:-1:-1;;;;;16374:18:0;;;;;;:9;:18;;;;;:44;;;;16429:12;:22;;16445:6;;16374:18;16429:22;;16445:6;;16429:22;:::i;:::-;;;;-1:-1:-1;;16470:37:0;;1391:25:1;;;16496:1:0;;-1:-1:-1;;;;;16470:37:0;;;;;1379:2:1;1364:18;16470:37:0;1245:177:1;14454:607:0;-1:-1:-1;;;;;14560:20:0;;14552:70;;;;-1:-1:-1;;;14552:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14641:23:0;;14633:71;;;;-1:-1:-1;;;14633:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14803:17:0;;14779:21;14803:17;;;:9;:17;;;;;;14839:23;;;;14831:74;;;;-1:-1:-1;;;14831:74:0;;8822:2:1;14831:74:0;;;8804:21:1;8861:2;8841:18;;;8834:30;8900:34;8880:18;;;8873:62;-1:-1:-1;;;8951:18:1;;;8944:36;8997:19;;14831:74:0;8620:402:1;14831:74:0;14936:22;14952:6;14936:13;:22;:::i;:::-;-1:-1:-1;;;;;14916:17:0;;;;;;;:9;:17;;;;;;:42;;;;14969:20;;;;;;;;:30;;14993:6;;14916:17;14969:30;;14993:6;;14969:30;:::i;:::-;;;;;;;;15035:9;-1:-1:-1;;;;;15018:35:0;15027:6;-1:-1:-1;;;;;15018:35:0;;15046:6;15018:35;;;;1391:25:1;;1379:2;1364:18;;1245:177;15018:35:0;;;;;;;;14541:520;14454:607;;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:186::-;1486:6;1539:2;1527:9;1518:7;1514:23;1510:32;1507:52;;;1555:1;1552;1545:12;1507:52;1578:29;1597:9;1578:29;:::i;:::-;1568:39;1427:186;-1:-1:-1;;;1427:186:1:o;1618:328::-;1695:6;1703;1711;1764:2;1752:9;1743:7;1739:23;1735:32;1732:52;;;1780:1;1777;1770:12;1732:52;1803:29;1822:9;1803:29;:::i;:::-;1793:39;;1851:38;1885:2;1874:9;1870:18;1851:38;:::i;:::-;1841:48;;1936:2;1925:9;1921:18;1908:32;1898:42;;1618:328;;;;;:::o;2140:180::-;2199:6;2252:2;2240:9;2231:7;2227:23;2223:32;2220:52;;;2268:1;2265;2258:12;2220:52;-1:-1:-1;2291:23:1;;2140:180;-1:-1:-1;2140:180:1:o;2533:347::-;2598:6;2606;2659:2;2647:9;2638:7;2634:23;2630:32;2627:52;;;2675:1;2672;2665:12;2627:52;2698:29;2717:9;2698:29;:::i;:::-;2688:39;;2777:2;2766:9;2762:18;2749:32;2824:5;2817:13;2810:21;2803:5;2800:32;2790:60;;2846:1;2843;2836:12;2790:60;2869:5;2859:15;;;2533:347;;;;;:::o;2885:260::-;2953:6;2961;3014:2;3002:9;2993:7;2989:23;2985:32;2982:52;;;3030:1;3027;3020:12;2982:52;3053:29;3072:9;3053:29;:::i;:::-;3043:39;;3101:38;3135:2;3124:9;3120:18;3101:38;:::i;:::-;3091:48;;2885:260;;;;;:::o;3150:380::-;3229:1;3225:12;;;;3272;;;3293:61;;3347:4;3339:6;3335:17;3325:27;;3293:61;3400:2;3392:6;3389:14;3369:18;3366:38;3363:161;;3446:10;3441:3;3437:20;3434:1;3427:31;3481:4;3478:1;3471:15;3509:4;3506:1;3499:15;3363:161;;3150:380;;;:::o;3944:127::-;4005:10;4000:3;3996:20;3993:1;3986:31;4036:4;4033:1;4026:15;4060:4;4057:1;4050:15;4076:125;4116:4;4144:1;4141;4138:8;4135:34;;;4149:18;;:::i;:::-;-1:-1:-1;4186:9:1;;4076:125::o;4206:128::-;4246:3;4277:1;4273:6;4270:1;4267:13;4264:39;;;4283:18;;:::i;:::-;-1:-1:-1;4319:9:1;;4206:128::o;4339:334::-;4541:2;4523:21;;;4580:2;4560:18;;;4553:30;-1:-1:-1;;;4614:2:1;4599:18;;4592:40;4664:2;4649:18;;4339:334::o;6297:401::-;6499:2;6481:21;;;6538:2;6518:18;;;6511:30;6577:34;6572:2;6557:18;;6550:62;-1:-1:-1;;;6643:2:1;6628:18;;6621:35;6688:3;6673:19;;6297:401::o;6703:399::-;6905:2;6887:21;;;6944:2;6924:18;;;6917:30;6983:34;6978:2;6963:18;;6956:62;-1:-1:-1;;;7049:2:1;7034:18;;7027:33;7092:3;7077:19;;6703:399::o

Swarm Source

ipfs://5c514eda86b58aa567093b6d9b50f929c371d1d634370e36ef4b705c0ff4ec99

Block Transaction Gas Used Reward
view all blocks ##produced##

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading

OVERVIEW

Zeus Finance aims to help holders generate constant passive income with minimum effort.

Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.