Latest 25 from a total of 5,026 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Dev Withdraw Fun... | 21692050 | 397 days ago | IN | 0 ETH | 0.00029214 | ||||
| Exit | 12802669 | 1690 days ago | IN | 0 ETH | 0.00119165 | ||||
| Exit | 12035592 | 1809 days ago | IN | 0 ETH | 0.01283337 | ||||
| Exit | 12014704 | 1812 days ago | IN | 0 ETH | 0.01509744 | ||||
| Stake | 11893485 | 1830 days ago | IN | 0 ETH | 0.02108882 | ||||
| Exit | 11825200 | 1841 days ago | IN | 0 ETH | 0.0142265 | ||||
| Exit | 11743502 | 1854 days ago | IN | 0 ETH | 0.00745178 | ||||
| Exit | 11743089 | 1854 days ago | IN | 0 ETH | 0.0093486 | ||||
| Stake | 11732784 | 1855 days ago | IN | 0 ETH | 0.00995828 | ||||
| Exit | 11732345 | 1855 days ago | IN | 0 ETH | 0.01098393 | ||||
| Exit | 11717698 | 1858 days ago | IN | 0 ETH | 0.00542191 | ||||
| Exit | 11717354 | 1858 days ago | IN | 0 ETH | 0.00636788 | ||||
| Get Reward | 11707400 | 1859 days ago | IN | 0 ETH | 0.01272203 | ||||
| Exit | 11689496 | 1862 days ago | IN | 0 ETH | 0.00686775 | ||||
| Exit | 11663329 | 1866 days ago | IN | 0 ETH | 0.00686775 | ||||
| Exit | 11648488 | 1868 days ago | IN | 0 ETH | 0.00734712 | ||||
| Exit | 11618542 | 1873 days ago | IN | 0 ETH | 0.00785824 | ||||
| Exit | 11609914 | 1874 days ago | IN | 0 ETH | 0.00963896 | ||||
| Exit | 11599915 | 1876 days ago | IN | 0 ETH | 0.01831908 | ||||
| Exit | 11544320 | 1884 days ago | IN | 0 ETH | 0.00873938 | ||||
| Exit | 11487940 | 1893 days ago | IN | 0 ETH | 0.00336743 | ||||
| Exit | 11479533 | 1894 days ago | IN | 0 ETH | 0.00409655 | ||||
| Exit | 11477480 | 1894 days ago | IN | 0 ETH | 0.00518094 | ||||
| Exit | 11466988 | 1896 days ago | IN | 0 ETH | 0.00731629 | ||||
| Exit | 11459591 | 1897 days ago | IN | 0 ETH | 0.0055424 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
KittenRewards
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-09-02
*/
// _ _ _ _ __ _
// | | (_) | | | / _(_)
// | | ___| |_| |_ ___ _ __ | |_ _ _ __ __ _ _ __ ___ ___
// | |/ / | __| __/ _ \ '_ \ | _| | '_ \ / _` | '_ \ / __/ _ \
// | <| | |_| || __/ | | |_| | | | | | | (_| | | | | (_| __/
// |_|\_\_|\__|\__\___|_| |_(_)_| |_|_| |_|\__,_|_| |_|\___\___|
/*
____ __ __ __ _
/ __/__ __ ___ / /_ / / ___ / /_ (_)__ __
_\ \ / // // _ \/ __// _ \/ -_)/ __// / \ \ /
/___/ \_, //_//_/\__//_//_/\__/ \__//_/ /_\_\
/___/
* Synthetix: YFIRewards.sol
*
* Docs: https://docs.synthetix.io/
*
*
* MIT License
* ===========
*
* Copyright (c) 2020 Synthetix
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
*/
// File: @openzeppelin/contracts/math/Math.sol
pragma solidity ^0.5.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a >= b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow, so we distribute
return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
}
}
// File: @openzeppelin/contracts/math/SafeMath.sol
pragma solidity ^0.5.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*
* _Available since v2.4.0._
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*
* _Available since v2.4.0._
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*
* _Available since v2.4.0._
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
// File: @openzeppelin/contracts/GSN/Context.sol
pragma solidity ^0.5.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
contract Context {
// Empty internal constructor, to prevent people from mistakenly deploying
// an instance of this contract, which should be used via inheritance.
constructor () internal { }
// solhint-disable-previous-line no-empty-blocks
function _msgSender() internal view returns (address payable) {
return msg.sender;
}
function _msgData() internal view returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
// File: @openzeppelin/contracts/ownership/Ownable.sol
pragma solidity ^0.5.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () internal {
_owner = _msgSender();
emit OwnershipTransferred(address(0), _owner);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(isOwner(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Returns true if the caller is the current owner.
*/
function isOwner() public view returns (bool) {
return _msgSender() == _owner;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public onlyOwner {
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
*/
function _transferOwnership(address newOwner) internal {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
pragma solidity ^0.5.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP. Does not include
* the optional functions; to access them see {ERC20Detailed}.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
function mint(address account, uint amount) external;
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// File: @openzeppelin/contracts/utils/Address.sol
pragma solidity ^0.5.5;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* This test is non-exhaustive, and there may be false-negatives: during the
* execution of a contract's constructor, its address will be reported as
* not containing a contract.
*
* IMPORTANT: It is unsafe to assume that an address for which this
* function returns false is an externally-owned account (EOA) and not a
* contract.
*/
function isContract(address account) internal view returns (bool) {
// This method relies in extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
// According to EIP-1052, 0x0 is the value returned for not-yet created accounts
// and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
// for accounts without code, i.e. `keccak256('')`
bytes32 codehash;
bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
// solhint-disable-next-line no-inline-assembly
assembly { codehash := extcodehash(account) }
return (codehash != 0x0 && codehash != accountHash);
}
/**
* @dev Converts an `address` into `address payable`. Note that this is
* simply a type cast: the actual underlying value is not changed.
*
* _Available since v2.4.0._
*/
function toPayable(address account) internal pure returns (address payable) {
return address(uint160(account));
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*
* _Available since v2.4.0._
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-call-value
(bool success, ) = recipient.call.value(amount)("");
require(success, "Address: unable to send value, recipient may have reverted");
}
}
// File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol
pragma solidity ^0.5.0;
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using SafeMath for uint256;
using Address for address;
function safeTransfer(IERC20 token, address to, uint256 value) internal {
callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
function safeApprove(IERC20 token, address spender, uint256 value) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
// solhint-disable-next-line max-line-length
require((value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).add(value);
callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves.
// A Solidity high level call has three parts:
// 1. The target address is checked to verify it contains contract code
// 2. The call itself is made, and success asserted
// 3. The return value is decoded, which in turn checks the size of the returned data.
// solhint-disable-next-line max-line-length
require(address(token).isContract(), "SafeERC20: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = address(token).call(data);
require(success, "SafeERC20: low-level call failed");
if (returndata.length > 0) { // Return data is optional
// solhint-disable-next-line max-line-length
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
// File: contracts/CurveRewards.sol
pragma solidity ^0.5.0;
contract LPTokenWrapper {
using SafeMath for uint256;
using SafeERC20 for IERC20;
using Address for address;
IERC20 public LP_TOKEN = IERC20(0x9f11faF42A16D986F7BFd6338F41dB880da6DF39); // Stake LP token
uint256 private _totalSupply;
mapping(address => uint256) private _balances;
function totalSupply() public view returns (uint256) {
return _totalSupply;
}
function balanceOf(address account) public view returns (uint256) {
return _balances[account];
}
function stake(uint256 amount) public {
address sender = msg.sender;
require(!address(sender).isContract(), "plz farm by hand");
require(tx.origin == sender, "plz farm by hand");
_totalSupply = _totalSupply.add(amount);
_balances[sender] = _balances[sender].add(amount);
LP_TOKEN.safeTransferFrom(sender, address(this), amount);
}
function withdraw(uint256 amount) public {
_totalSupply = _totalSupply.sub(amount);
_balances[msg.sender] = _balances[msg.sender].sub(amount);
LP_TOKEN.safeTransfer(msg.sender, amount);
}
}
contract KittenRewards is LPTokenWrapper, Ownable {
IERC20 public KIF_TOKEN = IERC20(0x177BA0cac51bFC7eA24BAd39d81dcEFd59d74fAa); // KittenFinance token
uint256 public constant DURATION = 7 days;
uint256 public initreward = 12000 * 1e18;
uint256 public starttime = 1599069600; // GMT September 2, 2020 6:00:00 PM
uint256 public periodFinish = 0;
uint256 public rewardRate = 0;
uint256 public lastUpdateTime;
uint256 public rewardPerTokenStored;
mapping(address => uint256) public userRewardPerTokenPaid;
mapping(address => uint256) public rewards;
event RewardAdded(uint256 reward);
event Staked(address indexed user, uint256 amount);
event Withdrawn(address indexed user, uint256 amount);
event RewardPaid(address indexed user, uint256 reward);
address public devVestingAddr;
uint256 public devTotalAmt = 0;
uint256 public devWithdrawnAmt = 0;
uint256 public constant VESTING_PERIOD = 365 days;
constructor (address _devVestingAddr) public {
devVestingAddr = _devVestingAddr;
}
function transferDevAddr(address newAddr) public {
require(msg.sender == devVestingAddr, "dev only");
require(newAddr != address(0), "zero addr");
devVestingAddr = newAddr;
}
function renounceDevAddr() public {
require(msg.sender == devVestingAddr, "dev only");
devVestingAddr = address(0);
}
modifier updateReward(address account) {
rewardPerTokenStored = rewardPerToken();
lastUpdateTime = lastTimeRewardApplicable();
if (account != address(0)) {
rewards[account] = earned(account);
userRewardPerTokenPaid[account] = rewardPerTokenStored;
}
_;
}
function lastTimeRewardApplicable() public view returns (uint256) {
return Math.min(block.timestamp, periodFinish);
}
function rewardPerToken() public view returns (uint256) {
if (totalSupply() == 0) {
return rewardPerTokenStored;
}
return
rewardPerTokenStored.add(
lastTimeRewardApplicable()
.sub(lastUpdateTime)
.mul(rewardRate)
.mul(1e18)
.div(totalSupply())
);
}
function earned(address account) public view returns (uint256) {
return
balanceOf(account)
.mul(rewardPerToken().sub(userRewardPerTokenPaid[account]))
.div(1e18)
.add(rewards[account]);
}
// stake visibility is public as overriding LPTokenWrapper's stake() function
function stake(uint256 amount) public updateReward(msg.sender) checkhalve checkStart {
require(amount > 0, "Cannot stake 0");
super.stake(amount);
emit Staked(msg.sender, amount);
}
function withdraw(uint256 amount) public updateReward(msg.sender) {
require(amount > 0, "Cannot withdraw 0");
super.withdraw(amount);
emit Withdrawn(msg.sender, amount);
}
function exit() external {
withdraw(balanceOf(msg.sender));
getReward();
}
function getReward() public updateReward(msg.sender) checkhalve {
uint256 reward = earned(msg.sender);
if (reward > 0) {
rewards[msg.sender] = 0;
KIF_TOKEN.safeTransfer(msg.sender, reward);
emit RewardPaid(msg.sender, reward);
}
}
modifier checkhalve(){
if (block.timestamp >= periodFinish) {
initreward = initreward.mul(50).div(100);
KIF_TOKEN.mint(address(this),initreward);
rewardRate = initreward.div(DURATION);
periodFinish = block.timestamp.add(DURATION);
emit RewardAdded(initreward);
}
_;
}
modifier checkStart(){
require(block.timestamp > starttime,"not start");
_;
}
function notifyRewardAmount(uint256 reward) external
onlyOwner
updateReward(address(0))
{
if (block.timestamp >= periodFinish) {
rewardRate = reward.div(DURATION);
} else {
uint256 remaining = periodFinish.sub(block.timestamp);
uint256 leftover = remaining.mul(rewardRate);
rewardRate = reward.add(leftover).div(DURATION);
}
uint256 devNewAmt = reward.div(20); // 5% dev fund (vested)
KIF_TOKEN.mint(address(this), reward.add(devNewAmt));
devTotalAmt = devTotalAmt.add(devNewAmt);
lastUpdateTime = block.timestamp;
periodFinish = block.timestamp.add(DURATION);
emit RewardAdded(reward);
}
function devWithdrawFund(uint256 amt) external
{
require(msg.sender == devVestingAddr, "dev only");
uint256 vestingTime = block.timestamp.sub(starttime);
vestingTime = Math.min(vestingTime, VESTING_PERIOD);
uint256 devWithdrawnAmtMax = devTotalAmt.mul(vestingTime).div(VESTING_PERIOD); // vesting
uint256 devWithdrawnAmtNew = devWithdrawnAmt.add(amt);
require(devWithdrawnAmtNew <= devWithdrawnAmtMax, "vesting");
devWithdrawnAmt = devWithdrawnAmtNew;
KIF_TOKEN.safeTransfer(devVestingAddr, amt);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_devVestingAddr","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"constant":true,"inputs":[],"name":"DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"KIF_TOKEN","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"LP_TOKEN","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"VESTING_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"devTotalAmt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"devVestingAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"devWithdrawFund","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"devWithdrawnAmt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"exit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getReward","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"initreward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"notifyRewardAmount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"periodFinish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceDevAddr","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardPerTokenStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"starttime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newAddr","type":"address"}],"name":"transferDevAddr","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userRewardPerTokenPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052600080546001600160a01b0319908116739f11faf42a16d986f7bfd6338f41db880da6df391782556004805490911673177ba0cac51bfc7ea24bad39d81dcefd59d74faa17905569028a857425466f800000600555635f4fdda060065560078190556008819055600e819055600f5534801561007f57600080fd5b50604051611952380380611952833981810160405260208110156100a257600080fd5b50516100b56001600160e01b0361012616565b600380546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3600d80546001600160a01b0319166001600160a01b039290921691909117905561012a565b3390565b611819806101396000396000f3fe608060405234801561001057600080fd5b50600436106101ef5760003560e01c80638b8763471161010f578063bfd9041b116100a2578063df136d6511610071578063df136d6514610402578063e9fad8ee1461040a578063ebe2b12b14610412578063f2fde38b1461041a576101ef565b8063bfd9041b146103cd578063c8f33c91146103d5578063cd3daf9d146103dd578063d49a32a8146103e5576101ef565b80639c907b58116100de5780639c907b5814610398578063a694fc3a146103a0578063b05fa2e0146103bd578063b495d47a146103c5576101ef565b80638b876347146103465780638da588971461036c5780638da5cb5b146103745780638f32d59b1461037c576101ef565b80633d18b9121161018757806370a082311161015657806370a0823114610308578063715018a61461032e5780637b0a47ee1461033657806380faa57d1461033e576101ef565b80633d18b912146102ae5780633ef0cc7b146102b6578063542c3f58146102dc5780636498bfe314610300576101ef565b80631be05289116101c35780631be05289146102625780632e1a7d4d1461026a5780633c6b16ab146102895780633ca63726146102a6576101ef565b80628cc262146101f45780630197d9721461022c5780630700037d1461023457806318160ddd1461025a575b600080fd5b61021a6004803603602081101561020a57600080fd5b50356001600160a01b0316610440565b60408051918252519081900360200190f35b61021a6104c6565b61021a6004803603602081101561024a57600080fd5b50356001600160a01b03166104ce565b61021a6104e0565b61021a6104e7565b6102876004803603602081101561028057600080fd5b50356104ee565b005b6102876004803603602081101561029f57600080fd5b50356105d5565b61021a610806565b61028761080c565b610287600480360360208110156102cc57600080fd5b50356001600160a01b03166109dc565b6102e4610a8f565b604080516001600160a01b039092168252519081900360200190f35b610287610a9e565b61021a6004803603602081101561031e57600080fd5b50356001600160a01b0316610afa565b610287610b15565b61021a610bb8565b61021a610bbe565b61021a6004803603602081101561035c57600080fd5b50356001600160a01b0316610bd1565b61021a610be3565b6102e4610be9565b610384610bf8565b604080519115158252519081900360200190f35b61021a610c1e565b610287600480360360208110156103b657600080fd5b5035610c24565b61021a610e48565b6102e4610e4e565b6102e4610e5d565b61021a610e6c565b61021a610e72565b610287600480360360208110156103fb57600080fd5b5035610ec6565b61021a610fe0565b610287610fe6565b61021a611001565b6102876004803603602081101561043057600080fd5b50356001600160a01b0316611007565b6001600160a01b0381166000908152600c6020908152604080832054600b9092528220546104c091906104b490670de0b6b3a7640000906104a89061049390610487610e72565b9063ffffffff61106c16565b61049c88610afa565b9063ffffffff6110b516565b9063ffffffff61110e16565b9063ffffffff61115016565b92915050565b6301e1338081565b600c6020526000908152604090205481565b6001545b90565b62093a8081565b336104f7610e72565b600a55610502610bbe565b6009556001600160a01b038116156105495761051d81610440565b6001600160a01b0382166000908152600c6020908152604080832093909355600a54600b909152919020555b60008211610592576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b61059b826111aa565b60408051838152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a25050565b6105dd610bf8565b61062e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000610638610e72565b600a55610643610bbe565b6009556001600160a01b0381161561068a5761065e81610440565b6001600160a01b0382166000908152600c6020908152604080832093909355600a54600b909152919020555b60075442106106ae576106a68262093a8063ffffffff61110e16565b6008556106fc565b6007546000906106c4904263ffffffff61106c16565b905060006106dd600854836110b590919063ffffffff16565b90506106f662093a806104a8868463ffffffff61115016565b60085550505b600061070f83601463ffffffff61110e16565b6004549091506001600160a01b03166340c10f1930610734868563ffffffff61115016565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561078357600080fd5b505af1158015610797573d6000803e3d6000fd5b5050600e546107af925090508263ffffffff61115016565b600e554260098190556107cb9062093a8063ffffffff61115016565b6007556040805184815290517fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d9181900360200190a1505050565b600e5481565b33610815610e72565b600a55610820610bbe565b6009556001600160a01b038116156108675761083b81610440565b6001600160a01b0382166000908152600c6020908152604080832093909355600a54600b909152919020555b60075442106109655761088b60646104a860326005546110b590919063ffffffff16565b600581905560048054604080516340c10f1960e01b81523093810193909352602483019390935291516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b1580156108e757600080fd5b505af11580156108fb573d6000803e3d6000fd5b50506005546109169250905062093a8063ffffffff61110e16565b60085561092c4262093a8063ffffffff61115016565b60075560055460408051918252517fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d9181900360200190a15b600061097033610440565b905080156109d857336000818152600c60205260408120556004546109a1916001600160a01b039091169083611207565b60408051828152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b5050565b600d546001600160a01b03163314610a26576040805162461bcd60e51b8152602060048201526008602482015267646576206f6e6c7960c01b604482015290519081900360640190fd5b6001600160a01b038116610a6d576040805162461bcd60e51b81526020600482015260096024820152683d32b9379030b2323960b91b604482015290519081900360640190fd5b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600d546001600160a01b031681565b600d546001600160a01b03163314610ae8576040805162461bcd60e51b8152602060048201526008602482015267646576206f6e6c7960c01b604482015290519081900360640190fd5b600d80546001600160a01b0319169055565b6001600160a01b031660009081526002602052604090205490565b610b1d610bf8565b610b6e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b60085481565b6000610bcc4260075461125e565b905090565b600b6020526000908152604090205481565b60065481565b6003546001600160a01b031690565b6003546000906001600160a01b0316610c0f611274565b6001600160a01b031614905090565b60055481565b33610c2d610e72565b600a55610c38610bbe565b6009556001600160a01b03811615610c7f57610c5381610440565b6001600160a01b0382166000908152600c6020908152604080832093909355600a54600b909152919020555b6007544210610d7d57610ca360646104a860326005546110b590919063ffffffff16565b600581905560048054604080516340c10f1960e01b81523093810193909352602483019390935291516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b158015610cff57600080fd5b505af1158015610d13573d6000803e3d6000fd5b5050600554610d2e9250905062093a8063ffffffff61110e16565b600855610d444262093a8063ffffffff61115016565b60075560055460408051918252517fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d9181900360200190a15b6006544211610dbf576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b60008211610e05576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b610e0e82611278565b60408051838152905133917f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d919081900360200190a25050565b600f5481565b6004546001600160a01b031681565b6000546001600160a01b031681565b60095481565b6000610e7c6104e0565b610e895750600a546104e4565b610bcc610eb7610e976104e0565b6104a8670de0b6b3a764000061049c60085461049c600954610487610bbe565b600a549063ffffffff61115016565b600d546001600160a01b03163314610f10576040805162461bcd60e51b8152602060048201526008602482015267646576206f6e6c7960c01b604482015290519081900360640190fd5b6000610f276006544261106c90919063ffffffff16565b9050610f37816301e1338061125e565b90506000610f586301e133806104a884600e546110b590919063ffffffff16565b90506000610f7184600f5461115090919063ffffffff16565b905081811115610fb2576040805162461bcd60e51b815260206004820152600760248201526676657374696e6760c81b604482015290519081900360640190fd5b600f819055600d54600454610fda916001600160a01b0391821691168663ffffffff61120716565b50505050565b600a5481565b610ff7610ff233610afa565b6104ee565b610fff61080c565b565b60075481565b61100f610bf8565b611060576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61106981611388565b50565b60006110ae83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611429565b9392505050565b6000826110c4575060006104c0565b828202828482816110d157fe5b04146110ae5760405162461bcd60e51b815260040180806020018281038252602181526020018061179a6021913960400191505060405180910390fd5b60006110ae83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506114c0565b6000828201838110156110ae576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001546111bd908263ffffffff61106c16565b600155336000908152600260205260409020546111e0908263ffffffff61106c16565b336000818152600260205260408120929092559054611069916001600160a01b0390911690835b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611259908490611525565b505050565b600081831061126d57816110ae565b5090919050565b3390565b33611282816116dd565b156112c7576040805162461bcd60e51b815260206004820152601060248201526f1c1b1e8819985c9b48189e481a185b9960821b604482015290519081900360640190fd5b326001600160a01b03821614611317576040805162461bcd60e51b815260206004820152601060248201526f1c1b1e8819985c9b48189e481a185b9960821b604482015290519081900360640190fd5b60015461132a908363ffffffff61115016565b6001556001600160a01b038116600090815260026020526040902054611356908363ffffffff61115016565b6001600160a01b0380831660009081526002602052604081209290925590546109d8911682308563ffffffff61171916565b6001600160a01b0381166113cd5760405162461bcd60e51b81526004018080602001828103825260268152602001806117746026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b600081848411156114b85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561147d578181015183820152602001611465565b50505050905090810190601f1680156114aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000818361150f5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561147d578181015183820152602001611465565b50600083858161151b57fe5b0495945050505050565b611537826001600160a01b03166116dd565b611588576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106115c65780518252601f1990920191602091820191016115a7565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611628576040519150601f19603f3d011682016040523d82523d6000602084013e61162d565b606091505b509150915081611684576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115610fda578080602001905160208110156116a057600080fd5b5051610fda5760405162461bcd60e51b815260040180806020018281038252602a8152602001806117bb602a913960400191505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081158015906117115750808214155b949350505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610fda90859061152556fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a723158200877094ff04f02743c0e37fa372e041563023e7c1fb9d6ff4ac2d604bc67964664736f6c63430005100032000000000000000000000000d8d71629950ce53d7e9f94619b09058d9d9f5866
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101ef5760003560e01c80638b8763471161010f578063bfd9041b116100a2578063df136d6511610071578063df136d6514610402578063e9fad8ee1461040a578063ebe2b12b14610412578063f2fde38b1461041a576101ef565b8063bfd9041b146103cd578063c8f33c91146103d5578063cd3daf9d146103dd578063d49a32a8146103e5576101ef565b80639c907b58116100de5780639c907b5814610398578063a694fc3a146103a0578063b05fa2e0146103bd578063b495d47a146103c5576101ef565b80638b876347146103465780638da588971461036c5780638da5cb5b146103745780638f32d59b1461037c576101ef565b80633d18b9121161018757806370a082311161015657806370a0823114610308578063715018a61461032e5780637b0a47ee1461033657806380faa57d1461033e576101ef565b80633d18b912146102ae5780633ef0cc7b146102b6578063542c3f58146102dc5780636498bfe314610300576101ef565b80631be05289116101c35780631be05289146102625780632e1a7d4d1461026a5780633c6b16ab146102895780633ca63726146102a6576101ef565b80628cc262146101f45780630197d9721461022c5780630700037d1461023457806318160ddd1461025a575b600080fd5b61021a6004803603602081101561020a57600080fd5b50356001600160a01b0316610440565b60408051918252519081900360200190f35b61021a6104c6565b61021a6004803603602081101561024a57600080fd5b50356001600160a01b03166104ce565b61021a6104e0565b61021a6104e7565b6102876004803603602081101561028057600080fd5b50356104ee565b005b6102876004803603602081101561029f57600080fd5b50356105d5565b61021a610806565b61028761080c565b610287600480360360208110156102cc57600080fd5b50356001600160a01b03166109dc565b6102e4610a8f565b604080516001600160a01b039092168252519081900360200190f35b610287610a9e565b61021a6004803603602081101561031e57600080fd5b50356001600160a01b0316610afa565b610287610b15565b61021a610bb8565b61021a610bbe565b61021a6004803603602081101561035c57600080fd5b50356001600160a01b0316610bd1565b61021a610be3565b6102e4610be9565b610384610bf8565b604080519115158252519081900360200190f35b61021a610c1e565b610287600480360360208110156103b657600080fd5b5035610c24565b61021a610e48565b6102e4610e4e565b6102e4610e5d565b61021a610e6c565b61021a610e72565b610287600480360360208110156103fb57600080fd5b5035610ec6565b61021a610fe0565b610287610fe6565b61021a611001565b6102876004803603602081101561043057600080fd5b50356001600160a01b0316611007565b6001600160a01b0381166000908152600c6020908152604080832054600b9092528220546104c091906104b490670de0b6b3a7640000906104a89061049390610487610e72565b9063ffffffff61106c16565b61049c88610afa565b9063ffffffff6110b516565b9063ffffffff61110e16565b9063ffffffff61115016565b92915050565b6301e1338081565b600c6020526000908152604090205481565b6001545b90565b62093a8081565b336104f7610e72565b600a55610502610bbe565b6009556001600160a01b038116156105495761051d81610440565b6001600160a01b0382166000908152600c6020908152604080832093909355600a54600b909152919020555b60008211610592576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b61059b826111aa565b60408051838152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a25050565b6105dd610bf8565b61062e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000610638610e72565b600a55610643610bbe565b6009556001600160a01b0381161561068a5761065e81610440565b6001600160a01b0382166000908152600c6020908152604080832093909355600a54600b909152919020555b60075442106106ae576106a68262093a8063ffffffff61110e16565b6008556106fc565b6007546000906106c4904263ffffffff61106c16565b905060006106dd600854836110b590919063ffffffff16565b90506106f662093a806104a8868463ffffffff61115016565b60085550505b600061070f83601463ffffffff61110e16565b6004549091506001600160a01b03166340c10f1930610734868563ffffffff61115016565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561078357600080fd5b505af1158015610797573d6000803e3d6000fd5b5050600e546107af925090508263ffffffff61115016565b600e554260098190556107cb9062093a8063ffffffff61115016565b6007556040805184815290517fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d9181900360200190a1505050565b600e5481565b33610815610e72565b600a55610820610bbe565b6009556001600160a01b038116156108675761083b81610440565b6001600160a01b0382166000908152600c6020908152604080832093909355600a54600b909152919020555b60075442106109655761088b60646104a860326005546110b590919063ffffffff16565b600581905560048054604080516340c10f1960e01b81523093810193909352602483019390935291516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b1580156108e757600080fd5b505af11580156108fb573d6000803e3d6000fd5b50506005546109169250905062093a8063ffffffff61110e16565b60085561092c4262093a8063ffffffff61115016565b60075560055460408051918252517fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d9181900360200190a15b600061097033610440565b905080156109d857336000818152600c60205260408120556004546109a1916001600160a01b039091169083611207565b60408051828152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b5050565b600d546001600160a01b03163314610a26576040805162461bcd60e51b8152602060048201526008602482015267646576206f6e6c7960c01b604482015290519081900360640190fd5b6001600160a01b038116610a6d576040805162461bcd60e51b81526020600482015260096024820152683d32b9379030b2323960b91b604482015290519081900360640190fd5b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600d546001600160a01b031681565b600d546001600160a01b03163314610ae8576040805162461bcd60e51b8152602060048201526008602482015267646576206f6e6c7960c01b604482015290519081900360640190fd5b600d80546001600160a01b0319169055565b6001600160a01b031660009081526002602052604090205490565b610b1d610bf8565b610b6e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b60085481565b6000610bcc4260075461125e565b905090565b600b6020526000908152604090205481565b60065481565b6003546001600160a01b031690565b6003546000906001600160a01b0316610c0f611274565b6001600160a01b031614905090565b60055481565b33610c2d610e72565b600a55610c38610bbe565b6009556001600160a01b03811615610c7f57610c5381610440565b6001600160a01b0382166000908152600c6020908152604080832093909355600a54600b909152919020555b6007544210610d7d57610ca360646104a860326005546110b590919063ffffffff16565b600581905560048054604080516340c10f1960e01b81523093810193909352602483019390935291516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b158015610cff57600080fd5b505af1158015610d13573d6000803e3d6000fd5b5050600554610d2e9250905062093a8063ffffffff61110e16565b600855610d444262093a8063ffffffff61115016565b60075560055460408051918252517fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d9181900360200190a15b6006544211610dbf576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b60008211610e05576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b610e0e82611278565b60408051838152905133917f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d919081900360200190a25050565b600f5481565b6004546001600160a01b031681565b6000546001600160a01b031681565b60095481565b6000610e7c6104e0565b610e895750600a546104e4565b610bcc610eb7610e976104e0565b6104a8670de0b6b3a764000061049c60085461049c600954610487610bbe565b600a549063ffffffff61115016565b600d546001600160a01b03163314610f10576040805162461bcd60e51b8152602060048201526008602482015267646576206f6e6c7960c01b604482015290519081900360640190fd5b6000610f276006544261106c90919063ffffffff16565b9050610f37816301e1338061125e565b90506000610f586301e133806104a884600e546110b590919063ffffffff16565b90506000610f7184600f5461115090919063ffffffff16565b905081811115610fb2576040805162461bcd60e51b815260206004820152600760248201526676657374696e6760c81b604482015290519081900360640190fd5b600f819055600d54600454610fda916001600160a01b0391821691168663ffffffff61120716565b50505050565b600a5481565b610ff7610ff233610afa565b6104ee565b610fff61080c565b565b60075481565b61100f610bf8565b611060576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61106981611388565b50565b60006110ae83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611429565b9392505050565b6000826110c4575060006104c0565b828202828482816110d157fe5b04146110ae5760405162461bcd60e51b815260040180806020018281038252602181526020018061179a6021913960400191505060405180910390fd5b60006110ae83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506114c0565b6000828201838110156110ae576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001546111bd908263ffffffff61106c16565b600155336000908152600260205260409020546111e0908263ffffffff61106c16565b336000818152600260205260408120929092559054611069916001600160a01b0390911690835b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611259908490611525565b505050565b600081831061126d57816110ae565b5090919050565b3390565b33611282816116dd565b156112c7576040805162461bcd60e51b815260206004820152601060248201526f1c1b1e8819985c9b48189e481a185b9960821b604482015290519081900360640190fd5b326001600160a01b03821614611317576040805162461bcd60e51b815260206004820152601060248201526f1c1b1e8819985c9b48189e481a185b9960821b604482015290519081900360640190fd5b60015461132a908363ffffffff61115016565b6001556001600160a01b038116600090815260026020526040902054611356908363ffffffff61115016565b6001600160a01b0380831660009081526002602052604081209290925590546109d8911682308563ffffffff61171916565b6001600160a01b0381166113cd5760405162461bcd60e51b81526004018080602001828103825260268152602001806117746026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b600081848411156114b85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561147d578181015183820152602001611465565b50505050905090810190601f1680156114aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000818361150f5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561147d578181015183820152602001611465565b50600083858161151b57fe5b0495945050505050565b611537826001600160a01b03166116dd565b611588576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106115c65780518252601f1990920191602091820191016115a7565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611628576040519150601f19603f3d011682016040523d82523d6000602084013e61162d565b606091505b509150915081611684576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115610fda578080602001905160208110156116a057600080fd5b5051610fda5760405162461bcd60e51b815260040180806020018281038252602a8152602001806117bb602a913960400191505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081158015906117115750808214155b949350505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610fda90859061152556fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a723158200877094ff04f02743c0e37fa372e041563023e7c1fb9d6ff4ac2d604bc67964664736f6c63430005100032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d8d71629950ce53d7e9f94619b09058d9d9f5866
-----Decoded View---------------
Arg [0] : _devVestingAddr (address): 0xD8d71629950cE53d7E9F94619b09058D9D9f5866
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000d8d71629950ce53d7e9f94619b09058d9d9f5866
Deployed Bytecode Sourcemap
22948:5440:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22948:5440:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25316:265;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25316:265:0;-1:-1:-1;;;;;25316:265:0;;:::i;:::-;;;;;;;;;;;;;;;;23889:49;;;:::i;23504:42::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23504:42:0;-1:-1:-1;;;;;23504:42:0;;:::i;22108:91::-;;;:::i;23111:41::-;;;:::i;25894:203::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25894:203:0;;:::i;:::-;;27000:769;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27000:769:0;;:::i;23811:30::-;;;:::i;26210:301::-;;;:::i;24051:206::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24051:206:0;-1:-1:-1;;;;;24051:206:0;;:::i;23775:29::-;;;:::i;:::-;;;;-1:-1:-1;;;;;23775:29:0;;;;;;;;;;;;;;24263:140;;;:::i;22207:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22207:110:0;-1:-1:-1;;;;;22207:110:0;;:::i;11091:140::-;;;:::i;23326:29::-;;;:::i;24749:131::-;;;:::i;23440:57::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23440:57:0;-1:-1:-1;;;;;23440:57:0;;:::i;23208:37::-;;;:::i;10280:79::-;;;:::i;10646:94::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;23161:40;;;:::i;25672:214::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25672:214:0;;:::i;23848:34::-;;;:::i;23005:76::-;;;:::i;21917:75::-;;;:::i;23362:29::-;;;:::i;24888:420::-;;;:::i;27777:608::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27777:608:0;;:::i;23398:35::-;;;:::i;26105:97::-;;;:::i;23288:31::-;;;:::i;11386:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11386:109:0;-1:-1:-1;;;;;11386:109:0;;:::i;25316:265::-;-1:-1:-1;;;;;25556:16:0;;25370:7;25556:16;;;:7;:16;;;;;;;;;25472:22;:31;;;;;;25410:163;;25556:16;25410:123;;25528:4;;25410:95;;25451:53;;:16;:14;:16::i;:::-;:20;:53;:20;:53;:::i;:::-;25410:18;25420:7;25410:9;:18::i;:::-;:40;:95;:40;:95;:::i;:::-;:117;:123;:117;:123;:::i;:::-;:145;:163;:145;:163;:::i;:::-;25390:183;25316:265;-1:-1:-1;;25316:265:0:o;23889:49::-;23930:8;23889:49;:::o;23504:42::-;;;;;;;;;;;;;:::o;22108:91::-;22179:12;;22108:91;;:::o;23111:41::-;23146:6;23111:41;:::o;25894:203::-;25948:10;24484:16;:14;:16::i;:::-;24461:20;:39;24528:26;:24;:26::i;:::-;24511:14;:43;-1:-1:-1;;;;;24569:21:0;;;24565:157;;24626:15;24633:7;24626:6;:15::i;:::-;-1:-1:-1;;;;;24607:16:0;;;;;;:7;:16;;;;;;;;:34;;;;24690:20;;24656:22;:31;;;;;;:54;24565:157;25988:1;25979:6;:10;25971:40;;;;;-1:-1:-1;;;25971:40:0;;;;;;;;;;;;-1:-1:-1;;;25971:40:0;;;;;;;;;;;;;;;26022:22;26037:6;26022:14;:22::i;:::-;26060:29;;;;;;;;26070:10;;26060:29;;;;;;;;;;25894:203;;:::o;27000:769::-;10492:9;:7;:9::i;:::-;10484:54;;;;;-1:-1:-1;;;10484:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27102:1;24484:16;:14;:16::i;:::-;24461:20;:39;24528:26;:24;:26::i;:::-;24511:14;:43;-1:-1:-1;;;;;24569:21:0;;;24565:157;;24626:15;24633:7;24626:6;:15::i;:::-;-1:-1:-1;;;;;24607:16:0;;;;;;:7;:16;;;;;;;;:34;;;;24690:20;;24656:22;:31;;;;;;:54;24565:157;27145:12;;27126:15;:31;27122:304;;27187:20;:6;23146;27187:20;:10;:20;:::i;:::-;27174:10;:33;27122:304;;;27260:12;;27240:17;;27260:33;;27277:15;27260:33;:16;:33;:::i;:::-;27240:53;;27308:16;27327:25;27341:10;;27327:9;:13;;:25;;;;:::i;:::-;27308:44;-1:-1:-1;27380:34:0;23146:6;27380:20;:6;27308:44;27380:20;:10;:20;:::i;:34::-;27367:10;:47;-1:-1:-1;;27122:304:0;27446:17;27466:14;:6;27477:2;27466:14;:10;:14;:::i;:::-;27523:9;;27446:34;;-1:-1:-1;;;;;;27523:9:0;:14;27546:4;27553:21;:6;27446:34;27553:21;:10;:21;:::i;:::-;27523:52;;;;;;;;;;;;;-1:-1:-1;;;;;27523:52:0;-1:-1:-1;;;;;27523:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27523:52:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;27600:11:0;;:26;;-1:-1:-1;27600:11:0;-1:-1:-1;27616:9:0;27600:26;:15;:26;:::i;:::-;27586:11;:40;27656:15;27639:14;:32;;;27697:29;;23146:6;27697:29;:19;:29;:::i;:::-;27682:12;:44;27742:19;;;;;;;;;;;;;;;;;24732:1;10549;27000:769;:::o;23811:30::-;;;;:::o;26210:301::-;26251:10;24484:16;:14;:16::i;:::-;24461:20;:39;24528:26;:24;:26::i;:::-;24511:14;:43;-1:-1:-1;;;;;24569:21:0;;;24565:157;;24626:15;24633:7;24626:6;:15::i;:::-;-1:-1:-1;;;;;24607:16:0;;;;;;:7;:16;;;;;;;;:34;;;;24690:20;;24656:22;:31;;;;;;:54;24565:157;26574:12;;26555:15;:31;26551:316;;26616:27;26639:3;26616:18;26631:2;26616:10;;:14;;:18;;;;:::i;:27::-;26603:10;:40;;;26659:9;;;:40;;;-1:-1:-1;;;26659:40:0;;26682:4;26659:40;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26659:9:0;;;;:14;;:40;;;;;:9;;:40;;;;;;;;:9;;:40;;;5:2:-1;;;;30:1;27;20:12;5:2;26659:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;26729:10:0;;:24;;-1:-1:-1;26729:10:0;-1:-1:-1;23146:6:0;26729:24;:14;:24;:::i;:::-;26716:10;:37;26783:29;:15;23146:6;26783:29;:19;:29;:::i;:::-;26768:12;:44;26844:10;;26832:23;;;;;;;;;;;;;;;;26551:316;26285:14;26302:18;26309:10;26302:6;:18::i;:::-;26285:35;-1:-1:-1;26335:10:0;;26331:173;;26370:10;26384:1;26362:19;;;:7;:19;;;;;:23;26400:9;;:42;;-1:-1:-1;;;;;26400:9:0;;;;26435:6;26400:22;:42::i;:::-;26462:30;;;;;;;;26473:10;;26462:30;;;;;;;;;;26331:173;26877:1;26210:301;:::o;24051:206::-;24133:14;;-1:-1:-1;;;;;24133:14:0;24119:10;:28;24111:49;;;;;-1:-1:-1;;;24111:49:0;;;;;;;;;;;;-1:-1:-1;;;24111:49:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;24179:21:0;;24171:43;;;;;-1:-1:-1;;;24171:43:0;;;;;;;;;;;;-1:-1:-1;;;24171:43:0;;;;;;;;;;;;;;;24225:14;:24;;-1:-1:-1;;;;;;24225:24:0;-1:-1:-1;;;;;24225:24:0;;;;;;;;;;24051:206::o;23775:29::-;;;-1:-1:-1;;;;;23775:29:0;;:::o;24263:140::-;24330:14;;-1:-1:-1;;;;;24330:14:0;24316:10;:28;24308:49;;;;;-1:-1:-1;;;24308:49:0;;;;;;;;;;;;-1:-1:-1;;;24308:49:0;;;;;;;;;;;;;;;24368:14;:27;;-1:-1:-1;;;;;;24368:27:0;;;24263:140::o;22207:110::-;-1:-1:-1;;;;;22291:18:0;22264:7;22291:18;;;:9;:18;;;;;;;22207:110::o;11091:140::-;10492:9;:7;:9::i;:::-;10484:54;;;;;-1:-1:-1;;;10484:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11174:6;;11153:40;;11190:1;;-1:-1:-1;;;;;11174:6:0;;11153:40;;11190:1;;11153:40;11204:6;:19;;-1:-1:-1;;;;;;11204:19:0;;;11091:140::o;23326:29::-;;;;:::o;24749:131::-;24806:7;24833:39;24842:15;24859:12;;24833:8;:39::i;:::-;24826:46;;24749:131;:::o;23440:57::-;;;;;;;;;;;;;:::o;23208:37::-;;;;:::o;10280:79::-;10345:6;;-1:-1:-1;;;;;10345:6:0;10280:79;:::o;10646:94::-;10726:6;;10686:4;;-1:-1:-1;;;;;10726:6:0;10710:12;:10;:12::i;:::-;-1:-1:-1;;;;;10710:22:0;;10703:29;;10646:94;:::o;23161:40::-;;;;:::o;25672:214::-;25723:10;24484:16;:14;:16::i;:::-;24461:20;:39;24528:26;:24;:26::i;:::-;24511:14;:43;-1:-1:-1;;;;;24569:21:0;;;24565:157;;24626:15;24633:7;24626:6;:15::i;:::-;-1:-1:-1;;;;;24607:16:0;;;;;;:7;:16;;;;;;;;:34;;;;24690:20;;24656:22;:31;;;;;;:54;24565:157;26574:12;;26555:15;:31;26551:316;;26616:27;26639:3;26616:18;26631:2;26616:10;;:14;;:18;;;;:::i;:27::-;26603:10;:40;;;26659:9;;;:40;;;-1:-1:-1;;;26659:40:0;;26682:4;26659:40;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26659:9:0;;;;:14;;:40;;;;;:9;;:40;;;;;;;;:9;;:40;;;5:2:-1;;;;30:1;27;20:12;5:2;26659:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;26729:10:0;;:24;;-1:-1:-1;26729:10:0;-1:-1:-1;23146:6:0;26729:24;:14;:24;:::i;:::-;26716:10;:37;26783:29;:15;23146:6;26783:29;:19;:29;:::i;:::-;26768:12;:44;26844:10;;26832:23;;;;;;;;;;;;;;;;26551:316;26950:9;;26932:15;:27;26924:48;;;;;-1:-1:-1;;;26924:48:0;;;;;;;;;;;;-1:-1:-1;;;26924:48:0;;;;;;;;;;;;;;;25786:1;25777:6;:10;25769:37;;;;;-1:-1:-1;;;25769:37:0;;;;;;;;;;;;-1:-1:-1;;;25769:37:0;;;;;;;;;;;;;;;25817:19;25829:6;25817:11;:19::i;:::-;25852:26;;;;;;;;25859:10;;25852:26;;;;;;;;;;25672:214;;:::o;23848:34::-;;;;:::o;23005:76::-;;;-1:-1:-1;;;;;23005:76:0;;:::o;21917:75::-;;;-1:-1:-1;;;;;21917:75:0;;:::o;23362:29::-;;;;:::o;24888:420::-;24935:7;24959:13;:11;:13::i;:::-;24955:78;;-1:-1:-1;25001:20:0;;24994:27;;24955:78;25063:237;25106:179;25271:13;:11;:13::i;:::-;25106:138;25239:4;25106:106;25201:10;;25106:68;25159:14;;25106:26;:24;:26::i;:179::-;25063:20;;;:237;:24;:237;:::i;27777:608::-;27862:14;;-1:-1:-1;;;;;27862:14:0;27848:10;:28;27840:49;;;;;-1:-1:-1;;;27840:49:0;;;;;;;;;;;;-1:-1:-1;;;27840:49:0;;;;;;;;;;;;;;;27910:19;27932:30;27952:9;;27932:15;:19;;:30;;;;:::i;:::-;27910:52;;27987:37;27996:11;23930:8;27987;:37::i;:::-;27973:51;;28045:26;28074:48;23930:8;28074:28;28090:11;28074;;:15;;:28;;;;:::i;:48::-;28045:77;;28146:26;28175:24;28195:3;28175:15;;:19;;:24;;;;:::i;:::-;28146:53;;28242:18;28220;:40;;28212:60;;;;;-1:-1:-1;;;28212:60:0;;;;;;;;;;;;-1:-1:-1;;;28212:60:0;;;;;;;;;;;;;;;28285:15;:36;;;28357:14;;28334:9;;:43;;-1:-1:-1;;;;;28334:9:0;;;;28357:14;28373:3;28334:43;:22;:43;:::i;:::-;27777:608;;;;:::o;23398:35::-;;;;:::o;26105:97::-;26141:31;26150:21;26160:10;26150:9;:21::i;:::-;26141:8;:31::i;:::-;26183:11;:9;:11::i;:::-;26105:97::o;23288:31::-;;;;:::o;11386:109::-;10492:9;:7;:9::i;:::-;10484:54;;;;;-1:-1:-1;;;10484:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11459:28;11478:8;11459:18;:28::i;:::-;11386:109;:::o;4030:136::-;4088:7;4115:43;4119:1;4122;4115:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4108:50;4030:136;-1:-1:-1;;;4030:136:0:o;4946:471::-;5004:7;5249:6;5245:47;;-1:-1:-1;5279:1:0;5272:8;;5245:47;5316:5;;;5320:1;5316;:5;:1;5340:5;;;;;:10;5332:56;;;;-1:-1:-1;;;5332:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5885:132;5943:7;5970:39;5974:1;5977;5970:39;;;;;;;;;;;;;;;;;:3;:39::i;3574:181::-;3632:7;3664:5;;;3688:6;;;;3680:46;;;;;-1:-1:-1;;;3680:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;22722:219;22789:12;;:24;;22806:6;22789:24;:16;:24;:::i;:::-;22774:12;:39;22858:10;22848:21;;;;:9;:21;;;;;;:33;;22874:6;22848:33;:25;:33;:::i;:::-;22834:10;22824:21;;;;:9;:21;;;;;:57;;;;22892:8;;:41;;-1:-1:-1;;;;;22892:8:0;;;;22926:6;18560:176;18669:58;;;-1:-1:-1;;;;;18669:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;18669:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;18643:85:0;;18662:5;;18643:18;:85::i;:::-;18560:176;;;:::o;2236:106::-;2294:7;2325:1;2321;:5;:13;;2333:1;2321:13;;;-1:-1:-1;2329:1:0;;2236:106;-1:-1:-1;2236:106:0:o;9029:98::-;9109:10;9029:98;:::o;22325:389::-;22391:10;22421:28;22391:10;22421:26;:28::i;:::-;22420:29;22412:58;;;;;-1:-1:-1;;;22412:58:0;;;;;;;;;;;;-1:-1:-1;;;22412:58:0;;;;;;;;;;;;;;;22489:9;-1:-1:-1;;;;;22489:19:0;;;22481:48;;;;;-1:-1:-1;;;22481:48:0;;;;;;;;;;;;-1:-1:-1;;;22481:48:0;;;;;;;;;;;;;;;22555:12;;:24;;22572:6;22555:24;:16;:24;:::i;:::-;22540:12;:39;-1:-1:-1;;;;;22610:17:0;;;;;;:9;:17;;;;;;:29;;22632:6;22610:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;22590:17:0;;;;;;;:9;:17;;;;;:49;;;;22650:8;;:56;;:8;22600:6;22692:4;22699:6;22650:56;:25;:56;:::i;11601:229::-;-1:-1:-1;;;;;11675:22:0;;11667:73;;;;-1:-1:-1;;;11667:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11777:6;;11756:38;;-1:-1:-1;;;;;11756:38:0;;;;11777:6;;11756:38;;11777:6;;11756:38;11805:6;:17;;-1:-1:-1;;;;;;11805:17:0;-1:-1:-1;;;;;11805:17:0;;;;;;;;;;11601:229::o;4503:192::-;4589:7;4625:12;4617:6;;;;4609:29;;;;-1:-1:-1;;;4609:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;4609:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4661:5:0;;;4503:192::o;6547:345::-;6633:7;6735:12;6728:5;6720:28;;;;-1:-1:-1;;;6720:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;6720:28:0;;6759:9;6775:1;6771;:5;;;;;;;6547:345;-1:-1:-1;;;;;6547:345:0:o;20599:1114::-;21203:27;21211:5;-1:-1:-1;;;;;21203:25:0;;:27::i;:::-;21195:71;;;;;-1:-1:-1;;;21195:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21340:12;21354:23;21389:5;-1:-1:-1;;;;;21381:19:0;21401:4;21381:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;21381:25:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;21339:67:0;;;;21425:7;21417:52;;;;;-1:-1:-1;;;21417:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21486:17;;:21;21482:224;;21628:10;21617:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21617:30:0;21609:85;;;;-1:-1:-1;;;21609:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15404:810;15464:4;16123:20;;15966:66;16163:15;;;;;:42;;;16194:11;16182:8;:23;;16163:42;16155:51;15404:810;-1:-1:-1;;;;15404:810:0:o;18744:204::-;18871:68;;;-1:-1:-1;;;;;18871:68:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;18871:68:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;18845:95:0;;18864:5;;18845:18;:95::i
Swarm Source
bzzr://0877094ff04f02743c0e37fa372e041563023e7c1fb9d6ff4ac2d604bc679646
Loading...
Loading
Loading...
Loading
OVERVIEW
Kitten.Finance Pool #3 (Uniswap KIF-ETH)Net Worth in USD
$332.69
Net Worth in ETH
0.173955
Token Allocations
KIF
100.00%
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $6.05 | 54.9906 | $332.69 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.