ETH Price: $2,995.24 (-5.80%)
Gas: 5 Gwei

Contract

0xC9DACc72777210dE0A9C25630e7e16D3803aE8aF
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
0x60806040123133572021-04-26 2:54:391101 days ago1619405679IN
 Create: SMTYToken
0 ETH0.0802003260

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SMTYToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-04-26
*/

// File: openzeppelin-solidity/contracts/utils/Context.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

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

// File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

// File: openzeppelin-solidity/contracts/math/SafeMath.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol



pragma solidity >=0.6.0 <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 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

    /**
     * @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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        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);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(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);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

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

// File: openzeppelin-solidity/contracts/utils/Pausable.sol



pragma solidity >=0.6.0 <0.8.0;


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

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

    bool private _paused;

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

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

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

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

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

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

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Pausable.sol



pragma solidity >=0.6.0 <0.8.0;



/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

// File: contracts/UpgradeableOwnable.sol



pragma solidity >=0.6.0 <0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract UpgradeableOwnable {
    bytes32 private constant _OWNER_SLOT = 0xa7b53796fd2d99cb1f5ae019b54f9e024446c3d12b483f733ccc62ed04eb126a;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        assert(_OWNER_SLOT == bytes32(uint256(keccak256("eip1967.proxy.owner")) - 1));
        _setOwner(msg.sender);
        emit OwnershipTransferred(address(0), msg.sender);
    }

    function _setOwner(address newOwner) private {
        bytes32 slot = _OWNER_SLOT;
        // solium-disable-next-line security/no-inline-assembly
        assembly {
            sstore(slot, newOwner)
        }
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address o) {
        bytes32 slot = _OWNER_SLOT;
        // solium-disable-next-line security/no-inline-assembly
        assembly {
            o := sload(slot)
        }
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == msg.sender, "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));
        _setOwner(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);
        _setOwner(newOwner);
    }
}

// File: contracts/liquidity-mining/SMTYToken.sol



pragma solidity 0.6.12;




contract SMTYToken is ERC20Pausable, UpgradeableOwnable {

    mapping(address => bool) public isMinter;
    mapping(address => bool) public allowedSender;
    bool public isAllSenderAllowed = true;

    event AddAllowedSender(address indexed sender);
    event RemoveAllowedSender(address indexed sender);
    event AddMinter(address indexed minter);
    event RemoveMinter(address indexed minter);

    // solium-disable-next-line
    constructor() public ERC20("", "") {}

    function initialize()
        external
        onlyOwner
    {
        addMinter(msg.sender);
        addAllowedSender(address(0x0)); // allow mint
    }

    function name() public view virtual override returns (string memory) {
        return "SMTYToken";
    }

    function symbol() public view virtual override returns (string memory) {
        return "SMTY";
    }

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

    function pause(uint256 flag) public onlyOwner {
        _pause();
    }

    function unpause(uint256 flag) public onlyOwner {
        _unpause();
    }

    function addMinter(address _minter) public onlyOwner {
        isMinter[_minter] = true;
        emit AddMinter(_minter);
    }

    function removeMinter(address _minter) public onlyOwner {
        isMinter[_minter] = false;
        emit RemoveMinter(_minter);
    }

    function addAllowedSender(address _sender) public onlyOwner {
        allowedSender[_sender] = true;
        emit AddAllowedSender(_sender);
    }

    function removeAllowedSender(address _sender) public onlyOwner {
        allowedSender[_sender] = false;
        emit RemoveAllowedSender(_sender);
    }

    function enableAllSenderAllowed(bool _enable) public onlyOwner {
        isAllSenderAllowed = _enable;
    }

    function _beforeTokenTransfer(address _from, address _to, uint256 _amount) internal virtual override {
        super._beforeTokenTransfer(_from, _to, _amount);

        require(isAllSenderAllowed || allowedSender[_from], "Sender is not allowed");
    }

    function mint(address _to, uint256 _amount) public {
        require(isMinter[msg.sender], "Only minter can mint");
        _mint(_to, _amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"AddAllowedSender","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"}],"name":"AddMinter","type":"event"},{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RemoveAllowedSender","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"}],"name":"RemoveMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"}],"name":"addAllowedSender","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","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":"","type":"address"}],"name":"allowedSender","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"enableAllSenderAllowed","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":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isAllSenderAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"o","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"flag","type":"uint256"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"}],"name":"removeAllowedSender","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"flag","type":"uint256"}],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526008805460ff191660011790553480156200001e57600080fd5b50604080516020808201808452600080845284519283019094529281528151919290916200004f91600391620000de565b50805162000065906004906020840190620000de565b50506005805461ff001960ff19909116601217169055506200008733620000ba565b60405133906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36200017a565b7fa7b53796fd2d99cb1f5ae019b54f9e024446c3d12b483f733ccc62ed04eb126a55565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200012157805160ff191683800117855562000151565b8280016001018555821562000151579182015b828111156200015157825182559160200191906001019062000134565b506200015f92915062000163565b5090565b5b808211156200015f576000815560010162000164565b6115c9806200018a6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e14610515578063e8e19ba014610543578063f2fde38b1461054b578063fabc1cbc14610571576101a9565b8063a9059cbb1461049d578063aa271e1a146104c9578063c746c8f4146104ef576101a9565b80638da5cb5b116100d35780638da5cb5b1461041f57806395d89b4114610443578063983b2d561461044b578063a457c2d714610471576101a9565b806370a08231146103e9578063715018a61461040f5780638129fc1c14610417576101a9565b806323b872dd116101665780633950935111610140578063395093511461036357806340c10f191461038f578063471eab5c146103bb5780635c975abb146103e1576101a9565b806323b872dd146102e95780633092afd51461031f578063313ce56714610345576101a9565b80630361b39c146101ae57806306fdde03146101e8578063095ea7b314610265578063136439dd146102915780631703dbaf146102b057806318160ddd146102cf575b600080fd5b6101d4600480360360208110156101c457600080fd5b50356001600160a01b031661058e565b604080519115158252519081900360200190f35b6101f06105a3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022a578181015183820152602001610212565b50505050905090810190601f1680156102575780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101d46004803603604081101561027b57600080fd5b506001600160a01b0381351690602001356105c6565b6102ae600480360360208110156102a757600080fd5b50356105e3565b005b6102ae600480360360208110156102c657600080fd5b50351515610640565b6102d76106a5565b60408051918252519081900360200190f35b6101d4600480360360608110156102ff57600080fd5b506001600160a01b038135811691602081013590911690604001356106ab565b6102ae6004803603602081101561033557600080fd5b50356001600160a01b0316610732565b61034d6107cd565b6040805160ff9092168252519081900360200190f35b6101d46004803603604081101561037957600080fd5b506001600160a01b0381351690602001356107d2565b6102ae600480360360408110156103a557600080fd5b506001600160a01b038135169060200135610820565b6102ae600480360360208110156103d157600080fd5b50356001600160a01b0316610889565b6101d4610924565b6102d7600480360360208110156103ff57600080fd5b50356001600160a01b0316610932565b6102ae61094d565b6102ae6109ea565b610427610a4f565b604080516001600160a01b039092168252519081900360200190f35b6101f0610a74565b6102ae6004803603602081101561046157600080fd5b50356001600160a01b0316610a92565b6101d46004803603604081101561048757600080fd5b506001600160a01b038135169060200135610b30565b6101d4600480360360408110156104b357600080fd5b506001600160a01b038135169060200135610b98565b6101d4600480360360208110156104df57600080fd5b50356001600160a01b0316610bac565b6102ae6004803603602081101561050557600080fd5b50356001600160a01b0316610bc1565b6102d76004803603604081101561052b57600080fd5b506001600160a01b0381358116916020013516610c5f565b6101d4610c8a565b6102ae6004803603602081101561056157600080fd5b50356001600160a01b0316610c93565b6102ae6004803603602081101561058757600080fd5b5035610d7a565b60076020526000908152604090205460ff1681565b60408051808201909152600981526829a6aa2caa37b5b2b760b91b602082015290565b60006105da6105d3610dd4565b8484610dd8565b50600192915050565b336105ec610a4f565b6001600160a01b031614610635576040805162461bcd60e51b815260206004820181905260248201526000805160206114dc833981519152604482015290519081900360640190fd5b61063d610ec4565b50565b33610649610a4f565b6001600160a01b031614610692576040805162461bcd60e51b815260206004820181905260248201526000805160206114dc833981519152604482015290519081900360640190fd5b6008805460ff1916911515919091179055565b60025490565b60006106b8848484610f66565b610728846106c4610dd4565b610723856040518060600160405280602881526020016114b4602891396001600160a01b038a16600090815260016020526040812090610702610dd4565b6001600160a01b0316815260208101919091526040016000205491906110c1565b610dd8565b5060019392505050565b3361073b610a4f565b6001600160a01b031614610784576040805162461bcd60e51b815260206004820181905260248201526000805160206114dc833981519152604482015290519081900360640190fd5b6001600160a01b038116600081815260066020526040808220805460ff19169055517f2f91b591fc56ac0917953ad01ec225524ee5ef0555213e4c8a9d8c9728ee7ffb9190a250565b601290565b60006105da6107df610dd4565b8461072385600160006107f0610dd4565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611158565b3360009081526006602052604090205460ff1661087b576040805162461bcd60e51b815260206004820152601460248201527313db9b1e481b5a5b9d195c8818d85b881b5a5b9d60621b604482015290519081900360640190fd5b61088582826111b9565b5050565b33610892610a4f565b6001600160a01b0316146108db576040805162461bcd60e51b815260206004820181905260248201526000805160206114dc833981519152604482015290519081900360640190fd5b6001600160a01b038116600081815260076020526040808220805460ff19169055517f4a92994591b64790e541e61d7d76128fa1d8eb7280652093de3b1f81f08d9af49190a250565b600554610100900460ff1690565b6001600160a01b031660009081526020819052604090205490565b33610956610a4f565b6001600160a01b03161461099f576040805162461bcd60e51b815260206004820181905260248201526000805160206114dc833981519152604482015290519081900360640190fd5b60006109a9610a4f565b6001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36109e860006112a9565b565b336109f3610a4f565b6001600160a01b031614610a3c576040805162461bcd60e51b815260206004820181905260248201526000805160206114dc833981519152604482015290519081900360640190fd5b610a4533610a92565b6109e86000610bc1565b7fa7b53796fd2d99cb1f5ae019b54f9e024446c3d12b483f733ccc62ed04eb126a5490565b604080518082019091526004815263534d545960e01b602082015290565b33610a9b610a4f565b6001600160a01b031614610ae4576040805162461bcd60e51b815260206004820181905260248201526000805160206114dc833981519152604482015290519081900360640190fd5b6001600160a01b038116600081815260066020526040808220805460ff19166001179055517f16baa937b08d58713325f93ac58b8a9369a4359bbefb4957d6d9b402735722ab9190a250565b60006105da610b3d610dd4565b84610723856040518060600160405280602581526020016115456025913960016000610b67610dd4565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906110c1565b60006105da610ba5610dd4565b8484610f66565b60066020526000908152604090205460ff1681565b33610bca610a4f565b6001600160a01b031614610c13576040805162461bcd60e51b815260206004820181905260248201526000805160206114dc833981519152604482015290519081900360640190fd5b6001600160a01b038116600081815260076020526040808220805460ff19166001179055517f9fd477f436acbbd1bccec434945651e2a867b254b03c1f6af170ac30f1e833f29190a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60085460ff1681565b33610c9c610a4f565b6001600160a01b031614610ce5576040805162461bcd60e51b815260206004820181905260248201526000805160206114dc833981519152604482015290519081900360640190fd5b6001600160a01b038116610d2a5760405162461bcd60e51b81526004018080602001828103825260268152602001806114466026913960400191505060405180910390fd5b806001600160a01b0316610d3c610a4f565b6001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a361063d816112a9565b33610d83610a4f565b6001600160a01b031614610dcc576040805162461bcd60e51b815260206004820181905260248201526000805160206114dc833981519152604482015290519081900360640190fd5b61063d6112cd565b3390565b6001600160a01b038316610e1d5760405162461bcd60e51b81526004018080602001828103825260248152602001806115216024913960400191505060405180910390fd5b6001600160a01b038216610e625760405162461bcd60e51b815260040180806020018281038252602281526020018061146c6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b610ecc610924565b15610f11576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6005805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f49610dd4565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b038316610fab5760405162461bcd60e51b81526004018080602001828103825260258152602001806114fc6025913960400191505060405180910390fd5b6001600160a01b038216610ff05760405162461bcd60e51b81526004018080602001828103825260238152602001806114236023913960400191505060405180910390fd5b610ffb838383611351565b6110388160405180606001604052806026815260200161148e602691396001600160a01b03861660009081526020819052604090205491906110c1565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546110679082611158565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156111505760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156111155781810151838201526020016110fd565b50505050905090810190601f1680156111425780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156111b2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216611214576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61122060008383611351565b60025461122d9082611158565b6002556001600160a01b0382166000908152602081905260409020546112539082611158565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b7fa7b53796fd2d99cb1f5ae019b54f9e024446c3d12b483f733ccc62ed04eb126a55565b6112d5610924565b61131d576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6005805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610f49610dd4565b61135c8383836113d3565b60085460ff168061138557506001600160a01b03831660009081526007602052604090205460ff165b6113ce576040805162461bcd60e51b815260206004820152601560248201527414d95b99195c881a5cc81b9bdd08185b1b1bddd959605a1b604482015290519081900360640190fd5b505050565b6113de8383836113ce565b6113e6610924565b156113ce5760405162461bcd60e51b815260040180806020018281038252602a81526020018061156a602a913960400191505060405180910390fdfe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f45524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a2646970667358221220e1469bc9cf7e52a586038db8db14efe3b21506f216af9d73fa0f9a6aa090f4cc64736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e14610515578063e8e19ba014610543578063f2fde38b1461054b578063fabc1cbc14610571576101a9565b8063a9059cbb1461049d578063aa271e1a146104c9578063c746c8f4146104ef576101a9565b80638da5cb5b116100d35780638da5cb5b1461041f57806395d89b4114610443578063983b2d561461044b578063a457c2d714610471576101a9565b806370a08231146103e9578063715018a61461040f5780638129fc1c14610417576101a9565b806323b872dd116101665780633950935111610140578063395093511461036357806340c10f191461038f578063471eab5c146103bb5780635c975abb146103e1576101a9565b806323b872dd146102e95780633092afd51461031f578063313ce56714610345576101a9565b80630361b39c146101ae57806306fdde03146101e8578063095ea7b314610265578063136439dd146102915780631703dbaf146102b057806318160ddd146102cf575b600080fd5b6101d4600480360360208110156101c457600080fd5b50356001600160a01b031661058e565b604080519115158252519081900360200190f35b6101f06105a3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022a578181015183820152602001610212565b50505050905090810190601f1680156102575780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101d46004803603604081101561027b57600080fd5b506001600160a01b0381351690602001356105c6565b6102ae600480360360208110156102a757600080fd5b50356105e3565b005b6102ae600480360360208110156102c657600080fd5b50351515610640565b6102d76106a5565b60408051918252519081900360200190f35b6101d4600480360360608110156102ff57600080fd5b506001600160a01b038135811691602081013590911690604001356106ab565b6102ae6004803603602081101561033557600080fd5b50356001600160a01b0316610732565b61034d6107cd565b6040805160ff9092168252519081900360200190f35b6101d46004803603604081101561037957600080fd5b506001600160a01b0381351690602001356107d2565b6102ae600480360360408110156103a557600080fd5b506001600160a01b038135169060200135610820565b6102ae600480360360208110156103d157600080fd5b50356001600160a01b0316610889565b6101d4610924565b6102d7600480360360208110156103ff57600080fd5b50356001600160a01b0316610932565b6102ae61094d565b6102ae6109ea565b610427610a4f565b604080516001600160a01b039092168252519081900360200190f35b6101f0610a74565b6102ae6004803603602081101561046157600080fd5b50356001600160a01b0316610a92565b6101d46004803603604081101561048757600080fd5b506001600160a01b038135169060200135610b30565b6101d4600480360360408110156104b357600080fd5b506001600160a01b038135169060200135610b98565b6101d4600480360360208110156104df57600080fd5b50356001600160a01b0316610bac565b6102ae6004803603602081101561050557600080fd5b50356001600160a01b0316610bc1565b6102d76004803603604081101561052b57600080fd5b506001600160a01b0381358116916020013516610c5f565b6101d4610c8a565b6102ae6004803603602081101561056157600080fd5b50356001600160a01b0316610c93565b6102ae6004803603602081101561058757600080fd5b5035610d7a565b60076020526000908152604090205460ff1681565b60408051808201909152600981526829a6aa2caa37b5b2b760b91b602082015290565b60006105da6105d3610dd4565b8484610dd8565b50600192915050565b336105ec610a4f565b6001600160a01b031614610635576040805162461bcd60e51b815260206004820181905260248201526000805160206114dc833981519152604482015290519081900360640190fd5b61063d610ec4565b50565b33610649610a4f565b6001600160a01b031614610692576040805162461bcd60e51b815260206004820181905260248201526000805160206114dc833981519152604482015290519081900360640190fd5b6008805460ff1916911515919091179055565b60025490565b60006106b8848484610f66565b610728846106c4610dd4565b610723856040518060600160405280602881526020016114b4602891396001600160a01b038a16600090815260016020526040812090610702610dd4565b6001600160a01b0316815260208101919091526040016000205491906110c1565b610dd8565b5060019392505050565b3361073b610a4f565b6001600160a01b031614610784576040805162461bcd60e51b815260206004820181905260248201526000805160206114dc833981519152604482015290519081900360640190fd5b6001600160a01b038116600081815260066020526040808220805460ff19169055517f2f91b591fc56ac0917953ad01ec225524ee5ef0555213e4c8a9d8c9728ee7ffb9190a250565b601290565b60006105da6107df610dd4565b8461072385600160006107f0610dd4565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611158565b3360009081526006602052604090205460ff1661087b576040805162461bcd60e51b815260206004820152601460248201527313db9b1e481b5a5b9d195c8818d85b881b5a5b9d60621b604482015290519081900360640190fd5b61088582826111b9565b5050565b33610892610a4f565b6001600160a01b0316146108db576040805162461bcd60e51b815260206004820181905260248201526000805160206114dc833981519152604482015290519081900360640190fd5b6001600160a01b038116600081815260076020526040808220805460ff19169055517f4a92994591b64790e541e61d7d76128fa1d8eb7280652093de3b1f81f08d9af49190a250565b600554610100900460ff1690565b6001600160a01b031660009081526020819052604090205490565b33610956610a4f565b6001600160a01b03161461099f576040805162461bcd60e51b815260206004820181905260248201526000805160206114dc833981519152604482015290519081900360640190fd5b60006109a9610a4f565b6001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36109e860006112a9565b565b336109f3610a4f565b6001600160a01b031614610a3c576040805162461bcd60e51b815260206004820181905260248201526000805160206114dc833981519152604482015290519081900360640190fd5b610a4533610a92565b6109e86000610bc1565b7fa7b53796fd2d99cb1f5ae019b54f9e024446c3d12b483f733ccc62ed04eb126a5490565b604080518082019091526004815263534d545960e01b602082015290565b33610a9b610a4f565b6001600160a01b031614610ae4576040805162461bcd60e51b815260206004820181905260248201526000805160206114dc833981519152604482015290519081900360640190fd5b6001600160a01b038116600081815260066020526040808220805460ff19166001179055517f16baa937b08d58713325f93ac58b8a9369a4359bbefb4957d6d9b402735722ab9190a250565b60006105da610b3d610dd4565b84610723856040518060600160405280602581526020016115456025913960016000610b67610dd4565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906110c1565b60006105da610ba5610dd4565b8484610f66565b60066020526000908152604090205460ff1681565b33610bca610a4f565b6001600160a01b031614610c13576040805162461bcd60e51b815260206004820181905260248201526000805160206114dc833981519152604482015290519081900360640190fd5b6001600160a01b038116600081815260076020526040808220805460ff19166001179055517f9fd477f436acbbd1bccec434945651e2a867b254b03c1f6af170ac30f1e833f29190a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60085460ff1681565b33610c9c610a4f565b6001600160a01b031614610ce5576040805162461bcd60e51b815260206004820181905260248201526000805160206114dc833981519152604482015290519081900360640190fd5b6001600160a01b038116610d2a5760405162461bcd60e51b81526004018080602001828103825260268152602001806114466026913960400191505060405180910390fd5b806001600160a01b0316610d3c610a4f565b6001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a361063d816112a9565b33610d83610a4f565b6001600160a01b031614610dcc576040805162461bcd60e51b815260206004820181905260248201526000805160206114dc833981519152604482015290519081900360640190fd5b61063d6112cd565b3390565b6001600160a01b038316610e1d5760405162461bcd60e51b81526004018080602001828103825260248152602001806115216024913960400191505060405180910390fd5b6001600160a01b038216610e625760405162461bcd60e51b815260040180806020018281038252602281526020018061146c6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b610ecc610924565b15610f11576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6005805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f49610dd4565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b038316610fab5760405162461bcd60e51b81526004018080602001828103825260258152602001806114fc6025913960400191505060405180910390fd5b6001600160a01b038216610ff05760405162461bcd60e51b81526004018080602001828103825260238152602001806114236023913960400191505060405180910390fd5b610ffb838383611351565b6110388160405180606001604052806026815260200161148e602691396001600160a01b03861660009081526020819052604090205491906110c1565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546110679082611158565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156111505760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156111155781810151838201526020016110fd565b50505050905090810190601f1680156111425780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156111b2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216611214576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61122060008383611351565b60025461122d9082611158565b6002556001600160a01b0382166000908152602081905260409020546112539082611158565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b7fa7b53796fd2d99cb1f5ae019b54f9e024446c3d12b483f733ccc62ed04eb126a55565b6112d5610924565b61131d576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6005805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610f49610dd4565b61135c8383836113d3565b60085460ff168061138557506001600160a01b03831660009081526007602052604090205460ff165b6113ce576040805162461bcd60e51b815260206004820152601560248201527414d95b99195c881a5cc81b9bdd08185b1b1bddd959605a1b604482015290519081900360640190fd5b505050565b6113de8383836113ce565b6113e6610924565b156113ce5760405162461bcd60e51b815260040180806020018281038252602a81526020018061156a602a913960400191505060405180910390fdfe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f45524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a2646970667358221220e1469bc9cf7e52a586038db8db14efe3b21506f216af9d73fa0f9a6aa090f4cc64736f6c634300060c0033

Deployed Bytecode Sourcemap

28391:2295:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28503:45;;;;;;;;;;;;;;;;-1:-1:-1;28503:45:0;-1:-1:-1;;;;;28503:45:0;;:::i;:::-;;;;;;;;;;;;;;;;;;29052:106;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15642:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15642:169:0;;;;;;;;:::i;29378:73::-;;;;;;;;;;;;;;;;-1:-1:-1;29378:73:0;;:::i;:::-;;30148:110;;;;;;;;;;;;;;;;-1:-1:-1;30148:110:0;;;;:::i;14595:108::-;;;:::i;:::-;;;;;;;;;;;;;;;;16293:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16293:321:0;;;;;;;;;;;;;;;;;:::i;29682:137::-;;;;;;;;;;;;;;;;-1:-1:-1;29682:137:0;-1:-1:-1;;;;;29682:137:0;;:::i;29277:93::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17023:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17023:218:0;;;;;;;;:::i;30530:153::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30530:153:0;;;;;;;;:::i;29984:156::-;;;;;;;;;;;;;;;;-1:-1:-1;29984:156:0;-1:-1:-1;;;;;29984:156:0;;:::i;23466:86::-;;;:::i;14766:127::-;;;;;;;;;;;;;;;;-1:-1:-1;14766:127:0;-1:-1:-1;;;;;14766:127:0;;:::i;27741:151::-;;;:::i;28885:159::-;;;:::i;26951:228::-;;;:::i;:::-;;;;-1:-1:-1;;;;;26951:228:0;;;;;;;;;;;;;;29166:103;;;:::i;29544:130::-;;;;;;;;;;;;;;;;-1:-1:-1;29544:130:0;-1:-1:-1;;;;;29544:130:0;;:::i;17744:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17744:269:0;;;;;;;;:::i;15106:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15106:175:0;;;;;;;;:::i;28456:40::-;;;;;;;;;;;;;;;;-1:-1:-1;28456:40:0;-1:-1:-1;;;;;28456:40:0;;:::i;29827:149::-;;;;;;;;;;;;;;;;-1:-1:-1;29827:149:0;-1:-1:-1;;;;;29827:149:0;;:::i;15344:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15344:151:0;;;;;;;;;;:::i;28555:37::-;;;:::i;28047:247::-;;;;;;;;;;;;;;;;-1:-1:-1;28047:247:0;-1:-1:-1;;;;;28047:247:0;;:::i;29459:77::-;;;;;;;;;;;;;;;;-1:-1:-1;29459:77:0;;:::i;28503:45::-;;;;;;;;;;;;;;;:::o;29052:106::-;29132:18;;;;;;;;;;;;-1:-1:-1;;;29132:18:0;;;;29052:106;:::o;15642:169::-;15725:4;15742:39;15751:12;:10;:12::i;:::-;15765:7;15774:6;15742:8;:39::i;:::-;-1:-1:-1;15799:4:0;15642:169;;;;:::o;29378:73::-;27323:10;27312:7;:5;:7::i;:::-;-1:-1:-1;;;;;27312:21:0;;27304:66;;;;;-1:-1:-1;;;27304:66:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27304:66:0;;;;;;;;;;;;;;;29435:8:::1;:6;:8::i;:::-;29378:73:::0;:::o;30148:110::-;27323:10;27312:7;:5;:7::i;:::-;-1:-1:-1;;;;;27312:21:0;;27304:66;;;;;-1:-1:-1;;;27304:66:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27304:66:0;;;;;;;;;;;;;;;30222:18:::1;:28:::0;;-1:-1:-1;;30222:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30148:110::o;14595:108::-;14683:12;;14595:108;:::o;16293:321::-;16399:4;16416:36;16426:6;16434:9;16445:6;16416:9;:36::i;:::-;16463:121;16472:6;16480:12;:10;:12::i;:::-;16494:89;16532:6;16494:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16494:19:0;;;;;;:11;:19;;;;;;16514:12;:10;:12::i;:::-;-1:-1:-1;;;;;16494:33:0;;;;;;;;;;;;-1:-1:-1;16494:33:0;;;:89;:37;:89::i;:::-;16463:8;:121::i;:::-;-1:-1:-1;16602:4:0;16293:321;;;;;:::o;29682:137::-;27323:10;27312:7;:5;:7::i;:::-;-1:-1:-1;;;;;27312:21:0;;27304:66;;;;;-1:-1:-1;;;27304:66:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27304:66:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;29749:17:0;::::1;29769:5;29749:17:::0;;;:8:::1;:17;::::0;;;;;:25;;-1:-1:-1;;29749:25:0::1;::::0;;29790:21;::::1;::::0;29769:5;29790:21:::1;29682:137:::0;:::o;29277:93::-;29360:2;29277:93;:::o;17023:218::-;17111:4;17128:83;17137:12;:10;:12::i;:::-;17151:7;17160:50;17199:10;17160:11;:25;17172:12;:10;:12::i;:::-;-1:-1:-1;;;;;17160:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17160:25:0;;;:34;;;;;;;;;;;:38;:50::i;30530:153::-;30609:10;30600:20;;;;:8;:20;;;;;;;;30592:53;;;;;-1:-1:-1;;;30592:53:0;;;;;;;;;;;;-1:-1:-1;;;30592:53:0;;;;;;;;;;;;;;;30656:19;30662:3;30667:7;30656:5;:19::i;:::-;30530:153;;:::o;29984:156::-;27323:10;27312:7;:5;:7::i;:::-;-1:-1:-1;;;;;27312:21:0;;27304:66;;;;;-1:-1:-1;;;27304:66:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27304:66:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;30058:22:0;::::1;30083:5;30058:22:::0;;;:13:::1;:22;::::0;;;;;:30;;-1:-1:-1;;30058:30:0::1;::::0;;30104:28;::::1;::::0;30083:5;30104:28:::1;29984:156:::0;:::o;23466:86::-;23537:7;;;;;;;;23466:86::o;14766:127::-;-1:-1:-1;;;;;14867:18:0;14840:7;14867:18;;;;;;;;;;;;14766:127::o;27741:151::-;27323:10;27312:7;:5;:7::i;:::-;-1:-1:-1;;;;;27312:21:0;;27304:66;;;;;-1:-1:-1;;;27304:66:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27304:66:0;;;;;;;;;;;;;;;27849:1:::1;27832:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;27811:41:0::1;;;;;;;;;;;27863:21;27881:1;27863:9;:21::i;:::-;27741:151::o:0;28885:159::-;27323:10;27312:7;:5;:7::i;:::-;-1:-1:-1;;;;;27312:21:0;;27304:66;;;;;-1:-1:-1;;;27304:66:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27304:66:0;;;;;;;;;;;;;;;28960:21:::1;28970:10;28960:9;:21::i;:::-;28992:30;29017:3;28992:16;:30::i;26951:228::-:0;26162:66;27150:11;;27130:42::o;29166:103::-;29248:13;;;;;;;;;;;;-1:-1:-1;;;29248:13:0;;;;29166:103;:::o;29544:130::-;27323:10;27312:7;:5;:7::i;:::-;-1:-1:-1;;;;;27312:21:0;;27304:66;;;;;-1:-1:-1;;;27304:66:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27304:66:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;29608:17:0;::::1;;::::0;;;:8:::1;:17;::::0;;;;;:24;;-1:-1:-1;;29608:24:0::1;29628:4;29608:24;::::0;;29648:18;::::1;::::0;29608:17;29648:18:::1;29544:130:::0;:::o;17744:269::-;17837:4;17854:129;17863:12;:10;:12::i;:::-;17877:7;17886:96;17925:15;17886:96;;;;;;;;;;;;;;;;;:11;:25;17898:12;:10;:12::i;:::-;-1:-1:-1;;;;;17886:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17886:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;15106:175::-;15192:4;15209:42;15219:12;:10;:12::i;:::-;15233:9;15244:6;15209:9;:42::i;28456:40::-;;;;;;;;;;;;;;;:::o;29827:149::-;27323:10;27312:7;:5;:7::i;:::-;-1:-1:-1;;;;;27312:21:0;;27304:66;;;;;-1:-1:-1;;;27304:66:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27304:66:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;29898:22:0;::::1;;::::0;;;:13:::1;:22;::::0;;;;;:29;;-1:-1:-1;;29898:29:0::1;29923:4;29898:29;::::0;;29943:25;::::1;::::0;29898:22;29943:25:::1;29827:149:::0;:::o;15344:151::-;-1:-1:-1;;;;;15460:18:0;;;15433:7;15460:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15344:151::o;28555:37::-;;;;;;:::o;28047:247::-;27323:10;27312:7;:5;:7::i;:::-;-1:-1:-1;;;;;27312:21:0;;27304:66;;;;;-1:-1:-1;;;27304:66:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27304:66:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;28136:22:0;::::1;28128:73;;;;-1:-1:-1::0;;;28128:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28247:8;-1:-1:-1::0;;;;;28217:39:0::1;28238:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;28217:39:0::1;;;;;;;;;;;28267:19;28277:8;28267:9;:19::i;29459:77::-:0;27323:10;27312:7;:5;:7::i;:::-;-1:-1:-1;;;;;27312:21:0;;27304:66;;;;;-1:-1:-1;;;27304:66:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27304:66:0;;;;;;;;;;;;;;;29518:10:::1;:8;:10::i;675:106::-:0;763:10;675:106;:::o;20891:346::-;-1:-1:-1;;;;;20993:19:0;;20985:68;;;;-1:-1:-1;;;20985:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21072:21:0;;21064:68;;;;-1:-1:-1;;;21064:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21145:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21197:32;;;;;;;;;;;;;;;;;20891:346;;;:::o;24266:118::-;23792:8;:6;:8::i;:::-;23791:9;23783:38;;;;;-1:-1:-1;;;23783:38:0;;;;;;;;;;;;-1:-1:-1;;;23783:38:0;;;;;;;;;;;;;;;24326:7:::1;:14:::0;;-1:-1:-1;;24326:14:0::1;;;::::0;;24356:20:::1;24363:12;:10;:12::i;:::-;24356:20;::::0;;-1:-1:-1;;;;;24356:20:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;24266:118::o:0;18503:539::-;-1:-1:-1;;;;;18609:20:0;;18601:70;;;;-1:-1:-1;;;18601:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18690:23:0;;18682:71;;;;-1:-1:-1;;;18682:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18766:47;18787:6;18795:9;18806:6;18766:20;:47::i;:::-;18846:71;18868:6;18846:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18846:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;18826:17:0;;;:9;:17;;;;;;;;;;;:91;;;;18951:20;;;;;;;:32;;18976:6;18951:24;:32::i;:::-;-1:-1:-1;;;;;18928:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;18999:35;;;;;;;18928:20;;18999:35;;;;;;;;;;;;;18503:539;;;:::o;9480:166::-;9566:7;9602:12;9594:6;;;;9586:29;;;;-1:-1:-1;;;9586:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9633:5:0;;;9480:166::o;6653:179::-;6711:7;6743:5;;;6767:6;;;;6759:46;;;;;-1:-1:-1;;;6759:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6823:1;6653:179;-1:-1:-1;;;6653:179:0:o;19324:378::-;-1:-1:-1;;;;;19408:21:0;;19400:65;;;;;-1:-1:-1;;;19400:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19478:49;19507:1;19511:7;19520:6;19478:20;:49::i;:::-;19555:12;;:24;;19572:6;19555:16;:24::i;:::-;19540:12;:39;-1:-1:-1;;;;;19611:18:0;;:9;:18;;;;;;;;;;;:30;;19634:6;19611:22;:30::i;:::-;-1:-1:-1;;;;;19590:18:0;;:9;:18;;;;;;;;;;;:51;;;;19657:37;;;;;;;19590:18;;:9;;19657:37;;;;;;;;;;19324:378;;:::o;26648:222::-;26162:66;26830:22;26815:48::o;24525:120::-;24069:8;:6;:8::i;:::-;24061:41;;;;;-1:-1:-1;;;24061:41:0;;;;;;;;;;;;-1:-1:-1;;;24061:41:0;;;;;;;;;;;;;;;24584:7:::1;:15:::0;;-1:-1:-1;;24584:15:0::1;::::0;;24615:22:::1;24624:12;:10;:12::i;30266:256::-:0;30378:47;30405:5;30412:3;30417:7;30378:26;:47::i;:::-;30446:18;;;;;:42;;-1:-1:-1;;;;;;30468:20:0;;;;;;:13;:20;;;;;;;;30446:42;30438:76;;;;;-1:-1:-1;;;30438:76:0;;;;;;;;;;;;-1:-1:-1;;;30438:76:0;;;;;;;;;;;;;;;30266:256;;;:::o;25250:238::-;25359:44;25386:4;25392:2;25396:6;25359:26;:44::i;:::-;25425:8;:6;:8::i;:::-;25424:9;25416:64;;;;-1:-1:-1;;;25416:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

ipfs://e1469bc9cf7e52a586038db8db14efe3b21506f216af9d73fa0f9a6aa090f4cc

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ 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.