ETH Price: $3,306.50 (-3.09%)
Gas: 21 Gwei

Contract

0xE1240ac7Bb51333510cbF37efD678cA46137f84B
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Approve202231222024-07-03 2:52:4712 hrs ago1719975167IN
0xE1240ac7...46137f84B
0 ETH0.000103983.95003255
Approve201260192024-06-19 13:15:1114 days ago1718802911IN
0xE1240ac7...46137f84B
0 ETH0.000458839.45124742
Approve201060672024-06-16 18:13:1116 days ago1718561591IN
0xE1240ac7...46137f84B
0 ETH0.000202944.17504142
Approve200996052024-06-15 20:33:1117 days ago1718483591IN
0xE1240ac7...46137f84B
0 ETH0.000221174.55019863
Approve200919682024-06-14 18:54:1118 days ago1718391251IN
0xE1240ac7...46137f84B
0 ETH0.0007930116.3954647
Approve200902142024-06-14 13:02:1119 days ago1718370131IN
0xE1240ac7...46137f84B
0 ETH0.000459849.52365547
Approve200894122024-06-14 10:21:3519 days ago1718360495IN
0xE1240ac7...46137f84B
0 ETH0.000387767.97735763
Approve200889502024-06-14 8:48:3519 days ago1718354915IN
0xE1240ac7...46137f84B
0 ETH0.0005838812.02692371
Approve200889482024-06-14 8:48:1119 days ago1718354891IN
0xE1240ac7...46137f84B
0 ETH0.000574611.82115765
Approve200889462024-06-14 8:47:4719 days ago1718354867IN
0xE1240ac7...46137f84B
0 ETH0.000438799.02729787
Approve200888652024-06-14 8:31:2319 days ago1718353883IN
0xE1240ac7...46137f84B
0 ETH0.000420718.6553164
Approve200888402024-06-14 8:26:1119 days ago1718353571IN
0xE1240ac7...46137f84B
0 ETH0.000431448.87602002
Approve200888192024-06-14 8:21:5919 days ago1718353319IN
0xE1240ac7...46137f84B
0 ETH0.0006224312.80516428
Approve200887882024-06-14 8:15:3519 days ago1718352935IN
0xE1240ac7...46137f84B
0 ETH0.0010081420.74035042
Approve200887342024-06-14 8:04:3519 days ago1718352275IN
0xE1240ac7...46137f84B
0 ETH0.0006836614.06486372
Approve200887332024-06-14 8:04:2319 days ago1718352263IN
0xE1240ac7...46137f84B
0 ETH0.000693914.27562295
Approve200887052024-06-14 7:58:4719 days ago1718351927IN
0xE1240ac7...46137f84B
0 ETH0.0006243612.84482857
Approve200428422024-06-07 22:10:1125 days ago1717798211IN
0xE1240ac7...46137f84B
0 ETH0.000415758.61070273
Approve199879122024-05-31 6:05:3533 days ago1717135535IN
0xE1240ac7...46137f84B
0 ETH0.000368797.63796472
Approve199777302024-05-29 19:55:3534 days ago1717012535IN
0xE1240ac7...46137f84B
0 ETH0.0005343411.00643124
Approve199765382024-05-29 15:54:1134 days ago1716998051IN
0xE1240ac7...46137f84B
0 ETH0.0009746820.05192966
Approve199764732024-05-29 15:41:1134 days ago1716997271IN
0xE1240ac7...46137f84B
0 ETH0.0009612919.77644664
Approve199161382024-05-21 5:16:5943 days ago1716268619IN
0xE1240ac7...46137f84B
0 ETH0.0004549.34019076
Approve199157072024-05-21 3:50:3543 days ago1716263435IN
0xE1240ac7...46137f84B
0 ETH0.0006424313.21661607
Approve198636072024-05-13 20:53:3550 days ago1715633615IN
0xE1240ac7...46137f84B
0 ETH0.000453179.33463999
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
UFragments

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-18
*/

pragma solidity 0.4.24;


/**
 * @title SafeMath
 * @dev Math operations with safety checks that revert on error
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, reverts on 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-solidity/pull/522
    if (a == 0) {
      return 0;
    }

    uint256 c = a * b;
    require(c / a == b);

    return c;
  }

  /**
  * @dev Integer division of two numbers truncating the quotient, reverts on division by zero.
  */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b > 0); // Solidity only automatically asserts when dividing by 0
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold

    return c;
  }

  /**
  * @dev Subtracts two numbers, reverts on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b <= a);
    uint256 c = a - b;

    return c;
  }

  /**
  * @dev Adds two numbers, reverts on overflow.
  */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    require(c >= a);

    return c;
  }

  /**
  * @dev Divides two numbers and returns the remainder (unsigned integer modulo),
  * reverts when dividing by zero.
  */
  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b != 0);
    return a % b;
  }
}

/**
 * @title Initializable
 *
 * @dev Helper contract to support initializer functions. To use it, replace
 * the constructor with a function that has the `initializer` modifier.
 * WARNING: Unlike constructors, initializer functions must be manually
 * invoked. This applies both to deploying an Initializable contract, as well
 * as extending an Initializable contract via inheritance.
 * WARNING: When used with inheritance, manual care must be taken to not invoke
 * a parent initializer twice, or ensure that all initializers are idempotent,
 * because this is not dealt with automatically as with constructors.
 */
