ETH Price: $1,616.45 (+0.34%)
Gas: 9 Gwei
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multi Chain

Transaction Hash
Method
Block
From
To
Value
0xd1c7424c93e09ba13781a47e4a07c8144ae266f9d44d8a35f484ee7984a3b342Claim(pending)2023-09-19 19:11:288 days 13 hrs ago1695150688IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH(Pending)(Pending)
Claim182288712023-09-27 18:26:2314 hrs 38 mins ago1695839183IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH0.0059394914.16841491
Claim182140432023-09-25 16:39:232 days 16 hrs ago1695659963IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH0.0096601323.80299116
Claim182124752023-09-25 11:22:592 days 21 hrs ago1695640979IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH0.006069899.16749988
Claim181703942023-09-19 13:56:238 days 19 hrs ago1695131783IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH0.0044924110.41736033
Claim181407032023-09-15 9:22:4712 days 23 hrs ago1694769767IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH0.0032085410.56946594
Claim181406782023-09-15 9:17:4712 days 23 hrs ago1694769467IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH0.0081331411.93986912
Claim181179102023-09-12 4:35:2316 days 4 hrs ago1694493323IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH0.004226399.19146008
Claim181174922023-09-12 3:10:5916 days 5 hrs ago1694488259IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH0.004259959.14101651
Claim181005932023-09-09 18:23:2318 days 14 hrs ago1694283803IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH0.003477328.64571399
Claim180925022023-09-08 15:10:5919 days 17 hrs ago1694185859IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH0.0077774719.33723501
Claim180847522023-09-07 13:09:2320 days 19 hrs ago1694092163IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH0.0094276815.21629294
Claim180743112023-09-06 2:02:3522 days 7 hrs ago1693965755IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH0.0081123715.85963107
Claim180699862023-09-05 11:29:4722 days 21 hrs ago1693913387IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH0.0057146114.06567879
Claim180682562023-09-05 5:41:2323 days 3 hrs ago1693892483IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH0.0043518410.82004997
Claim180625212023-09-04 10:29:1123 days 22 hrs ago1693823351IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH0.0035419810.85689102
Claim180625062023-09-04 10:26:1123 days 22 hrs ago1693823171IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH0.0055808811.63656794
Claim180624742023-09-04 10:19:4723 days 22 hrs ago1693822787IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH0.0032149412.93203171
Claim180624592023-09-04 10:16:3523 days 22 hrs ago1693822595IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH0.0043178611.06739237
Claim180580162023-09-03 19:21:2324 days 13 hrs ago1693768883IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH0.0052588712.54480516
Claim180531622023-09-03 3:02:4725 days 6 hrs ago1693710167IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH0.0042464910.51374927
Claim180517242023-09-02 22:13:2325 days 10 hrs ago1693692803IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH0.0039167812.31420931
Claim180485912023-09-02 11:40:1125 days 21 hrs ago1693654811IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH0.0029823911.29134132
Claim180485722023-09-02 11:36:2325 days 21 hrs ago1693654583IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH0.0049857910.42918288
Claim180454612023-09-02 1:07:3526 days 7 hrs ago1693616855IN
Ribbon Finance: VeRBN Penalty Rewards
0 ETH0.004382810.79943279
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:
Vyper_contract

Compiler Version
vyper:0.2.7

Optimization Enabled:
N/A

Other Settings:
MIT license

Contract Source Code (Vyper language format)

# @version 0.2.7
"""
@title Curve Fee Distribution
@author Curve Finance
@license MIT
"""

from vyper.interfaces import ERC20


interface VotingEscrow:
    def user_point_epoch(addr: address) -> uint256: view
    def epoch() -> uint256: view
    def user_point_history(addr: address, loc: uint256) -> Point: view
    def point_history(loc: uint256) -> Point: view
    def checkpoint(): nonpayable

event CommitAdmin:
    admin: address

event ApplyAdmin:
    admin: address

event ToggleAllowCheckpointToken:
    toggle_flag: bool

event CheckpointToken:
    time: uint256
    tokens: uint256

event Claimed:
    recipient: indexed(address)
    amount: uint256
    claim_epoch: uint256
    max_epoch: uint256


struct Point:
    bias: int128
    slope: int128  # - dweight / dt
    ts: uint256
    blk: uint256  # block


WEEK: constant(uint256) = 7 * 86400
TOKEN_CHECKPOINT_DEADLINE: constant(uint256) = 86400

start_time: public(uint256)
time_cursor: public(uint256)
time_cursor_of: public(HashMap[address, uint256])
user_epoch_of: public(HashMap[address, uint256])

last_token_time: public(uint256)
tokens_per_week: public(uint256[1000000000000000])

voting_escrow: public(address)
token: public(address)
total_received: public(uint256)
token_last_balance: public(uint256)

ve_supply: public(uint256[1000000000000000])  # VE total supply at week bounds

admin: public(address)
future_admin: public(address)
can_checkpoint_token: public(bool)
emergency_return: public(address)
is_killed: public(bool)


@external
def __init__(
    _voting_escrow: address,
    _start_time: uint256,
    _token: address,
    _admin: address,
    _emergency_return: address
):
    """
    @notice Contract constructor
    @param _voting_escrow VotingEscrow contract address
    @param _start_time Epoch time for fee distribution to start
    @param _token Fee token address (RBN)
    @param _admin Admin address
    @param _emergency_return Address to transfer `_token` balance to
                             if this contract is killed
    """
    t: uint256 = _start_time / WEEK * WEEK
    self.start_time = t
    self.last_token_time = t
    self.time_cursor = t
    self.token = _token
    self.voting_escrow = _voting_escrow
    self.admin = _admin
    self.emergency_return = _emergency_return
    self.can_checkpoint_token = True

@internal
def _checkpoint_token():
    token_balance: uint256 = ERC20(self.token).balanceOf(self)
    to_distribute: uint256 = token_balance - self.token_last_balance
    self.token_last_balance = token_balance

    t: uint256 = self.last_token_time
    since_last: uint256 = block.timestamp - t
    self.last_token_time = block.timestamp
    this_week: uint256 = t / WEEK * WEEK
    next_week: uint256 = 0

    for i in range(20):
        next_week = this_week + WEEK
        if block.timestamp < next_week:
            if since_last == 0 and block.timestamp == t:
                self.tokens_per_week[this_week] += to_distribute
            else:
                self.tokens_per_week[this_week] += to_distribute * (block.timestamp - t) / since_last
            break
        else:
            if since_last == 0 and next_week == t:
                self.tokens_per_week[this_week] += to_distribute
            else:
                self.tokens_per_week[this_week] += to_distribute * (next_week - t) / since_last
        t = next_week
        this_week = next_week

    log CheckpointToken(block.timestamp, to_distribute)


@external
def checkpoint_token():
    """
    @notice Update the token checkpoint
    @dev Calculates the total number of tokens to be distributed in a given week.
         During setup for the initial distribution this function is only callable
         by the contract owner. Beyond initial distro, it can be enabled for anyone
         to call.
    """
    assert (msg.sender == self.admin) or\
           (self.can_checkpoint_token and (block.timestamp > self.last_token_time + TOKEN_CHECKPOINT_DEADLINE))
    self._checkpoint_token()


@internal
def _find_timestamp_epoch(ve: address, _timestamp: uint256) -> uint256:
    _min: uint256 = 0
    _max: uint256 = VotingEscrow(ve).epoch()
    for i in range(128):
        if _min >= _max:
            break
        _mid: uint256 = (_min + _max + 2) / 2
        pt: Point = VotingEscrow(ve).point_history(_mid)
        if pt.ts <= _timestamp:
            _min = _mid
        else:
            _max = _mid - 1
    return _min


