ETH Price: $3,919.36 (+1.24%)

Token

ERC20 ***

Overview

Max Total Supply

7,592.62723049 ERC20 ***

Holders

7

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
985.73674272 ERC20 ***

Value
$0.00
0xd935a63d629cac4cfc8f632a2f4aab3ca8d99e38
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
Vyper_contract

Compiler Version
vyper:0.2.15

Optimization Enabled:
N/A

Other Settings:
default evmVersion, MIT license

Contract Source Code (Vyper language format)

# @version 0.2.15
"""
@title Liquidity Gauge v4.1
@author Hundred Finance (based on Curve Finance Liquidity Gauge v4)
@license MIT
"""

from vyper.interfaces import ERC20

implements: ERC20


interface RewardPolicyMaker:
    def future_epoch_time() -> uint256: nonpayable
    def rate_at(_timestamp: uint256) -> uint256: view
    def epoch_at(_timestamp: uint256) -> uint256: view
    def epoch_start_time(_epoch: uint256) -> uint256: view

interface Controller:
    def gauge_relative_weight(addr: address, time: uint256) -> uint256: view
    def voting_escrow() -> address: view
    def checkpoint_gauge(addr: address): nonpayable

interface Minter:
    def controller() -> address: view
    def minted(user: address, gauge: address) -> uint256: view

interface VotingEscrow:
    def user_last_checkpoint_ts(_user: address) -> uint256: view

interface VotingEscrowBoost:
    def adjusted_balance_of(_account: address) -> uint256: view

interface ERC20Extended:
    def symbol() -> String[26]: view
    def decimals() -> uint256: view


event Deposit:
    provider: indexed(address)
    value: uint256

event Withdraw:
    provider: indexed(address)
    value: uint256

event UpdateLiquidityLimit:
    user: address
    original_balance: uint256
    original_supply: uint256
    working_balance: uint256
    working_supply: uint256

event CommitOwnership:
    admin: address

event ApplyOwnership:
    admin: address

event Transfer:
    _from: indexed(address)
    _to: indexed(address)
    _value: uint256

event Approval:
    _owner: indexed(address)
    _spender: indexed(address)
    _value: uint256


struct Reward:
    token: address
    distributor: address
    period_finish: uint256
    rate: uint256
    last_update: uint256
    integral: uint256


MAX_REWARDS: constant(uint256) = 8
TOKENLESS_PRODUCTION: constant(uint256) = 40
WEEK: constant(uint256) = 604800
MAX_FEE: constant(uint256) = 1000

minter: public(address)
reward_policy_maker: public(address)
voting_escrow: public(address)
controller: public(address)
veboost_proxy: public(address)

lp_token: public(address)

balanceOf: public(HashMap[address, uint256])
totalSupply: public(uint256)
allowance: public(HashMap[address, HashMap[address, uint256]])

name: public(String[64])
symbol: public(String[32])
decimals: public(uint256)

working_balances: public(HashMap[address, uint256])
working_supply: public(uint256)

# The goal is to be able to calculate ∫(rate * balance / totalSupply dt) from 0 till checkpoint
# All values are kept in units of being multiplied by 1e18
period: public(int128)
period_timestamp: public(uint256[100000000000000000000000000000])

# 1e18 * ∫(rate(t) / totalSupply(t) dt) from 0 till checkpoint
integrate_inv_supply: public(uint256[100000000000000000000000000000])  # bump epoch when rate() changes

# 1e18 * ∫(rate(t) / totalSupply(t) dt) from (last_action) till checkpoint
integrate_inv_supply_of: public(HashMap[address, uint256])
integrate_checkpoint_of: public(HashMap[address, uint256])

# ∫(balance * rate(t) / totalSupply(t) dt) from 0 till checkpoint
# Units: rate * t = already number of coins per address to issue
integrate_fraction: public(HashMap[address, uint256])

# For tracking external rewards
reward_count: public(uint256)
reward_tokens: public(address[MAX_REWARDS])

reward_fee: public(uint256)
reward_collector: public(address)

reward_data: public(HashMap[address, Reward])

# claimant -> default reward receiver
rewards_receiver: public(HashMap[address, address])

# reward token -> claiming address -> integral
reward_integral_for: public(HashMap[address, HashMap[address, uint256]])

# user -> [uint128 claimable amount][uint128 claimed amount]
claim_data: HashMap[address, HashMap[address, uint256]]

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


@external
def __init__(
        _lp_token: address,
        _minter: address,
        _admin: address,
        _reward_policy_maker: address,
        _veboost_proxy: address,
        _reward_fee: uint256
    ):
    """
    @notice Contract constructor
    @param _lp_token Liquidity Pool contract address
    @param _minter Minter contract address
    @param _admin Admin who can kill the gauge
    @param _veboost_proxy veBoost proxy contract
    """

    symbol: String[26] = ERC20Extended(_lp_token).symbol()
    self.name = concat(symbol, " Gauge Deposit")
    self.symbol = concat(symbol, "-gauge")
    self.decimals = ERC20Extended(_lp_token).decimals()

    controller: address = Minter(_minter).controller()

    self.lp_token = _lp_token
    self.minter = _minter
    self.admin = _admin
    self.reward_policy_maker = _reward_policy_maker
    self.controller = controller
    self.voting_escrow = Controller(controller).voting_escrow()

    self.period_timestamp[0] = block.timestamp
    self.veboost_proxy = _veboost_proxy

    self.reward_fee = _reward_fee
    self.reward_collector = _admin


@external
def set_reward_fee(_reward_fee: uint256):
    assert msg.sender == self.admin # only admin
    assert _reward_fee <= MAX_FEE # must be less than 10%
    self.reward_fee = _reward_fee


@external
def set_reward_collector(_addr: address):
    assert msg.sender == self.admin # only admin
    assert _addr != ZERO_ADDRESS # invalid address
    self.reward_collector = _addr


@view
@external
def integrate_checkpoint() -> uint256:
    return self.period_timestamp[self.period]


@internal
def _update_liquidity_limit(addr: address, l: uint256, L: uint256):
    """
    @notice Calculate limits which depend on the amount of CRV token per-user.
            Effectively it calculates working balances to apply amplification
            of CRV production by CRV
    @param addr User address
    @param l User's amount of liquidity (LP tokens)
    @param L Total amount of liquidity (LP tokens)
    """
    # To be called after totalSupply is updated
    voting_balance: uint256 = VotingEscrowBoost(self.veboost_proxy).adjusted_balance_of(addr)
    voting_total: uint256 = ERC20(self.voting_escrow).totalSupply()

    lim: uint256 = l * TOKENLESS_PRODUCTION / 100
    if voting_total > 0:
        lim += L * voting_balance / voting_total * (100 - TOKENLESS_PRODUCTION) / 100

    lim = min(l, lim)
    old_bal: uint256 = self.working_balances[addr]
    self.working_balances[addr] = lim
    _working_supply: uint256 = self.working_supply + lim - old_bal
    self.working_supply = _working_supply

    log UpdateLiquidityLimit(addr, l, L, lim, _working_supply)


@internal
def _checkpoint_rewards(_user: address, _total_supply: uint256, _claim: bool, _receiver: address):
    """
    @notice Claim pending rewards and checkpoint rewards for a user
    """

    user_balance: uint256 = 0
    receiver: address = _receiver
    if _user != ZERO_ADDRESS:
        user_balance = self.balanceOf[_user]
        if _claim and _receiver == ZERO_ADDRESS:
            # if receiver is not explicitly declared, check if a default receiver is set
            receiver = self.rewards_receiver[_user]
            if receiver == ZERO_ADDRESS:
                # if no default receiver is set, direct claims to the user
                receiver = _user

    reward_count: uint256 = self.reward_count
    for i in range(MAX_REWARDS):
        if i == reward_count:
            break
        token: address = self.reward_tokens[i]

        integral: uint256 = self.reward_data[token].integral
        last_update: uint256 = min(block.timestamp, self.reward_data[token].period_finish)
        duration: uint256 = last_update - self.reward_data[token].last_update
        if duration != 0:
            self.reward_data[token].last_update = last_update
            if _total_supply != 0:
                integral += duration * self.reward_data[token].rate * 10**18 / _total_supply
                self.reward_data[token].integral = integral

        if _user != ZERO_ADDRESS:
            integral_for: uint256 = self.reward_integral_for[token][_user]
            new_claimable: uint256 = 0

            if integral_for < integral:
                self.reward_integral_for[token][_user] = integral
                new_claimable = user_balance * (integral - integral_for) / 10**18

            claim_data: uint256 = self.claim_data[_user][token]
            total_claimable: uint256 = shift(claim_data, -128) + new_claimable
            if total_claimable > 0:
                total_claimed: uint256 = claim_data % 2**128
                if _claim:
                    response: Bytes[32] = raw_call(
                        token,
                        concat(
                            method_id("transfer(address,uint256)"),
                            convert(receiver, bytes32),
                            convert(total_claimable, bytes32),
                        ),
                        max_outsize=32,
                    )
                    if len(response) != 0:
                        assert convert(response, bool)
                    self.claim_data[_user][token] = total_claimed + total_claimable
                elif new_claimable > 0:
                    self.claim_data[_user][token] = total_claimed + shift(total_claimable, 128)


@internal
def _checkpoint(addr: address):
    """
    @notice Checkpoint for a user
    @param addr User address
    """
    _period: int128 = self.period
    _period_time: uint256 = self.period_timestamp[_period]
    _integrate_inv_supply: uint256 = self.integrate_inv_supply[_period]

    _epoch: uint256 = RewardPolicyMaker(self.reward_policy_maker).epoch_at(block.timestamp)
    if _period_time == 0:
        _period_time = RewardPolicyMaker(self.reward_policy_maker).epoch_start_time(_epoch)

    # Update integral of 1/supply
    if block.timestamp > _period_time and not self.is_killed:
        _working_supply: uint256 = self.working_supply
        _controller: address = self.controller

        Controller(_controller).checkpoint_gauge(self)

        prev_week_time: uint256 = _period_time

        for i in range(500):
            _epoch = RewardPolicyMaker(self.reward_policy_maker).epoch_at(prev_week_time)
            week_time: uint256 = RewardPolicyMaker(self.reward_policy_maker).epoch_start_time(_epoch + 1)
            week_time = min(week_time, block.timestamp)

            dt: uint256 = week_time - prev_week_time
            w: uint256 = Controller(_controller).gauge_relative_weight(self, prev_week_time / WEEK * WEEK)

            if _working_supply > 0:
                _integrate_inv_supply += RewardPolicyMaker(self.reward_policy_maker).rate_at(prev_week_time) * w * dt / _working_supply
                # On precisions of the calculation
                # rate ~= 10e18
                # last_weight > 0.01 * 1e18 = 1e16 (if pool weight is 1%)
                # _working_supply ~= TVL * 1e18 ~= 1e26 ($100M for example)
                # The largest loss is at dt = 1
                # Loss is 1e-9 - acceptable

            if week_time == block.timestamp:
                break

            prev_week_time = week_time

    _period += 1
    self.period = _period
    self.period_timestamp[_period] = block.timestamp
    self.integrate_inv_supply[_period] = _integrate_inv_supply

    # Update user-specific integrals
    _working_balance: uint256 = self.working_balances[addr]
    self.integrate_fraction[addr] += _working_balance * (_integrate_inv_supply - self.integrate_inv_supply_of[addr]) / 10 ** 18
    self.integrate_inv_supply_of[addr] = _integrate_inv_supply
    self.integrate_checkpoint_of[addr] = block.timestamp