contract Initializable {

  /**
   * @dev Indicates that the contract has been initialized.
   */
  bool private initialized;

  /**
   * @dev Indicates that the contract is in the process of being initialized.
   */
  bool private initializing;

  /**
   * @dev Modifier to use in the initializer function of a contract.
   */
  modifier initializer() {
    require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized");

    bool wasInitializing = initializing;
    initializing = true;
    initialized = true;

    _;

    initializing = wasInitializing;
  }

  /// @dev Returns true if and only if the function is running in the constructor
  function isConstructor() private view returns (bool) {
    // extcodesize checks the size of the code stored in an address, and
    // address returns the current address. Since the code is still not
    // deployed when running a constructor, any checks on its code size will
    // yield zero, making it an effective way to detect if a contract is
    // under construction or not.
    uint256 cs;
    assembly { cs := extcodesize(address) }
    return cs == 0;
  }

  // Reserved storage space to allow for layout changes in the future.
  uint256[50] private ______gap;
}

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable is Initializable {
  address private _owner;


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


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  function initialize(address sender) public initializer {
    _owner = sender;
  }

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

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(isOwner());
    _;
  }

  /**
   * @return true if `msg.sender` is the owner of the contract.
   */
  function isOwner() public view returns(bool) {
    return msg.sender == _owner;
  }

  /**
   * @dev Allows the current owner to relinquish control of the contract.
   * @notice Renouncing to ownership will leave the contract without an owner.
   * It will not be possible to call the functions with the `onlyOwner`
   * modifier anymore.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipRenounced(_owner);
    _owner = address(0);
  }

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function transferOwnership(address newOwner) public onlyOwner {
    _transferOwnership(newOwner);
  }

  /**
   * @dev Transfers control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function _transferOwnership(address newOwner) internal {
    require(newOwner != address(0));
    emit OwnershipTransferred(_owner, newOwner);
    _owner = newOwner;
  }

  uint256[50] private ______gap;
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
interface IERC20 {
  function totalSupply() external view returns (uint256);

  function balanceOf(address who) external view returns (uint256);

  function allowance(address owner, address spender)
    external view returns (uint256);

  function transfer(address to, uint256 value) external returns (bool);

  function approve(address spender, uint256 value)
    external returns (bool);

  function transferFrom(address from, address to, uint256 value)
    external returns (bool);

  event Transfer(
    address indexed from,
    address indexed to,
    uint256 value
  );

  event Approval(
    address indexed owner,
    address indexed spender,
    uint256 value
  );
}

/**
 * @title ERC20Detailed token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
contract ERC20Detailed is Initializable, IERC20 {
  string private _name;
  string private _symbol;
  uint8 private _decimals;

  function initialize(string name, string symbol, uint8 decimals) public initializer {
    _name = name;
    _symbol = symbol;
    _decimals = decimals;
  }

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

  /**
   * @return the symbol of the token.
   */
  function symbol() public view returns(string) {
    return _symbol;
  }

  /**
   * @return the number of decimals of the token.
   */
  function decimals() public view returns(uint8) {
    return _decimals;
  }

  uint256[50] private ______gap;
}

/*
MIT License

Copyright (c) 2018 requestnetwork
Copyright (c) 2018 Fragments, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
/**
 * @title SafeMathInt
 * @dev Math operations for int256 with overflow safety checks.
 */
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a)
        internal
        pure
        returns (int256)
    {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }
}

/**
 * @title uFragments ERC20 token
 * @dev This is part of an implementation of the uFragments Ideal Money protocol.
 *      uFragments is a normal ERC20 token, but its supply can be adjusted by splitting and
 *      combining tokens proportionally across all wallets.
 *
 *      uFragment balances are internally represented with a hidden denomination, 'gons'.
 *      We support splitting the currency in expansion and combining the currency on contraction by
 *      changing the exchange rate between the hidden 'gons' and the public 'fragments'.
 */