@view
@internal
def _find_timestamp_user_epoch(ve: address, user: address, _timestamp: uint256, max_user_epoch: uint256) -> uint256:
    _min: uint256 = 0
    _max: uint256 = max_user_epoch
    for i in range(128):
        if _min >= _max:
            break
        _mid: uint256 = (_min + _max + 2) / 2
        pt: Point = VotingEscrow(ve).user_point_history(user, _mid)
        if pt.ts <= _timestamp:
            _min = _mid
        else:
            _max = _mid - 1
    return _min


@view
@external
def ve_for_at(_user: address, _timestamp: uint256) -> uint256:
    """
    @notice Get the veCRV balance for `_user` at `_timestamp`
    @param _user Address to query balance for
    @param _timestamp Epoch time
    @return uint256 veCRV balance
    """
    ve: address = self.voting_escrow
    max_user_epoch: uint256 = VotingEscrow(ve).user_point_epoch(_user)
    epoch: uint256 = self._find_timestamp_user_epoch(ve, _user, _timestamp, max_user_epoch)
    pt: Point = VotingEscrow(ve).user_point_history(_user, epoch)
    return convert(max(pt.bias - pt.slope * convert(_timestamp - pt.ts, int128), 0), uint256)

@internal
def _checkpoint_total_supply():
    ve: address = self.voting_escrow
    t: uint256 = self.time_cursor
    rounded_timestamp: uint256 = block.timestamp / WEEK * WEEK
    VotingEscrow(ve).checkpoint()

    for i in range(20):
        if t > rounded_timestamp:
            break
        else:
            epoch: uint256 = self._find_timestamp_epoch(ve, t)
            pt: Point = VotingEscrow(ve).point_history(epoch)
            dt: int128 = 0
            if t > pt.ts:
                # If the point is at 0 epoch, it can actually be earlier than the first deposit
                # Then make dt 0
                dt = convert(t - pt.ts, int128)
            self.ve_supply[t] = convert(max(pt.bias - pt.slope * dt, 0), uint256)
        t += WEEK

    self.time_cursor = t


@external
def checkpoint_total_supply():
    """
    @notice Update the veCRV total supply checkpoint
    @dev The checkpoint is also updated by the first claimant each
         new epoch week. This function may be called independently
         of a claim, to reduce claiming gas costs.
    """
    self._checkpoint_total_supply()


@view
@internal
def _claim(addr: address, ve: address, _last_token_time: uint256) -> (uint256, uint256, uint256, uint256, bool):
    # Minimal user_epoch is 0 (if user had no point)
    user_epoch: uint256 = 0
    to_distribute: uint256 = 0

    max_user_epoch: uint256 = VotingEscrow(ve).user_point_epoch(addr)
    _start_time: uint256 = self.start_time

    if max_user_epoch == 0:
        # No lock = no fees
        return (0, 0, 0, 0, False)

    week_cursor: uint256 = self.time_cursor_of[addr]
    if week_cursor == 0:
        # Need to do the initial binary search
        user_epoch = self._find_timestamp_user_epoch(ve, addr, _start_time, max_user_epoch)
    else:
        user_epoch = self.user_epoch_of[addr]

    if user_epoch == 0:
        user_epoch = 1

    user_point: Point = VotingEscrow(ve).user_point_history(addr, user_epoch)

    if week_cursor == 0:
        week_cursor = (user_point.ts + WEEK - 1) / WEEK * WEEK

    if week_cursor >= _last_token_time:
        return (0, 0, 0, 0, False)

    if week_cursor < _start_time:
        week_cursor = _start_time
    old_user_point: Point = empty(Point)

    # Iterate over weeks
    for i in range(50):
        if week_cursor >= _last_token_time:
            break

        if week_cursor >= user_point.ts and user_epoch <= max_user_epoch:
            user_epoch += 1
            old_user_point = user_point
            if user_epoch > max_user_epoch:
                user_point = empty(Point)
            else:
                user_point = VotingEscrow(ve).user_point_history(addr, user_epoch)

        else:
            # Calc
            # + i * 2 is for rounding errors
            dt: int128 = convert(week_cursor - old_user_point.ts, int128)
            balance_of: uint256 = convert(max(old_user_point.bias - dt * old_user_point.slope, 0), uint256)
            if balance_of == 0 and user_epoch > max_user_epoch:
                break
            if balance_of > 0:
                to_distribute += balance_of * self.tokens_per_week[week_cursor] / self.ve_supply[week_cursor]

            week_cursor += WEEK

    user_epoch = min(max_user_epoch, user_epoch - 1)

    return (to_distribute, user_epoch, week_cursor, max_user_epoch, True)

@view
@external
def claimable(addr: address = msg.sender) -> uint256:
    """
    @notice Get the claimable revenue (approximation)
    @param addr Address to query balance for
    @return uint256 Claimable revenue
    """
    claimable: uint256 = 0
    user_epoch: uint256 = 0
    week_cursor: uint256 = 0
    max_user_epoch: uint256 = 0
    is_update: bool = True
    claimable, user_epoch, week_cursor, max_user_epoch, is_update = self._claim(addr, self.voting_escrow,  self.last_token_time / WEEK * WEEK)
    return claimable

@external
@nonreentrant('lock')
def claim(_addr: address = msg.sender) -> uint256:
    """
    @notice Claim fees for `_addr`
    @dev Each call to claim look at a maximum of 50 user veCRV points.
         For accounts with many veCRV related actions, this function
         may need to be called more than once to claim all available
         fees. In the `Claimed` event that fires, if `claim_epoch` is
         less than `max_epoch`, the account may claim again.
    @param _addr Address to claim fees for
    @return uint256 Amount of fees claimed in the call
    """
    assert not self.is_killed

    if block.timestamp >= self.time_cursor:
        self._checkpoint_total_supply()

    last_token_time: uint256 = self.last_token_time

    if self.can_checkpoint_token and (block.timestamp > last_token_time + TOKEN_CHECKPOINT_DEADLINE):
        self._checkpoint_token()
        last_token_time = block.timestamp

    last_token_time = last_token_time / WEEK * WEEK

    amount: uint256 = 0
    user_epoch: uint256 = 0
    week_cursor: uint256 = 0
    max_user_epoch: uint256 = 0
    is_update: bool = True
    amount, user_epoch, week_cursor, max_user_epoch, is_update = self._claim(_addr, self.voting_escrow, last_token_time)

    if is_update:
      self.user_epoch_of[_addr] = user_epoch
      self.time_cursor_of[_addr] = week_cursor
      log Claimed(_addr, amount, user_epoch, max_user_epoch)

    if amount != 0:
        token: address = self.token
        assert ERC20(token).transfer(_addr, amount)
        self.token_last_balance -= amount

    return amount


@external
@nonreentrant('lock')
def claim_many(_receivers: address[20]) -> bool:
    """
    @notice Make multiple fee claims in a single call
    @dev Used to claim for many accounts at once, or to make
         multiple claims for the same address when that address
         has significant veCRV history
    @param _receivers List of addresses to claim for. Claiming
                      terminates at the first `ZERO_ADDRESS`.
    @return bool success
    """
    assert not self.is_killed

    if block.timestamp >= self.time_cursor:
        self._checkpoint_total_supply()

    last_token_time: uint256 = self.last_token_time

    if self.can_checkpoint_token and (block.timestamp > last_token_time + TOKEN_CHECKPOINT_DEADLINE):
        self._checkpoint_token()
        last_token_time = block.timestamp

    last_token_time = last_token_time / WEEK * WEEK
    voting_escrow: address = self.voting_escrow
    token: address = self.token
    total: uint256 = 0

    amount: uint256 = 0
    user_epoch: uint256 = 0
    week_cursor: uint256 = 0
    max_user_epoch: uint256 = 0
    is_update: bool = True

    for addr in _receivers:
        if addr == ZERO_ADDRESS:
            break

        amount, user_epoch, week_cursor, max_user_epoch, is_update = self._claim(addr, voting_escrow, last_token_time)

        if is_update:
          self.user_epoch_of[addr] = user_epoch
          self.time_cursor_of[addr] = week_cursor
          log Claimed(addr, amount, user_epoch, max_user_epoch)

        if amount != 0:
            assert ERC20(token).transfer(addr, amount)
            total += amount

    if total != 0:
        self.token_last_balance -= total

    return True