@external
def user_checkpoint(addr: address) -> bool:
    """
    @notice Record a checkpoint for `addr`
    @param addr User address
    @return bool success
    """
    assert (msg.sender == addr) or (msg.sender == self.minter)  # dev: unauthorized
    self._checkpoint(addr)
    self._update_liquidity_limit(addr, self.balanceOf[addr], self.totalSupply)
    return True


@external
def claimable_tokens(addr: address) -> uint256:
    """
    @notice Get the number of claimable tokens per user
    @dev This function should be manually changed to "view" in the ABI
    @return uint256 number of claimable tokens per user
    """
    self._checkpoint(addr)
    return self.integrate_fraction[addr] - Minter(self.minter).minted(addr, self)


@view
@external
def claimed_reward(_addr: address, _token: address) -> uint256:
    """
    @notice Get the number of already-claimed reward tokens for a user
    @param _addr Account to get reward amount for
    @param _token Token to get reward amount for
    @return uint256 Total amount of `_token` already claimed by `_addr`
    """
    return self.claim_data[_addr][_token] % 2**128


@view
@external
def claimable_reward(_user: address, _reward_token: address) -> uint256:
    """
    @notice Get the number of claimable reward tokens for a user
    @param _user Account to get reward amount for
    @param _reward_token Token to get reward amount for
    @return uint256 Claimable reward token amount
    """
    integral: uint256 = self.reward_data[_reward_token].integral
    total_supply: uint256 = self.totalSupply
    if total_supply != 0:
        last_update: uint256 = min(block.timestamp, self.reward_data[_reward_token].period_finish)
        duration: uint256 = last_update - self.reward_data[_reward_token].last_update
        integral += (duration * self.reward_data[_reward_token].rate * 10**18 / total_supply)

    integral_for: uint256 = self.reward_integral_for[_reward_token][_user]
    new_claimable: uint256 = self.balanceOf[_user] * (integral - integral_for) / 10**18

    return shift(self.claim_data[_user][_reward_token], -128) + new_claimable


@external
def set_rewards_receiver(_receiver: address):
    """
    @notice Set the default reward receiver for the caller.
    @dev When set to ZERO_ADDRESS, rewards are sent to the caller
    @param _receiver Receiver address for any rewards claimed via `claim_rewards`
    """
    self.rewards_receiver[msg.sender] = _receiver


@external
@nonreentrant('lock')
def claim_rewards(_addr: address = msg.sender, _receiver: address = ZERO_ADDRESS):
    """
    @notice Claim available reward tokens for `_addr`
    @param _addr Address to claim for
    @param _receiver Address to transfer rewards to - if set to
                     ZERO_ADDRESS, uses the default reward receiver
                     for the caller
    """
    if _receiver != ZERO_ADDRESS:
        assert _addr == msg.sender  # dev: cannot redirect when claiming for another user
    self._checkpoint_rewards(_addr, self.totalSupply, True, _receiver)


@external
def kick(addr: address):
    """
    @notice Kick `addr` for abusing their boost
    @dev Only if either they had another voting event, or their voting escrow lock expired
    @param addr Address to kick
    """
    _voting_escrow: address = self.voting_escrow
    t_last: uint256 = self.integrate_checkpoint_of[addr]
    t_ve: uint256 = VotingEscrow(_voting_escrow).user_last_checkpoint_ts(addr)
    _balance: uint256 = self.balanceOf[addr]

    assert ERC20(_voting_escrow).balanceOf(addr) == 0 or t_ve > t_last # dev: kick not allowed
    assert self.working_balances[addr] > _balance * TOKENLESS_PRODUCTION / 100  # dev: kick not needed

    self._checkpoint(addr)
    self._update_liquidity_limit(addr, _balance, self.totalSupply)


@external
@nonreentrant('lock')
def deposit(_value: uint256, _addr: address = msg.sender, _claim_rewards: bool = False):
    """
    @notice Deposit `_value` LP tokens
    @dev Depositting also claims pending reward tokens
    @param _value Number of tokens to deposit
    @param _addr Address to deposit for
    """

    self._checkpoint(_addr)

    if _value != 0:
        is_rewards: bool = self.reward_count != 0
        total_supply: uint256 = self.totalSupply
        if is_rewards:
            self._checkpoint_rewards(_addr, total_supply, _claim_rewards, ZERO_ADDRESS)

        total_supply += _value
        new_balance: uint256 = self.balanceOf[_addr] + _value
        self.balanceOf[_addr] = new_balance
        self.totalSupply = total_supply

        self._update_liquidity_limit(_addr, new_balance, total_supply)

        assert ERC20(self.lp_token).transferFrom(msg.sender, self, _value)

    log Deposit(_addr, _value)
    log Transfer(ZERO_ADDRESS, _addr, _value)


@external
@nonreentrant('lock')
def withdraw(_value: uint256, _claim_rewards: bool = False):
    """
    @notice Withdraw `_value` LP tokens
    @dev Withdrawing also claims pending reward tokens
    @param _value Number of tokens to withdraw
    """
    self._checkpoint(msg.sender)

    if _value != 0:
        is_rewards: bool = self.reward_count != 0
        total_supply: uint256 = self.totalSupply
        if is_rewards:
            self._checkpoint_rewards(msg.sender, total_supply, _claim_rewards, ZERO_ADDRESS)

        total_supply -= _value
        new_balance: uint256 = self.balanceOf[msg.sender] - _value
        self.balanceOf[msg.sender] = new_balance
        self.totalSupply = total_supply

        self._update_liquidity_limit(msg.sender, new_balance, total_supply)

        ERC20(self.lp_token).transfer(msg.sender, _value)

    log Withdraw(msg.sender, _value)
    log Transfer(msg.sender, ZERO_ADDRESS, _value)


@internal
def _transfer(_from: address, _to: address, _value: uint256):
    self._checkpoint(_from)
    self._checkpoint(_to)

    if _value != 0:
        total_supply: uint256 = self.totalSupply
        is_rewards: bool = self.reward_count != 0
        if is_rewards:
            self._checkpoint_rewards(_from, total_supply, False, ZERO_ADDRESS)
        new_balance: uint256 = self.balanceOf[_from] - _value
        self.balanceOf[_from] = new_balance
        self._update_liquidity_limit(_from, new_balance, total_supply)

        if is_rewards:
            self._checkpoint_rewards(_to, total_supply, False, ZERO_ADDRESS)
        new_balance = self.balanceOf[_to] + _value
        self.balanceOf[_to] = new_balance
        self._update_liquidity_limit(_to, new_balance, total_supply)

    log Transfer(_from, _to, _value)


@external
@nonreentrant('lock')
def transfer(_to : address, _value : uint256) -> bool:
    """
    @notice Transfer token for a specified address
    @dev Transferring claims pending reward tokens for the sender and receiver
    @param _to The address to transfer to.
    @param _value The amount to be transferred.
    """
    self._transfer(msg.sender, _to, _value)

    return True


@external
@nonreentrant('lock')
def transferFrom(_from : address, _to : address, _value : uint256) -> bool:
    """
     @notice Transfer tokens from one address to another.
     @dev Transferring claims pending reward tokens for the sender and receiver
     @param _from address The address which you want to send tokens from
     @param _to address The address which you want to transfer to
     @param _value uint256 the amount of tokens to be transferred
    """
    _allowance: uint256 = self.allowance[_from][msg.sender]
    if _allowance != MAX_UINT256:
        self.allowance[_from][msg.sender] = _allowance - _value

    self._transfer(_from, _to, _value)

    return True


@external
def approve(_spender : address, _value : uint256) -> bool:
    """
    @notice Approve the passed address to transfer the specified amount of
            tokens on behalf of msg.sender
    @dev Beware that changing an allowance via this method brings the risk
         that someone may use both the old and new allowance by unfortunate
         transaction ordering. This may be mitigated with the use of
         {incraseAllowance} and {decreaseAllowance}.
         https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
    @param _spender The address which will transfer the funds
    @param _value The amount of tokens that may be transferred
    @return bool success
    """
    self.allowance[msg.sender][_spender] = _value
    log Approval(msg.sender, _spender, _value)

    return True


@external
def increaseAllowance(_spender: address, _added_value: uint256) -> bool:
    """
    @notice Increase the allowance granted to `_spender` by the caller
    @dev This is alternative to {approve} that can be used as a mitigation for
         the potential race condition
    @param _spender The address which will transfer the funds
    @param _added_value The amount of to increase the allowance
    @return bool success
    """
    allowance: uint256 = self.allowance[msg.sender][_spender] + _added_value
    self.allowance[msg.sender][_spender] = allowance

    log Approval(msg.sender, _spender, allowance)

    return True


@external
def decreaseAllowance(_spender: address, _subtracted_value: uint256) -> bool:
    """
    @notice Decrease the allowance granted to `_spender` by the caller
    @dev This is alternative to {approve} that can be used as a mitigation for
         the potential race condition
    @param _spender The address which will transfer the funds
    @param _subtracted_value The amount of to decrease the allowance
    @return bool success
    """
    allowance: uint256 = self.allowance[msg.sender][_spender] - _subtracted_value
    self.allowance[msg.sender][_spender] = allowance

    log Approval(msg.sender, _spender, allowance)

    return True


@external
def add_reward(_reward_token: address, _distributor: address):
    """
    @notice Set the active reward contract
    """
    assert msg.sender == self.admin  # dev: only owner

    reward_count: uint256 = self.reward_count
    assert reward_count < MAX_REWARDS
    assert self.reward_data[_reward_token].distributor == ZERO_ADDRESS

    self.reward_data[_reward_token].distributor = _distributor
    self.reward_tokens[reward_count] = _reward_token
    self.reward_count = reward_count + 1