contract UFragments is ERC20Detailed, Ownable {
    // PLEASE READ BEFORE CHANGING ANY ACCOUNTING OR MATH
    // Anytime there is division, there is a risk of numerical instability from rounding errors. In
    // order to minimize this risk, we adhere to the following guidelines:
    // 1) The conversion rate adopted is the number of gons that equals 1 fragment.
    //    The inverse rate must not be used--TOTAL_GONS is always the numerator and _totalSupply is
    //    always the denominator. (i.e. If you want to convert gons to fragments instead of
    //    multiplying by the inverse rate, you should divide by the normal rate)
    // 2) Gon balances converted into Fragments are always rounded down (truncated).
    //
    // We make the following guarantees:
    // - If address 'A' transfers x Fragments to address 'B'. A's resulting external balance will
    //   be decreased by precisely x Fragments, and B's external balance will be precisely
    //   increased by x Fragments.
    //
    // We do not guarantee that the sum of all balances equals the result of calling totalSupply().
    // This is because, for any conversion function 'f()' that has non-zero rounding error,
    // f(x0) + f(x1) + ... + f(xn) is not always equal to f(x0 + x1 + ... xn).
    using SafeMath for uint256;
    using SafeMathInt for int256;

    event LogRebase(uint256 indexed epoch, uint256 totalSupply);
    event LogRebasePaused(bool paused);
    event LogTokenPaused(bool paused);
    event LogMonetaryPolicyUpdated(address monetaryPolicy);

    // Used for authentication
    address public monetaryPolicy;

    modifier onlyMonetaryPolicy() {
        require(msg.sender == monetaryPolicy);
        _;
    }

    // Precautionary emergency controls.
    bool public rebasePaused;
    bool public tokenPaused;

    modifier whenRebaseNotPaused() {
        require(!rebasePaused);
        _;
    }

    modifier whenTokenNotPaused() {
        require(!tokenPaused);
        _;
    }

    modifier validRecipient(address to) {
        require(to != address(0x0));
        require(to != address(this));
        _;
    }

    uint256 private constant DECIMALS = 18;
    uint256 private constant MAX_UINT256 = ~uint256(0);
    uint256 private constant INITIAL_FRAGMENTS_SUPPLY = 1000000 * 10**DECIMALS;

    // TOTAL_GONS is a multiple of INITIAL_FRAGMENTS_SUPPLY so that _gonsPerFragment is an integer.
    // Use the highest value that fits in a uint256 for max granularity.
    uint256 private constant TOTAL_GONS = MAX_UINT256 -
        (MAX_UINT256 % INITIAL_FRAGMENTS_SUPPLY);

    // MAX_SUPPLY = maximum integer < (sqrt(4*TOTAL_GONS + 1) - 1) / 2
    uint256 private constant MAX_SUPPLY = ~uint128(0); // (2^128) - 1

    uint256 private _totalSupply;
    uint256 private _gonsPerFragment;
    mapping(address => uint256) private _gonBalances;

    // This is denominated in Fragments, because the gons-fragments conversion might change before
    // it's fully paid.
    mapping(address => mapping(address => uint256)) private _allowedFragments;

    /**
     * @param monetaryPolicy_ The address of the monetary policy contract to use for authentication.
     */
    function setMonetaryPolicy(address monetaryPolicy_) external onlyOwner {
        monetaryPolicy = monetaryPolicy_;
        emit LogMonetaryPolicyUpdated(monetaryPolicy_);
    }

    /**
     * @dev Pauses or unpauses the execution of rebase operations.
     * @param paused Pauses rebase operations if this is true.
     */
    function setRebasePaused(bool paused) external onlyOwner {
        rebasePaused = paused;
        emit LogRebasePaused(paused);
    }

    /**
     * @dev Pauses or unpauses execution of ERC-20 transactions.
     * @param paused Pauses ERC-20 transactions if this is true.
     */
    function setTokenPaused(bool paused) external onlyOwner {
        tokenPaused = paused;
        emit LogTokenPaused(paused);
    }

    /**
     * @dev Notifies Fragments contract about a new rebase cycle.
     * @param supplyDelta The number of new fragment tokens to add into circulation via expansion.
     * @return The total number of fragments after the supply adjustment.
     */
    function rebase(uint256 epoch, int256 supplyDelta)
        external
        onlyMonetaryPolicy
        whenRebaseNotPaused
        returns (uint256)
    {
        if (supplyDelta == 0) {
            emit LogRebase(epoch, _totalSupply);
            return _totalSupply;
        }

        if (supplyDelta < 0) {
            _totalSupply = _totalSupply.sub(uint256(supplyDelta.abs()));
        } else {
            _totalSupply = _totalSupply.add(uint256(supplyDelta));
        }

        if (_totalSupply > MAX_SUPPLY) {
            _totalSupply = MAX_SUPPLY;
        }

        _gonsPerFragment = TOTAL_GONS.div(_totalSupply);

        // From this point forward, _gonsPerFragment is taken as the source of truth.
        // We recalculate a new _totalSupply to be in agreement with the _gonsPerFragment
        // conversion rate.
        // This means our applied supplyDelta can deviate from the requested supplyDelta,
        // but this deviation is guaranteed to be < (_totalSupply^2)/(TOTAL_GONS - _totalSupply).
        //
        // In the case of _totalSupply <= MAX_UINT128 (our current supply cap), this
        // deviation is guaranteed to be < 1, so we can omit this step. If the supply cap is
        // ever increased, it must be re-included.
        // _totalSupply = TOTAL_GONS.div(_gonsPerFragment)

        emit LogRebase(epoch, _totalSupply);
        return _totalSupply;
    }

    function initialize(address owner_) public initializer {
        ERC20Detailed.initialize("RED", "RED", uint8(DECIMALS));
        Ownable.initialize(owner_);

        rebasePaused = false;
        tokenPaused = false;

        _totalSupply = INITIAL_FRAGMENTS_SUPPLY;
        _gonBalances[owner_] = TOTAL_GONS;
        _gonsPerFragment = TOTAL_GONS.div(_totalSupply);

        emit Transfer(address(0x0), owner_, _totalSupply);
    }

    /**
     * @return The total number of fragments.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @param who The address to query.
     * @return The balance of the specified address.
     */
    function balanceOf(address who) public view returns (uint256) {
        return _gonBalances[who].div(_gonsPerFragment);
    }

    /**
     * @dev Transfer tokens to a specified address.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     * @return True on success, false otherwise.
     */
    function transfer(address to, uint256 value)
        public
        validRecipient(to)
        whenTokenNotPaused
        returns (bool)
    {
        uint256 gonValue = value.mul(_gonsPerFragment);
        _gonBalances[msg.sender] = _gonBalances[msg.sender].sub(gonValue);
        _gonBalances[to] = _gonBalances[to].add(gonValue);
        emit Transfer(msg.sender, to, value);
        return true;
    }

    /**
     * @dev Function to check the amount of tokens that an owner has allowed to a spender.
     * @param owner_ The address which owns the funds.
     * @param spender The address which will spend the funds.
     * @return The number of tokens still available for the spender.
     */
    function allowance(address owner_, address spender)
        public
        view
        returns (uint256)
    {
        return _allowedFragments[owner_][spender];
    }

    /**
     * @dev Transfer tokens from one address to another.
     * @param from The address you want to send tokens from.
     * @param to The address you want to transfer to.
     * @param value The amount of tokens to be transferred.
     */
    function transferFrom(
        address from,
        address to,
        uint256 value
    ) public validRecipient(to) whenTokenNotPaused returns (bool) {
        _allowedFragments[from][msg.sender] = _allowedFragments[from][msg
            .sender]
            .sub(value);

        uint256 gonValue = value.mul(_gonsPerFragment);
        _gonBalances[from] = _gonBalances[from].sub(gonValue);
        _gonBalances[to] = _gonBalances[to].add(gonValue);
        emit Transfer(from, to, value);

        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of
     * msg.sender. This method is included for ERC20 compatibility.
     * increaseAllowance and decreaseAllowance should be used instead.
     * Changing an allowance with this method brings the risk that someone may transfer both
     * the old and the new allowance - if they are both greater than zero - if a transfer
     * transaction is mined before the later approve() call is mined.
     *
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value)
        public
        whenTokenNotPaused
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner has allowed to a spender.
     * This method should be used instead of approve() to avoid the double approval vulnerability
     * described above.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        whenTokenNotPaused
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] = _allowedFragments[msg
            .sender][spender]
            .add(addedValue);
        emit Approval(
            msg.sender,
            spender,
            _allowedFragments[msg.sender][spender]
        );
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner has allowed to a spender.
     *
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        whenTokenNotPaused
        returns (bool)
    {
        uint256 oldValue = _allowedFragments[msg.sender][spender];
        if (subtractedValue >= oldValue) {
            _allowedFragments[msg.sender][spender] = 0;
        } else {
            _allowedFragments[msg.sender][spender] = oldValue.sub(
                subtractedValue
            );
        }
        emit Approval(
            msg.sender,
            spender,
            _allowedFragments[msg.sender][spender]
        );
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"name","type":"string"},{"name":"symbol","type":"string"},{"name":"decimals","type":"uint8"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"paused","type":"bool"}],"name":"setRebasePaused","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"paused","type":"bool"}],"name":"setTokenPaused","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"rebasePaused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"who","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"epoch","type":"uint256"},{"name":"supplyDelta","type":"int256"}],"name":"rebase","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokenPaused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"monetaryPolicy_","type":"address"}],"name":"setMonetaryPolicy","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"monetaryPolicy","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"owner_","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner_","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"epoch","type":"uint256"},{"indexed":false,"name":"totalSupply","type":"uint256"}],"name":"LogRebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"paused","type":"bool"}],"name":"LogRebasePaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"paused","type":"bool"}],"name":"LogTokenPaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"monetaryPolicy","type":"address"}],"name":"LogMonetaryPolicyUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

