ETH Price: $3,354.37 (+0.09%)

Contract

0x476c5E26a75bd202a9683ffD34359C0CC15be0fF
 

More Info

Private Name Tags

TokenTracker

Serum (SRM) (@$0.0312)

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Transfer212502902024-11-23 11:57:596 mins ago1732363079IN
Serum: SRM Token
0 ETH0.000561310.42922299
Transfer212502352024-11-23 11:46:5917 mins ago1732362419IN
Serum: SRM Token
0 ETH0.0005775910.72962678
Approve212502262024-11-23 11:45:1119 mins ago1732362311IN
Serum: SRM Token
0 ETH0.000451619.27283904
Transfer212501532024-11-23 11:30:3533 mins ago1732361435IN
Serum: SRM Token
0 ETH0.0005819810.81357263
Transfer212500542024-11-23 11:10:3553 mins ago1732360235IN
Serum: SRM Token
0 ETH0.0005962811.07927883
Transfer212499672024-11-23 10:53:111 hr ago1732359191IN
Serum: SRM Token
0 ETH0.0005845210.85831621
Transfer212498982024-11-23 10:39:231 hr ago1732358363IN
Serum: SRM Token
0 ETH0.0004419512.03569534
Approve212497502024-11-23 10:09:351 hr ago1732356575IN
Serum: SRM Token
0 ETH0.000481599.88834288
Transfer212496692024-11-23 9:53:232 hrs ago1732355603IN
Serum: SRM Token
0 ETH0.0006359811.81434825
Approve212496252024-11-23 9:44:352 hrs ago1732355075IN
Serum: SRM Token
0 ETH0.000448359.21043073
Transfer212495982024-11-23 9:39:112 hrs ago1732354751IN
Serum: SRM Token
0 ETH0.0006292211.69384462
Transfer212495752024-11-23 9:34:352 hrs ago1732354475IN
Serum: SRM Token
0 ETH0.0005301216.60164567
Transfer212495402024-11-23 9:27:352 hrs ago1732354055IN
Serum: SRM Token
0 ETH0.0004336211.80501514
Transfer212494702024-11-23 9:13:352 hrs ago1732353215IN
Serum: SRM Token
0 ETH0.0006064711.26851905
Transfer212494312024-11-23 9:05:472 hrs ago1732352747IN
Serum: SRM Token
0 ETH0.0004215211.47932546
Transfer212494222024-11-23 9:03:593 hrs ago1732352639IN
Serum: SRM Token
0 ETH0.0006372711.84092417
Transfer212493652024-11-23 8:52:353 hrs ago1732351955IN
Serum: SRM Token
0 ETH0.0005124616.05469866
Transfer212493062024-11-23 8:40:473 hrs ago1732351247IN
Serum: SRM Token
0 ETH0.0004043312.66227324
Transfer212492692024-11-23 8:33:233 hrs ago1732350803IN
Serum: SRM Token
0 ETH0.0007257514.80169748
Transfer212492572024-11-23 8:30:593 hrs ago1732350659IN
Serum: SRM Token
0 ETH0.0005354414.58180788
Transfer212492532024-11-23 8:30:113 hrs ago1732350611IN
Serum: SRM Token
0 ETH0.0008640616.05115572
Transfer212492372024-11-23 8:26:593 hrs ago1732350419IN
Serum: SRM Token
0 ETH0.0007429513.8013318
Transfer212491872024-11-23 8:16:593 hrs ago1732349819IN
Serum: SRM Token
0 ETH0.0006678712.40935175
Transfer212491762024-11-23 8:14:473 hrs ago1732349687IN
Serum: SRM Token
0 ETH0.0005392116.88643115
Transfer212491592024-11-23 8:11:233 hrs ago1732349483IN
Serum: SRM Token
0 ETH0.0006616112.29306845
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
159402292022-11-10 14:31:23743 days ago1668090683
Serum: SRM Token
0.30505397 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
GenericToken

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-07-31
*/

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

pragma solidity ^0.5.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, 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) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message 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.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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.
     *
     * _Available since v2.4.0._
     */
    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/IERC20.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
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/token/ERC20/ERC20Detailed.sol

pragma solidity ^0.5.0;


/**
 * @dev Optional functions from the ERC20 standard.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

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

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

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

pragma solidity ^0.5.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.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view 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/ERC20.sol

pragma solidity ^0.5.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 {ERC20Mintable}.
 *
 * 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;

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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 returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public 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 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 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 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 {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _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 {
        require(account != address(0), "ERC20: mint to the zero address");

        _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 {
        require(account != address(0), "ERC20: burn from the zero address");

        _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 is 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 {
        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 Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}

// File: openzeppelin-solidity/contracts/access/Roles.sol

pragma solidity ^0.5.0;

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

// File: openzeppelin-solidity/contracts/access/roles/PauserRole.sol

pragma solidity ^0.5.0;



contract PauserRole is Context {
    using Roles for Roles.Role;

    event PauserAdded(address indexed account);
    event PauserRemoved(address indexed account);

    Roles.Role private _pausers;

    constructor () internal {
        _addPauser(_msgSender());
    }

    modifier onlyPauser() {
        require(isPauser(_msgSender()), "PauserRole: caller does not have the Pauser role");
        _;
    }

    function isPauser(address account) public view returns (bool) {
        return _pausers.has(account);
    }

    function addPauser(address account) public onlyPauser {
        _addPauser(account);
    }

    function renouncePauser() public {
        _removePauser(_msgSender());
    }

    function _addPauser(address account) internal {
        _pausers.add(account);
        emit PauserAdded(account);
    }

    function _removePauser(address account) internal {
        _pausers.remove(account);
        emit PauserRemoved(account);
    }
}

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

pragma solidity ^0.5.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.
 */
contract Pausable is Context, PauserRole {
    /**
     * @dev Emitted when the pause is triggered by a pauser (`account`).
     */
    event Paused(address account);

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

    bool private _paused;

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

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

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

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

    /**
     * @dev Called by a pauser to pause, triggers stopped state.
     */
    function pause() public onlyPauser whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Called by a pauser to unpause, returns to normal state.
     */
    function unpause() public onlyPauser whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.5.0;



/**
 * @title Pausable token
 * @dev ERC20 with pausable transfers and allowances.
 *
 * Useful if you want to stop trades until the end of a crowdsale, or have
 * an emergency switch for freezing all token transfers in the event of a large
 * bug.
 */
contract ERC20Pausable is ERC20, Pausable {
    function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transfer(to, value);
    }

    function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transferFrom(from, to, value);
    }

    function approve(address spender, uint256 value) public whenNotPaused returns (bool) {
        return super.approve(spender, value);
    }

    function increaseAllowance(address spender, uint256 addedValue) public whenNotPaused returns (bool) {
        return super.increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public whenNotPaused returns (bool) {
        return super.decreaseAllowance(spender, subtractedValue);
    }
}