@external
def updateReward(_addr: address) -> bool:
    return True

@external
def donate(_amount: uint256) -> bool:
    """
    @notice Receive RBN into the contract and trigger a token checkpoint
    @param _amount Amount to transfer
    @return bool success
    """
    assert _amount != 0

    ERC20(self.token).transferFrom(msg.sender, self, _amount)

    if self.can_checkpoint_token and (block.timestamp > self.last_token_time + TOKEN_CHECKPOINT_DEADLINE):
        self._checkpoint_token()

    return True


@external
def commit_admin(_addr: address):
    """
    @notice Commit transfer of ownership
    @param _addr New admin address
    """
    assert msg.sender == self.admin  # dev: access denied
    self.future_admin = _addr
    log CommitAdmin(_addr)


@external
def apply_admin():
    """
    @notice Apply transfer of ownership
    """
    assert msg.sender == self.admin
    assert self.future_admin != ZERO_ADDRESS
    future_admin: address = self.future_admin
    self.admin = future_admin
    log ApplyAdmin(future_admin)


@external
def toggle_allow_checkpoint_token():
    """
    @notice Toggle permission for checkpointing by any account
    """
    assert msg.sender == self.admin
    flag: bool = not self.can_checkpoint_token
    self.can_checkpoint_token = flag
    log ToggleAllowCheckpointToken(flag)


@external
def kill_me():
    """
    @notice Kill the contract
    @dev Killing transfers the entire RBN balance to the emergency return address
         and blocks the ability to claim or burn. The contract cannot be unkilled.
    """
    assert msg.sender == self.admin

    self.is_killed = True

    token: address = self.token
    assert ERC20(token).transfer(self.emergency_return, ERC20(token).balanceOf(self))

@external
def recover_balance(_coin: address) -> bool:
    """
    @notice Recover ERC20 tokens from this contract
    @dev Tokens are sent to the emergency return address.
    @param _coin Token address
    @return bool success
    """
    assert msg.sender == self.admin
    assert _coin != self.token

    amount: uint256 = ERC20(_coin).balanceOf(self)
    response: Bytes[32] = raw_call(
        _coin,
        concat(
            method_id("transfer(address,uint256)"),
            convert(self.emergency_return, bytes32),
            convert(amount, bytes32),
        ),
        max_outsize=32,
    )
    if len(response) != 0:
        assert convert(response, bool)

    return True

Contract Security Audit

Contract ABI

[{"name":"CommitAdmin","inputs":[{"type":"address","name":"admin","indexed":false}],"anonymous":false,"type":"event"},{"name":"ApplyAdmin","inputs":[{"type":"address","name":"admin","indexed":false}],"anonymous":false,"type":"event"},{"name":"ToggleAllowCheckpointToken","inputs":[{"type":"bool","name":"toggle_flag","indexed":false}],"anonymous":false,"type":"event"},{"name":"CheckpointToken","inputs":[{"type":"uint256","name":"time","indexed":false},{"type":"uint256","name":"tokens","indexed":false}],"anonymous":false,"type":"event"},{"name":"Claimed","inputs":[{"type":"address","name":"recipient","indexed":true},{"type":"uint256","name":"amount","indexed":false},{"type":"uint256","name":"claim_epoch","indexed":false},{"type":"uint256","name":"max_epoch","indexed":false}],"anonymous":false,"type":"event"},{"outputs":[],"inputs":[{"type":"address","name":"_voting_escrow"},{"type":"uint256","name":"_start_time"},{"type":"address","name":"_token"},{"type":"address","name":"_admin"},{"type":"address","name":"_emergency_return"}],"stateMutability":"nonpayable","type":"constructor"},{"name":"checkpoint_token","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":820723},{"name":"ve_for_at","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"address","name":"_user"},{"type":"uint256","name":"_timestamp"}],"stateMutability":"view","type":"function","gas":249417},{"name":"checkpoint_total_supply","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":10592405},{"name":"claimable","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function"},{"name":"claimable","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"address","name":"addr"}],"stateMutability":"view","type":"function"},{"name":"claim","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"nonpayable","type":"function"},{"name":"claim","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"address","name":"_addr"}],"stateMutability":"nonpayable","type":"function"},{"name":"claim_many","outputs":[{"type":"bool","name":""}],"inputs":[{"type":"address[20]","name":"_receivers"}],"stateMutability":"nonpayable","type":"function","gas":26339244},{"name":"updateReward","outputs":[{"type":"bool","name":""}],"inputs":[{"type":"address","name":"_addr"}],"stateMutability":"nonpayable","type":"function","gas":691},{"name":"donate","outputs":[{"type":"bool","name":""}],"inputs":[{"type":"uint256","name":"_amount"}],"stateMutability":"nonpayable","type":"function","gas":822108},{"name":"commit_admin","outputs":[],"inputs":[{"type":"address","name":"_addr"}],"stateMutability":"nonpayable","type":"function","gas":37958},{"name":"apply_admin","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":39594},{"name":"toggle_allow_checkpoint_token","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":38733},{"name":"kill_me","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":39647},{"name":"recover_balance","outputs":[{"type":"bool","name":""}],"inputs":[{"type":"address","name":"_coin"}],"stateMutability":"nonpayable","type":"function","gas":7838},{"name":"start_time","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1601},{"name":"time_cursor","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1631},{"name":"time_cursor_of","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"address","name":"arg0"}],"stateMutability":"view","type":"function","gas":1876},{"name":"user_epoch_of","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"address","name":"arg0"}],"stateMutability":"view","type":"function","gas":1906},{"name":"last_token_time","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1721},{"name":"tokens_per_week","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256","name":"arg0"}],"stateMutability":"view","type":"function","gas":1860},{"name":"voting_escrow","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1781},{"name":"token","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1811},{"name":"total_received","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1841},{"name":"token_last_balance","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1871},{"name":"ve_supply","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256","name":"arg0"}],"stateMutability":"view","type":"function","gas":2010},{"name":"admin","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1931},{"name":"future_admin","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1961},{"name":"can_checkpoint_token","outputs":[{"type":"bool","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1991},{"name":"emergency_return","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2021},{"name":"is_killed","outputs":[{"type":"bool","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2051}]