608060405234801561001057600080fd5b50611574806100206000396000f30060806040526004361061013d5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610142578063095ea7b3146101cc5780631624f6c61461020457806318160ddd146102a257806322872e0b146102c957806323b872dd146102e3578063295194571461030d578063313ce56714610327578063395093511461035257806353ca9f241461037657806370a082311461038b578063715018a6146103ac5780637a43e23f146103c157806386c75e74146103dc5780638b5a6a08146103f15780638da5cb5b146104125780638e27d7d7146104435780638f32d59b1461045857806395d89b411461046d578063a457c2d714610482578063a9059cbb146104a6578063c4d66de8146104ca578063dd62ed3e146104eb578063f2fde38b14610512575b600080fd5b34801561014e57600080fd5b50610157610533565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610191578181015183820152602001610179565b50505050905090810190601f1680156101be5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101d857600080fd5b506101f0600160a060020a03600435166024356105ca565b604080519115158252519081900360200190f35b34801561021057600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526102a094369492936024939284019190819084018382808284375050604080516020601f89358b018035918201839004830284018301909452808352979a9998810197919650918201945092508291508401838280828437509497505050923560ff16935061064c92505050565b005b3480156102ae57600080fd5b506102b7610785565b60408051918252519081900360200190f35b3480156102d557600080fd5b506102a0600435151561078b565b3480156102ef57600080fd5b506101f0600160a060020a0360043581169060243516604435610813565b34801561031957600080fd5b506102a06004351515610989565b34801561033357600080fd5b5061033c610a01565b6040805160ff9092168252519081900360200190f35b34801561035e57600080fd5b506101f0600160a060020a0360043516602435610a0a565b34801561038257600080fd5b506101f0610abd565b34801561039757600080fd5b506102b7600160a060020a0360043516610ade565b3480156103b857600080fd5b506102a0610b0c565b3480156103cd57600080fd5b506102b7600435602435610b76565b3480156103e857600080fd5b506101f0610cde565b3480156103fd57600080fd5b506102a0600160a060020a0360043516610cee565b34801561041e57600080fd5b50610427610d62565b60408051600160a060020a039092168252519081900360200190f35b34801561044f57600080fd5b50610427610d71565b34801561046457600080fd5b506101f0610d80565b34801561047957600080fd5b50610157610d91565b34801561048e57600080fd5b506101f0600160a060020a0360043516602435610df2565b3480156104b257600080fd5b506101f0600160a060020a0360043516602435610f00565b3480156104d657600080fd5b506102a0600160a060020a036004351661100f565b3480156104f757600080fd5b506102b7600160a060020a036004358116906024351661120c565b34801561051e57600080fd5b506102a0600160a060020a0360043516611237565b60338054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105bf5780601f10610594576101008083540402835291602001916105bf565b820191906000526020600020905b8154815290600101906020018083116105a257829003601f168201915b505050505090505b90565b609b5460009060a860020a900460ff16156105e457600080fd5b336000818152609f60209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60008054610100900460ff16806106665750610666611256565b80610674575060005460ff16155b151561070757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b5060008054600161010061ff00198316811760ff191691909117909255845191900460ff169061073e9060339060208701906114ba565b5082516107529060349060208601906114ba565b506035805460ff90931660ff1990931692909217909155600080549115156101000261ff00199092169190911790555050565b609c5490565b610793610d80565b151561079e57600080fd5b609b805482151574010000000000000000000000000000000000000000810274ff0000000000000000000000000000000000000000199092169190911790915560408051918252517fb36927c68760751ec71d827eb30be804be612d87c7c6b6a1f255258c6a1bea669181900360200190a150565b60008083600160a060020a038116151561082c57600080fd5b600160a060020a03811630141561084257600080fd5b609b5460a860020a900460ff161561085957600080fd5b600160a060020a0386166000908152609f6020908152604080832033845290915290205461088d908563ffffffff61126016565b600160a060020a0387166000908152609f60209081526040808320338452909152902055609d546108c590859063ffffffff61127716565b600160a060020a0387166000908152609e60205260409020549092506108f1908363ffffffff61126016565b600160a060020a038088166000908152609e60205260408082209390935590871681522054610926908363ffffffff6112ac16565b600160a060020a038087166000818152609e602090815260409182902094909455805188815290519193928a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600195945050505050565b610991610d80565b151561099c57600080fd5b609b805482151560a860020a810275ff000000000000000000000000000000000000000000199092169190911790915560408051918252517f398c4e18c8ef7f11eb3921fe2d01d3b469329a5f01febf5ba17f2462f27f439c9181900360200190a150565b60355460ff1690565b609b5460009060a860020a900460ff1615610a2457600080fd5b336000908152609f60209081526040808320600160a060020a0387168452909152902054610a58908363ffffffff6112ac16565b336000818152609f60209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b609b5474010000000000000000000000000000000000000000900460ff1681565b609d54600160a060020a0382166000908152609e60205260408120549091610646919063ffffffff6112be16565b610b14610d80565b1515610b1f57600080fd5b606854604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26068805473ffffffffffffffffffffffffffffffffffffffff19169055565b609b54600090600160a060020a03163314610b9057600080fd5b609b5474010000000000000000000000000000000000000000900460ff1615610bb857600080fd5b811515610c0057609c54604080519182525184917f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2919081900360200190a250609c54610646565b6000821215610c2c57610c24610c15836112e1565b609c549063ffffffff61126016565b609c55610c43565b609c54610c3f908363ffffffff6112ac16565b609c555b609c546fffffffffffffffffffffffffffffffff1015610c72576fffffffffffffffffffffffffffffffff609c555b609c54610c999069d3c21bcecceda10000006000195b06600019039063ffffffff6112be16565b609d55609c54604080519182525184917f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2919081900360200190a250609c5492915050565b609b5460a860020a900460ff1681565b610cf6610d80565b1515610d0157600080fd5b609b8054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff19909116811790915560408051918252517f0e6961f1a1afb87eaf51fd64f22ddc10062e23aa7838eac5d0bdf140bfd389729181900360200190a150565b606854600160a060020a031690565b609b54600160a060020a031681565b606854600160a060020a0316331490565b60348054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105bf5780601f10610594576101008083540402835291602001916105bf565b609b54600090819060a860020a900460ff1615610e0e57600080fd5b50336000908152609f60209081526040808320600160a060020a0387168452909152902054808310610e6357336000908152609f60209081526040808320600160a060020a0388168452909152812055610e98565b610e73818463ffffffff61126016565b336000908152609f60209081526040808320600160a060020a03891684529091529020555b336000818152609f60209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a3600191505b5092915050565b60008083600160a060020a0381161515610f1957600080fd5b600160a060020a038116301415610f2f57600080fd5b609b5460a860020a900460ff1615610f4657600080fd5b609d54610f5a90859063ffffffff61127716565b336000908152609e6020526040902054909250610f7d908363ffffffff61126016565b336000908152609e602052604080822092909255600160a060020a03871681522054610faf908363ffffffff6112ac16565b600160a060020a0386166000818152609e60209081526040918290209390935580518781529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001949350505050565b60008054610100900460ff16806110295750611029611256565b80611037575060005460ff16155b15156110ca57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b5060008054600161010061ff00198316811760ff19169190911790925560408051808201825260038082527f524544000000000000000000000000000000000000000000000000000000000060208084018290528451808601909552918452908301529290910460ff169161114091601261064c565b61114982611325565b609b805475ffff00000000000000000000000000000000000000001916905569d3c21bcecceda1000000609c818155600160a060020a0384166000908152609e6020526040902069085afffa6ff50bffffff199055546111ab91600019610c88565b609d55609c546040805191825251600160a060020a038416916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3600080549115156101000261ff001990921691909117905550565b600160a060020a039182166000908152609f6020908152604080832093909416825291909152205490565b61123f610d80565b151561124a57600080fd5b6112538161143c565b50565b303b8015905b5090565b6000808383111561127057600080fd5b5050900390565b60008083151561128a5760009150610ef9565b5082820282848281151561129a57fe5b04146112a557600080fd5b9392505050565b6000828201838110156112a557600080fd5b6000808083116112cd57600080fd5b82848115156112d857fe5b04949350505050565b60007f800000000000000000000000000000000000000000000000000000000000000082141561131057600080fd5b6000821261131e5781610646565b5060000390565b60008054610100900460ff168061133f575061133f611256565b8061134d575060005460ff16155b15156113e057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b50600080546068805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03949094169390931790925561ff001980831661010090811760ff19166001179091169281900460ff16151502919091179055565b600160a060020a038116151561145157600080fd5b606854604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36068805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106114fb57805160ff1916838001178555611528565b82800160010185558215611528579182015b8281111561152857825182559160200191906001019061150d565b5061125c926105c79250905b8082111561125c57600081556001016115345600a165627a7a72305820dcd2c6e5530edc545dc20407f147a6a385b202877f098b2e1e17e07264b32a280029