// File: openzeppelin-solidity/contracts/access/roles/MinterRole.sol

pragma solidity ^0.5.0;



contract MinterRole is Context {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(_msgSender());
    }

    modifier onlyMinter() {
        require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(_msgSender());
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

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

pragma solidity ^0.5.0;



/**
 * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},
 * which have permission to mint (create) new tokens as they see fit.
 *
 * At construction, the deployer of the contract is the only minter.
 */
contract ERC20Mintable is ERC20, MinterRole {
    /**
     * @dev See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the {MinterRole}.
     */
    function mint(address account, uint256 amount) public onlyMinter returns (bool) {
        _mint(account, amount);
        return true;
    }
}

// File: contracts/token/BurnerRole.sol

pragma solidity ^0.5.0;



contract BurnerRole {
    using Roles for Roles.Role;

    event BurnerAdded(address indexed account);
    event BurnerRemoved(address indexed account);

    Roles.Role private _burners;

    constructor () internal {
        _addBurner(msg.sender);
    }

    modifier onlyBurner() {
        require(isBurner(msg.sender));
        _;
    }

    function isBurner(address account) public view returns (bool) {
        return _burners.has(account);
    }

    function addBurner(address account) public onlyBurner {
        _addBurner(account);
    }

    function renounceBurner() public {
        _removeBurner(msg.sender);
    }

    function _addBurner(address account) internal {
        _burners.add(account);
        emit BurnerAdded(account);
    }

    function _removeBurner(address account) internal {
        _burners.remove(account);
        emit BurnerRemoved(account);
    }
}

// File: contracts/token/ERC20Burnable.sol

pragma solidity ^0.5.0;




// Only allow accounts with the burner role to burn tokens.
contract ERC20Burnable is ERC20, BurnerRole {
    function burn(uint256 value) public onlyBurner() {
        _burn(msg.sender, value);
    }

    function burnFrom(address from, uint256 value) public onlyBurner() {
        _burnFrom(from, value);
    }
}

// File: openzeppelin-solidity/contracts/ownership/Ownable.sol

pragma solidity ^0.5.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.
 *
 * 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 Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _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 onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/utils/CanReclaimEther.sol

pragma solidity ^0.5.0;



// Ether should not be sent to this contract. If any ether is accidentally sent to this
// contract, allow the contract owner to recover it.
// Copied from https://github.com/OpenZeppelin/openzeppelin-solidity/blob/2441fd7d17bffa1944f6f539b2cddd6d19997a31/contracts/ownership/HasNoEther.sol
contract CanReclaimEther is Ownable {
    function reclaimEther() external onlyOwner {
        msg.sender.transfer(address(this).balance);
    }
}

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

pragma solidity ^0.5.5;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following 
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Converts an `address` into `address payable`. Note that this is
     * simply a type cast: the actual underlying value is not changed.
     *
     * _Available since v2.4.0._
     */
    function toPayable(address account) internal pure returns (address payable) {
        return address(uint160(account));
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     *
     * _Available since v2.4.0._
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-call-value
        (bool success, ) = recipient.call.value(amount)("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }
}

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

pragma solidity ^0.5.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves.

        // A Solidity high level call has three parts:
        //  1. The target address is checked to verify it contains contract code
        //  2. The call itself is made, and success asserted
        //  3. The return value is decoded, which in turn checks the size of the returned data.
        // solhint-disable-next-line max-line-length
        require(address(token).isContract(), "SafeERC20: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = address(token).call(data);
        require(success, "SafeERC20: low-level call failed");

        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: contracts/utils/CanReclaimToken.sol

pragma solidity ^0.5.0;




// Tokens should not be sent to this contract.  If any tokens are accidentally sent to
// this contract, allow the contract owner to recover them.
// Copied from https://github.com/OpenZeppelin/openzeppelin-solidity/blob/6c4c8989b399510a66d8b98ad75a0979482436d2/contracts/ownership/CanReclaimToken.sol
contract CanReclaimToken is Ownable {
    using SafeERC20 for IERC20;

    function reclaimToken(IERC20 token) external onlyOwner {
        uint256 balance = token.balanceOf(address(this));
        token.safeTransfer(owner(), balance);
    }
}

// File: contracts/token/GenericToken.sol

pragma solidity ^0.5.0;









contract GenericToken is
    ERC20Detailed,
    ERC20Pausable,
    ERC20Mintable,
    ERC20Burnable,
    CanReclaimEther,
    CanReclaimToken
{
    constructor(string memory name, string memory symbol, uint8 decimals)
        ERC20Detailed(name, symbol, decimals)
        public
    {
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BurnerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BurnerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","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":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","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"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBurner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBurner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"reclaimEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"reclaimToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceBurner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200246338038062002463833981810160405260608110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b50604052602090810151855190935085925084918491620001c09160009190860190620004ac565b508151620001d6906001906020850190620004ac565b506002805460ff191660ff92909216919091179055506200020b9050620001fc620002bb565b6001600160e01b03620002c016565b6007805460ff191690556200023b6200022c6001600160e01b03620002bb16565b6001600160e01b036200031216565b6200024f336001600160e01b036200036416565b6000620002646001600160e01b03620002bb16565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3505050506200054e565b335b90565b620002db816006620003b660201b62001b791790919060201c565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6200032d816008620003b660201b62001b791790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6200037f816009620003b660201b62001b791790919060201c565b6040516001600160a01b038216907f86e57fd2b90329052917118de7c3f521f400d439b9650deaa906a25b08b9456090600090a250565b620003cb82826001600160e01b036200044316565b156200041e576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b0382166200048c5760405162461bcd60e51b8152600401808060200182810382526022815260200180620024416022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004ef57805160ff19168380011785556200051f565b828001600101855582156200051f579182015b828111156200051f57825182559160200191906001019062000502565b506200052d92915062000531565b5090565b620002bd91905b808211156200052d576000815560010162000538565b611ee3806200055e6000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c806379cc67901161010f5780639f727c27116100a2578063dd62ed3e11610071578063dd62ed3e14610591578063e9ec9e8b146105bf578063f2fde38b146105c7578063f44637ba146105ed576101f0565b80639f727c271461050b578063a457c2d714610513578063a9059cbb1461053f578063aa271e1a1461056b576101f0565b80638f32d59b116100de5780638f32d59b146104cd57806395d89b41146104d5578063983b2d56146104dd5780639865027514610503576101f0565b806379cc67901461044f57806382dc1ec41461047b5780638456cb59146104a15780638da5cb5b146104a9576101f0565b806340c10f19116101875780635c975abb116101565780635c975abb146104115780636ef8d66d1461041957806370a0823114610421578063715018a614610447576101f0565b806340c10f191461037c57806342966c68146103a85780634334614a146103c557806346fbf68e146103eb576101f0565b806323b872dd116101c357806323b872dd146102f4578063313ce5671461032a57806339509351146103485780633f4ba83a14610374576101f0565b806306fdde03146101f5578063095ea7b31461027257806317ffc320146102b257806318160ddd146102da575b600080fd5b6101fd610613565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561023757818101518382015260200161021f565b50505050905090810190601f1680156102645780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61029e6004803603604081101561028857600080fd5b506001600160a01b0381351690602001356106a9565b604080519115158252519081900360200190f35b6102d8600480360360208110156102c857600080fd5b50356001600160a01b0316610708565b005b6102e26107ed565b60408051918252519081900360200190f35b61029e6004803603606081101561030a57600080fd5b506001600160a01b038135811691602081013590911690604001356107f3565b610332610854565b6040805160ff9092168252519081900360200190f35b61029e6004803603604081101561035e57600080fd5b506001600160a01b03813516906020013561085d565b6102d86108b5565b61029e6004803603604081101561039257600080fd5b506001600160a01b03813516906020013561099e565b6102d8600480360360208110156103be57600080fd5b50356109fe565b61029e600480360360208110156103db57600080fd5b50356001600160a01b0316610a1d565b61029e6004803603602081101561040157600080fd5b50356001600160a01b0316610a36565b61029e610a49565b6102d8610a52565b6102e26004803603602081101561043757600080fd5b50356001600160a01b0316610a64565b6102d8610a7f565b6102d86004803603604081101561046557600080fd5b506001600160a01b038135169060200135610b10565b6102d86004803603602081101561049157600080fd5b50356001600160a01b0316610b2c565b6102d8610b7b565b6104b1610c42565b604080516001600160a01b039092168252519081900360200190f35b61029e610c51565b6101fd610c77565b6102d8600480360360208110156104f357600080fd5b50356001600160a01b0316610cd7565b6102d8610d26565b6102d8610d36565b61029e6004803603604081101561052957600080fd5b506001600160a01b038135169060200135610da9565b61029e6004803603604081101561055557600080fd5b506001600160a01b038135169060200135610e01565b61029e6004803603602081101561058157600080fd5b50356001600160a01b0316610e59565b6102e2600480360360408110156105a757600080fd5b506001600160a01b0381358116916020013516610e6c565b6102d8610e97565b6102d8600480360360208110156105dd57600080fd5b50356001600160a01b0316610ea0565b6102d86004803603602081101561060357600080fd5b50356001600160a01b0316610ef0565b60008054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561069f5780601f106106745761010080835404028352916020019161069f565b820191906000526020600020905b81548152906001019060200180831161068257829003601f168201915b5050505050905090565b60075460009060ff16156106f7576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107018383610f0b565b9392505050565b610710610c51565b61074f576040805162461bcd60e51b81526020600482018190526024820152600080516020611d90833981519152604482015290519081900360640190fd5b604080516370a0823160e01b815230600482015290516000916001600160a01b038416916370a0823191602480820192602092909190829003018186803b15801561079957600080fd5b505afa1580156107ad573d6000803e3d6000fd5b505050506040513d60208110156107c357600080fd5b505190506107e96107d2610c42565b6001600160a01b038416908363ffffffff610f1f16565b5050565b60055490565b60075460009060ff1615610841576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61084c848484610f76565b949350505050565b60025460ff1690565b60075460009060ff16156108ab576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107018383611003565b6108c56108c0611057565b610a36565b6109005760405162461bcd60e51b8152600401808060200182810382526030815260200180611c796030913960400191505060405180910390fd5b60075460ff1661094e576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610981611057565b604080516001600160a01b039092168252519081900360200190a1565b60006109b06109ab611057565b610e59565b6109eb5760405162461bcd60e51b8152600401808060200182810382526030815260200180611d176030913960400191505060405180910390fd5b6109f5838361105b565b50600192915050565b610a0733610a1d565b610a1057600080fd5b610a1a338261114d565b50565b6000610a3060098363ffffffff61124916565b92915050565b6000610a3060068363ffffffff61124916565b60075460ff1690565b610a62610a5d611057565b6112b0565b565b6001600160a01b031660009081526003602052604090205490565b610a87610c51565b610ac6576040805162461bcd60e51b81526020600482018190526024820152600080516020611d90833981519152604482015290519081900360640190fd5b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b610b1933610a1d565b610b2257600080fd5b6107e982826112f8565b610b376108c0611057565b610b725760405162461bcd60e51b8152600401808060200182810382526030815260200180611c796030913960400191505060405180910390fd5b610a1a8161134c565b610b866108c0611057565b610bc15760405162461bcd60e51b8152600401808060200182810382526030815260200180611c796030913960400191505060405180910390fd5b60075460ff1615610c0c576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610981611057565b600a546001600160a01b031690565b600a546000906001600160a01b0316610c68611057565b6001600160a01b031614905090565b60018054604080516020601f6002600019610100878916150201909516949094049384018190048102820181019092528281526060939092909183018282801561069f5780601f106106745761010080835404028352916020019161069f565b610ce26109ab611057565b610d1d5760405162461bcd60e51b8152600401808060200182810382526030815260200180611d176030913960400191505060405180910390fd5b610a1a81611394565b610a62610d31611057565b6113dc565b610d3e610c51565b610d7d576040805162461bcd60e51b81526020600482018190526024820152600080516020611d90833981519152604482015290519081900360640190fd5b60405133904780156108fc02916000818181858888f19350505050158015610a1a573d6000803e3d6000fd5b60075460009060ff1615610df7576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107018383611424565b60075460009060ff1615610e4f576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107018383611492565b6000610a3060088363ffffffff61124916565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b610a62336114a6565b610ea8610c51565b610ee7576040805162461bcd60e51b81526020600482018190526024820152600080516020611d90833981519152604482015290519081900360640190fd5b610a1a816114ee565b610ef933610a1d565b610f0257600080fd5b610a1a8161158f565b60006109f5610f18611057565b84846115d7565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610f719084906116c3565b505050565b6000610f83848484611881565b610ff984610f8f611057565b610ff485604051806060016040528060288152602001611d68602891396001600160a01b038a16600090815260046020526040812090610fcd611057565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6119df16565b6115d7565b5060019392505050565b60006109f5611010611057565b84610ff48560046000611021611057565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff611a7616565b3390565b6001600160a01b0382166110b6576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6005546110c9908263ffffffff611a7616565b6005556001600160a01b0382166000908152600360205260409020546110f5908263ffffffff611a7616565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166111925760405162461bcd60e51b8152600401808060200182810382526021815260200180611df66021913960400191505060405180910390fd5b6111d581604051806060016040528060228152602001611c57602291396001600160a01b038516600090815260036020526040902054919063ffffffff6119df16565b6001600160a01b038316600090815260036020526040902055600554611201908263ffffffff611ad016565b6005556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60006001600160a01b0382166112905760405162461bcd60e51b8152600401808060200182810382526022815260200180611db06022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6112c160068263ffffffff611b1216565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b611302828261114d565b6107e98261130e611057565b610ff484604051806060016040528060248152602001611dd2602491396001600160a01b038816600090815260046020526040812090610fcd611057565b61135d60068263ffffffff611b7916565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6113a560088263ffffffff611b7916565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6113ed60088263ffffffff611b1216565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b60006109f5611431611057565b84610ff485604051806060016040528060258152602001611e8a602591396004600061145b611057565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6119df16565b60006109f561149f611057565b8484611881565b6114b760098263ffffffff611b1216565b6040516001600160a01b038216907f90eabbc0c667db2a5029ed6bc0f5fe9f356d11684a4ca9fcfaec0e53f12b9c8e90600090a250565b6001600160a01b0381166115335760405162461bcd60e51b8152600401808060200182810382526026815260200180611ca96026913960400191505060405180910390fd5b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6115a060098263ffffffff611b7916565b6040516001600160a01b038216907f86e57fd2b90329052917118de7c3f521f400d439b9650deaa906a25b08b9456090600090a250565b6001600160a01b03831661161c5760405162461bcd60e51b8152600401808060200182810382526024815260200180611e3c6024913960400191505060405180910390fd5b6001600160a01b0382166116615760405162461bcd60e51b8152600401808060200182810382526022815260200180611ccf6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6116d5826001600160a01b0316611bfa565b611726576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106117645780518252601f199092019160209182019101611745565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146117c6576040519150601f19603f3d011682016040523d82523d6000602084013e6117cb565b606091505b509150915081611822576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b80511561187b5780806020019051602081101561183e57600080fd5b505161187b5760405162461bcd60e51b815260040180806020018281038252602a815260200180611e60602a913960400191505060405180910390fd5b50505050565b6001600160a01b0383166118c65760405162461bcd60e51b8152600401808060200182810382526025815260200180611e176025913960400191505060405180910390fd5b6001600160a01b03821661190b5760405162461bcd60e51b8152600401808060200182810382526023815260200180611c346023913960400191505060405180910390fd5b61194e81604051806060016040528060268152602001611cf1602691396001600160a01b038616600090815260036020526040902054919063ffffffff6119df16565b6001600160a01b038085166000908152600360205260408082209390935590841681522054611983908263ffffffff611a7616565b6001600160a01b0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115611a6e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611a33578181015183820152602001611a1b565b50505050905090810190601f168015611a605780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610701576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600061070183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506119df565b611b1c8282611249565b611b575760405162461bcd60e51b8152600401808060200182810382526021815260200180611d476021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b611b838282611249565b15611bd5576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061084c57505015159291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820f517f81a4ed9bc7eb101db7ecb150945705e9faf9f53a89e61b569b6876add6d64736f6c63430005110032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000005536572756d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000353524d0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c806379cc67901161010f5780639f727c27116100a2578063dd62ed3e11610071578063dd62ed3e14610591578063e9ec9e8b146105bf578063f2fde38b146105c7578063f44637ba146105ed576101f0565b80639f727c271461050b578063a457c2d714610513578063a9059cbb1461053f578063aa271e1a1461056b576101f0565b80638f32d59b116100de5780638f32d59b146104cd57806395d89b41146104d5578063983b2d56146104dd5780639865027514610503576101f0565b806379cc67901461044f57806382dc1ec41461047b5780638456cb59146104a15780638da5cb5b146104a9576101f0565b806340c10f19116101875780635c975abb116101565780635c975abb146104115780636ef8d66d1461041957806370a0823114610421578063715018a614610447576101f0565b806340c10f191461037c57806342966c68146103a85780634334614a146103c557806346fbf68e146103eb576101f0565b806323b872dd116101c357806323b872dd146102f4578063313ce5671461032a57806339509351146103485780633f4ba83a14610374576101f0565b806306fdde03146101f5578063095ea7b31461027257806317ffc320146102b257806318160ddd146102da575b600080fd5b6101fd610613565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561023757818101518382015260200161021f565b50505050905090810190601f1680156102645780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61029e6004803603604081101561028857600080fd5b506001600160a01b0381351690602001356106a9565b604080519115158252519081900360200190f35b6102d8600480360360208110156102c857600080fd5b50356001600160a01b0316610708565b005b6102e26107ed565b60408051918252519081900360200190f35b61029e6004803603606081101561030a57600080fd5b506001600160a01b038135811691602081013590911690604001356107f3565b610332610854565b6040805160ff9092168252519081900360200190f35b61029e6004803603604081101561035e57600080fd5b506001600160a01b03813516906020013561085d565b6102d86108b5565b61029e6004803603604081101561039257600080fd5b506001600160a01b03813516906020013561099e565b6102d8600480360360208110156103be57600080fd5b50356109fe565b61029e600480360360208110156103db57600080fd5b50356001600160a01b0316610a1d565b61029e6004803603602081101561040157600080fd5b50356001600160a01b0316610a36565b61029e610a49565b6102d8610a52565b6102e26004803603602081101561043757600080fd5b50356001600160a01b0316610a64565b6102d8610a7f565b6102d86004803603604081101561046557600080fd5b506001600160a01b038135169060200135610b10565b6102d86004803603602081101561049157600080fd5b50356001600160a01b0316610b2c565b6102d8610b7b565b6104b1610c42565b604080516001600160a01b039092168252519081900360200190f35b61029e610c51565b6101fd610c77565b6102d8600480360360208110156104f357600080fd5b50356001600160a01b0316610cd7565b6102d8610d26565b6102d8610d36565b61029e6004803603604081101561052957600080fd5b506001600160a01b038135169060200135610da9565b61029e6004803603604081101561055557600080fd5b506001600160a01b038135169060200135610e01565b61029e6004803603602081101561058157600080fd5b50356001600160a01b0316610e59565b6102e2600480360360408110156105a757600080fd5b506001600160a01b0381358116916020013516610e6c565b6102d8610e97565b6102d8600480360360208110156105dd57600080fd5b50356001600160a01b0316610ea0565b6102d86004803603602081101561060357600080fd5b50356001600160a01b0316610ef0565b60008054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561069f5780601f106106745761010080835404028352916020019161069f565b820191906000526020600020905b81548152906001019060200180831161068257829003601f168201915b5050505050905090565b60075460009060ff16156106f7576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107018383610f0b565b9392505050565b610710610c51565b61074f576040805162461bcd60e51b81526020600482018190526024820152600080516020611d90833981519152604482015290519081900360640190fd5b604080516370a0823160e01b815230600482015290516000916001600160a01b038416916370a0823191602480820192602092909190829003018186803b15801561079957600080fd5b505afa1580156107ad573d6000803e3d6000fd5b505050506040513d60208110156107c357600080fd5b505190506107e96107d2610c42565b6001600160a01b038416908363ffffffff610f1f16565b5050565b60055490565b60075460009060ff1615610841576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61084c848484610f76565b949350505050565b60025460ff1690565b60075460009060ff16156108ab576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107018383611003565b6108c56108c0611057565b610a36565b6109005760405162461bcd60e51b8152600401808060200182810382526030815260200180611c796030913960400191505060405180910390fd5b60075460ff1661094e576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610981611057565b604080516001600160a01b039092168252519081900360200190a1565b60006109b06109ab611057565b610e59565b6109eb5760405162461bcd60e51b8152600401808060200182810382526030815260200180611d176030913960400191505060405180910390fd5b6109f5838361105b565b50600192915050565b610a0733610a1d565b610a1057600080fd5b610a1a338261114d565b50565b6000610a3060098363ffffffff61124916565b92915050565b6000610a3060068363ffffffff61124916565b60075460ff1690565b610a62610a5d611057565b6112b0565b565b6001600160a01b031660009081526003602052604090205490565b610a87610c51565b610ac6576040805162461bcd60e51b81526020600482018190526024820152600080516020611d90833981519152604482015290519081900360640190fd5b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b610b1933610a1d565b610b2257600080fd5b6107e982826112f8565b610b376108c0611057565b610b725760405162461bcd60e51b8152600401808060200182810382526030815260200180611c796030913960400191505060405180910390fd5b610a1a8161134c565b610b866108c0611057565b610bc15760405162461bcd60e51b8152600401808060200182810382526030815260200180611c796030913960400191505060405180910390fd5b60075460ff1615610c0c576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610981611057565b600a546001600160a01b031690565b600a546000906001600160a01b0316610c68611057565b6001600160a01b031614905090565b60018054604080516020601f6002600019610100878916150201909516949094049384018190048102820181019092528281526060939092909183018282801561069f5780601f106106745761010080835404028352916020019161069f565b610ce26109ab611057565b610d1d5760405162461bcd60e51b8152600401808060200182810382526030815260200180611d176030913960400191505060405180910390fd5b610a1a81611394565b610a62610d31611057565b6113dc565b610d3e610c51565b610d7d576040805162461bcd60e51b81526020600482018190526024820152600080516020611d90833981519152604482015290519081900360640190fd5b60405133904780156108fc02916000818181858888f19350505050158015610a1a573d6000803e3d6000fd5b60075460009060ff1615610df7576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107018383611424565b60075460009060ff1615610e4f576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107018383611492565b6000610a3060088363ffffffff61124916565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b610a62336114a6565b610ea8610c51565b610ee7576040805162461bcd60e51b81526020600482018190526024820152600080516020611d90833981519152604482015290519081900360640190fd5b610a1a816114ee565b610ef933610a1d565b610f0257600080fd5b610a1a8161158f565b60006109f5610f18611057565b84846115d7565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610f719084906116c3565b505050565b6000610f83848484611881565b610ff984610f8f611057565b610ff485604051806060016040528060288152602001611d68602891396001600160a01b038a16600090815260046020526040812090610fcd611057565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6119df16565b6115d7565b5060019392505050565b60006109f5611010611057565b84610ff48560046000611021611057565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff611a7616565b3390565b6001600160a01b0382166110b6576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6005546110c9908263ffffffff611a7616565b6005556001600160a01b0382166000908152600360205260409020546110f5908263ffffffff611a7616565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166111925760405162461bcd60e51b8152600401808060200182810382526021815260200180611df66021913960400191505060405180910390fd5b6111d581604051806060016040528060228152602001611c57602291396001600160a01b038516600090815260036020526040902054919063ffffffff6119df16565b6001600160a01b038316600090815260036020526040902055600554611201908263ffffffff611ad016565b6005556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60006001600160a01b0382166112905760405162461bcd60e51b8152600401808060200182810382526022815260200180611db06022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6112c160068263ffffffff611b1216565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b611302828261114d565b6107e98261130e611057565b610ff484604051806060016040528060248152602001611dd2602491396001600160a01b038816600090815260046020526040812090610fcd611057565b61135d60068263ffffffff611b7916565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6113a560088263ffffffff611b7916565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6113ed60088263ffffffff611b1216565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b60006109f5611431611057565b84610ff485604051806060016040528060258152602001611e8a602591396004600061145b611057565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6119df16565b60006109f561149f611057565b8484611881565b6114b760098263ffffffff611b1216565b6040516001600160a01b038216907f90eabbc0c667db2a5029ed6bc0f5fe9f356d11684a4ca9fcfaec0e53f12b9c8e90600090a250565b6001600160a01b0381166115335760405162461bcd60e51b8152600401808060200182810382526026815260200180611ca96026913960400191505060405180910390fd5b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6115a060098263ffffffff611b7916565b6040516001600160a01b038216907f86e57fd2b90329052917118de7c3f521f400d439b9650deaa906a25b08b9456090600090a250565b6001600160a01b03831661161c5760405162461bcd60e51b8152600401808060200182810382526024815260200180611e3c6024913960400191505060405180910390fd5b6001600160a01b0382166116615760405162461bcd60e51b8152600401808060200182810382526022815260200180611ccf6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6116d5826001600160a01b0316611bfa565b611726576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106117645780518252601f199092019160209182019101611745565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146117c6576040519150601f19603f3d011682016040523d82523d6000602084013e6117cb565b606091505b509150915081611822576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b80511561187b5780806020019051602081101561183e57600080fd5b505161187b5760405162461bcd60e51b815260040180806020018281038252602a815260200180611e60602a913960400191505060405180910390fd5b50505050565b6001600160a01b0383166118c65760405162461bcd60e51b8152600401808060200182810382526025815260200180611e176025913960400191505060405180910390fd5b6001600160a01b03821661190b5760405162461bcd60e51b8152600401808060200182810382526023815260200180611c346023913960400191505060405180910390fd5b61194e81604051806060016040528060268152602001611cf1602691396001600160a01b038616600090815260036020526040902054919063ffffffff6119df16565b6001600160a01b038085166000908152600360205260408082209390935590841681522054611983908263ffffffff611a7616565b6001600160a01b0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115611a6e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611a33578181015183820152602001611a1b565b50505050905090810190601f168015611a605780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610701576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600061070183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506119df565b611b1c8282611249565b611b575760405162461bcd60e51b8152600401808060200182810382526021815260200180611d476021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b611b838282611249565b15611bd5576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061084c57505015159291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820f517f81a4ed9bc7eb101db7ecb150945705e9faf9f53a89e61b569b6876add6d64736f6c63430005110032

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000005536572756d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000353524d0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Serum
Arg [1] : symbol (string): SRM
Arg [2] : decimals (uint8): 6

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 536572756d000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 53524d0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

38961:305:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38961:305:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9126:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;9126:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24567:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24567:140:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;38697:169;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38697:169:0;-1:-1:-1;;;;;38697:169:0;;:::i;:::-;;12851:91;;;:::i;:::-;;;;;;;;;;;;;;;;24399:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24399:160:0;;;;;;;;;;;;;;;;;:::i;9978:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24715:170;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24715:170:0;;;;;;;;:::i;23717:120::-;;;:::i;26713:143::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26713:143:0;;;;;;;;:::i;28060:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28060:92:0;;:::i;27300:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27300:109:0;-1:-1:-1;;;;;27300:109:0;;:::i;21188:::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21188:109:0;-1:-1:-1;;;;;21188:109:0;;:::i;22924:78::-;;;:::i;21405:79::-;;;:::i;13005:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13005:110:0;-1:-1:-1;;;;;13005:110:0;;:::i;30050:140::-;;;:::i;28160:108::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;28160:108:0;;;;;;;;:::i;21305:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21305:92:0;-1:-1:-1;;;;;21305:92:0;;:::i;23504:118::-;;;:::i;29239:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;29239:79:0;;;;;;;;;;;;;;29605:94;;;:::i;9328:87::-;;;:::i;25730:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25730:92:0;-1:-1:-1;;;;;25730:92:0;;:::i;25830:79::-;;;:::i;31212:104::-;;;:::i;24893:180::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24893:180:0;;;;;;;;:::i;24259:132::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24259:132:0;;;;;;;;:::i;25613:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25613:109:0;-1:-1:-1;;;;;25613:109:0;;:::i;13549:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13549:134:0;;;;;;;;;;:::i;27517:77::-;;;:::i;30345:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30345:109:0;-1:-1:-1;;;;;30345:109:0;;:::i;27417:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27417:92:0;-1:-1:-1;;;;;27417:92:0;;:::i;9126:83::-;9196:5;9189:12;;;;;;;;-1:-1:-1;;9189:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9163:13;;9189:12;;9196:5;;9189:12;;9196:5;9189:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9126:83;:::o;24567:140::-;23161:7;;24646:4;;23161:7;;23160:8;23152:37;;;;;-1:-1:-1;;;23152:37:0;;;;;;;;;;;;-1:-1:-1;;;23152:37:0;;;;;;;;;;;;;;;24670:29;24684:7;24693:5;24670:13;:29::i;:::-;24663:36;24567:140;-1:-1:-1;;;24567:140:0:o;38697:169::-;29451:9;:7;:9::i;:::-;29443:54;;;;;-1:-1:-1;;;29443:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;29443:54:0;;;;;;;;;;;;;;;38781:30;;;-1:-1:-1;;;38781:30:0;;38805:4;38781:30;;;;;;38763:15;;-1:-1:-1;;;;;38781:15:0;;;;;:30;;;;;;;;;;;;;;;:15;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;38781:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38781:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38781:30:0;;-1:-1:-1;38822:36:0;38841:7;:5;:7::i;:::-;-1:-1:-1;;;;;38822:18:0;;;38850:7;38822:36;:18;:36;:::i;:::-;29508:1;38697:169;:::o;12851:91::-;12922:12;;12851:91;:::o;24399:160::-;23161:7;;24492:4;;23161:7;;23160:8;23152:37;;;;;-1:-1:-1;;;23152:37:0;;;;;;;;;;;;-1:-1:-1;;;23152:37:0;;;;;;;;;;;;;;;24516:35;24535:4;24541:2;24545:5;24516:18;:35::i;:::-;24509:42;24399:160;-1:-1:-1;;;;24399:160:0:o;9978:83::-;10044:9;;;;9978:83;:::o;24715:170::-;23161:7;;24809:4;;23161:7;;23160:8;23152:37;;;;;-1:-1:-1;;;23152:37:0;;;;;;;;;;;;-1:-1:-1;;;23152:37:0;;;;;;;;;;;;;;;24833:44;24857:7;24866:10;24833:23;:44::i;23717:120::-;21085:22;21094:12;:10;:12::i;:::-;21085:8;:22::i;:::-;21077:83;;;;-1:-1:-1;;;21077:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23360:7;;;;23352:40;;;;;-1:-1:-1;;;23352:40:0;;;;;;;;;;;;-1:-1:-1;;;23352:40:0;;;;;;;;;;;;;;;23776:7;:15;;-1:-1:-1;;23776:15:0;;;23807:22;23816:12;:10;:12::i;:::-;23807:22;;;-1:-1:-1;;;;;23807:22:0;;;;;;;;;;;;;;23717:120::o;26713:143::-;26787:4;25510:22;25519:12;:10;:12::i;:::-;25510:8;:22::i;:::-;25502:83;;;;-1:-1:-1;;;25502:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26804:22;26810:7;26819:6;26804:5;:22::i;:::-;-1:-1:-1;26844:4:0;26713:143;;;;:::o;28060:92::-;27251:20;27260:10;27251:8;:20::i;:::-;27243:29;;;;;;28120:24;28126:10;28138:5;28120;:24::i;:::-;28060:92;:::o;27300:109::-;27356:4;27380:21;:8;27393:7;27380:21;:12;:21;:::i;:::-;27373:28;27300:109;-1:-1:-1;;27300:109:0:o;21188:::-;21244:4;21268:21;:8;21281:7;21268:21;:12;:21;:::i;22924:78::-;22987:7;;;;22924:78;:::o;21405:79::-;21449:27;21463:12;:10;:12::i;:::-;21449:13;:27::i;:::-;21405:79::o;13005:110::-;-1:-1:-1;;;;;13089:18:0;13062:7;13089:18;;;:9;:18;;;;;;;13005:110::o;30050:140::-;29451:9;:7;:9::i;:::-;29443:54;;;;;-1:-1:-1;;;29443:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;29443:54:0;;;;;;;;;;;;;;;30133:6;;30112:40;;30149:1;;-1:-1:-1;;;;;30133:6:0;;30112:40;;30149:1;;30112:40;30163:6;:19;;-1:-1:-1;;;;;;30163:19:0;;;30050:140::o;28160:108::-;27251:20;27260:10;27251:8;:20::i;:::-;27243:29;;;;;;28238:22;28248:4;28254:5;28238:9;:22::i;21305:92::-;21085:22;21094:12;:10;:12::i;21085:22::-;21077:83;;;;-1:-1:-1;;;21077:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21370:19;21381:7;21370:10;:19::i;23504:118::-;21085:22;21094:12;:10;:12::i;21085:22::-;21077:83;;;;-1:-1:-1;;;21077:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23161:7;;;;23160:8;23152:37;;;;;-1:-1:-1;;;23152:37:0;;;;;;;;;;;;-1:-1:-1;;;23152:37:0;;;;;;;;;;;;;;;23564:7;:14;;-1:-1:-1;;23564:14:0;23574:4;23564:14;;;23594:20;23601:12;:10;:12::i;29239:79::-;29304:6;;-1:-1:-1;;;;;29304:6:0;29239:79;:::o;29605:94::-;29685:6;;29645:4;;-1:-1:-1;;;;;29685:6:0;29669:12;:10;:12::i;:::-;-1:-1:-1;;;;;29669:22:0;;29662:29;;29605:94;:::o;9328:87::-;9400:7;9393:14;;;;;;;;-1:-1:-1;;9393:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9367:13;;9393:14;;9400:7;;9393:14;;9400:7;9393:14;;;;;;;;;;;;;;;;;;;;;;;;25730:92;25510:22;25519:12;:10;:12::i;25510:22::-;25502:83;;;;-1:-1:-1;;;25502:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25795:19;25806:7;25795:10;:19::i;25830:79::-;25874:27;25888:12;:10;:12::i;:::-;25874:13;:27::i;31212:104::-;29451:9;:7;:9::i;:::-;29443:54;;;;;-1:-1:-1;;;29443:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;29443:54:0;;;;;;;;;;;;;;;31266:42;;:10;;31286:21;31266:42;;;;;;;;;31286:21;31266:10;:42;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;24893:180:0;23161:7;;24992:4;;23161:7;;23160:8;23152:37;;;;;-1:-1:-1;;;23152:37:0;;;;;;;;;;;;-1:-1:-1;;;23152:37:0;;;;;;;;;;;;;;;25016:49;25040:7;25049:15;25016:23;:49::i;24259:132::-;23161:7;;24334:4;;23161:7;;23160:8;23152:37;;;;;-1:-1:-1;;;23152:37:0;;;;;;;;;;;;-1:-1:-1;;;23152:37:0;;;;;;;;;;;;;;;24358:25;24373:2;24377:5;24358:14;:25::i;25613:109::-;25669:4;25693:21;:8;25706:7;25693:21;:12;:21;:::i;13549:134::-;-1:-1:-1;;;;;13648:18:0;;;13621:7;13648:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13549:134::o;27517:77::-;27561:25;27575:10;27561:13;:25::i;30345:109::-;29451:9;:7;:9::i;:::-;29443:54;;;;;-1:-1:-1;;;29443:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;29443:54:0;;;;;;;;;;;;;;;30418:28;30437:8;30418:18;:28::i;27417:92::-;27251:20;27260:10;27251:8;:20::i;:::-;27243:29;;;;;;27482:19;27493:7;27482:10;:19::i;13830:152::-;13896:4;13913:39;13922:12;:10;:12::i;:::-;13936:7;13945:6;13913:8;:39::i;35073:176::-;35182:58;;;-1:-1:-1;;;;;35182:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;35182:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;35156:85:0;;35175:5;;35156:18;:85::i;:::-;35073:176;;;:::o;14454:304::-;14543:4;14560:36;14570:6;14578:9;14589:6;14560:9;:36::i;:::-;14607:121;14616:6;14624:12;:10;:12::i;:::-;14638:89;14676:6;14638:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14638:19:0;;;;;;:11;:19;;;;;;14658:12;:10;:12::i;:::-;-1:-1:-1;;;;;14638:33:0;;;;;;;;;;;;-1:-1:-1;14638:33:0;;;:89;;:37;:89;:::i;:::-;14607:8;:121::i;:::-;-1:-1:-1;14746:4:0;14454:304;;;;;:::o;15167:210::-;15247:4;15264:83;15273:12;:10;:12::i;:::-;15287:7;15296:50;15335:10;15296:11;:25;15308:12;:10;:12::i;:::-;-1:-1:-1;;;;;15296:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15296:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;10934:98::-;11014:10;10934:98;:::o;17383:308::-;-1:-1:-1;;;;;17459:21:0;;17451:65;;;;;-1:-1:-1;;;17451:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17544:12;;:24;;17561:6;17544:24;:16;:24;:::i;:::-;17529:12;:39;-1:-1:-1;;;;;17600:18:0;;;;;;:9;:18;;;;;;:30;;17623:6;17600:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;17579:18:0;;;;;;:9;:18;;;;;;;;:51;;;;17646:37;;;;;;;17579:18;;;;17646:37;;;;;;;;;;17383:308;;:::o;18023:348::-;-1:-1:-1;;;;;18099:21:0;;18091:67;;;;-1:-1:-1;;;18091:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18192:68;18215:6;18192:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18192:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;18171:18:0;;;;;;:9;:18;;;;;:89;18286:12;;:24;;18303:6;18286:24;:16;:24;:::i;:::-;18271:12;:39;18326:37;;;;;;;;18352:1;;-1:-1:-1;;;;;18326:37:0;;;;;;;;;;;;18023:348;;:::o;20445:203::-;20517:4;-1:-1:-1;;;;;20542:21:0;;20534:68;;;;-1:-1:-1;;;20534:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20620:20:0;:11;:20;;;;;;;;;;;;;;;20445:203::o;21622:130::-;21682:24;:8;21698:7;21682:24;:15;:24;:::i;:::-;21722:22;;-1:-1:-1;;;;;21722:22:0;;;;;;;;21622:130;:::o;19335:232::-;19407:22;19413:7;19422:6;19407:5;:22::i;:::-;19440:119;19449:7;19458:12;:10;:12::i;:::-;19472:86;19511:6;19472:86;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19472:20:0;;;;;;:11;:20;;;;;;19493:12;:10;:12::i;21492:122::-;21549:21;:8;21562:7;21549:21;:12;:21;:::i;:::-;21586:20;;-1:-1:-1;;;;;21586:20:0;;;;;;;;21492:122;:::o;25917:::-;25974:21;:8;25987:7;25974:21;:12;:21;:::i;:::-;26011:20;;-1:-1:-1;;;;;26011:20:0;;;;;;;;25917:122;:::o;26047:130::-;26107:24;:8;26123:7;26107:24;:15;:24;:::i;:::-;26147:22;;-1:-1:-1;;;;;26147:22:0;;;;;;;;26047:130;:::o;15880:261::-;15965:4;15982:129;15991:12;:10;:12::i;:::-;16005:7;16014:96;16053:15;16014:96;;;;;;;;;;;;;;;;;:11;:25;16026:12;:10;:12::i;:::-;-1:-1:-1;;;;;16014:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16014:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;13328:158::-;13397:4;13414:42;13424:12;:10;:12::i;:::-;13438:9;13449:6;13414:9;:42::i;27732:130::-;27792:24;:8;27808:7;27792:24;:15;:24;:::i;:::-;27832:22;;-1:-1:-1;;;;;27832:22:0;;;;;;;;27732:130;:::o;30560:229::-;-1:-1:-1;;;;;30634:22:0;;30626:73;;;;-1:-1:-1;;;30626:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30736:6;;30715:38;;-1:-1:-1;;;;;30715:38:0;;;;30736:6;;30715:38;;30736:6;;30715:38;30764:6;:17;;-1:-1:-1;;;;;;30764:17:0;-1:-1:-1;;;;;30764:17:0;;;;;;;;;;30560:229::o;27602:122::-;27659:21;:8;27672:7;27659:21;:12;:21;:::i;:::-;27696:20;;-1:-1:-1;;;;;27696:20:0;;;;;;;;27602:122;:::o;18811:338::-;-1:-1:-1;;;;;18905:19:0;;18897:68;;;;-1:-1:-1;;;18897:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18984:21:0;;18976:68;;;;-1:-1:-1;;;18976:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19057:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19109:32;;;;;;;;;;;;;;;;;18811:338;;;:::o;37112:1114::-;37716:27;37724:5;-1:-1:-1;;;;;37716:25:0;;:27::i;:::-;37708:71;;;;;-1:-1:-1;;;37708:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37853:12;37867:23;37902:5;-1:-1:-1;;;;;37894:19:0;37914:4;37894:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;37894:25:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;37852:67:0;;;;37938:7;37930:52;;;;;-1:-1:-1;;;37930:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37999:17;;:21;37995:224;;38141:10;38130:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38130:30:0;38122:85;;;;-1:-1:-1;;;38122:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37112:1114;;;;:::o;16631:471::-;-1:-1:-1;;;;;16729:20:0;;16721:70;;;;-1:-1:-1;;;16721:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16810:23:0;;16802:71;;;;-1:-1:-1;;;16802:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16906;16928:6;16906:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16906:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;16886:17:0;;;;;;;:9;:17;;;;;;:91;;;;17011:20;;;;;;;:32;;17036:6;17011:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;16988:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;17059:35;;;;;;;16988:20;;17059:35;;;;;;;;;;;;;16631:471;;;:::o;1850:192::-;1936:7;1972:12;1964:6;;;;1956:29;;;;-1:-1:-1;;;1956:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1956:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2008:5:0;;;1850:192::o;921:181::-;979:7;1011:5;;;1035:6;;;;1027:46;;;;;-1:-1:-1;;;1027:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;1377:136;1435:7;1462:43;1466:1;1469;1462:43;;;;;;;;;;;;;;;;;:3;:43::i;20167:183::-;20247:18;20251:4;20257:7;20247:3;:18::i;:::-;20239:64;;;;-1:-1:-1;;;20239:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20314:20:0;20337:5;20314:20;;;;;;;;;;;:28;;-1:-1:-1;;20314:28:0;;;20167:183::o;19909:178::-;19987:18;19991:4;19997:7;19987:3;:18::i;:::-;19986:19;19978:63;;;;;-1:-1:-1;;;19978:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20052:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;20052:27:0;20075:4;20052:27;;;19909:178::o;32094:619::-;32154:4;32622:20;;32465:66;32662:23;;;;;;:42;;-1:-1:-1;;32689:15:0;;;32654:51;-1:-1:-1;;32094:619:0:o

Swarm Source

bzzr://f517f81a4ed9bc7eb101db7ecb150945705e9faf9f53a89e61b569b6876add6d

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

OVERVIEW

Serum is the world's first completely decentralized derivatives exchange with trustless cross-chain trading brought to you by Project Serum, in collaboration with a consortium of crypto trading and DeFi experts.

Validator Index Block Amount
View All Withdrawals

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