6f7fffffffffffffffffffffffffffffff60405260a06123db6101403960206123db60c03960c05160a01c1561003457600080fd5b602060406123db0160c03960c05160a01c1561004f57600080fd5b602060606123db0160c03960c05160a01c1561006a57600080fd5b602060806123db0160c03960c05160a01c1561008557600080fd5b6101605162093a808082049050905062093a8080820282158284830414176100ac57600080fd5b809050905090506101e0526101e0516000556101e0516004556101e05160015561018051600755610140516006556101a051600b556101c051600e556001600d556123c356341561000a57600080fd5b6004361015610018576122cb565b600035601c526f7fffffffffffffffffffffffffffffff604052600015610384575b61014052602061020060246370a0823161018052306101a05261019c6007545afa61006457600080fd5b601f3d1161007157600080fd5b6000506102005161016052610160516009548082101561009057600080fd5b8082039050905061018052610160516009556004546101a052426101a051808210156100bb57600080fd5b808203905090506101c052426004556101a05162093a808082049050905062093a8080820282158284830414176100f157600080fd5b809050905090506101e05260006102005261022060006014818352015b6101e05162093a8081818301101561012557600080fd5b808201905090506102005261020051421015610232576101c0511515610150576101a0514214610153565b60005b1561019e576101e05166038d7ea4c68000811061016f57600080fd5b600560c052602060c0200180546101805181818301101561018f57600080fd5b80820190509050815550610229565b6101e05166038d7ea4c6800081106101b557600080fd5b600560c052602060c02001805461018051426101a051808210156101d857600080fd5b8082039050905080820282158284830414176101f357600080fd5b809050905090506101c051808061020957600080fd5b82049050905081818301101561021e57600080fd5b808201905090508155505b61034856610327565b6101c051151561024a576101a051610200511461024d565b60005b15610298576101e05166038d7ea4c68000811061026957600080fd5b600560c052602060c0200180546101805181818301101561028957600080fd5b80820190509050815550610326565b6101e05166038d7ea4c6800081106102af57600080fd5b600560c052602060c02001805461018051610200516101a051808210156102d557600080fd5b8082039050905080820282158284830414176102f057600080fd5b809050905090506101c051808061030657600080fd5b82049050905081818301101561031b57600080fd5b808201905090508155505b5b610200516101a052610200516101e0525b815160010180835281141561010e575b5050426102205261018051610240527fce749457b74e10f393f2c6b1ce4261b78791376db5a3f501477a809f03f500d66040610220a161014051565b63811a40fe60005114156103eb57600b543314156103a35760016103d3565b600d54156103cf57600454620151808181830110156103c157600080fd5b8082019050905042116103d2565b60005b5b5b6103dd57600080fd5b6006580161003a565b600050005b6000156105a6575b61018052610140526101605260006101a0526020610240600463900cf0cf6101e0526101fc610140515afa61042757600080fd5b601f3d1161043457600080fd5b600050610240516101c0526101e060006080818352015b6101c0516101a05110151561045f57610592565b6101a0516101c05181818301101561047657600080fd5b80820190509050600281818301101561048e57600080fd5b80820190509050600280820490509050610200526102206080610320602463d1febfb96102a052610200516102c0526102bc610140515afa6104cf57600080fd5b607f3d116104dc57600080fd5b61032080808080516103a0525050602081019050808080516103c0525050602081019050808080516103e05250506020810190508080805161040052505050506000506103a0805182528060200151826020015280604001518260400152806060015182606001525050610160516102605111151561056257610200516101a052610581565b6102005160018082101561057557600080fd5b808203905090506101c0525b5b815160010180835281141561044b575b50506101a051600052600051610180515650005b60001561073f575b6101c0526101405261016052610180526101a05260006101e0526101a0516102005261022060006080818352015b610200516101e0511015156105f05761072b565b6101e0516102005181818301101561060757600080fd5b80820190509050600281818301101561061f57600080fd5b8082019050905060028082049050905061024052610260608061038060446328d09d476102e052610160516103005261024051610320526102fc610140515afa61066857600080fd5b607f3d1161067557600080fd5b61038080808080516104005250506020810190508080805161042052505060208101905080808051610440525050602081019050808080516104605250505050600050610400805182528060200151826020015280604001518260400152806060015182606001525050610180516102a0511115156106fb57610240516101e05261071a565b6102405160018082101561070e57600080fd5b80820390509050610200525b5b81516001018083528114156105dc575b50506101e0516000526000516101c0515650005b63ace296fb60005114156109525760043560a01c1561075d57600080fd5b600654610140526020610200602463010ae757610180526004356101a05261019c610140515afa61078d57600080fd5b601f3d1161079a57600080fd5b6000506102005161016052610140516101605161018051610140516101a0526004356101c0526024356101e0526101605161020052610200516101e0516101c0516101a051600658016105ae565b6102605261018052610160526101405261026051610180526101a060806102c060446328d09d476102205260043561024052610180516102605261023c610140515afa61083457600080fd5b607f3d1161084157600080fd5b6102c080808080516103405250506020810190508080805161036052505060208101905080808051610380525050602081019050808080516103a052505050506000506103408051825280602001518260200152806040015182604001528060600151826060015250506101a0516101c0516024356101e051808210156108c757600080fd5b808203905090506040518111156108dd57600080fd5b808202808060008112156108ed57195b607f1c156108fa57600080fd5b9050905090508082038080600081121561091057195b607f1c1561091d57600080fd5b9050905090506000808212156109335780610935565b815b90509050600081121561094757600080fd5b60005260206000f350005b600015610c10575b6101405260065461016052600154610180524262093a808082049050905062093a80808202821582848304141761099057600080fd5b809050905090506101a052610160513b6109a957600080fd5b60006000600463c2c4c5c16101c0526101dc6000610160515af16109cc57600080fd5b6101c060006014818352015b6101a0516101805111156109ef57610c0156610bce565b6101405161016051610180516101a0516101c0516101e051610160516102005261018051610220526102205161020051600658016103f3565b610280526101e0526101c0526101a052610180526101605261014052610280516101e0526102006080610300602463d1febfb9610280526101e0516102a05261029c610160515afa610a7957600080fd5b607f3d11610a8657600080fd5b6103008080808051610380525050602081019050808080516103a0525050602081019050808080516103c0525050602081019050808080516103e0525050505060005061038080518252806020015182602001528060400151826040015280606001518260600152505060006102805261024051610180511115610b3457610180516102405180821015610b1957600080fd5b80820390509050604051811115610b2f57600080fd5b610280525b61020051610220516102805180820280806000811215610b5057195b607f1c15610b5d57600080fd5b90509050905080820380806000811215610b7357195b607f1c15610b8057600080fd5b905090509050600080821215610b965780610b98565b815b905090506000811215610baa57600080fd5b6101805166038d7ea4c680008110610bc157600080fd5b600a60c052602060c02001555b610180805162093a80818183011015610be657600080fd5b808201905090508152505b81516001018083528114156109d8575b50506101805160015561014051565b63b21ed5026000511415610c2c576006580161095a565b600050005b60001561139c575b6101a0526101405261016052610180526040366101c03760206102a0602463010ae75761022052610140516102405261023c610160515afa610c7557600080fd5b601f3d11610c8257600080fd5b6000506102a0516102005260005461022052610200511515610d2857610240808080600081525050602081019050808060008152505060208101905080806000815250506020810190508080600081525050602081019050808060008152505060a09050905060c05260c0516102e0525b60006102e051111515610d0557610d21565b60206102e05103610240015160206102e051036102e052610cf3565b6101a05156505b60026101405160e05260c052604060c020546102e0526102e0511515610dda576101405161016051610180516101a0516101c0516101e05161020051610220516102e051610160516103005261014051610320526102205161034052610200516103605261036051610340516103205161030051600658016105ae565b6103c0526102e05261022052610200526101e0526101c0526101a0526101805261016052610140526103c0516101c052610df1565b60036101405160e05260c052604060c020546101c0525b6101c0511515610e025760016101c0525b610300608061042060446328d09d4761038052610140516103a0526101c0516103c05261039c610160515afa610e3757600080fd5b607f3d11610e4457600080fd5b61042080808080516104a0525050602081019050808080516104c0525050602081019050808080516104e05250506020810190508080805161050052505050506000506104a08051825280602001518260200152806040015182604001528060600151826060015250506102e0511515610f1b576103405162093a80818183011015610ecf57600080fd5b80820190509050600180821015610ee557600080fd5b8082039050905062093a808082049050905062093a808082028215828483041417610f0f57600080fd5b809050905090506102e0525b610180516102e051101515610fb457610380808080600081525050602081019050808060008152505060208101905080806000815250506020810190508080600081525050602081019050808060008152505060a09050905060c05260c051610420525b600061042051111515610f9157610fad565b6020610420510361038001516020610420510361042052610f7f565b6101a05156505b610220516102e0511015610fcb57610220516102e0525b608036610420376104a060006032818352015b610180516102e051101515610ff2576112d1565b610340516102e05110151561101057610200516101c0511115611013565b60005b1561112e576101c08051600181818301101561102e57600080fd5b80820190509050815250610420610300805182528060200151826020015280604001518260400152806060015182606001525050610200516101c051111561107c5760803661030037611129565b610300608061056060446328d09d476104c052610140516104e0526101c051610500526104dc610160515afa6110b157600080fd5b607f3d116110be57600080fd5b61056080808080516105e052505060208101905080808051610600525050602081019050808080516106205250506020810190508080805161064052505050506000506105e08051825280602001518260200152806040015182604001528060600151826060015250505b6112c0565b6102e051610460518082101561114357600080fd5b8082039050905060405181111561115957600080fd5b6104c052610420516104c051610440518082028080600081121561117957195b607f1c1561118657600080fd5b9050905090508082038080600081121561119c57195b607f1c156111a957600080fd5b9050905090506000808212156111bf57806111c1565b815b9050905060008112156111d357600080fd5b6104e0526104e05115156111ef57610200516101c051116111f2565b60005b156111fc576112d1565b60006104e051111561129d576101e080516104e0516102e05166038d7ea4c68000811061122857600080fd5b600560c052602060c0200154808202821582848304141761124857600080fd5b809050905090506102e05166038d7ea4c68000811061126657600080fd5b600a60c052602060c0200154808061127d57600080fd5b82049050905081818301101561129257600080fd5b808201905090508152505b6102e0805162093a808181830110156112b557600080fd5b808201905090508152505b5b8151600101808352811415610fde575b5050610200516101c0516001808210156112ea57600080fd5b80820390509050808211156112ff5780611301565b815b905090506101c0526104a08080806101e0518152505060208101905080806101c0518152505060208101905080806102e0518152505060208101905080806102005181525050602081019050808060018152505060a09050905060c05260c051610540525b60006105405111151561137857611394565b602061054051036104a001516020610540510361054052611366565b6101a0515650005b63af38d75760005114156113b45733610140526113ea565b63402914f560005114156113e25760043560a01c156113d257600080fd5b60206004610140376000506113ea565b60001561151d575b6080366101603760016101e0526101405161016051610180516101a0516101c0516101e05161014051610200526006546102205260045462093a808082049050905062093a80808202821582848304141761144457600080fd5b809050905090506102405261024051610220516102005160065801610c34565b6102a0526102c0526102e05261030052610320526101e0526101c0526101a0526101805261016052610140526102a080808080516103405250506020810190508080805161036052505060208101905080808051610380525050602081019050808080516103a0525050602081019050808080516103c0525050505061034080516101605280602001516101805280604001516101a05280606001516101c05280608001516101e052506101605160005260206000f350005b634e71d92d600051141561153557336101405261156b565b631e83409a60005114156115635760043560a01c1561155357600080fd5b602060046101403760005061156b565b60001561185b575b62ffffff541561157a57600080fd5b600162ffffff55600f541561158e57600080fd5b600154421015156115ae57610140516006580161095a565b610140526000505b60045461016052600d54156115e25761016051620151808181830110156115d457600080fd5b8082019050905042116115e5565b60005b1561160c5761014051610160516006580161003a565b610160526101405260005042610160525b6101605162093a808082049050905062093a80808202821582848304141761163357600080fd5b8090509050905061016052608036610180376001610200526101405161016051610180516101a0516101c0516101e05161020051610140516102205260065461024052610160516102605261026051610240516102205160065801610c34565b6102c0526102e052610300526103205261034052610200526101e0526101c0526101a0526101805261016052610140526102c0808080805161036052505060208101905080808051610380525050602081019050808080516103a0525050602081019050808080516103c0525050602081019050808080516103e0525050505061036080516101805280602001516101a05280604001516101c05280606001516101e0528060800151610200525061020051156117ba576101a05160036101405160e05260c052604060c020556101c05160026101405160e05260c052604060c0205561018051610220526101a051610240526101e05161026052610140517f9cdcf2f7714cca3508c7f0110b04a90a80a3a8dd0e35de99689db74d28c5383e6060610220a25b600061018051181561183e576007546102205260206102e0604463a9059cbb610240526101405161026052610180516102805261025c6000610220515af161180157600080fd5b601f3d1161180e57600080fd5b6000506102e05161181e57600080fd5b60098054610180518082101561183357600080fd5b808203905090508155505b61018051600052600062ffffff5560206000f350600062ffffff55005b637b935a236000511415611c115762ffffff541561187857600080fd5b600162ffffff556000610120525b610120516004013560a01c1561189b57600080fd5b60206101205101610120526102806101205110156118b857611886565b600f54156118c557600080fd5b600154421015156118dd576006580161095a565b6000505b60045461014052600d541561191157610140516201518081818301101561190357600080fd5b808201905090504211611914565b60005b1561193357610140516006580161003a565b6101405260005042610140525b6101405162093a808082049050905062093a80808202821582848304141761195a57600080fd5b8090509050905061014052600654610160526007546101805260a0366101a03760016102405261028060006014818352015b6020610280510260040135610260526102605115156119aa57611bc8565b6101406102a0525b6102a0515160206102a051016102a0526102a06102a05110156119d4576119b2565b610260516102c052610160516102e0526101405161030052610300516102e0516102c05160065801610c34565b61036052610380526103a0526103c0526103e0526102806102a0525b6102a0515260206102a051036102a0526101406102a051101515611a4057611a1d565b610360808080805161040052505060208101905080808051610420525050602081019050808080516104405250506020810190508080805161046052505060208101905080808051610480525050505061040080516101c05280602001516101e052806040015161020052806060015161022052806080015161024052506102405115611b37576101e05160036102605160e05260c052604060c020556102005160026102605160e05260c052604060c020556101c0516102a0526101e0516102c052610220516102e052610260517f9cdcf2f7714cca3508c7f0110b04a90a80a3a8dd0e35de99689db74d28c5383e60606102a0a25b60006101c0511815611bb7576020610340604463a9059cbb6102a052610260516102c0526101c0516102e0526102bc6000610180515af1611b7757600080fd5b601f3d11611b8457600080fd5b60005061034051611b9457600080fd5b6101a080516101c051818183011015611bac57600080fd5b808201905090508152505b5b815160010180835281141561198c575b505060006101a0511815611bf657600980546101a05180821015611beb57600080fd5b808203905090508155505b6001600052600062ffffff5560206000f350600062ffffff55005b63632447c96000511415611c3c5760043560a01c15611c2f57600080fd5b600160005260206000f350005b63f14faf6f6000511415611cef57600060043518611c5957600080fd5b602061020060646323b872dd61014052336101605230610180526004356101a05261015c60006007545af1611c8d57600080fd5b601f3d11611c9a57600080fd5b60005061020050600d5415611ccd5760045462015180818183011015611cbf57600080fd5b808201905090504211611cd0565b60005b15611ce2576006580161003a565b6000505b600160005260206000f350005b63b1d3db756000511415611d515760043560a01c15611d0d57600080fd5b600b543314611d1b57600080fd5b600435600c55600435610140527f59a407284ae6e2986675fa1400d6498af928ed01f4fd2dd6be4a2a8b4fc35b346020610140a1005b63c0e991a66000511415611dbb57600b543314611d6d57600080fd5b6000600c5418611d7c57600080fd5b600c546101405261014051600b5561014051610160527f756f845176805c8ebf249854e909627308157f63c96e470e44a9e8549ba6fb1e6020610160a1005b632121bfc36000511415611e1757600b543314611dd757600080fd5b600d54156101405261014051600d5561014051610160527fdbe6ac1081ebd8e648718341126659456f4009fcadfe1c23f66f5e61522610b26020610160a1005b63e36988536000511415611ec857600b543314611e3357600080fd5b6001600f556007546101405260206102a0604463a9059cbb61020052600e546102205260206101e060246370a0823161016052306101805261017c610140515afa611e7d57600080fd5b601f3d11611e8a57600080fd5b6000506101e0516102405261021c6000610140515af1611ea957600080fd5b601f3d11611eb657600080fd5b6000506102a051611ec657600080fd5b005b63db2f5f7960005114156120905760043560a01c15611ee657600080fd5b600b543314611ef457600080fd5b60075460043518611f0457600080fd5b60206101e060246370a0823161016052306101805261017c6004355afa611f2a57600080fd5b601f3d11611f3757600080fd5b6000506101e05161014052600060046101c0527fa9059cbb000000000000000000000000000000000000000000000000000000006101e0526101c060048060208461022001018260208501600060045af1505080518201915050600e5460208261022001015260208101905061014051602082610220010152602081019050806102205261022090508051602001806102c08284600060045af1611fda57600080fd5b505060206103806102c0516102e060006004355af1611ff857600080fd5b60203d80821115612009578061200b565b815b90509050610360526103608051602001806101608284600060045af161203057600080fd5b505060006101605118156120835761016080602001516000825180602090131561205957600080fd5b809190121561206757600080fd5b806020036101000a8204905090509050151561208257600080fd5b5b600160005260206000f350005b63834ee41760005114156120ac5760005460005260206000f350005b63127dcbd360005114156120c85760015460005260206000f350005b632a2a314b60005114156121025760043560a01c156120e657600080fd5b600260043560e05260c052604060c0205460005260206000f350005b63d5d46e88600051141561213c5760043560a01c1561212057600080fd5b600360043560e05260c052604060c0205460005260206000f350005b637f58e8f860005114156121585760045460005260206000f350005b63edf5999760005114156121935760043566038d7ea4c68000811061217c57600080fd5b600560c052602060c020015460005260206000f350005b63dfe0503160005114156121af5760065460005260206000f350005b63fc0c546a60005114156121cb5760075460005260206000f350005b632f0c222e60005114156121e75760085460005260206000f350005b6322b04bfc60005114156122035760095460005260206000f350005b63d4dafba8600051141561223e5760043566038d7ea4c68000811061222757600080fd5b600a60c052602060c020015460005260206000f350005b63f851a440600051141561225a57600b5460005260206000f350005b6317f7182a600051141561227657600c5460005260206000f350005b63aeba4737600051141561229257600d5460005260206000f350005b632c3f531e60005114156122ae57600e5460005260206000f350005b639c868ac060005114156122ca57600f5460005260206000f350005b5b60006000fd5b6100f26123c3036100f26000396100f26123c3036000f300000000000000000000000019854c9a5ffa8116f48f984bdf946fb9cea9b5f700000000000000000000000000000000000000000000000000000000621cced00000000000000000000000006123b0049f904d730db3c36a31167d9d4121fa6b00000000000000000000000077da011d5314d80be59e939c2f7ec2f702e1dcc400000000000000000000000077da011d5314d80be59e939c2f7ec2f702e1dcc4