@external
def set_reward_distributor(_reward_token: address, _distributor: address):
    current_distributor: address = self.reward_data[_reward_token].distributor

    assert msg.sender == current_distributor or msg.sender == self.admin
    assert current_distributor != ZERO_ADDRESS
    assert _distributor != ZERO_ADDRESS

    self.reward_data[_reward_token].distributor = _distributor


@external
@nonreentrant("lock")
def deposit_reward_token(_reward_token: address, _amount: uint256):
    assert msg.sender == self.reward_data[_reward_token].distributor

    fee: uint256 = _amount * self.reward_fee / 10000
    reward_amount: uint256 = _amount - fee

    self._checkpoint_rewards(ZERO_ADDRESS, self.totalSupply, False, ZERO_ADDRESS)

    response: Bytes[32] = raw_call(
        _reward_token,
        concat(
            method_id("transferFrom(address,address,uint256)"),
            convert(msg.sender, bytes32),
            convert(self, bytes32),
            convert(_amount, bytes32),
        ),
        max_outsize=32,
    )
    if len(response) != 0:
        assert convert(response, bool)

    if fee > 0:
        ERC20(_reward_token).transfer(self.reward_collector, fee)

    period_finish: uint256 = self.reward_data[_reward_token].period_finish
    if block.timestamp >= period_finish:
        self.reward_data[_reward_token].rate = reward_amount / WEEK
    else:
        remaining: uint256 = period_finish - block.timestamp
        leftover: uint256 = remaining * self.reward_data[_reward_token].rate
        self.reward_data[_reward_token].rate = (reward_amount + leftover) / WEEK

    self.reward_data[_reward_token].last_update = block.timestamp
    self.reward_data[_reward_token].period_finish = block.timestamp + WEEK


@external
def set_killed(_is_killed: bool):
    """
    @notice Set the killed status for this contract
    @dev When killed, the gauge always yields a rate of 0 and so cannot mint CRV
    @param _is_killed Killed status to set
    """
    assert msg.sender == self.admin

    self.is_killed = _is_killed


@external
def commit_transfer_ownership(addr: address):
    """
    @notice Transfer ownership of GaugeController to `addr`
    @param addr Address to have ownership transferred to
    """
    assert msg.sender == self.admin  # dev: admin only

    self.future_admin = addr
    log CommitOwnership(addr)


@external
def accept_transfer_ownership():
    """
    @notice Accept a pending ownership transfer
    """
    _admin: address = self.future_admin
    assert msg.sender == _admin  # dev: future admin only

    self.admin = _admin
    log ApplyOwnership(_admin)

Contract Security Audit

Contract ABI