Deployed Bytecode

0x60806040526004361061013d5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610142578063095ea7b3146101cc5780631624f6c61461020457806318160ddd146102a257806322872e0b146102c957806323b872dd146102e3578063295194571461030d578063313ce56714610327578063395093511461035257806353ca9f241461037657806370a082311461038b578063715018a6146103ac5780637a43e23f146103c157806386c75e74146103dc5780638b5a6a08146103f15780638da5cb5b146104125780638e27d7d7146104435780638f32d59b1461045857806395d89b411461046d578063a457c2d714610482578063a9059cbb146104a6578063c4d66de8146104ca578063dd62ed3e146104eb578063f2fde38b14610512575b600080fd5b34801561014e57600080fd5b50610157610533565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610191578181015183820152602001610179565b50505050905090810190601f1680156101be5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101d857600080fd5b506101f0600160a060020a03600435166024356105ca565b604080519115158252519081900360200190f35b34801561021057600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526102a094369492936024939284019190819084018382808284375050604080516020601f89358b018035918201839004830284018301909452808352979a9998810197919650918201945092508291508401838280828437509497505050923560ff16935061064c92505050565b005b3480156102ae57600080fd5b506102b7610785565b60408051918252519081900360200190f35b3480156102d557600080fd5b506102a0600435151561078b565b3480156102ef57600080fd5b506101f0600160a060020a0360043581169060243516604435610813565b34801561031957600080fd5b506102a06004351515610989565b34801561033357600080fd5b5061033c610a01565b6040805160ff9092168252519081900360200190f35b34801561035e57600080fd5b506101f0600160a060020a0360043516602435610a0a565b34801561038257600080fd5b506101f0610abd565b34801561039757600080fd5b506102b7600160a060020a0360043516610ade565b3480156103b857600080fd5b506102a0610b0c565b3480156103cd57600080fd5b506102b7600435602435610b76565b3480156103e857600080fd5b506101f0610cde565b3480156103fd57600080fd5b506102a0600160a060020a0360043516610cee565b34801561041e57600080fd5b50610427610d62565b60408051600160a060020a039092168252519081900360200190f35b34801561044f57600080fd5b50610427610d71565b34801561046457600080fd5b506101f0610d80565b34801561047957600080fd5b50610157610d91565b34801561048e57600080fd5b506101f0600160a060020a0360043516602435610df2565b3480156104b257600080fd5b506101f0600160a060020a0360043516602435610f00565b3480156104d657600080fd5b506102a0600160a060020a036004351661100f565b3480156104f757600080fd5b506102b7600160a060020a036004358116906024351661120c565b34801561051e57600080fd5b506102a0600160a060020a0360043516611237565b60338054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105bf5780601f10610594576101008083540402835291602001916105bf565b820191906000526020600020905b8154815290600101906020018083116105a257829003601f168201915b505050505090505b90565b609b5460009060a860020a900460ff16156105e457600080fd5b336000818152609f60209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60008054610100900460ff16806106665750610666611256565b80610674575060005460ff16155b151561070757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b5060008054600161010061ff00198316811760ff191691909117909255845191900460ff169061073e9060339060208701906114ba565b5082516107529060349060208601906114ba565b506035805460ff90931660ff1990931692909217909155600080549115156101000261ff00199092169190911790555050565b609c5490565b610793610d80565b151561079e57600080fd5b609b805482151574010000000000000000000000000000000000000000810274ff0000000000000000000000000000000000000000199092169190911790915560408051918252517fb36927c68760751ec71d827eb30be804be612d87c7c6b6a1f255258c6a1bea669181900360200190a150565b60008083600160a060020a038116151561082c57600080fd5b600160a060020a03811630141561084257600080fd5b609b5460a860020a900460ff161561085957600080fd5b600160a060020a0386166000908152609f6020908152604080832033845290915290205461088d908563ffffffff61126016565b600160a060020a0387166000908152609f60209081526040808320338452909152902055609d546108c590859063ffffffff61127716565b600160a060020a0387166000908152609e60205260409020549092506108f1908363ffffffff61126016565b600160a060020a038088166000908152609e60205260408082209390935590871681522054610926908363ffffffff6112ac16565b600160a060020a038087166000818152609e602090815260409182902094909455805188815290519193928a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600195945050505050565b610991610d80565b151561099c57600080fd5b609b805482151560a860020a810275ff000000000000000000000000000000000000000000199092169190911790915560408051918252517f398c4e18c8ef7f11eb3921fe2d01d3b469329a5f01febf5ba17f2462f27f439c9181900360200190a150565b60355460ff1690565b609b5460009060a860020a900460ff1615610a2457600080fd5b336000908152609f60209081526040808320600160a060020a0387168452909152902054610a58908363ffffffff6112ac16565b336000818152609f60209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b609b5474010000000000000000000000000000000000000000900460ff1681565b609d54600160a060020a0382166000908152609e60205260408120549091610646919063ffffffff6112be16565b610b14610d80565b1515610b1f57600080fd5b606854604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26068805473ffffffffffffffffffffffffffffffffffffffff19169055565b609b54600090600160a060020a03163314610b9057600080fd5b609b5474010000000000000000000000000000000000000000900460ff1615610bb857600080fd5b811515610c0057609c54604080519182525184917f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2919081900360200190a250609c54610646565b6000821215610c2c57610c24610c15836112e1565b609c549063ffffffff61126016565b609c55610c43565b609c54610c3f908363ffffffff6112ac16565b609c555b609c546fffffffffffffffffffffffffffffffff1015610c72576fffffffffffffffffffffffffffffffff609c555b609c54610c999069d3c21bcecceda10000006000195b06600019039063ffffffff6112be16565b609d55609c54604080519182525184917f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f2919081900360200190a250609c5492915050565b609b5460a860020a900460ff1681565b610cf6610d80565b1515610d0157600080fd5b609b8054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff19909116811790915560408051918252517f0e6961f1a1afb87eaf51fd64f22ddc10062e23aa7838eac5d0bdf140bfd389729181900360200190a150565b606854600160a060020a031690565b609b54600160a060020a031681565b606854600160a060020a0316331490565b60348054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105bf5780601f10610594576101008083540402835291602001916105bf565b609b54600090819060a860020a900460ff1615610e0e57600080fd5b50336000908152609f60209081526040808320600160a060020a0387168452909152902054808310610e6357336000908152609f60209081526040808320600160a060020a0388168452909152812055610e98565b610e73818463ffffffff61126016565b336000908152609f60209081526040808320600160a060020a03891684529091529020555b336000818152609f60209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a3600191505b5092915050565b60008083600160a060020a0381161515610f1957600080fd5b600160a060020a038116301415610f2f57600080fd5b609b5460a860020a900460ff1615610f4657600080fd5b609d54610f5a90859063ffffffff61127716565b336000908152609e6020526040902054909250610f7d908363ffffffff61126016565b336000908152609e602052604080822092909255600160a060020a03871681522054610faf908363ffffffff6112ac16565b600160a060020a0386166000818152609e60209081526040918290209390935580518781529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001949350505050565b60008054610100900460ff16806110295750611029611256565b80611037575060005460ff16155b15156110ca57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b5060008054600161010061ff00198316811760ff19169190911790925560408051808201825260038082527f524544000000000000000000000000000000000000000000000000000000000060208084018290528451808601909552918452908301529290910460ff169161114091601261064c565b61114982611325565b609b805475ffff00000000000000000000000000000000000000001916905569d3c21bcecceda1000000609c818155600160a060020a0384166000908152609e6020526040902069085afffa6ff50bffffff199055546111ab91600019610c88565b609d55609c546040805191825251600160a060020a038416916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3600080549115156101000261ff001990921691909117905550565b600160a060020a039182166000908152609f6020908152604080832093909416825291909152205490565b61123f610d80565b151561124a57600080fd5b6112538161143c565b50565b303b8015905b5090565b6000808383111561127057600080fd5b5050900390565b60008083151561128a5760009150610ef9565b5082820282848281151561129a57fe5b04146112a557600080fd5b9392505050565b6000828201838110156112a557600080fd5b6000808083116112cd57600080fd5b82848115156112d857fe5b04949350505050565b60007f800000000000000000000000000000000000000000000000000000000000000082141561131057600080fd5b6000821261131e5781610646565b5060000390565b60008054610100900460ff168061133f575061133f611256565b8061134d575060005460ff16155b15156113e057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b50600080546068805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03949094169390931790925561ff001980831661010090811760ff19166001179091169281900460ff16151502919091179055565b600160a060020a038116151561145157600080fd5b606854604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36068805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106114fb57805160ff1916838001178555611528565b82800160010185558215611528579182015b8281111561152857825182559160200191906001019061150d565b5061125c926105c79250905b8082111561125c57600081556001016115345600a165627a7a72305820dcd2c6e5530edc545dc20407f147a6a385b202877f098b2e1e17e07264b32a280029