Deployed Bytecode

0x341561000a57600080fd5b6004361015610018576122cb565b600035601c526f7fffffffffffffffffffffffffffffff604052600015610384575b61014052602061020060246370a0823161018052306101a05261019c6007545afa61006457600080fd5b601f3d1161007157600080fd5b6000506102005161016052610160516009548082101561009057600080fd5b8082039050905061018052610160516009556004546101a052426101a051808210156100bb57600080fd5b808203905090506101c052426004556101a05162093a808082049050905062093a8080820282158284830414176100f157600080fd5b809050905090506101e05260006102005261022060006014818352015b6101e05162093a8081818301101561012557600080fd5b808201905090506102005261020051421015610232576101c0511515610150576101a0514214610153565b60005b1561019e576101e05166038d7ea4c68000811061016f57600080fd5b600560c052602060c0200180546101805181818301101561018f57600080fd5b80820190509050815550610229565b6101e05166038d7ea4c6800081106101b557600080fd5b600560c052602060c02001805461018051426101a051808210156101d857600080fd5b8082039050905080820282158284830414176101f357600080fd5b809050905090506101c051808061020957600080fd5b82049050905081818301101561021e57600080fd5b808201905090508155505b61034856610327565b6101c051151561024a576101a051610200511461024d565b60005b15610298576101e05166038d7ea4c68000811061026957600080fd5b600560c052602060c0200180546101805181818301101561028957600080fd5b80820190509050815550610326565b6101e05166038d7ea4c6800081106102af57600080fd5b600560c052602060c02001805461018051610200516101a051808210156102d557600080fd5b8082039050905080820282158284830414176102f057600080fd5b809050905090506101c051808061030657600080fd5b82049050905081818301101561031b57600080fd5b808201905090508155505b5b610200516101a052610200516101e0525b815160010180835281141561010e575b5050426102205261018051610240527fce749457b74e10f393f2c6b1ce4261b78791376db5a3f501477a809f03f500d66040610220a161014051565b63811a40fe60005114156103eb57600b543314156103a35760016103d3565b600d54156103cf57600454620151808181830110156103c157600080fd5b8082019050905042116103d2565b60005b5b5b6103dd57600080fd5b6006580161003a565b600050005b6000156105a6575b61018052610140526101605260006101a0526020610240600463900cf0cf6101e0526101fc610140515afa61042757600080fd5b601f3d1161043457600080fd5b600050610240516101c0526101e060006080818352015b6101c0516101a05110151561045f57610592565b6101a0516101c05181818301101561047657600080fd5b80820190509050600281818301101561048e57600080fd5b80820190509050600280820490509050610200526102206080610320602463d1febfb96102a052610200516102c0526102bc610140515afa6104cf57600080fd5b607f3d116104dc57600080fd5b61032080808080516103a0525050602081019050808080516103c0525050602081019050808080516103e05250506020810190508080805161040052505050506000506103a0805182528060200151826020015280604001518260400152806060015182606001525050610160516102605111151561056257610200516101a052610581565b6102005160018082101561057557600080fd5b808203905090506101c0525b5b815160010180835281141561044b575b50506101a051600052600051610180515650005b60001561073f575b6101c0526101405261016052610180526101a05260006101e0526101a0516102005261022060006080818352015b610200516101e0511015156105f05761072b565b6101e0516102005181818301101561060757600080fd5b80820190509050600281818301101561061f57600080fd5b8082019050905060028082049050905061024052610260608061038060446328d09d476102e052610160516103005261024051610320526102fc610140515afa61066857600080fd5b607f3d1161067557600080fd5b61038080808080516104005250506020810190508080805161042052505060208101905080808051610440525050602081019050808080516104605250505050600050610400805182528060200151826020015280604001518260400152806060015182606001525050610180516102a0511115156106fb57610240516101e05261071a565b6102405160018082101561070e57600080fd5b80820390509050610200525b5b81516001018083528114156105dc575b50506101e0516000526000516101c0515650005b63ace296fb60005114156109525760043560a01c1561075d57600080fd5b600654610140526020610200602463010ae757610180526004356101a05261019c610140515afa61078d57600080fd5b601f3d1161079a57600080fd5b6000506102005161016052610140516101605161018051610140516101a0526004356101c0526024356101e0526101605161020052610200516101e0516101c0516101a051600658016105ae565b6102605261018052610160526101405261026051610180526101a060806102c060446328d09d476102205260043561024052610180516102605261023c610140515afa61083457600080fd5b607f3d1161084157600080fd5b6102c080808080516103405250506020810190508080805161036052505060208101905080808051610380525050602081019050808080516103a052505050506000506103408051825280602001518260200152806040015182604001528060600151826060015250506101a0516101c0516024356101e051808210156108c757600080fd5b808203905090506040518111156108dd57600080fd5b808202808060008112156108ed57195b607f1c156108fa57600080fd5b9050905090508082038080600081121561091057195b607f1c1561091d57600080fd5b9050905090506000808212156109335780610935565b815b90509050600081121561094757600080fd5b60005260206000f350005b600015610c10575b6101405260065461016052600154610180524262093a808082049050905062093a80808202821582848304141761099057600080fd5b809050905090506101a052610160513b6109a957600080fd5b60006000600463c2c4c5c16101c0526101dc6000610160515af16109cc57600080fd5b6101c060006014818352015b6101a0516101805111156109ef57610c0156610bce565b6101405161016051610180516101a0516101c0516101e051610160516102005261018051610220526102205161020051600658016103f3565b610280526101e0526101c0526101a052610180526101605261014052610280516101e0526102006080610300602463d1febfb9610280526101e0516102a05261029c610160515afa610a7957600080fd5b607f3d11610a8657600080fd5b6103008080808051610380525050602081019050808080516103a0525050602081019050808080516103c0525050602081019050808080516103e0525050505060005061038080518252806020015182602001528060400151826040015280606001518260600152505060006102805261024051610180511115610b3457610180516102405180821015610b1957600080fd5b80820390509050604051811115610b2f57600080fd5b610280525b61020051610220516102805180820280806000811215610b5057195b607f1c15610b5d57600080fd5b90509050905080820380806000811215610b7357195b607f1c15610b8057600080fd5b905090509050600080821215610b965780610b98565b815b905090506000811215610baa57600080fd5b6101805166038d7ea4c680008110610bc157600080fd5b600a60c052602060c02001555b610180805162093a80818183011015610be657600080fd5b808201905090508152505b81516001018083528114156109d8575b50506101805160015561014051565b63b21ed5026000511415610c2c576006580161095a565b600050005b60001561139c575b6101a0526101405261016052610180526040366101c03760206102a0602463010ae75761022052610140516102405261023c610160515afa610c7557600080fd5b601f3d11610c8257600080fd5b6000506102a0516102005260005461022052610200511515610d2857610240808080600081525050602081019050808060008152505060208101905080806000815250506020810190508080600081525050602081019050808060008152505060a09050905060c05260c0516102e0525b60006102e051111515610d0557610d21565b60206102e05103610240015160206102e051036102e052610cf3565b6101a05156505b60026101405160e05260c052604060c020546102e0526102e0511515610dda576101405161016051610180516101a0516101c0516101e05161020051610220516102e051610160516103005261014051610320526102205161034052610200516103605261036051610340516103205161030051600658016105ae565b6103c0526102e05261022052610200526101e0526101c0526101a0526101805261016052610140526103c0516101c052610df1565b60036101405160e05260c052604060c020546101c0525b6101c0511515610e025760016101c0525b610300608061042060446328d09d4761038052610140516103a0526101c0516103c05261039c610160515afa610e3757600080fd5b607f3d11610e4457600080fd5b61042080808080516104a0525050602081019050808080516104c0525050602081019050808080516104e05250506020810190508080805161050052505050506000506104a08051825280602001518260200152806040015182604001528060600151826060015250506102e0511515610f1b576103405162093a80818183011015610ecf57600080fd5b80820190509050600180821015610ee557600080fd5b8082039050905062093a808082049050905062093a808082028215828483041417610f0f57600080fd5b809050905090506102e0525b610180516102e051101515610fb457610380808080600081525050602081019050808060008152505060208101905080806000815250506020810190508080600081525050602081019050808060008152505060a09050905060c05260c051610420525b600061042051111515610f9157610fad565b6020610420510361038001516020610420510361042052610f7f565b6101a05156505b610220516102e0511015610fcb57610220516102e0525b608036610420376104a060006032818352015b610180516102e051101515610ff2576112d1565b610340516102e05110151561101057610200516101c0511115611013565b60005b1561112e576101c08051600181818301101561102e57600080fd5b80820190509050815250610420610300805182528060200151826020015280604001518260400152806060015182606001525050610200516101c051111561107c5760803661030037611129565b610300608061056060446328d09d476104c052610140516104e0526101c051610500526104dc610160515afa6110b157600080fd5b607f3d116110be57600080fd5b61056080808080516105e052505060208101905080808051610600525050602081019050808080516106205250506020810190508080805161064052505050506000506105e08051825280602001518260200152806040015182604001528060600151826060015250505b6112c0565b6102e051610460518082101561114357600080fd5b8082039050905060405181111561115957600080fd5b6104c052610420516104c051610440518082028080600081121561117957195b607f1c1561118657600080fd5b9050905090508082038080600081121561119c57195b607f1c156111a957600080fd5b9050905090506000808212156111bf57806111c1565b815b9050905060008112156111d357600080fd5b6104e0526104e05115156111ef57610200516101c051116111f2565b60005b156111fc576112d1565b60006104e051111561129d576101e080516104e0516102e05166038d7ea4c68000811061122857600080fd5b600560c052602060c0200154808202821582848304141761124857600080fd5b809050905090506102e05166038d7ea4c68000811061126657600080fd5b600a60c052602060c0200154808061127d57600080fd5b82049050905081818301101561129257600080fd5b808201905090508152505b6102e0805162093a808181830110156112b557600080fd5b808201905090508152505b5b8151600101808352811415610fde575b5050610200516101c0516001808210156112ea57600080fd5b80820390509050808211156112ff5780611301565b815b905090506101c0526104a08080806101e0518152505060208101905080806101c0518152505060208101905080806102e0518152505060208101905080806102005181525050602081019050808060018152505060a09050905060c05260c051610540525b60006105405111151561137857611394565b602061054051036104a001516020610540510361054052611366565b6101a0515650005b63af38d75760005114156113b45733610140526113ea565b63402914f560005114156113e25760043560a01c156113d257600080fd5b60206004610140376000506113ea565b60001561151d575b6080366101603760016101e0526101405161016051610180516101a0516101c0516101e05161014051610200526006546102205260045462093a808082049050905062093a80808202821582848304141761144457600080fd5b809050905090506102405261024051610220516102005160065801610c34565b6102a0526102c0526102e05261030052610320526101e0526101c0526101a0526101805261016052610140526102a080808080516103405250506020810190508080805161036052505060208101905080808051610380525050602081019050808080516103a0525050602081019050808080516103c0525050505061034080516101605280602001516101805280604001516101a05280606001516101c05280608001516101e052506101605160005260206000f350005b634e71d92d600051141561153557336101405261156b565b631e83409a60005114156115635760043560a01c1561155357600080fd5b602060046101403760005061156b565b60001561185b575b62ffffff541561157a57600080fd5b600162ffffff55600f541561158e57600080fd5b600154421015156115ae57610140516006580161095a565b610140526000505b60045461016052600d54156115e25761016051620151808181830110156115d457600080fd5b8082019050905042116115e5565b60005b1561160c5761014051610160516006580161003a565b610160526101405260005042610160525b6101605162093a808082049050905062093a80808202821582848304141761163357600080fd5b8090509050905061016052608036610180376001610200526101405161016051610180516101a0516101c0516101e05161020051610140516102205260065461024052610160516102605261026051610240516102205160065801610c34565b6102c0526102e052610300526103205261034052610200526101e0526101c0526101a0526101805261016052610140526102c0808080805161036052505060208101905080808051610380525050602081019050808080516103a0525050602081019050808080516103c0525050602081019050808080516103e0525050505061036080516101805280602001516101a05280604001516101c05280606001516101e0528060800151610200525061020051156117ba576101a05160036101405160e05260c052604060c020556101c05160026101405160e05260c052604060c0205561018051610220526101a051610240526101e05161026052610140517f9cdcf2f7714cca3508c7f0110b04a90a80a3a8dd0e35de99689db74d28c5383e6060610220a25b600061018051181561183e576007546102205260206102e0604463a9059cbb610240526101405161026052610180516102805261025c6000610220515af161180157600080fd5b601f3d1161180e57600080fd5b6000506102e05161181e57600080fd5b60098054610180518082101561183357600080fd5b808203905090508155505b61018051600052600062ffffff5560206000f350600062ffffff55005b637b935a236000511415611c115762ffffff541561187857600080fd5b600162ffffff556000610120525b610120516004013560a01c1561189b57600080fd5b60206101205101610120526102806101205110156118b857611886565b600f54156118c557600080fd5b600154421015156118dd576006580161095a565b6000505b60045461014052600d541561191157610140516201518081818301101561190357600080fd5b808201905090504211611914565b60005b1561193357610140516006580161003a565b6101405260005042610140525b6101405162093a808082049050905062093a80808202821582848304141761195a57600080fd5b8090509050905061014052600654610160526007546101805260a0366101a03760016102405261028060006014818352015b6020610280510260040135610260526102605115156119aa57611bc8565b6101406102a0525b6102a0515160206102a051016102a0526102a06102a05110156119d4576119b2565b610260516102c052610160516102e0526101405161030052610300516102e0516102c05160065801610c34565b61036052610380526103a0526103c0526103e0526102806102a0525b6102a0515260206102a051036102a0526101406102a051101515611a4057611a1d565b610360808080805161040052505060208101905080808051610420525050602081019050808080516104405250506020810190508080805161046052505060208101905080808051610480525050505061040080516101c05280602001516101e052806040015161020052806060015161022052806080015161024052506102405115611b37576101e05160036102605160e05260c052604060c020556102005160026102605160e05260c052604060c020556101c0516102a0526101e0516102c052610220516102e052610260517f9cdcf2f7714cca3508c7f0110b04a90a80a3a8dd0e35de99689db74d28c5383e60606102a0a25b60006101c0511815611bb7576020610340604463a9059cbb6102a052610260516102c0526101c0516102e0526102bc6000610180515af1611b7757600080fd5b601f3d11611b8457600080fd5b60005061034051611b9457600080fd5b6101a080516101c051818183011015611bac57600080fd5b808201905090508152505b5b815160010180835281141561198c575b505060006101a0511815611bf657600980546101a05180821015611beb57600080fd5b808203905090508155505b6001600052600062ffffff5560206000f350600062ffffff55005b63632447c96000511415611c3c5760043560a01c15611c2f57600080fd5b600160005260206000f350005b63f14faf6f6000511415611cef57600060043518611c5957600080fd5b602061020060646323b872dd61014052336101605230610180526004356101a05261015c60006007545af1611c8d57600080fd5b601f3d11611c9a57600080fd5b60005061020050600d5415611ccd5760045462015180818183011015611cbf57600080fd5b808201905090504211611cd0565b60005b15611ce2576006580161003a565b6000505b600160005260206000f350005b63b1d3db756000511415611d515760043560a01c15611d0d57600080fd5b600b543314611d1b57600080fd5b600435600c55600435610140527f59a407284ae6e2986675fa1400d6498af928ed01f4fd2dd6be4a2a8b4fc35b346020610140a1005b63c0e991a66000511415611dbb57600b543314611d6d57600080fd5b6000600c5418611d7c57600080fd5b600c546101405261014051600b5561014051610160527f756f845176805c8ebf249854e909627308157f63c96e470e44a9e8549ba6fb1e6020610160a1005b632121bfc36000511415611e1757600b543314611dd757600080fd5b600d54156101405261014051600d5561014051610160527fdbe6ac1081ebd8e648718341126659456f4009fcadfe1c23f66f5e61522610b26020610160a1005b63e36988536000511415611ec857600b543314611e3357600080fd5b6001600f556007546101405260206102a0604463a9059cbb61020052600e546102205260206101e060246370a0823161016052306101805261017c610140515afa611e7d57600080fd5b601f3d11611e8a57600080fd5b6000506101e0516102405261021c6000610140515af1611ea957600080fd5b601f3d11611eb657600080fd5b6000506102a051611ec657600080fd5b005b63db2f5f7960005114156120905760043560a01c15611ee657600080fd5b600b543314611ef457600080fd5b60075460043518611f0457600080fd5b60206101e060246370a0823161016052306101805261017c6004355afa611f2a57600080fd5b601f3d11611f3757600080fd5b6000506101e05161014052600060046101c0527fa9059cbb000000000000000000000000000000000000000000000000000000006101e0526101c060048060208461022001018260208501600060045af1505080518201915050600e5460208261022001015260208101905061014051602082610220010152602081019050806102205261022090508051602001806102c08284600060045af1611fda57600080fd5b505060206103806102c0516102e060006004355af1611ff857600080fd5b60203d80821115612009578061200b565b815b90509050610360526103608051602001806101608284600060045af161203057600080fd5b505060006101605118156120835761016080602001516000825180602090131561205957600080fd5b809190121561206757600080fd5b806020036101000a8204905090509050151561208257600080fd5b5b600160005260206000f350005b63834ee41760005114156120ac5760005460005260206000f350005b63127dcbd360005114156120c85760015460005260206000f350005b632a2a314b60005114156121025760043560a01c156120e657600080fd5b600260043560e05260c052604060c0205460005260206000f350005b63d5d46e88600051141561213c5760043560a01c1561212057600080fd5b600360043560e05260c052604060c0205460005260206000f350005b637f58e8f860005114156121585760045460005260206000f350005b63edf5999760005114156121935760043566038d7ea4c68000811061217c57600080fd5b600560c052602060c020015460005260206000f350005b63dfe0503160005114156121af5760065460005260206000f350005b63fc0c546a60005114156121cb5760075460005260206000f350005b632f0c222e60005114156121e75760085460005260206000f350005b6322b04bfc60005114156122035760095460005260206000f350005b63d4dafba8600051141561223e5760043566038d7ea4c68000811061222757600080fd5b600a60c052602060c020015460005260206000f350005b63f851a440600051141561225a57600b5460005260206000f350005b6317f7182a600051141561227657600c5460005260206000f350005b63aeba4737600051141561229257600d5460005260206000f350005b632c3f531e60005114156122ae57600e5460005260206000f350005b639c868ac060005114156122ca57600f5460005260206000f350005b5b60006000fd

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