[{"name":"Deposit","inputs":[{"name":"provider","type":"address","indexed":true},{"name":"value","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"Withdraw","inputs":[{"name":"provider","type":"address","indexed":true},{"name":"value","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"UpdateLiquidityLimit","inputs":[{"name":"user","type":"address","indexed":false},{"name":"original_balance","type":"uint256","indexed":false},{"name":"original_supply","type":"uint256","indexed":false},{"name":"working_balance","type":"uint256","indexed":false},{"name":"working_supply","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"CommitOwnership","inputs":[{"name":"admin","type":"address","indexed":false}],"anonymous":false,"type":"event"},{"name":"ApplyOwnership","inputs":[{"name":"admin","type":"address","indexed":false}],"anonymous":false,"type":"event"},{"name":"Transfer","inputs":[{"name":"_from","type":"address","indexed":true},{"name":"_to","type":"address","indexed":true},{"name":"_value","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"Approval","inputs":[{"name":"_owner","type":"address","indexed":true},{"name":"_spender","type":"address","indexed":true},{"name":"_value","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"stateMutability":"nonpayable","type":"constructor","inputs":[{"name":"_lp_token","type":"address"},{"name":"_minter","type":"address"},{"name":"_admin","type":"address"},{"name":"_reward_policy_maker","type":"address"},{"name":"_veboost_proxy","type":"address"},{"name":"_reward_fee","type":"uint256"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"set_reward_fee","inputs":[{"name":"_reward_fee","type":"uint256"}],"outputs":[],"gas":37549},{"stateMutability":"nonpayable","type":"function","name":"set_reward_collector","inputs":[{"name":"_addr","type":"address"}],"outputs":[],"gas":37672},{"stateMutability":"view","type":"function","name":"integrate_checkpoint","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":4590},{"stateMutability":"nonpayable","type":"function","name":"user_checkpoint","inputs":[{"name":"addr","type":"address"}],"outputs":[{"name":"","type":"bool"}],"gas":9163304},{"stateMutability":"nonpayable","type":"function","name":"claimable_tokens","inputs":[{"name":"addr","type":"address"}],"outputs":[{"name":"","type":"uint256"}],"gas":9074259},{"stateMutability":"view","type":"function","name":"claimed_reward","inputs":[{"name":"_addr","type":"address"},{"name":"_token","type":"address"}],"outputs":[{"name":"","type":"uint256"}],"gas":3036},{"stateMutability":"view","type":"function","name":"claimable_reward","inputs":[{"name":"_user","type":"address"},{"name":"_reward_token","type":"address"}],"outputs":[{"name":"","type":"uint256"}],"gas":20255},{"stateMutability":"nonpayable","type":"function","name":"set_rewards_receiver","inputs":[{"name":"_receiver","type":"address"}],"outputs":[],"gas":35673},{"stateMutability":"nonpayable","type":"function","name":"claim_rewards","inputs":[],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"claim_rewards","inputs":[{"name":"_addr","type":"address"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"claim_rewards","inputs":[{"name":"_addr","type":"address"},{"name":"_receiver","type":"address"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"kick","inputs":[{"name":"addr","type":"address"}],"outputs":[],"gas":9173197},{"stateMutability":"nonpayable","type":"function","name":"deposit","inputs":[{"name":"_value","type":"uint256"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"deposit","inputs":[{"name":"_value","type":"uint256"},{"name":"_addr","type":"address"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"deposit","inputs":[{"name":"_value","type":"uint256"},{"name":"_addr","type":"address"},{"name":"_claim_rewards","type":"bool"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"withdraw","inputs":[{"name":"_value","type":"uint256"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"withdraw","inputs":[{"name":"_value","type":"uint256"},{"name":"_claim_rewards","type":"bool"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"transfer","inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"outputs":[{"name":"","type":"bool"}],"gas":42213558},{"stateMutability":"nonpayable","type":"function","name":"transferFrom","inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"outputs":[{"name":"","type":"bool"}],"gas":42251508},{"stateMutability":"nonpayable","type":"function","name":"approve","inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"outputs":[{"name":"","type":"bool"}],"gas":38151},{"stateMutability":"nonpayable","type":"function","name":"increaseAllowance","inputs":[{"name":"_spender","type":"address"},{"name":"_added_value","type":"uint256"}],"outputs":[{"name":"","type":"bool"}],"gas":40695},{"stateMutability":"nonpayable","type":"function","name":"decreaseAllowance","inputs":[{"name":"_spender","type":"address"},{"name":"_subtracted_value","type":"uint256"}],"outputs":[{"name":"","type":"bool"}],"gas":40719},{"stateMutability":"nonpayable","type":"function","name":"add_reward","inputs":[{"name":"_reward_token","type":"address"},{"name":"_distributor","type":"address"}],"outputs":[],"gas":113033},{"stateMutability":"nonpayable","type":"function","name":"set_reward_distributor","inputs":[{"name":"_reward_token","type":"address"},{"name":"_distributor","type":"address"}],"outputs":[],"gas":40783},{"stateMutability":"nonpayable","type":"function","name":"deposit_reward_token","inputs":[{"name":"_reward_token","type":"address"},{"name":"_amount","type":"uint256"}],"outputs":[],"gas":1547216},{"stateMutability":"nonpayable","type":"function","name":"set_killed","inputs":[{"name":"_is_killed","type":"bool"}],"outputs":[],"gas":38145},{"stateMutability":"nonpayable","type":"function","name":"commit_transfer_ownership","inputs":[{"name":"addr","type":"address"}],"outputs":[],"gas":39525},{"stateMutability":"nonpayable","type":"function","name":"accept_transfer_ownership","inputs":[],"outputs":[],"gas":39470},{"stateMutability":"view","type":"function","name":"minter","inputs":[],"outputs":[{"name":"","type":"address"}],"gas":3078},{"stateMutability":"view","type":"function","name":"reward_policy_maker","inputs":[],"outputs":[{"name":"","type":"address"}],"gas":3108},{"stateMutability":"view","type":"function","name":"voting_escrow","inputs":[],"outputs":[{"name":"","type":"address"}],"gas":3138},{"stateMutability":"view","type":"function","name":"controller","inputs":[],"outputs":[{"name":"","type":"address"}],"gas":3168},{"stateMutability":"view","type":"function","name":"veboost_proxy","inputs":[],"outputs":[{"name":"","type":"address"}],"gas":3198},{"stateMutability":"view","type":"function","name":"lp_token","inputs":[],"outputs":[{"name":"","type":"address"}],"gas":3228},{"stateMutability":"view","type":"function","name":"balanceOf","inputs":[{"name":"arg0","type":"address"}],"outputs":[{"name":"","type":"uint256"}],"gas":3473},{"stateMutability":"view","type":"function","name":"totalSupply","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":3288},{"stateMutability":"view","type":"function","name":"allowance","inputs":[{"name":"arg0","type":"address"},{"name":"arg1","type":"address"}],"outputs":[{"name":"","type":"uint256"}],"gas":3748},{"stateMutability":"view","type":"function","name":"name","inputs":[],"outputs":[{"name":"","type":"string"}],"gas":13578},{"stateMutability":"view","type":"function","name":"symbol","inputs":[],"outputs":[{"name":"","type":"string"}],"gas":11331},{"stateMutability":"view","type":"function","name":"decimals","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":3408},{"stateMutability":"view","type":"function","name":"working_balances","inputs":[{"name":"arg0","type":"address"}],"outputs":[{"name":"","type":"uint256"}],"gas":3653},{"stateMutability":"view","type":"function","name":"working_supply","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":3468},{"stateMutability":"view","type":"function","name":"period","inputs":[],"outputs":[{"name":"","type":"int128"}],"gas":3498},{"stateMutability":"view","type":"function","name":"period_timestamp","inputs":[{"name":"arg0","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}],"gas":3573},{"stateMutability":"view","type":"function","name":"integrate_inv_supply","inputs":[{"name":"arg0","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}],"gas":3603},{"stateMutability":"view","type":"function","name":"integrate_inv_supply_of","inputs":[{"name":"arg0","type":"address"}],"outputs":[{"name":"","type":"uint256"}],"gas":3803},{"stateMutability":"view","type":"function","name":"integrate_checkpoint_of","inputs":[{"name":"arg0","type":"address"}],"outputs":[{"name":"","type":"uint256"}],"gas":3833},{"stateMutability":"view","type":"function","name":"integrate_fraction","inputs":[{"name":"arg0","type":"address"}],"outputs":[{"name":"","type":"uint256"}],"gas":3863},{"stateMutability":"view","type":"function","name":"reward_count","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":3678},{"stateMutability":"view","type":"function","name":"reward_tokens","inputs":[{"name":"arg0","type":"uint256"}],"outputs":[{"name":"","type":"address"}],"gas":3753},{"stateMutability":"view","type":"function","name":"reward_fee","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":3738},{"stateMutability":"view","type":"function","name":"reward_collector","inputs":[],"outputs":[{"name":"","type":"address"}],"gas":3768},{"stateMutability":"view","type":"function","name":"reward_data","inputs":[{"name":"arg0","type":"address"}],"outputs":[{"name":"token","type":"address"},{"name":"distributor","type":"address"},{"name":"period_finish","type":"uint256"},{"name":"rate","type":"uint256"},{"name":"last_update","type":"uint256"},{"name":"integral","type":"uint256"}],"gas":15243},{"stateMutability":"view","type":"function","name":"rewards_receiver","inputs":[{"name":"arg0","type":"address"}],"outputs":[{"name":"","type":"address"}],"gas":4043},{"stateMutability":"view","type":"function","name":"reward_integral_for","inputs":[{"name":"arg0","type":"address"},{"name":"arg1","type":"address"}],"outputs":[{"name":"","type":"uint256"}],"gas":4288},{"stateMutability":"view","type":"function","name":"admin","inputs":[],"outputs":[{"name":"","type":"address"}],"gas":3888},{"stateMutability":"view","type":"function","name":"future_admin","inputs":[],"outputs":[{"name":"","type":"address"}],"gas":3918},{"stateMutability":"view","type":"function","name":"is_killed","inputs":[],"outputs":[{"name":"","type":"bool"}],"gas":3948}]

60c0612ec0610140396020612ec060c03960c05160a01c612ebb5760206020612ec00160c03960c05160a01c612ebb5760206040612ec00160c03960c05160a01c612ebb5760206060612ec00160c03960c05160a01c612ebb5760206080612ec00160c03960c05160a01c612ebb5760606102c060046395d89b416102605261027c610140515afa15612ebb57603f3d1115612ebb57601b6102c06102c05101511015612ebb576000506102e08051602001806102008284600060045af115612ebb5750506000610200601a806020846102c001018260208501600060045af1505080518201915050600e610260527f204761756765204465706f73697400000000000000000000000000000000000061028052610260600e806020846102c001018260208501600060045af1505080518201915050806102c0526102c0905080600f602082510161012060006003818352015b8261012051602002111561016657610188565b61012051602002850151610120518501555b8151600101808352811415610153575b5050505050506000610200601a806020846102c001018260208501600060045af15050805182019150506006610260527f2d67617567650000000000000000000000000000000000000000000000000000610280526102606006806020846102c001018260208501600060045af1505080518201915050806102c0526102c09050806013602082510161012060006002818352015b8261012051602002111561023057610252565b61012051602002850151610120518501555b815160010180835281141561021d575b50505050505060206102c0600463313ce5676102605261027c610140515afa15612ebb57601f3d1115612ebb576000506102c05160165560206102e0600463f77c47916102805261029c610160515afa15612ebb57601f3d1115612ebb576000506102e0516102605261014051600b5561016051600655610180516c02863c1f5cdae420000000002c556101a0516007556102605160095560206102e0600463dfe050316102805261029c610260515afa15612ebb57601f3d1115612ebb576000506102e05160085542601a556101c051600a556101e0516c02863c1f5cdae420000000002655610180516c02863c1f5cdae420000000002755612ea356600436101561000d57611bf4565b600035601c5260005134612b4d5763797e770c81141561005c576c02863c1f5cdae420000000002c54331415612b4d576103e860043511612b4d576004356c02863c1f5cdae420000000002655005b63f93814b38114156100a75760043560a01c612b4d576c02863c1f5cdae420000000002c54331415612b4d5760006004351815612b4d576004356c02863c1f5cdae420000000002755005b63d31f3f6d8114156100db5760016019546c01431e0fae6d7217caa0000000811015612b4d5702601a015460005260206000f35b634b82009381141561016b5760043560a01c612b4d57600435331415610102576001610108565b60065433145b5b15612b4d57600435610140526101405160065801612381565b60005060043561014052600c60043560e05260c052604060c0205461016052600d546101805261018051610160516101405160065801611bfa565b600050600160005260206000f35b63331345838114156102055760043560a01c612b4d57600435610140526101405160065801612381565b6000506c02863c1f5cdae420000000001c60043560e05260c052604060c0205460206101e06044638b752bb06101405260043561016052306101805261015c6006545afa15612b4d57601f3d1115612b4d576000506101e051808210612b4d578082039050905060005260206000f35b63e77e74378114156102725760043560a01c612b4d5760243560a01c612b4d576c02863c1f5cdae420000000002b60043560e05260c052604060c02060243560e05260c052604060c020547001000000000000000000000000000000008082069050905060005260206000f35b6333fd6f748114156104895760043560a01c612b4d5760243560a01c612b4d5760056c02863c1f5cdae420000000002860243560e05260c052604060c020015461014052600d546101605260006101605118156103bd574260026c02863c1f5cdae420000000002860243560e05260c052604060c0200154808211156102f857806102fa565b815b90509050610180526101805160046c02863c1f5cdae420000000002860243560e05260c052604060c0200154808210612b4d57808203905090506101a05261014080516101a05160036c02863c1f5cdae420000000002860243560e05260c052604060c0200154808202821582848304141715612b4d5780905090509050670de0b6b3a7640000808202821582848304141715612b4d578090509050905061016051808015612b4d578204905090508181830110612b4d57808201905090508152505b6c02863c1f5cdae420000000002a60243560e05260c052604060c02060043560e05260c052604060c0205461018052600c60043560e05260c052604060c020546101405161018051808210612b4d5780820390509050808202821582848304141715612b4d5780905090509050670de0b6b3a7640000808204905090506101a0526c02863c1f5cdae420000000002b60043560e05260c052604060c02060243560e05260c052604060c0205460801c6101a0518181830110612b4d578082019050905060005260206000f35b63bdf981168114156104bf5760043560a01c612b4d576004356c02863c1f5cdae42000000000293360e05260c052604060c02055005b63e6f1daf28114156104db573361014052600061016052610544565b6384e9bd7e8114156105075760006101605260043560a01c612b4d576020600461014037600050610544565b639faceb1b81141561053f5760043560a01c612b4d57602060046101403760243560a01c612b4d576020602461016037600050610544565b6105b8565b600054612b4d57600160005560006101605118156105685733610140511415612b4d575b61014051610160516101405161018052600d546101a05260016101c052610160516101e0526101e0516101c0516101a0516101805160065801611dea565b61016052610140526000506000600055005b6396c551758114156107585760043560a01c612b4d57600854610140526c02863c1f5cdae420000000001b60043560e05260c052604060c0205461016052602061022060246380c0e83e6101a0526004356101c0526101bc610140515afa15612b4d57601f3d1115612b4d576000506102205161018052600c60043560e05260c052604060c020546101a05260206102e060246370a08231610260526004356102805261027c610140515afa15612b4d57601f3d1115612b4d576000506102e05161068457600161068e565b6101605161018051115b5b15612b4d576101a0516028808202821582848304141715612b4d5780905090509050606480820490509050601760043560e05260c052604060c020541115612b4d576101405161016051610180516101a0516004356101c0526101c05160065801612381565b6101a0526101805261016052610140526000506101405161016051610180516101a0516004356101c0526101a0516101e052600d5461020052610200516101e0516101c05160065801611bfa565b6101a052610180526101605261014052600050005b63b6b55f258114156107745733610140526000610160526107dd565b636e553f658114156107a05760006101605260243560a01c612b4d5760206024610140376000506107dd565b6383df67478114156107d85760243560a01c612b4d57602060246101403760443560011c612b4d5760206044610160376000506107dd565b610a0a565b600154612b4d576001600155610140516101605161014051610180526101805160065801612381565b61016052610140526000506000600435181561099d5760006c02863c1f5cdae420000000001d54141561018052600d546101a052610180511561089e576101405161016051610180516101a051610140516101c0526101a0516101e052610160516102005260006102205261022051610200516101e0516101c05160065801611dea565b6101a0526101805261016052610140526000505b6101a080516004358181830110612b4d5780820190509050815250600c6101405160e05260c052604060c020546004358181830110612b4d57808201905090506101c0526101c051600c6101405160e05260c052604060c020556101a051600d556101405161016051610180516101a0516101c051610140516101e0526101c051610200526101a0516102205261022051610200516101e05160065801611bfa565b6101c0526101a05261018052610160526101405260005060206102a060646323b872dd6101e05233610200523061022052600435610240526101fc6000600b545af115612b4d57601f3d1115612b4d576000506102a05115612b4d575b60043561018052610140517fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c6020610180a2600435610180526101405160007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610180a36000600155005b632e1a7d4d811415610a2157600061014052610a4c565b6338d07436811415610a475760243560011c612b4d576020602461014037600050610a4c565b610c3e565b600254612b4d5760016002556101405133610160526101605160065801612381565b6101405260005060006004351815610bd75760006c02863c1f5cdae420000000001d54141561016052600d54610180526101605115610af757610140516101605161018051336101a052610180516101c052610140516101e052600061020052610200516101e0516101c0516101a05160065801611dea565b6101805261016052610140526000505b6101808051600435808210612b4d5780820390509050815250600c3360e05260c052604060c02054600435808210612b4d57808203905090506101a0526101a051600c3360e05260c052604060c0205561018051600d556101405161016051610180516101a051336101c0526101a0516101e0526101805161020052610200516101e0516101c05160065801611bfa565b6101a0526101805261016052610140526000506020610260604463a9059cbb6101c052336101e052600435610200526101dc6000600b545af115612b4d57601f3d1115612b4d57600050610260505b60043561016052337f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a94243646020610160a2600435610160526000337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610160a36000600255005b63a9059cbb811415610c9b57600354612b4d57600160035560043560a01c612b4d57336101405260043561016052602435610180526101805161016051610140516006580161282b565b6000506001600052600060035560206000f35b6323b872dd811415610d8b57600454612b4d57600160045560043560a01c612b4d5760243560a01c612b4d57600e60043560e05260c052604060c0203360e05260c052604060c02054610140527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610140511815610d465761014051604435808210612b4d5780820390509050600e60043560e05260c052604060c0203360e05260c052604060c020555b6101405160043561016052602435610180526044356101a0526101a05161018051610160516006580161282b565b610140526000506001600052600060045560206000f35b63095ea7b3811415610dfe5760043560a01c612b4d57602435600e3360e05260c052604060c02060043560e05260c052604060c0205560243561014052600435337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256020610140a3600160005260206000f35b6339509351811415610ea75760043560a01c612b4d57600e3360e05260c052604060c02060043560e05260c052604060c020546024358181830110612b4d57808201905090506101405261014051600e3360e05260c052604060c02060043560e05260c052604060c020556101405161016052600435337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256020610160a3600160005260206000f35b63a457c2d7811415610f4e5760043560a01c612b4d57600e3360e05260c052604060c02060043560e05260c052604060c02054602435808210612b4d57808203905090506101405261014051600e3360e05260c052604060c02060043560e05260c052604060c020556101405161016052600435337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256020610160a3600160005260206000f35b63e8de0d4d8114156110345760043560a01c612b4d5760243560a01c612b4d576c02863c1f5cdae420000000002c54331415612b4d576c02863c1f5cdae420000000001d54610140526008610140511015612b4d5760016c02863c1f5cdae420000000002860043560e05260c052604060c0200154612b4d5760243560016c02863c1f5cdae420000000002860043560e05260c052604060c02001556004356001610140516008811015612b4d57026c02863c1f5cdae420000000001e01556101405160018181830110612b4d57808201905090506c02863c1f5cdae420000000001d55005b63058a3a248114156110de5760043560a01c612b4d5760243560a01c612b4d5760016c02863c1f5cdae420000000002860043560e05260c052604060c0200154610140526101405133141561108a57600161109c565b6c02863c1f5cdae420000000002c5433145b5b15612b4d576000610140511815612b4d5760006024351815612b4d5760243560016c02863c1f5cdae420000000002860043560e05260c052604060c0200155005b6393f7aa6781141561149c57600554612b4d57600160055560043560a01c612b4d5760016c02863c1f5cdae420000000002860043560e05260c052604060c0200154331415612b4d576024356c02863c1f5cdae420000000002654808202821582848304141715612b4d5780905090509050612710808204905090506101405260243561014051808210612b4d5780820390509050610160526101405161016051600061018052600d546101a05260006101c05260006101e0526101e0516101c0516101a0516101805160065801611dea565b6101605261014052600050600060046101e0527f23b872dd00000000000000000000000000000000000000000000000000000000610200526101e060048060208461024001018260208501600060045af15050805182019150503360208261024001015260208101905030602082610240010152602081019050602435602082610240010152602081019050806102405261024090508051602001806103008284600060045af115612b4d57505060206103e06103005161032060006004355af115612b4d5760203d80821115611288578061128a565b815b905090506103c0526103c08051602001806101808284600060045af115612b4d57505060006101805118156112ec576101808060200151600082518060209013612b4d5780919012612b4d57806020036101000a820490509050905015612b4d575b6000610140511115611343576020610280604463a9059cbb6101e0526c02863c1f5cdae4200000000027546102005261014051610220526101fc60006004355af115612b4d57601f3d1115612b4d57600050610280505b60026c02863c1f5cdae420000000002860043560e05260c052604060c02001546101e0526101e05142106113a5576101605162093a808082049050905060036c02863c1f5cdae420000000002860043560e05260c052604060c020015561143f565b6101e05142808210612b4d5780820390509050610200526102005160036c02863c1f5cdae420000000002860043560e05260c052604060c0200154808202821582848304141715612b4d57809050905090506102205261016051610220518181830110612b4d578082019050905062093a808082049050905060036c02863c1f5cdae420000000002860043560e05260c052604060c02001555b4260046c02863c1f5cdae420000000002860043560e05260c052604060c02001554262093a808181830110612b4d578082019050905060026c02863c1f5cdae420000000002860043560e05260c052604060c02001556000600555005b6390b229978114156114dc5760043560011c612b4d576c02863c1f5cdae420000000002c54331415612b4d576004356c02863c1f5cdae420000000002e55005b636b441a4081141561154a5760043560a01c612b4d576c02863c1f5cdae420000000002c54331415612b4d576004356c02863c1f5cdae420000000002d55600435610140527f2f56810a6bf40af059b96d3aea4db54081f378029a518390491093a7b67032e96020610140a1005b63e5ea47b88114156115b8576c02863c1f5cdae420000000002d546101405261014051331415612b4d57610140516c02863c1f5cdae420000000002c5561014051610160527febee2d5739011062cb4f14113f3b36bf0ffe3da5c0568f64189d1012a11891056020610160a1005b63075461728114156115d05760065460005260206000f35b63a36b31338114156115e85760075460005260206000f35b63dfe050318114156116005760085460005260206000f35b63f77c47918114156116185760095460005260206000f35b6349ec3b3f81141561163057600a5460005260206000f35b6382c6306681141561164857600b5460005260206000f35b6370a082318114156116785760043560a01c612b4d57600c60043560e05260c052604060c0205460005260206000f35b6318160ddd81141561169057600d5460005260206000f35b63dd62ed3e8114156116d85760043560a01c612b4d5760243560a01c612b4d57600e60043560e05260c052604060c02060243560e05260c052604060c0205460005260206000f35b6306fdde0381141561177557600f80610180602082540161012060006003818352015b8261012051602002111561170e57611730565b61012051850154610120516020028501525b81516001018083528114156116fb575b50505050505061018051806101a001818260206001820306601f82010390500336823750506020610160526040610180510160206001820306601f8201039050610160f35b6395d89b4181141561181257601380610180602082540161012060006002818352015b826101205160200211156117ab576117cd565b61012051850154610120516020028501525b8151600101808352811415611798575b50505050505061018051806101a001818260206001820306601f82010390500336823750506020610160526040610180510160206001820306601f8201039050610160f35b63313ce56781141561182a5760165460005260206000f35b6313ecb1ca81141561185a5760043560a01c612b4d57601760043560e05260c052604060c0205460005260206000f35b6317e280898114156118725760185460005260206000f35b63ef78d4fd81141561188a5760195460005260206000f35b637598108c8114156118be5760016004356c01431e0fae6d7217caa0000000811015612b4d5702601a015460005260206000f35b63fec8ee0c8114156118fe5760016004356c01431e0fae6d7217caa0000000811015612b4d57026c01431e0fae6d7210000000001a015460005260206000f35b63de263bfa81141561193a5760043560a01c612b4d576c02863c1f5cdae420000000001a60043560e05260c052604060c0205460005260206000f35b639bd324f28114156119765760043560a01c612b4d576c02863c1f5cdae420000000001b60043560e05260c052604060c0205460005260206000f35b63094007078114156119b25760043560a01c612b4d576c02863c1f5cdae420000000001c60043560e05260c052604060c0205460005260206000f35b63963c94b98114156119d6576c02863c1f5cdae420000000001d5460005260206000f35b6354c49fe9811415611a0a5760016004356008811015612b4d57026c02863c1f5cdae420000000001e015460005260206000f35b63162ba912811415611a2e576c02863c1f5cdae42000000000265460005260206000f35b63de9b329d811415611a52576c02863c1f5cdae42000000000275460005260206000f35b6348e9c65e811415611af65760043560a01c612b4d576c02863c1f5cdae420000000002860043560e05260c052604060c0206101408080808454815250506020810190508080600185015481525050602081019050808060028501548152505060208101905080806003850154815250506020810190508080600485015481525050602081019050808060058501548152505060c09050905060c05260c051610140f35b6301ddabf1811415611b325760043560a01c612b4d576c02863c1f5cdae420000000002960043560e05260c052604060c0205460005260206000f35b63f05cc058811415611b865760043560a01c612b4d5760243560a01c612b4d576c02863c1f5cdae420000000002a60043560e05260c052604060c02060243560e05260c052604060c0205460005260206000f35b63f851a440811415611baa576c02863c1f5cdae420000000002c5460005260206000f35b6317f7182a811415611bce576c02863c1f5cdae420000000002d5460005260206000f35b639c868ac0811415611bf2576c02863c1f5cdae420000000002e5460005260206000f35b505b60006000fd5b6101a0526101405261016052610180526020610260602463bbf7408a6101e05261014051610200526101fc600a545afa15612b4d57601f3d1115612b4d57600050610260516101c052602061026060046318160ddd6102005261021c6008545afa15612b4d57601f3d1115612b4d57600050610260516101e052610160516028808202821582848304141715612b4d57809050905090506064808204905090506102005260006101e0511115611d15576102008051610180516101c051808202821582848304141715612b4d57809050905090506101e051808015612b4d57820490509050603c808202821582848304141715612b4d57809050905090506064808204905090508181830110612b4d57808201905090508152505b610160516102005180821115611d2b5780611d2d565b815b905090506102005260176101405160e05260c052604060c02054610220526102005160176101405160e05260c052604060c02055601854610200518181830110612b4d578082019050905061022051808210612b4d5780820390509050610240526102405160185561014051610260526101605161028052610180516102a052610200516102c052610240516102e0527f7ecd84343f76a23d2227290e0288da3251b045541698e575a5515af4f04197a360a0610260a16101a051565b6101c0526101405261016052610180526101a05260006101e0526101a051610200526000610140511815611e7e57600c6101405160e05260c052604060c020546101e0526101805115611e41576101a05115611e44565b60005b15611e7d576c02863c1f5cdae42000000000296101405160e05260c052604060c020546102005261020051611e7c5761014051610200525b5b5b6c02863c1f5cdae420000000001d546102205261024060006008818352015b61022051610240511415611eb057612379565b6001610240516008811015612b4d57026c02863c1f5cdae420000000001e01546102605260056c02863c1f5cdae42000000000286102605160e05260c052604060c0200154610280524260026c02863c1f5cdae42000000000286102605160e05260c052604060c020015480821115611f295780611f2b565b815b905090506102a0526102a05160046c02863c1f5cdae42000000000286102605160e05260c052604060c0200154808210612b4d57808203905090506102c05260006102c0511815612053576102a05160046c02863c1f5cdae42000000000286102605160e05260c052604060c020015560006101605118156120525761028080516102c05160036c02863c1f5cdae42000000000286102605160e05260c052604060c0200154808202821582848304141715612b4d5780905090509050670de0b6b3a7640000808202821582848304141715612b4d578090509050905061016051808015612b4d578204905090508181830110612b4d57808201905090508152506102805160056c02863c1f5cdae42000000000286102605160e05260c052604060c02001555b5b6000610140511815612368576c02863c1f5cdae420000000002a6102605160e05260c052604060c0206101405160e05260c052604060c020546102e052600061030052610280516102e051101561211b57610280516c02863c1f5cdae420000000002a6102605160e05260c052604060c0206101405160e05260c052604060c020556101e051610280516102e051808210612b4d5780820390509050808202821582848304141715612b4d5780905090509050670de0b6b3a764000080820490509050610300525b6c02863c1f5cdae420000000002b6101405160e05260c052604060c0206102605160e05260c052604060c02054610320526103205160801c610300518181830110612b4d578082019050905061034052600061034051111561236757610320517001000000000000000000000000000000008082069050905061036052610180511561231057600060046103e0527fa9059cbb00000000000000000000000000000000000000000000000000000000610400526103e060048060208461044001018260208501600060045af15050805182019150506102005160208261044001015260208101905061034051602082610440010152602081019050806104405261044090508051602001806104e08284600060045af115612b4d57505060206105a06104e0516105006000610260515af115612b4d5760203d808211156122625780612264565b815b90509050610580526105808051602001806103808284600060045af115612b4d57505060006103805118156122c6576103808060200151600082518060209013612b4d5780919012612b4d57806020036101000a820490509050905015612b4d575b61036051610340518181830110612b4d57808201905090506c02863c1f5cdae420000000002b6101405160e05260c052604060c0206102605160e05260c052604060c02055612366565b600061030051111561236557610360516103405160801b8181830110612b4d57808201905090506c02863c1f5cdae420000000002b6101405160e05260c052604060c0206102605160e05260c052604060c020555b5b5b5b5b8151600101808352811415611e9d575b50506101c051565b6101605261014052601954610180526001610180516c01431e0fae6d7217caa0000000811015612b4d5702601a01546101a0526001610180516c01431e0fae6d7217caa0000000811015612b4d57026c01431e0fae6d7210000000001a01546101c05260206102806024639a1586ef61020052426102205261021c6007545afa15612b4d57601f3d1115612b4d57600050610280516101e0526101a05161245c57602061028060246322026ada610200526101e0516102205261021c6007545afa15612b4d57601f3d1115612b4d57600050610280516101a0525b6101a05142111561247c576c02863c1f5cdae420000000002e541561247f565b60005b156126c2576018546102005260095461022052610220513b15612b4d5760006000602463615e523761024052306102605261025c6000610220515af115612b4d576101a0516102405261026060006101f4818352015b60206103006024639a1586ef61028052610240516102a05261029c6007545afa15612b4d57601f3d1115612b4d57600050610300516101e052602061032060246322026ada6102a0526101e05160018181830110612b4d57808201905090506102c0526102bc6007545afa15612b4d57601f3d1115612b4d57600050610320516102805261028051428082111561256c578061256e565b815b90509050610280526102805161024051808210612b4d57808203905090506102a0526020610380604463d3078c946102e05230610300526102405162093a808082049050905062093a80808202821582848304141715612b4d5780905090509050610320526102fc610220515afa15612b4d57601f3d1115612b4d57600050610380516102c0526000610200511115612696576101c08051602061036060246339935cf06102e05261024051610300526102fc6007545afa15612b4d57601f3d1115612b4d57600050610360516102c051808202821582848304141715612b4d57809050905090506102a051808202821582848304141715612b4d578090509050905061020051808015612b4d578204905090508181830110612b4d57808201905090508152505b426102805114156126a6576126bf565b61028051610240525b81516001018083528114156124d5575b50505b61018080516001808201808060008112156126d957195b607f1c612b4d5790509050905081525061018051601955426001610180516c01431e0fae6d7217caa0000000811015612b4d5702601a01556101c0516001610180516c01431e0fae6d7217caa0000000811015612b4d57026c01431e0fae6d7210000000001a015560176101405160e05260c052604060c02054610200526c02863c1f5cdae420000000001c6101405160e05260c052604060c0208054610200516101c0516c02863c1f5cdae420000000001a6101405160e05260c052604060c02054808210612b4d5780820390509050808202821582848304141715612b4d5780905090509050670de0b6b3a7640000808204905090508181830110612b4d57808201905090508155506101c0516c02863c1f5cdae420000000001a6101405160e05260c052604060c02055426c02863c1f5cdae420000000001b6101405160e05260c052604060c0205561016051565b6101a0526101405261016052610180526101405161016051610180516101a051610140516101c0526101c05160065801612381565b6101a0526101805261016052610140526000506101405161016051610180516101a051610160516101c0526101c05160065801612381565b6101a0526101805261016052610140526000506000610180511815612b1057600d546101c05260006c02863c1f5cdae420000000001d5414156101e0526101e05115612947576101405161016051610180516101a0516101c0516101e05161014051610200526101c051610220526000610240526000610260526102605161024051610220516102005160065801611dea565b6101e0526101c0526101a0526101805261016052610140526000505b600c6101405160e05260c052604060c0205461018051808210612b4d57808203905090506102005261020051600c6101405160e05260c052604060c020556101405161016051610180516101a0516101c0516101e05161020051610140516102205261020051610240526101c0516102605261026051610240516102205160065801611bfa565b610200526101e0526101c0526101a0526101805261016052610140526000506101e05115612a67576101405161016051610180516101a0516101c0516101e0516102005161016051610220526101c051610240526000610260526000610280526102805161026051610240516102205160065801611dea565b610200526101e0526101c0526101a0526101805261016052610140526000505b600c6101605160e05260c052604060c02054610180518181830110612b4d57808201905090506102005261020051600c6101605160e05260c052604060c020556101405161016051610180516101a0516101c0516101e05161020051610160516102205261020051610240526101c0516102605261026051610240516102205160065801611bfa565b610200526101e0526101c0526101a0526101805261016052610140526000505b610180516101c05261016051610140517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206101c0a36101a051565b600080fd5b610351612ea303610351600039610351612ea3036000f35b600080fd000000000000000000000000607312a5c671d0c511998171e634de32156e69d00000000000000000000000004adf575dbe0e6f1c5909ae9c7119927b4faabbbd000000000000000000000000641f26c67a5d0829ae61019131093b6a7c7d18a30000000000000000000000003ffd03ef31f6d5a6c517cefa9cdf43efebee8399000000000000000000000000b4bafc3d60662de362c0cb0f5e2de76603ea77d700000000000000000000000000000000000000000000000000000000000000c8

Deployed Bytecode

0x600436101561000d57611bf4565b600035601c5260005134612b4d5763797e770c81141561005c576c02863c1f5cdae420000000002c54331415612b4d576103e860043511612b4d576004356c02863c1f5cdae420000000002655005b63f93814b38114156100a75760043560a01c612b4d576c02863c1f5cdae420000000002c54331415612b4d5760006004351815612b4d576004356c02863c1f5cdae420000000002755005b63d31f3f6d8114156100db5760016019546c01431e0fae6d7217caa0000000811015612b4d5702601a015460005260206000f35b634b82009381141561016b5760043560a01c612b4d57600435331415610102576001610108565b60065433145b5b15612b4d57600435610140526101405160065801612381565b60005060043561014052600c60043560e05260c052604060c0205461016052600d546101805261018051610160516101405160065801611bfa565b600050600160005260206000f35b63331345838114156102055760043560a01c612b4d57600435610140526101405160065801612381565b6000506c02863c1f5cdae420000000001c60043560e05260c052604060c0205460206101e06044638b752bb06101405260043561016052306101805261015c6006545afa15612b4d57601f3d1115612b4d576000506101e051808210612b4d578082039050905060005260206000f35b63e77e74378114156102725760043560a01c612b4d5760243560a01c612b4d576c02863c1f5cdae420000000002b60043560e05260c052604060c02060243560e05260c052604060c020547001000000000000000000000000000000008082069050905060005260206000f35b6333fd6f748114156104895760043560a01c612b4d5760243560a01c612b4d5760056c02863c1f5cdae420000000002860243560e05260c052604060c020015461014052600d546101605260006101605118156103bd574260026c02863c1f5cdae420000000002860243560e05260c052604060c0200154808211156102f857806102fa565b815b90509050610180526101805160046c02863c1f5cdae420000000002860243560e05260c052604060c0200154808210612b4d57808203905090506101a05261014080516101a05160036c02863c1f5cdae420000000002860243560e05260c052604060c0200154808202821582848304141715612b4d5780905090509050670de0b6b3a7640000808202821582848304141715612b4d578090509050905061016051808015612b4d578204905090508181830110612b4d57808201905090508152505b6c02863c1f5cdae420000000002a60243560e05260c052604060c02060043560e05260c052604060c0205461018052600c60043560e05260c052604060c020546101405161018051808210612b4d5780820390509050808202821582848304141715612b4d5780905090509050670de0b6b3a7640000808204905090506101a0526c02863c1f5cdae420000000002b60043560e05260c052604060c02060243560e05260c052604060c0205460801c6101a0518181830110612b4d578082019050905060005260206000f35b63bdf981168114156104bf5760043560a01c612b4d576004356c02863c1f5cdae42000000000293360e05260c052604060c02055005b63e6f1daf28114156104db573361014052600061016052610544565b6384e9bd7e8114156105075760006101605260043560a01c612b4d576020600461014037600050610544565b639faceb1b81141561053f5760043560a01c612b4d57602060046101403760243560a01c612b4d576020602461016037600050610544565b6105b8565b600054612b4d57600160005560006101605118156105685733610140511415612b4d575b61014051610160516101405161018052600d546101a05260016101c052610160516101e0526101e0516101c0516101a0516101805160065801611dea565b61016052610140526000506000600055005b6396c551758114156107585760043560a01c612b4d57600854610140526c02863c1f5cdae420000000001b60043560e05260c052604060c0205461016052602061022060246380c0e83e6101a0526004356101c0526101bc610140515afa15612b4d57601f3d1115612b4d576000506102205161018052600c60043560e05260c052604060c020546101a05260206102e060246370a08231610260526004356102805261027c610140515afa15612b4d57601f3d1115612b4d576000506102e05161068457600161068e565b6101605161018051115b5b15612b4d576101a0516028808202821582848304141715612b4d5780905090509050606480820490509050601760043560e05260c052604060c020541115612b4d576101405161016051610180516101a0516004356101c0526101c05160065801612381565b6101a0526101805261016052610140526000506101405161016051610180516101a0516004356101c0526101a0516101e052600d5461020052610200516101e0516101c05160065801611bfa565b6101a052610180526101605261014052600050005b63b6b55f258114156107745733610140526000610160526107dd565b636e553f658114156107a05760006101605260243560a01c612b4d5760206024610140376000506107dd565b6383df67478114156107d85760243560a01c612b4d57602060246101403760443560011c612b4d5760206044610160376000506107dd565b610a0a565b600154612b4d576001600155610140516101605161014051610180526101805160065801612381565b61016052610140526000506000600435181561099d5760006c02863c1f5cdae420000000001d54141561018052600d546101a052610180511561089e576101405161016051610180516101a051610140516101c0526101a0516101e052610160516102005260006102205261022051610200516101e0516101c05160065801611dea565b6101a0526101805261016052610140526000505b6101a080516004358181830110612b4d5780820190509050815250600c6101405160e05260c052604060c020546004358181830110612b4d57808201905090506101c0526101c051600c6101405160e05260c052604060c020556101a051600d556101405161016051610180516101a0516101c051610140516101e0526101c051610200526101a0516102205261022051610200516101e05160065801611bfa565b6101c0526101a05261018052610160526101405260005060206102a060646323b872dd6101e05233610200523061022052600435610240526101fc6000600b545af115612b4d57601f3d1115612b4d576000506102a05115612b4d575b60043561018052610140517fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c6020610180a2600435610180526101405160007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610180a36000600155005b632e1a7d4d811415610a2157600061014052610a4c565b6338d07436811415610a475760243560011c612b4d576020602461014037600050610a4c565b610c3e565b600254612b4d5760016002556101405133610160526101605160065801612381565b6101405260005060006004351815610bd75760006c02863c1f5cdae420000000001d54141561016052600d54610180526101605115610af757610140516101605161018051336101a052610180516101c052610140516101e052600061020052610200516101e0516101c0516101a05160065801611dea565b6101805261016052610140526000505b6101808051600435808210612b4d5780820390509050815250600c3360e05260c052604060c02054600435808210612b4d57808203905090506101a0526101a051600c3360e05260c052604060c0205561018051600d556101405161016051610180516101a051336101c0526101a0516101e0526101805161020052610200516101e0516101c05160065801611bfa565b6101a0526101805261016052610140526000506020610260604463a9059cbb6101c052336101e052600435610200526101dc6000600b545af115612b4d57601f3d1115612b4d57600050610260505b60043561016052337f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a94243646020610160a2600435610160526000337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610160a36000600255005b63a9059cbb811415610c9b57600354612b4d57600160035560043560a01c612b4d57336101405260043561016052602435610180526101805161016051610140516006580161282b565b6000506001600052600060035560206000f35b6323b872dd811415610d8b57600454612b4d57600160045560043560a01c612b4d5760243560a01c612b4d57600e60043560e05260c052604060c0203360e05260c052604060c02054610140527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610140511815610d465761014051604435808210612b4d5780820390509050600e60043560e05260c052604060c0203360e05260c052604060c020555b6101405160043561016052602435610180526044356101a0526101a05161018051610160516006580161282b565b610140526000506001600052600060045560206000f35b63095ea7b3811415610dfe5760043560a01c612b4d57602435600e3360e05260c052604060c02060043560e05260c052604060c0205560243561014052600435337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256020610140a3600160005260206000f35b6339509351811415610ea75760043560a01c612b4d57600e3360e05260c052604060c02060043560e05260c052604060c020546024358181830110612b4d57808201905090506101405261014051600e3360e05260c052604060c02060043560e05260c052604060c020556101405161016052600435337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256020610160a3600160005260206000f35b63a457c2d7811415610f4e5760043560a01c612b4d57600e3360e05260c052604060c02060043560e05260c052604060c02054602435808210612b4d57808203905090506101405261014051600e3360e05260c052604060c02060043560e05260c052604060c020556101405161016052600435337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256020610160a3600160005260206000f35b63e8de0d4d8114156110345760043560a01c612b4d5760243560a01c612b4d576c02863c1f5cdae420000000002c54331415612b4d576c02863c1f5cdae420000000001d54610140526008610140511015612b4d5760016c02863c1f5cdae420000000002860043560e05260c052604060c0200154612b4d5760243560016c02863c1f5cdae420000000002860043560e05260c052604060c02001556004356001610140516008811015612b4d57026c02863c1f5cdae420000000001e01556101405160018181830110612b4d57808201905090506c02863c1f5cdae420000000001d55005b63058a3a248114156110de5760043560a01c612b4d5760243560a01c612b4d5760016c02863c1f5cdae420000000002860043560e05260c052604060c0200154610140526101405133141561108a57600161109c565b6c02863c1f5cdae420000000002c5433145b5b15612b4d576000610140511815612b4d5760006024351815612b4d5760243560016c02863c1f5cdae420000000002860043560e05260c052604060c0200155005b6393f7aa6781141561149c57600554612b4d57600160055560043560a01c612b4d5760016c02863c1f5cdae420000000002860043560e05260c052604060c0200154331415612b4d576024356c02863c1f5cdae420000000002654808202821582848304141715612b4d5780905090509050612710808204905090506101405260243561014051808210612b4d5780820390509050610160526101405161016051600061018052600d546101a05260006101c05260006101e0526101e0516101c0516101a0516101805160065801611dea565b6101605261014052600050600060046101e0527f23b872dd00000000000000000000000000000000000000000000000000000000610200526101e060048060208461024001018260208501600060045af15050805182019150503360208261024001015260208101905030602082610240010152602081019050602435602082610240010152602081019050806102405261024090508051602001806103008284600060045af115612b4d57505060206103e06103005161032060006004355af115612b4d5760203d80821115611288578061128a565b815b905090506103c0526103c08051602001806101808284600060045af115612b4d57505060006101805118156112ec576101808060200151600082518060209013612b4d5780919012612b4d57806020036101000a820490509050905015612b4d575b6000610140511115611343576020610280604463a9059cbb6101e0526c02863c1f5cdae4200000000027546102005261014051610220526101fc60006004355af115612b4d57601f3d1115612b4d57600050610280505b60026c02863c1f5cdae420000000002860043560e05260c052604060c02001546101e0526101e05142106113a5576101605162093a808082049050905060036c02863c1f5cdae420000000002860043560e05260c052604060c020015561143f565b6101e05142808210612b4d5780820390509050610200526102005160036c02863c1f5cdae420000000002860043560e05260c052604060c0200154808202821582848304141715612b4d57809050905090506102205261016051610220518181830110612b4d578082019050905062093a808082049050905060036c02863c1f5cdae420000000002860043560e05260c052604060c02001555b4260046c02863c1f5cdae420000000002860043560e05260c052604060c02001554262093a808181830110612b4d578082019050905060026c02863c1f5cdae420000000002860043560e05260c052604060c02001556000600555005b6390b229978114156114dc5760043560011c612b4d576c02863c1f5cdae420000000002c54331415612b4d576004356c02863c1f5cdae420000000002e55005b636b441a4081141561154a5760043560a01c612b4d576c02863c1f5cdae420000000002c54331415612b4d576004356c02863c1f5cdae420000000002d55600435610140527f2f56810a6bf40af059b96d3aea4db54081f378029a518390491093a7b67032e96020610140a1005b63e5ea47b88114156115b8576c02863c1f5cdae420000000002d546101405261014051331415612b4d57610140516c02863c1f5cdae420000000002c5561014051610160527febee2d5739011062cb4f14113f3b36bf0ffe3da5c0568f64189d1012a11891056020610160a1005b63075461728114156115d05760065460005260206000f35b63a36b31338114156115e85760075460005260206000f35b63dfe050318114156116005760085460005260206000f35b63f77c47918114156116185760095460005260206000f35b6349ec3b3f81141561163057600a5460005260206000f35b6382c6306681141561164857600b5460005260206000f35b6370a082318114156116785760043560a01c612b4d57600c60043560e05260c052604060c0205460005260206000f35b6318160ddd81141561169057600d5460005260206000f35b63dd62ed3e8114156116d85760043560a01c612b4d5760243560a01c612b4d57600e60043560e05260c052604060c02060243560e05260c052604060c0205460005260206000f35b6306fdde0381141561177557600f80610180602082540161012060006003818352015b8261012051602002111561170e57611730565b61012051850154610120516020028501525b81516001018083528114156116fb575b50505050505061018051806101a001818260206001820306601f82010390500336823750506020610160526040610180510160206001820306601f8201039050610160f35b6395d89b4181141561181257601380610180602082540161012060006002818352015b826101205160200211156117ab576117cd565b61012051850154610120516020028501525b8151600101808352811415611798575b50505050505061018051806101a001818260206001820306601f82010390500336823750506020610160526040610180510160206001820306601f8201039050610160f35b63313ce56781141561182a5760165460005260206000f35b6313ecb1ca81141561185a5760043560a01c612b4d57601760043560e05260c052604060c0205460005260206000f35b6317e280898114156118725760185460005260206000f35b63ef78d4fd81141561188a5760195460005260206000f35b637598108c8114156118be5760016004356c01431e0fae6d7217caa0000000811015612b4d5702601a015460005260206000f35b63fec8ee0c8114156118fe5760016004356c01431e0fae6d7217caa0000000811015612b4d57026c01431e0fae6d7210000000001a015460005260206000f35b63de263bfa81141561193a5760043560a01c612b4d576c02863c1f5cdae420000000001a60043560e05260c052604060c0205460005260206000f35b639bd324f28114156119765760043560a01c612b4d576c02863c1f5cdae420000000001b60043560e05260c052604060c0205460005260206000f35b63094007078114156119b25760043560a01c612b4d576c02863c1f5cdae420000000001c60043560e05260c052604060c0205460005260206000f35b63963c94b98114156119d6576c02863c1f5cdae420000000001d5460005260206000f35b6354c49fe9811415611a0a5760016004356008811015612b4d57026c02863c1f5cdae420000000001e015460005260206000f35b63162ba912811415611a2e576c02863c1f5cdae42000000000265460005260206000f35b63de9b329d811415611a52576c02863c1f5cdae42000000000275460005260206000f35b6348e9c65e811415611af65760043560a01c612b4d576c02863c1f5cdae420000000002860043560e05260c052604060c0206101408080808454815250506020810190508080600185015481525050602081019050808060028501548152505060208101905080806003850154815250506020810190508080600485015481525050602081019050808060058501548152505060c09050905060c05260c051610140f35b6301ddabf1811415611b325760043560a01c612b4d576c02863c1f5cdae420000000002960043560e05260c052604060c0205460005260206000f35b63f05cc058811415611b865760043560a01c612b4d5760243560a01c612b4d576c02863c1f5cdae420000000002a60043560e05260c052604060c02060243560e05260c052604060c0205460005260206000f35b63f851a440811415611baa576c02863c1f5cdae420000000002c5460005260206000f35b6317f7182a811415611bce576c02863c1f5cdae420000000002d5460005260206000f35b639c868ac0811415611bf2576c02863c1f5cdae420000000002e5460005260206000f35b505b60006000fd5b6101a0526101405261016052610180526020610260602463bbf7408a6101e05261014051610200526101fc600a545afa15612b4d57601f3d1115612b4d57600050610260516101c052602061026060046318160ddd6102005261021c6008545afa15612b4d57601f3d1115612b4d57600050610260516101e052610160516028808202821582848304141715612b4d57809050905090506064808204905090506102005260006101e0511115611d15576102008051610180516101c051808202821582848304141715612b4d57809050905090506101e051808015612b4d57820490509050603c808202821582848304141715612b4d57809050905090506064808204905090508181830110612b4d57808201905090508152505b610160516102005180821115611d2b5780611d2d565b815b905090506102005260176101405160e05260c052604060c02054610220526102005160176101405160e05260c052604060c02055601854610200518181830110612b4d578082019050905061022051808210612b4d5780820390509050610240526102405160185561014051610260526101605161028052610180516102a052610200516102c052610240516102e0527f7ecd84343f76a23d2227290e0288da3251b045541698e575a5515af4f04197a360a0610260a16101a051565b6101c0526101405261016052610180526101a05260006101e0526101a051610200526000610140511815611e7e57600c6101405160e05260c052604060c020546101e0526101805115611e41576101a05115611e44565b60005b15611e7d576c02863c1f5cdae42000000000296101405160e05260c052604060c020546102005261020051611e7c5761014051610200525b5b5b6c02863c1f5cdae420000000001d546102205261024060006008818352015b61022051610240511415611eb057612379565b6001610240516008811015612b4d57026c02863c1f5cdae420000000001e01546102605260056c02863c1f5cdae42000000000286102605160e05260c052604060c0200154610280524260026c02863c1f5cdae42000000000286102605160e05260c052604060c020015480821115611f295780611f2b565b815b905090506102a0526102a05160046c02863c1f5cdae42000000000286102605160e05260c052604060c0200154808210612b4d57808203905090506102c05260006102c0511815612053576102a05160046c02863c1f5cdae42000000000286102605160e05260c052604060c020015560006101605118156120525761028080516102c05160036c02863c1f5cdae42000000000286102605160e05260c052604060c0200154808202821582848304141715612b4d5780905090509050670de0b6b3a7640000808202821582848304141715612b4d578090509050905061016051808015612b4d578204905090508181830110612b4d57808201905090508152506102805160056c02863c1f5cdae42000000000286102605160e05260c052604060c02001555b5b6000610140511815612368576c02863c1f5cdae420000000002a6102605160e05260c052604060c0206101405160e05260c052604060c020546102e052600061030052610280516102e051101561211b57610280516c02863c1f5cdae420000000002a6102605160e05260c052604060c0206101405160e05260c052604060c020556101e051610280516102e051808210612b4d5780820390509050808202821582848304141715612b4d5780905090509050670de0b6b3a764000080820490509050610300525b6c02863c1f5cdae420000000002b6101405160e05260c052604060c0206102605160e05260c052604060c02054610320526103205160801c610300518181830110612b4d578082019050905061034052600061034051111561236757610320517001000000000000000000000000000000008082069050905061036052610180511561231057600060046103e0527fa9059cbb00000000000000000000000000000000000000000000000000000000610400526103e060048060208461044001018260208501600060045af15050805182019150506102005160208261044001015260208101905061034051602082610440010152602081019050806104405261044090508051602001806104e08284600060045af115612b4d57505060206105a06104e0516105006000610260515af115612b4d5760203d808211156122625780612264565b815b90509050610580526105808051602001806103808284600060045af115612b4d57505060006103805118156122c6576103808060200151600082518060209013612b4d5780919012612b4d57806020036101000a820490509050905015612b4d575b61036051610340518181830110612b4d57808201905090506c02863c1f5cdae420000000002b6101405160e05260c052604060c0206102605160e05260c052604060c02055612366565b600061030051111561236557610360516103405160801b8181830110612b4d57808201905090506c02863c1f5cdae420000000002b6101405160e05260c052604060c0206102605160e05260c052604060c020555b5b5b5b5b8151600101808352811415611e9d575b50506101c051565b6101605261014052601954610180526001610180516c01431e0fae6d7217caa0000000811015612b4d5702601a01546101a0526001610180516c01431e0fae6d7217caa0000000811015612b4d57026c01431e0fae6d7210000000001a01546101c05260206102806024639a1586ef61020052426102205261021c6007545afa15612b4d57601f3d1115612b4d57600050610280516101e0526101a05161245c57602061028060246322026ada610200526101e0516102205261021c6007545afa15612b4d57601f3d1115612b4d57600050610280516101a0525b6101a05142111561247c576c02863c1f5cdae420000000002e541561247f565b60005b156126c2576018546102005260095461022052610220513b15612b4d5760006000602463615e523761024052306102605261025c6000610220515af115612b4d576101a0516102405261026060006101f4818352015b60206103006024639a1586ef61028052610240516102a05261029c6007545afa15612b4d57601f3d1115612b4d57600050610300516101e052602061032060246322026ada6102a0526101e05160018181830110612b4d57808201905090506102c0526102bc6007545afa15612b4d57601f3d1115612b4d57600050610320516102805261028051428082111561256c578061256e565b815b90509050610280526102805161024051808210612b4d57808203905090506102a0526020610380604463d3078c946102e05230610300526102405162093a808082049050905062093a80808202821582848304141715612b4d5780905090509050610320526102fc610220515afa15612b4d57601f3d1115612b4d57600050610380516102c0526000610200511115612696576101c08051602061036060246339935cf06102e05261024051610300526102fc6007545afa15612b4d57601f3d1115612b4d57600050610360516102c051808202821582848304141715612b4d57809050905090506102a051808202821582848304141715612b4d578090509050905061020051808015612b4d578204905090508181830110612b4d57808201905090508152505b426102805114156126a6576126bf565b61028051610240525b81516001018083528114156124d5575b50505b61018080516001808201808060008112156126d957195b607f1c612b4d5790509050905081525061018051601955426001610180516c01431e0fae6d7217caa0000000811015612b4d5702601a01556101c0516001610180516c01431e0fae6d7217caa0000000811015612b4d57026c01431e0fae6d7210000000001a015560176101405160e05260c052604060c02054610200526c02863c1f5cdae420000000001c6101405160e05260c052604060c0208054610200516101c0516c02863c1f5cdae420000000001a6101405160e05260c052604060c02054808210612b4d5780820390509050808202821582848304141715612b4d5780905090509050670de0b6b3a7640000808204905090508181830110612b4d57808201905090508155506101c0516c02863c1f5cdae420000000001a6101405160e05260c052604060c02055426c02863c1f5cdae420000000001b6101405160e05260c052604060c0205561016051565b6101a0526101405261016052610180526101405161016051610180516101a051610140516101c0526101c05160065801612381565b6101a0526101805261016052610140526000506101405161016051610180516101a051610160516101c0526101c05160065801612381565b6101a0526101805261016052610140526000506000610180511815612b1057600d546101c05260006c02863c1f5cdae420000000001d5414156101e0526101e05115612947576101405161016051610180516101a0516101c0516101e05161014051610200526101c051610220526000610240526000610260526102605161024051610220516102005160065801611dea565b6101e0526101c0526101a0526101805261016052610140526000505b600c6101405160e05260c052604060c0205461018051808210612b4d57808203905090506102005261020051600c6101405160e05260c052604060c020556101405161016051610180516101a0516101c0516101e05161020051610140516102205261020051610240526101c0516102605261026051610240516102205160065801611bfa565b610200526101e0526101c0526101a0526101805261016052610140526000506101e05115612a67576101405161016051610180516101a0516101c0516101e0516102005161016051610220526101c051610240526000610260526000610280526102805161026051610240516102205160065801611dea565b610200526101e0526101c0526101a0526101805261016052610140526000505b600c6101605160e05260c052604060c02054610180518181830110612b4d57808201905090506102005261020051600c6101605160e05260c052604060c020556101405161016051610180516101a0516101c0516101e05161020051610160516102205261020051610240526101c0516102605261026051610240516102205160065801611bfa565b610200526101e0526101c0526101a0526101805261016052610140526000505b610180516101c05261016051610140517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206101c0a36101a051565b600080fd

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

000000000000000000000000607312a5c671d0c511998171e634de32156e69d00000000000000000000000004adf575dbe0e6f1c5909ae9c7119927b4faabbbd000000000000000000000000641f26c67a5d0829ae61019131093b6a7c7d18a30000000000000000000000003ffd03ef31f6d5a6c517cefa9cdf43efebee8399000000000000000000000000b4bafc3d60662de362c0cb0f5e2de76603ea77d700000000000000000000000000000000000000000000000000000000000000c8

-----Decoded View---------------
Arg [0] : _lp_token (address): 0x607312a5C671D0C511998171e634DE32156e69d0
Arg [1] : _minter (address): 0x4adF575DBe0e6F1c5909AE9c7119927b4FaabbBd
Arg [2] : _admin (address): 0x641f26c67A5D0829Ae61019131093B6a7c7d18a3
Arg [3] : _reward_policy_maker (address): 0x3ffd03Ef31F6D5A6C517CEFA9CDf43efEBeE8399
Arg [4] : _veboost_proxy (address): 0xb4BAfc3d60662De362c0cB0f5e2DE76603Ea77D7
Arg [5] : _reward_fee (uint256): 200

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 000000000000000000000000607312a5c671d0c511998171e634de32156e69d0
Arg [1] : 0000000000000000000000004adf575dbe0e6f1c5909ae9c7119927b4faabbbd
Arg [2] : 000000000000000000000000641f26c67a5d0829ae61019131093b6a7c7d18a3
Arg [3] : 0000000000000000000000003ffd03ef31f6d5a6c517cefa9cdf43efebee8399
Arg [4] : 000000000000000000000000b4bafc3d60662de362c0cb0f5e2de76603ea77d7
Arg [5] : 00000000000000000000000000000000000000000000000000000000000000c8


[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.