Deployed Bytecode Sourcemap

11153:11104:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7147:69;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7147:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;7147:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20300:261;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;20300:261:0;-1:-1:-1;;;;;20300:261:0;;;;;;;;;;;;;;;;;;;;;;;;;6932:158;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6932:158:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;6932:158:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6932:158:0;;;;-1:-1:-1;6932:158:0;-1:-1:-1;6932:158:0;;-1:-1:-1;6932:158:0;;;;;;;;-1:-1:-1;6932:158:0;;-1:-1:-1;;;6932:158:0;;;;;-1:-1:-1;6932:158:0;;-1:-1:-1;;;6932:158:0;;;17398:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17398:91:0;;;;;;;;;;;;;;;;;;;;14742:136;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14742:136:0;;;;;;;19122:536;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;19122:536:0;-1:-1:-1;;;;;19122:536:0;;;;;;;;;;;;15036:133;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15036:133:0;;;;;;;7419:76;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7419:76:0;;;;;;;;;;;;;;;;;;;;;;;20934:436;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;20934:436:0;-1:-1:-1;;;;;20934:436:0;;;;;;;12946:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12946:24:0;;;;17610:127;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;17610:127:0;-1:-1:-1;;;;;17610:127:0;;;;;5016:116;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5016:116:0;;;;15437:1435;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15437:1435:0;;;;;;;12977:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12977:23:0;;;;14405:179;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14405:179:0;-1:-1:-1;;;;;14405:179:0;;;;;4357:72;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4357:72:0;;;;;;;;-1:-1:-1;;;;;4357:72:0;;;;;;;;;;;;;;12760:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12760:29:0;;;;4659:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4659:85:0;;;;7275:73;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7275:73:0;;;;21632:622;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;21632:622:0;-1:-1:-1;;;;;21632:622:0;;;;;;;17963:416;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;17963:416:0;-1:-1:-1;;;;;17963:416:0;;;;;;;16880:445;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;16880:445:0;-1:-1:-1;;;;;16880:445:0;;;;;18686:174;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;18686:174:0;-1:-1:-1;;;;;18686:174:0;;;;;;;;;;5299:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5299:103:0;-1:-1:-1;;;;;5299:103:0;;;;;7147:69;7205:5;7198:12;;;;;;;;-1:-1:-1;;7198:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7183:6;;7198:12;;7205:5;;7198:12;;7205:5;7198:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7147:69;;:::o;20300:261::-;13151:11;;20411:4;;-1:-1:-1;;;13151:11:0;;;;13150:12;13142:21;;;;;;20451:10;20433:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;20433:38:0;;;;;;;;;;;;:46;;;20495:36;;;;;;;20433:38;;20451:10;20495:36;;;;;;;;;;;-1:-1:-1;20549:4:0;13174:1;20300:261;;;;:::o;6932:158::-;2841:20;2734:12;;;;;;;;:31;;;2750:15;:13;:15::i;:::-;2734:47;;;-1:-1:-1;2770:11:0;;;;2769:12;2734:47;2726:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2864:12:0;;;;;-1:-1:-1;;2883:19:0;;;;-1:-1:-1;;2909:18:0;;;;;;;;7022:12;;2864;;;;;;7022;;:5;;:12;;;;;:::i;:::-;-1:-1:-1;7041:16:0;;;;:7;;:16;;;;;:::i;:::-;-1:-1:-1;7064:9:0;:20;;;;;;-1:-1:-1;;7064:20:0;;;;;;;;;;:9;2946:30;;;;;7064:20;2946:30;-1:-1:-1;;2946:30:0;;;;;;;;;-1:-1:-1;;6932:158:0:o;17398:91::-;17469:12;;17398:91;:::o;14742:136::-;4550:9;:7;:9::i;:::-;4542:18;;;;;;;;14810:12;:21;;;;;;;;-1:-1:-1;;14810:21:0;;;;;;;;;;14847:23;;;;;;;;;;;;;;;;14742:136;:::o;19122:536::-;19273:4;;19241:2;-1:-1:-1;;;;;13246:18:0;;;;13238:27;;;;;;-1:-1:-1;;;;;13284:19:0;;13298:4;13284:19;;13276:28;;;;;;13151:11;;-1:-1:-1;;;13151:11:0;;;;13150:12;13142:21;;;;;;-1:-1:-1;;;;;19328:23:0;;;;;;:17;:23;;;;;;;;19352:24;19328:49;;;;;;;;:74;;19396:5;19328:74;:67;:74;:::i;:::-;-1:-1:-1;;;;;19290:23:0;;;;;;:17;:23;;;;;;;;19314:10;19290:35;;;;;;;:112;19444:16;;19434:27;;:5;;:27;:9;:27;:::i;:::-;-1:-1:-1;;;;;19493:18:0;;;;;;:12;:18;;;;;;19415:46;;-1:-1:-1;19493:32:0;;19415:46;19493:32;:22;:32;:::i;:::-;-1:-1:-1;;;;;19472:18:0;;;;;;;:12;:18;;;;;;:53;;;;19555:16;;;;;;;:30;;19576:8;19555:30;:20;:30;:::i;:::-;-1:-1:-1;;;;;19536:16:0;;;;;;;:12;:16;;;;;;;;;:49;;;;19601:25;;;;;;;19536:16;;19601:25;;;;;;;;;;;;;-1:-1:-1;19646:4:0;;19122:536;-1:-1:-1;;;;;19122:536:0:o;15036:133::-;4550:9;:7;:9::i;:::-;4542:18;;;;;;;;15103:11;:20;;;;;-1:-1:-1;;;15103:20:0;;-1:-1:-1;;15103:20:0;;;;;;;;;;15139:22;;;;;;;;;;;;;;;;15036:133;:::o;7419:76::-;7480:9;;;;7419:76;:::o;20934:436::-;13151:11;;21060:4;;-1:-1:-1;;;13151:11:0;;;;13150:12;13142:21;;;;;;21141:24;21123:43;;;;:17;:43;;;;;;;;-1:-1:-1;;;;;21123:52:0;;;;;;;;;;:82;;21194:10;21123:82;:70;:82;:::i;:::-;21100:10;21082:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;21082:38:0;;;;;;;;;;;;:123;;;21221:119;;;;;;21082:38;;21221:119;;;;;;;;;;;-1:-1:-1;21358:4:0;20934:436;;;;:::o;12946:24::-;;;;;;;;;:::o;17610:127::-;17712:16;;-1:-1:-1;;;;;17690:17:0;;17663:7;17690:17;;;:12;:17;;;;;;17663:7;;17690:39;;:17;:39;:21;:39;:::i;5016:116::-;4550:9;:7;:9::i;:::-;4542:18;;;;;;;;5093:6;;5074:26;;-1:-1:-1;;;;;5093:6:0;;;;5074:26;;5093:6;;5074:26;5107:6;:19;;-1:-1:-1;;5107:19:0;;;5016:116::o;15437:1435::-;12861:14;;15581:7;;-1:-1:-1;;;;;12861:14:0;12847:10;:28;12839:37;;;;;;13060:12;;;;;;;13059:13;13051:22;;;;;;15610:16;;15606:118;;;15665:12;;15648:30;;;;;;;15658:5;;15648:30;;;;;;;;;;-1:-1:-1;15700:12:0;;15693:19;;15606:118;15754:1;15740:11;:15;15736:193;;;15787:44;15812:17;:11;:15;:17::i;:::-;15787:12;;;:44;:16;:44;:::i;:::-;15772:12;:59;15736:193;;;15879:12;;:38;;15904:11;15879:38;:16;:38;:::i;:::-;15864:12;:53;15736:193;15945:12;;15960:10;-1:-1:-1;15941:83:0;;;16002:10;15987:12;:25;15941:83;16070:12;;16055:28;;13486:22;-1:-1:-1;;13754:38:0;;-1:-1:-1;;13730:63:0;;16055:28;:14;:28;:::i;:::-;16036:16;:47;16821:12;;16804:30;;;;;;;16814:5;;16804:30;;;;;;;;;;-1:-1:-1;16852:12:0;;15437:1435;;;;:::o;12977:23::-;;;-1:-1:-1;;;12977:23:0;;;;;:::o;14405:179::-;4550:9;:7;:9::i;:::-;4542:18;;;;;;;;14487:14;:32;;-1:-1:-1;;;;;14487:32:0;;-1:-1:-1;;14487:32:0;;;;;;;;14535:41;;;;;;;;;;;;;;;;14405:179;:::o;4357:72::-;4417:6;;-1:-1:-1;;;;;4417:6:0;4357:72;:::o;12760:29::-;;;-1:-1:-1;;;;;12760:29:0;;:::o;4659:85::-;4732:6;;-1:-1:-1;;;;;4732:6:0;4718:10;:20;;4659:85::o;7275:73::-;7335:7;7328:14;;;;;;;;-1:-1:-1;;7328:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7313:6;;7328:14;;7335:7;;7328:14;;7335:7;7328:14;;;;;;;;;;;;;;;;;;;;;;;;21632:622;13151:11;;21763:4;;;;-1:-1:-1;;;13151:11:0;;;;13150:12;13142:21;;;;;;-1:-1:-1;21822:10:0;21804:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;21804:38:0;;;;;;;;;;21857:27;;;21853:237;;21919:10;21942:1;21901:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;21901:38:0;;;;;;;;;:42;21853:237;;;22017:61;:8;22048:15;22017:61;:12;:61;:::i;:::-;21994:10;21976:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;21976:38:0;;;;;;;;;:102;21853:237;22128:10;22175:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;22105:119:0;;22175:38;;;;;;;;;;;22105:119;;;;;;;;;22128:10;22105:119;;;;;;;;;;;22242:4;22235:11;;13174:1;21632:622;;;;;:::o;17963:416::-;18098:4;;18048:2;-1:-1:-1;;;;;13246:18:0;;;;13238:27;;;;;;-1:-1:-1;;;;;13284:19:0;;13298:4;13284:19;;13276:28;;;;;;13151:11;;-1:-1:-1;;;13151:11:0;;;;13150:12;13142:21;;;;;;18149:16;;18139:27;;:5;;:27;:9;:27;:::i;:::-;18217:10;18204:24;;;;:12;:24;;;;;;18120:46;;-1:-1:-1;18204:38:0;;18120:46;18204:38;:28;:38;:::i;:::-;18190:10;18177:24;;;;:12;:24;;;;;;:65;;;;-1:-1:-1;;;;;18272:16:0;;;;;;:30;;18293:8;18272:30;:20;:30;:::i;:::-;-1:-1:-1;;;;;18253:16:0;;;;;;:12;:16;;;;;;;;;:49;;;;18318:31;;;;;;;18253:16;;18327:10;;18318:31;;;;;;;;;;-1:-1:-1;18367:4:0;;17963:416;-1:-1:-1;;;;17963:416:0:o;16880:445::-;2841:20;2734:12;;;;;;;;:31;;;2750:15;:13;:15::i;:::-;2734:47;;;-1:-1:-1;2770:11:0;;;;2769:12;2734:47;2726:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2864:12:0;;;;;-1:-1:-1;;2883:19:0;;;;-1:-1:-1;;2909:18:0;;;;;;;;16946:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2864:12;;;;;;;16946:55;;13368:2;16946:24;:55::i;:::-;17012:26;17031:6;17012:18;:26::i;:::-;17051:12;:20;;-1:-1:-1;;17082:19:0;;;13486:22;17114:12;:39;;;-1:-1:-1;;;;;17164:20:0;;-1:-1:-1;17164:20:0;;;:12;:20;;;;;-1:-1:-1;;17164:33:0;;17242:12;17227:28;;-1:-1:-1;;13754:38:0;;17227:28;17208:16;:47;17304:12;;17273:44;;;;;;;-1:-1:-1;;;;;17273:44:0;;;17290:3;;17273:44;;;;;;;;;2946:12;:30;;;;;;;-1:-1:-1;;2946:30:0;;;;;;;;;-1:-1:-1;16880:445:0:o;18686:174::-;-1:-1:-1;;;;;18818:25:0;;;18786:7;18818:25;;;:17;:25;;;;;;;;:34;;;;;;;;;;;;;18686:174::o;5299:103::-;4550:9;:7;:9::i;:::-;4542:18;;;;;;;;5368:28;5387:8;5368:18;:28::i;:::-;5299:103;:::o;3071:476::-;3511:7;3499:20;3534:7;;;3071:476;;;:::o;1118:136::-;1176:7;;1200:6;;;;1192:15;;;;;;-1:-1:-1;;1226:5:0;;;1118:136::o;216:393::-;274:7;;502:6;;498:37;;;526:1;519:8;;;;498:37;-1:-1:-1;555:5:0;;;559:1;555;:5;575;;;;;;;;:10;567:19;;;;;;602:1;216:393;-1:-1:-1;;;216:393:0:o;1322:136::-;1380:7;1408:5;;;1428:6;;;;1420:15;;;;;724:276;782:7;;806:5;;;798:14;;;;;;893:1;889;:5;;;;;;;;;724:276;-1:-1:-1;;;;724:276:0:o;10418:161::-;10491:6;8836:16;10523:15;;;10515:24;;;;;;10561:1;10557;:5;:14;;10570:1;10557:14;;;-1:-1:-1;10565:2:0;;;10418:161::o;4214:83::-;2841:20;2734:12;;;;;;;;:31;;;2750:15;:13;:15::i;:::-;2734:47;;;-1:-1:-1;2770:11:0;;;;2769:12;2734:47;2726:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2864:12:0;;;4276:6;:15;;-1:-1:-1;;4276:15:0;-1:-1:-1;;;;;4276:15:0;;;;;;;;;;;-1:-1:-1;;2883:19:0;;;2864:12;2883:19;;;-1:-1:-1;;2909:18:0;-1:-1:-1;2909:18:0;2946:30;;;2864:12;;;;;;2946:30;;;;;;;;;4214:83::o;5542:173::-;-1:-1:-1;;;;;5612:22:0;;;;5604:31;;;;;;5668:6;;5647:38;;-1:-1:-1;;;;;5647:38:0;;;;5668:6;;5647:38;;5668:6;;5647:38;5692:6;:17;;-1:-1:-1;;5692:17:0;-1:-1:-1;;;;;5692:17:0;;;;;;;;;;5542:173::o;11153:11104::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11153:11104:0;;;;-1:-1:-1;11153:11104:0;;;;;;;;;;;;;;

Swarm Source

bzzr://dcd2c6e5530edc545dc20407f147a6a385b202877f098b2e1e17e07264b32a28

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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

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