00000000000000000000000019854c9a5ffa8116f48f984bdf946fb9cea9b5f700000000000000000000000000000000000000000000000000000000621cced00000000000000000000000006123b0049f904d730db3c36a31167d9d4121fa6b00000000000000000000000077da011d5314d80be59e939c2f7ec2f702e1dcc400000000000000000000000077da011d5314d80be59e939c2f7ec2f702e1dcc4

-----Decoded View---------------
Arg [0] : _voting_escrow (address): 0x19854C9A5fFa8116f48f984bDF946fB9CEa9B5f7
Arg [1] : _start_time (uint256): 1646055120
Arg [2] : _token (address): 0x6123B0049F904d730dB3C36a31167D9d4121fA6B
Arg [3] : _admin (address): 0x77DA011d5314D80BE59e939c2f7EC2F702E1DCC4
Arg [4] : _emergency_return (address): 0x77DA011d5314D80BE59e939c2f7EC2F702E1DCC4

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 00000000000000000000000019854c9a5ffa8116f48f984bdf946fb9cea9b5f7
Arg [1] : 00000000000000000000000000000000000000000000000000000000621cced0
Arg [2] : 0000000000000000000000006123b0049f904d730db3c36a31167d9d4121fa6b
Arg [3] : 00000000000000000000000077da011d5314d80be59e939c2f7ec2f702e1dcc4
Arg [4] : 00000000000000000000000077da011d5314d80be59e939c2f7ec2f702e1dcc4


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.

Validator Index Block Amount
View All Withdrawals

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

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