Source Code
Latest 25 from a total of 706 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Emergency Withdr... | 151027531 | 806 days ago | IN | 0 ETH | 0.00007612 | ||||
| Deposit | 151027014 | 806 days ago | IN | 0 ETH | 0.00009174 | ||||
| Withdraw | 128029217 | 879 days ago | IN | 0 ETH | 0.00004093 | ||||
| Deposit | 126152307 | 885 days ago | IN | 0 ETH | 0.00010522 | ||||
| Withdraw | 102861737 | 956 days ago | IN | 0 ETH | 0.00005094 | ||||
| Withdraw | 102861708 | 956 days ago | IN | 0 ETH | 0.00005122 | ||||
| Withdraw | 102861683 | 956 days ago | IN | 0 ETH | 0.00005094 | ||||
| Withdraw | 102861647 | 956 days ago | IN | 0 ETH | 0.0000537 | ||||
| Withdraw | 102861613 | 956 days ago | IN | 0 ETH | 0.0000537 | ||||
| Withdraw | 102861583 | 956 days ago | IN | 0 ETH | 0.0000537 | ||||
| Withdraw | 102861556 | 956 days ago | IN | 0 ETH | 0.0000537 | ||||
| Withdraw | 102861527 | 956 days ago | IN | 0 ETH | 0.00005342 | ||||
| Withdraw | 102861503 | 956 days ago | IN | 0 ETH | 0.0000537 | ||||
| Withdraw | 102861472 | 956 days ago | IN | 0 ETH | 0.0000537 | ||||
| Withdraw | 102861446 | 956 days ago | IN | 0 ETH | 0.00005342 | ||||
| Withdraw | 102861409 | 956 days ago | IN | 0 ETH | 0.0000537 | ||||
| Withdraw | 102861352 | 956 days ago | IN | 0 ETH | 0.0000537 | ||||
| Withdraw | 102861322 | 956 days ago | IN | 0 ETH | 0.00005342 | ||||
| Withdraw | 102861282 | 956 days ago | IN | 0 ETH | 0.00005342 | ||||
| Withdraw | 102861247 | 956 days ago | IN | 0 ETH | 0.00005342 | ||||
| Withdraw | 102861208 | 956 days ago | IN | 0 ETH | 0.00005342 | ||||
| Withdraw | 102861184 | 956 days ago | IN | 0 ETH | 0.0000537 | ||||
| Withdraw | 102861156 | 956 days ago | IN | 0 ETH | 0.00005513 | ||||
| Withdraw | 96657435 | 974 days ago | IN | 0 ETH | 0.00006307 | ||||
| Withdraw | 96657402 | 974 days ago | IN | 0 ETH | 0.00006335 |
Latest 25 internal transactions (View All)
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 72038624 | 1047 days ago | 0 ETH | ||||
| 72038624 | 1047 days ago | 0 ETH | ||||
| 72038624 | 1047 days ago | 0 ETH | ||||
| 72038624 | 1047 days ago | 0 ETH | ||||
| 72038624 | 1047 days ago | 0 ETH | ||||
| 72038109 | 1047 days ago | 0 ETH | ||||
| 72038109 | 1047 days ago | 0 ETH | ||||
| 72038109 | 1047 days ago | 0 ETH | ||||
| 72038109 | 1047 days ago | 0 ETH | ||||
| 72038109 | 1047 days ago | 0 ETH | ||||
| 72037490 | 1047 days ago | 0 ETH | ||||
| 72037490 | 1047 days ago | 0 ETH | ||||
| 72037490 | 1047 days ago | 0 ETH | ||||
| 72037490 | 1047 days ago | 0 ETH | ||||
| 72037490 | 1047 days ago | 0 ETH | ||||
| 72037490 | 1047 days ago | 0 ETH | ||||
| 72037490 | 1047 days ago | 0 ETH | ||||
| 72037490 | 1047 days ago | 0 ETH | ||||
| 72037490 | 1047 days ago | 0 ETH | ||||
| 72037490 | 1047 days ago | 0 ETH | ||||
| 72037242 | 1047 days ago | 0 ETH | ||||
| 72037242 | 1047 days ago | 0 ETH | ||||
| 72037242 | 1047 days ago | 0 ETH | ||||
| 72037242 | 1047 days ago | 0 ETH | ||||
| 72037242 | 1047 days ago | 0 ETH |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MasterChef
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;
import "./SafeMath.sol";
import "./IBEP20.sol";
import "./SafeBEP20.sol";
import "./Ownable.sol";
import "./ReentrancyGuard.sol";
import "./YAFI.sol";
contract MasterChef is Ownable, ReentrancyGuard {
using SafeMath for uint256;
using SafeBEP20 for IBEP20;
struct UserInfo {
uint256 amount;
uint256 rewardDebt;
}
struct PoolInfo {
IBEP20 lpToken;
uint256 allocPoint;
uint256 lastRewardTimestamp;
uint256 accyafiPerShare;
uint16 depositFeeBP;
uint256 lpSupply;
}
YAFI public yafi;
uint256 public yafiPerSecond;
address public feeAddress1;
address public feeAddress2;
PoolInfo[] public poolInfo;
mapping(uint256 => mapping(address => UserInfo)) public userInfo;
uint256 public totalAllocPoint = 0;
uint256 public startTimestamp = 1678914000;
uint256 public maxSupply = 600000000000000000000000;
event Deposit(address indexed user, uint256 indexed pid, uint256 amount);
event Withdraw(address indexed user, uint256 indexed pid, uint256 amount);
event EmergencyWithdraw(address indexed user, uint256 indexed pid, uint256 amount);
event SetFeeAddress1(address indexed user, address indexed newAddress);
event SetFeeAddress2(address indexed user, address indexed newAddress);
event UpdateEmissionRate(address indexed user, uint256 yafiPerSecond);
event addPool(uint256 indexed pid, address lpToken, uint256 allocPoint, uint256 depositFeeBP);
event setPool(uint256 indexed pid, address lpToken, uint256 allocPoint, uint256 depositFeeBP);
event UpdateMaxSupply(uint256 newMaxSupply);
constructor(
YAFI _yafi,
address _feeAddress1,
address _feeAddress2,
uint256 _yafiPerSecond
) public {
yafi = _yafi;
feeAddress1 = _feeAddress1;
feeAddress2 = _feeAddress2;
yafiPerSecond = _yafiPerSecond;
}
function poolLength() external view returns (uint256) {
return poolInfo.length;
}
mapping(IBEP20 => bool) public poolExistence;
modifier nonDuplicated(IBEP20 _lpToken) {
require(poolExistence[_lpToken] == false, "nonDuplicated: duplicated");
_;
}
function add(uint256 _allocPoint, IBEP20 _lpToken, uint16 _depositFeeBP, bool _withUpdate) public onlyOwner nonDuplicated(_lpToken) {
_lpToken.balanceOf(address(this));
require(_depositFeeBP <= 250, "add: invalid deposit fee basis points");
if (_withUpdate) {
massUpdatePools();
}
uint256 lastRewardTimestamp = block.timestamp > startTimestamp ? block.timestamp : startTimestamp;
totalAllocPoint = totalAllocPoint.add(_allocPoint);
poolExistence[_lpToken] = true;
poolInfo.push(PoolInfo({
lpToken : _lpToken,
allocPoint : _allocPoint,
lastRewardTimestamp: lastRewardTimestamp,
accyafiPerShare : 0,
depositFeeBP : _depositFeeBP,
lpSupply: 0
}));
emit addPool(poolInfo.length - 1, address(_lpToken), _allocPoint, _depositFeeBP);
}
function set(uint256 _pid, uint256 _allocPoint, uint16 _depositFeeBP, bool _withUpdate) external onlyOwner {
require(_depositFeeBP <= 250, "set: invalid deposit fee basis points");
if (_withUpdate) {
massUpdatePools();
}
totalAllocPoint = totalAllocPoint.sub(poolInfo[_pid].allocPoint).add(_allocPoint);
poolInfo[_pid].allocPoint = _allocPoint;
poolInfo[_pid].depositFeeBP = _depositFeeBP;
emit setPool(_pid, address(poolInfo[_pid].lpToken), _allocPoint, _depositFeeBP);
}
function getMultiplier(uint256 _from, uint256 _to) public view returns (uint256) {
if (yafi.totalSupply() >= maxSupply) {
return 0;
}
return _to.sub(_from);
}
function pendingyafi(uint256 _pid, address _user) external view returns (uint256) {
PoolInfo storage pool = poolInfo[_pid];
UserInfo storage user = userInfo[_pid][_user];
uint256 accyafiPerShare = pool.accyafiPerShare;
if (block.timestamp > pool.lastRewardTimestamp && pool.lpSupply != 0 && totalAllocPoint > 0) {
uint256 multiplier = getMultiplier(pool.lastRewardTimestamp, block.timestamp);
uint256 yafiReward = multiplier.mul(yafiPerSecond).mul(pool.allocPoint).div(totalAllocPoint);
accyafiPerShare = accyafiPerShare.add(yafiReward.mul(1e12).div(pool.lpSupply));
}
return user.amount.mul(accyafiPerShare).div(1e12).sub(user.rewardDebt);
}
function massUpdatePools() public {
uint256 length = poolInfo.length;
for (uint256 pid = 0; pid < length; ++pid) {
updatePool(pid);
}
}
function updatePool(uint256 _pid) public {
PoolInfo storage pool = poolInfo[_pid];
if (block.timestamp <= pool.lastRewardTimestamp) {
return;
}
if (pool.lpSupply == 0 || pool.allocPoint == 0) {
pool.lastRewardTimestamp = block.timestamp;
return;
}
uint256 multiplier = getMultiplier(pool.lastRewardTimestamp, block.timestamp);
uint256 yafiReward = multiplier.mul(yafiPerSecond).mul(pool.allocPoint).div(totalAllocPoint);
if (yafi.totalSupply().add(yafiReward) > maxSupply) {
yafiReward = maxSupply.sub(yafi.totalSupply());
}
yafi.mint(address(this), yafiReward);
pool.accyafiPerShare = pool.accyafiPerShare.add(yafiReward.mul(1e12).div(pool.lpSupply));
pool.lastRewardTimestamp = block.timestamp;
}
function deposit(uint256 _pid, uint256 _amount) external nonReentrant {
PoolInfo storage pool = poolInfo[_pid];
UserInfo storage user = userInfo[_pid][msg.sender];
updatePool(_pid);
if (user.amount > 0) {
uint256 pending = user.amount.mul(pool.accyafiPerShare).div(1e12).sub(user.rewardDebt);
if (pending > 0) {
safeYAFITransfer(msg.sender, pending);
}
}
if (_amount > 0) {
uint256 balanceBefore = pool.lpToken.balanceOf(address(this));
pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount);
_amount = pool.lpToken.balanceOf(address(this)) - balanceBefore;
if (pool.depositFeeBP > 0) {
uint256 depositFee = _amount.mul(pool.depositFeeBP).div(10000);
pool.lpToken.safeTransfer(feeAddress1, depositFee.div(2));
pool.lpToken.safeTransfer(feeAddress2, depositFee.div(2));
user.amount = user.amount.add(_amount).sub(depositFee);
pool.lpSupply = pool.lpSupply.add(_amount).sub(depositFee);
} else {
user.amount = user.amount.add(_amount);
pool.lpSupply = pool.lpSupply.add(_amount);
}
}
user.rewardDebt = user.amount.mul(pool.accyafiPerShare).div(1e12);
emit Deposit(msg.sender, _pid, _amount);
}
function withdraw(uint256 _pid, uint256 _amount) external nonReentrant {
PoolInfo storage pool = poolInfo[_pid];
UserInfo storage user = userInfo[_pid][msg.sender];
require(user.amount >= _amount, "withdraw: not good");
updatePool(_pid);
uint256 pending = user.amount.mul(pool.accyafiPerShare).div(1e12).sub(user.rewardDebt);
if (pending > 0) {
safeYAFITransfer(msg.sender, pending);
}
if (_amount > 0) {
user.amount = user.amount.sub(_amount);
pool.lpToken.safeTransfer(address(msg.sender), _amount);
pool.lpSupply = pool.lpSupply.sub(_amount);
}
user.rewardDebt = user.amount.mul(pool.accyafiPerShare).div(1e12);
emit Withdraw(msg.sender, _pid, _amount);
}
function emergencyWithdraw(uint256 _pid) external nonReentrant {
PoolInfo storage pool = poolInfo[_pid];
UserInfo storage user = userInfo[_pid][msg.sender];
uint256 amount = user.amount;
user.amount = 0;
user.rewardDebt = 0;
pool.lpToken.safeTransfer(address(msg.sender), amount);
if (pool.lpSupply >= amount) {
pool.lpSupply = pool.lpSupply.sub(amount);
} else {
pool.lpSupply = 0;
}
emit EmergencyWithdraw(msg.sender, _pid, amount);
}
function safeYAFITransfer(address _to, uint256 _amount) internal {
uint256 yafiBal = yafi.balanceOf(address(this));
bool transferSuccess = false;
if (_amount > yafiBal) {
transferSuccess = yafi.transfer(_to, yafiBal);
} else {
transferSuccess = yafi.transfer(_to, _amount);
}
require(transferSuccess, "safeYAFITransfer: transfer failed");
}
function setupFarm() external onlyOwner {
require(poolInfo.length == 0, "setupFarm already called!");
add(3000, IBEP20(0xfB55940F86d42D9B43e547ec4D632019a906cFAe), 0, false); // YAFI-USDT
add(3000, IBEP20(0x73cF275d7A74447ae9aAa5967fa83cf3a003d86C), 0, false); // YAFI-WETH
add(2000, yafi, 0, false); // YAFI
add(100, IBEP20(0x84652bb2539513BAf36e225c930Fdd8eaa63CE27), 250, false); // USDC-WETH
add(100, IBEP20(0x5201f6482EEA49c90FE609eD9d8F69328bAc8ddA), 250, false); // wstETH-WETH
add(100, IBEP20(0x87425D8812f44726091831a9A109f4bDc3eA34b4), 250, false); // USDC-GRAIL
add(100, IBEP20(0x01efEd58B534d7a7464359A6F8d14D986125816B), 250, false); // USDC-DAI
add(100, IBEP20(0x913398d79438e8D709211cFC3DC8566F6C67e1A8), 250, false); // USDC-GMX
add(100, IBEP20(0x1C31fB3359357f6436565cCb3E982Bc6Bf4189ae), 250, false); // USDC-USDT
add(100, IBEP20(0x4c0A68dd92449Fc06c1A651E9eb1dFfB61D64e18), 250, false); // WETH-VELA
add(100, IBEP20(0x3FEe6E8FBDE48B727f82C55639ed2dD0cd9BA642), 250, false); // WETH-LUSD
add(100, IBEP20(0x96059759C6492fb4e8a9777b65f307F2C811a34F), 250, false); // WETH-WBTC
add(100, IBEP20(0x82aF49447D8a07e3bd95BD0d56f35241523fBab1), 250, false); // WETH
add(100, IBEP20(0x3d9907F9a368ad0a51Be60f7Da3b97cf940982D8), 250, false); // GRAIL
add(100, IBEP20(0x5979D7b546E38E414F7E9822514be443A4800529), 250, false); // wstWETH
add(100, IBEP20(0xfc5A1A6EB076a2C7aD06eD22C90d7E710E35ad0a), 250, false); // GMX
add(100, IBEP20(0x088cd8f5eF3652623c22D48b1605DCfE860Cd704), 250, false); // VELA
add(100, IBEP20(0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1), 250, false); // DAI
add(100, IBEP20(0x93b346b6BC2548dA6A1E7d98E9a421B42541425b), 250, false); // LUSD
add(100, IBEP20(0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9), 250, false); // USDT
add(100, IBEP20(0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f), 250, false); // WBTC
add(100, IBEP20(0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8), 250, false); // USDC
}
function setFeeAddress1(address _feeAddress1) external {
require(msg.sender == feeAddress1, "setFeeAddress1: FORBIDDEN");
require(_feeAddress1 != address(0), "!nonzero");
feeAddress1 = _feeAddress1;
emit SetFeeAddress1(msg.sender, _feeAddress1);
}
function setFeeAddress2(address _feeAddress2) external {
require(msg.sender == feeAddress2, "setFeeAddress2: FORBIDDEN");
require(_feeAddress2 != address(0), "!nonzero");
feeAddress2 = _feeAddress2;
emit SetFeeAddress2(msg.sender, _feeAddress2);
}
function updateEmissionRate(uint256 _yafiPerSecond) external onlyOwner {
require(_yafiPerSecond <= 1000000000000000000, "too high!");
massUpdatePools();
yafiPerSecond = _yafiPerSecond;
emit UpdateEmissionRate(msg.sender, _yafiPerSecond);
}
function updateMaxSupply(uint256 _newMaxSupply) external onlyOwner {
require(yafi.totalSupply() < maxSupply, "cannot change max supply if max supply has already been reached");
maxSupply = _newMaxSupply;
emit UpdateMaxSupply(maxSupply);
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// solhint-disable-next-line no-inline-assembly
assembly { size := extcodesize(account) }
return size > 0;
}
/**
* @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].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call{ value: amount }("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain`call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: value }(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.delegatecall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.4.0;
import './Ownable.sol';
import './Context.sol';
import './IBEP20.sol';
import './SafeMath.sol';
/**
* @dev Implementation of the {IBEP20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {BEP20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-BEP20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of BEP20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IBEP20-approve}.
*/
contract BEP20 is Context, IBEP20, Ownable {
using SafeMath for uint256;
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for {name} and {symbol}, initializes {decimals} with
* a default value of 18.
*
* To select a different value for {decimals}, use {_setupDecimals}.
*
* All three of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name, string memory symbol) public {
_name = name;
_symbol = symbol;
_decimals = 18;
}
/**
* @dev Returns the bep token owner.
*/
function getOwner() external override view returns (address) {
return owner();
}
/**
* @dev Returns the name of the token.
*/
function name() public override view returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public override view returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
*/
function decimals() public override view returns (uint8) {
return _decimals;
}
/**
* @dev See {BEP20-totalSupply}.
*/
function totalSupply() public override view returns (uint256) {
return _totalSupply;
}
/**
* @dev See {BEP20-balanceOf}.
*/
function balanceOf(address account) public override view returns (uint256) {
return _balances[account];
}
/**
* @dev See {BEP20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {BEP20-allowance}.
*/
function allowance(address owner, address spender) public override view returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {BEP20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {BEP20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {BEP20};
*
* Requirements:
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for `sender`'s tokens of at least
* `amount`.
*/
function transferFrom (address sender, address recipient, uint256 amount) public override returns (bool) {
_transfer(sender, recipient, amount);
_approve(
sender,
_msgSender(),
_allowances[sender][_msgSender()].sub(amount, 'BEP20: transfer amount exceeds allowance')
);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {BEP20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {BEP20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, 'BEP20: decreased allowance below zero'));
return true;
}
/**
* @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing
* the total supply.
*
* Requirements
*
* - `msg.sender` must be the token owner
*/
function mint(uint256 amount) public onlyOwner returns (bool) {
_mint(_msgSender(), amount);
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer (address sender, address recipient, uint256 amount) internal virtual {
require(sender != address(0), 'BEP20: transfer from the zero address');
require(recipient != address(0), 'BEP20: transfer to the zero address');
_balances[sender] = _balances[sender].sub(amount, 'BEP20: transfer amount exceeds balance');
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal {
require(account != address(0), 'BEP20: mint to the zero address');
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal {
require(account != address(0), 'BEP20: burn from the zero address');
_balances[account] = _balances[account].sub(amount, 'BEP20: burn amount exceeds balance');
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
*
* This is internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve (address owner, address spender, uint256 amount) internal {
require(owner != address(0), 'BEP20: approve from the zero address');
require(spender != address(0), 'BEP20: approve to the zero address');
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Destroys `amount` tokens from `account`.`amount` is then deducted
* from the caller's allowance.
*
* See {_burn} and {_approve}.
*/
function _burnFrom(address account, uint256 amount) internal {
_burn(account, amount);
_approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, 'BEP20: burn amount exceeds allowance'));
}
}
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.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.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.4;
interface IBEP20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the token decimals.
*/
function decimals() external view returns (uint8);
/**
* @dev Returns the token symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the token name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the bep token owner.
*/
function getOwner() external view returns (address);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address _owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "./Context.sol";
/**
* @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.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* 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.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () internal {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the 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 virtual 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 virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor () internal {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and make it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "./IBEP20.sol";
import "./SafeMath.sol";
import "./Address.sol";
/**
* @title SafeBEP20
* @dev Wrappers around BEP20 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 SafeBEP20 for IBEP20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeBEP20 {
using SafeMath for uint256;
using Address for address;
function safeTransfer(IBEP20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(IBEP20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IBEP20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(IBEP20 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),
"SafeBEP20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(IBEP20 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(IBEP20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeBEP20: 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(IBEP20 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. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeBEP20: low-level call failed");
if (returndata.length > 0) { // Return data is optional
// solhint-disable-next-line max-line-length
require(abi.decode(returndata, (bool)), "SafeBEP20: BEP20 operation did not succeed");
}
}
}
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.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, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b > a) return (false, 0);
return (true, a - b);
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b == 0) return (false, 0);
return (true, a / b);
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b == 0) return (false, 0);
return (true, a % b);
}
/**
* @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) {
require(b <= a, "SafeMath: subtraction overflow");
return a - b;
}
/**
* @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) {
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, reverting 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) {
require(b > 0, "SafeMath: division by zero");
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting 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) {
require(b > 0, "SafeMath: modulo by zero");
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
return a - b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryDiv}.
*
* 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, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* 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, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
return a % b;
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;
import "./BEP20.sol";
contract YAFI is BEP20('Yakuza Finance', 'YAFI') {
/// @notice Creates `_amount` token to `_to`. Must only be called by the owner (MasterChef).
function mint(address _to, uint256 _amount) public onlyOwner {
_mint(_to, _amount);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract YAFI","name":"_yafi","type":"address"},{"internalType":"address","name":"_feeAddress1","type":"address"},{"internalType":"address","name":"_feeAddress2","type":"address"},{"internalType":"uint256","name":"_yafiPerSecond","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"SetFeeAddress1","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"SetFeeAddress2","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"yafiPerSecond","type":"uint256"}],"name":"UpdateEmissionRate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"UpdateMaxSupply","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"address","name":"lpToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"allocPoint","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"depositFeeBP","type":"uint256"}],"name":"addPool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"address","name":"lpToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"allocPoint","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"depositFeeBP","type":"uint256"}],"name":"setPool","type":"event"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IBEP20","name":"_lpToken","type":"address"},{"internalType":"uint16","name":"_depositFeeBP","type":"uint16"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeAddress1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeAddress2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"getMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingyafi","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IBEP20","name":"","type":"address"}],"name":"poolExistence","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract IBEP20","name":"lpToken","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardTimestamp","type":"uint256"},{"internalType":"uint256","name":"accyafiPerShare","type":"uint256"},{"internalType":"uint16","name":"depositFeeBP","type":"uint16"},{"internalType":"uint256","name":"lpSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"uint16","name":"_depositFeeBP","type":"uint16"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeAddress1","type":"address"}],"name":"setFeeAddress1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeAddress2","type":"address"}],"name":"setFeeAddress2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupFarm","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_yafiPerSecond","type":"uint256"}],"name":"updateEmissionRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"updateMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"yafi","outputs":[{"internalType":"contract YAFI","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"yafiPerSecond","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]Contract Creation Code
6080604052600060085563641231d0600955697f0e10af47c1c7000000600a553480156200002c57600080fd5b5060405162003dc238038062003dc2833981810160405260808110156200005257600080fd5b81019080805190602001909291908051906020019092919080519060200190929190805190602001909291905050506000620000936200020c60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506001808190555083600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806003819055505050505062000214565b600033905090565b613b9e80620002246000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806386f754f4116100f9578063d963842211610097578063e8033c4711610071578063e8033c4714610701578063eb78f95e14610745578063f103b43314610779578063f2fde38b146107a7576101c4565b8063d963842214610659578063e2bbb158146106ab578063e6fd48bc146106e3576101c4565b80638fb23f5e116100d35780638fb23f5e1461053457806393f1a40b14610578578063cbd258b5146105e1578063d5abeb011461063b576101c4565b806386f754f4146104805780638da5cb5b146104b45780638dbb1e3a146104e8576101c4565b8063441a3e70116101665780635312ea8e116101405780635312ea8e146103d6578063630b5ba114610404578063715018a61461040e57806384e82a3314610418576101c4565b8063441a3e7014610352578063457454e91461038a57806351eb05a6146103a8576101c4565b80631526fe27116101a25780631526fe271461027757806317caf6f1146102f65780631b3b8b79146103145780632176a66f14610348576101c4565b8063081e3eda146101c95780630a13f9a9146101e75780630ba84cd214610249575b600080fd5b6101d16107eb565b6040518082815260200191505060405180910390f35b610233600480360360408110156101fd57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506107f8565b6040518082815260200191505060405180910390f35b6102756004803603602081101561025f57600080fd5b8101908080359060200190929190505050610989565b005b6102a36004803603602081101561028d57600080fd5b8101908080359060200190929190505050610b16565b604051808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018361ffff168152602001828152602001965050505050505060405180910390f35b6102fe610b8d565b6040518082815260200191505060405180910390f35b61031c610b93565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610350610bb9565b005b6103886004803603604081101561036857600080fd5b810190808035906020019092919080359060200190929190505050610ff5565b005b6103926112fa565b6040518082815260200191505060405180910390f35b6103d4600480360360208110156103be57600080fd5b8101908080359060200190929190505050611300565b005b610402600480360360208110156103ec57600080fd5b810190808035906020019092919050505061162f565b005b61040c611825565b005b610416611852565b005b61047e6004803603608081101561042e57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803561ffff1690602001909291908035151590602001909291905050506119bf565b005b610488611e49565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104bc611e6f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61051e600480360360408110156104fe57600080fd5b810190808035906020019092919080359060200190929190505050611e98565b6040518082815260200191505060405180910390f35b6105766004803603602081101561054a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f6a565b005b6105c46004803603604081101561058e57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061216e565b604051808381526020018281526020019250505060405180910390f35b610623600480360360208110156105f757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061219f565b60405180821515815260200191505060405180910390f35b6106436121bf565b6040518082815260200191505060405180910390f35b6106a96004803603608081101561066f57600080fd5b810190808035906020019092919080359060200190929190803561ffff1690602001909291908035151590602001909291905050506121c5565b005b6106e1600480360360408110156106c157600080fd5b81019080803590602001909291908035906020019092919050505061242e565b005b6106eb612a2f565b6040518082815260200191505060405180910390f35b6107436004803603602081101561071757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a35565b005b61074d612c39565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107a56004803603602081101561078f57600080fd5b8101908080359060200190929190505050612c5f565b005b6107e9600480360360208110156107bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e4d565b005b6000600680549050905090565b6000806006848154811061080857fe5b9060005260206000209060060201905060006007600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008260030154905082600201544211801561088d57506000836005015414155b801561089b57506000600854115b1561093a5760006108b0846002015442611e98565b905060006108f36008546108e587600101546108d76003548761303f90919063ffffffff16565b61303f90919063ffffffff16565b6130c590919063ffffffff16565b9050610935610926866005015461091864e8d4a510008561303f90919063ffffffff16565b6130c590919063ffffffff16565b8461314e90919063ffffffff16565b925050505b61097e826001015461097064e8d4a5100061096285876000015461303f90919063ffffffff16565b6130c590919063ffffffff16565b6131d690919063ffffffff16565b935050505092915050565b610991613259565b73ffffffffffffffffffffffffffffffffffffffff166109af611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614610a38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b670de0b6b3a7640000811115610ab6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f746f6f206869676821000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b610abe611825565b806003819055503373ffffffffffffffffffffffffffffffffffffffff167fe2492e003bbe8afa53088b406f0c1cb5d9e280370fc72a74cf116ffd343c4053826040518082815260200191505060405180910390a250565b60068181548110610b2357fe5b90600052602060002090600602016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030154908060040160009054906101000a900461ffff16908060050154905086565b60085481565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610bc1613259565b73ffffffffffffffffffffffffffffffffffffffff16610bdf611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614610c68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600060068054905014610ce3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f73657475704661726d20616c72656164792063616c6c6564210000000000000081525060200191505060405180910390fd5b610d06610bb873fb55940f86d42d9b43e547ec4d632019a906cfae6000806119bf565b610d29610bb87373cf275d7a74447ae9aaa5967fa83cf3a003d86c6000806119bf565b610d5a6107d0600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806119bf565b610d7d60647384652bb2539513baf36e225c930fdd8eaa63ce2760fa60006119bf565b610da06064735201f6482eea49c90fe609ed9d8f69328bac8dda60fa60006119bf565b610dc360647387425d8812f44726091831a9a109f4bdc3ea34b460fa60006119bf565b610de660647301efed58b534d7a7464359a6f8d14d986125816b60fa60006119bf565b610e09606473913398d79438e8d709211cfc3dc8566f6c67e1a860fa60006119bf565b610e2c6064731c31fb3359357f6436565ccb3e982bc6bf4189ae60fa60006119bf565b610e4f6064734c0a68dd92449fc06c1a651e9eb1dffb61d64e1860fa60006119bf565b610e726064733fee6e8fbde48b727f82c55639ed2dd0cd9ba64260fa60006119bf565b610e9560647396059759c6492fb4e8a9777b65f307f2c811a34f60fa60006119bf565b610eb860647382af49447d8a07e3bd95bd0d56f35241523fbab160fa60006119bf565b610edb6064733d9907f9a368ad0a51be60f7da3b97cf940982d860fa60006119bf565b610efe6064735979d7b546e38e414f7e9822514be443a480052960fa60006119bf565b610f21606473fc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a60fa60006119bf565b610f44606473088cd8f5ef3652623c22d48b1605dcfe860cd70460fa60006119bf565b610f67606473da10009cbd5d07dd0cecc66161fc93d7c9000da160fa60006119bf565b610f8a60647393b346b6bc2548da6a1e7d98e9a421b42541425b60fa60006119bf565b610fad606473fd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb960fa60006119bf565b610fd06064732f2a2543b76a4166549f7aab2e75bef0aefc5b0f60fa60006119bf565b610ff3606473ff970a61a04b1ca14834a43f5de4533ebddb5cc860fa60006119bf565b565b6002600154141561106e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555060006006838154811061108557fe5b9060005260206000209060060201905060006007600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508281600001541015611163576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f77697468647261773a206e6f7420676f6f64000000000000000000000000000081525060200191505060405180910390fd5b61116c84611300565b60006111b682600101546111a864e8d4a5100061119a8760030154876000015461303f90919063ffffffff16565b6130c590919063ffffffff16565b6131d690919063ffffffff16565b905060008111156111cc576111cb3382613261565b5b6000841115611263576111ec8483600001546131d690919063ffffffff16565b826000018190555061124333858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166135359092919063ffffffff16565b61125a8484600501546131d690919063ffffffff16565b83600501819055505b61129564e8d4a510006112878560030154856000015461303f90919063ffffffff16565b6130c590919063ffffffff16565b8260010181905550843373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568866040518082815260200191505060405180910390a3505050600180819055505050565b60035481565b60006006828154811061130f57fe5b9060005260206000209060060201905080600201544211611330575061162c565b600081600501541480611347575060008160010154145b1561135b574281600201819055505061162c565b600061136b826002015442611e98565b905060006113ae6008546113a085600101546113926003548761303f90919063ffffffff16565b61303f90919063ffffffff16565b6130c590919063ffffffff16565b9050600a5461146882600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561141f57600080fd5b505afa158015611433573d6000803e3d6000fd5b505050506040513d602081101561144957600080fd5b810190808051906020019092919050505061314e90919063ffffffff16565b111561152857611525600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156114d957600080fd5b505afa1580156114ed573d6000803e3d6000fd5b505050506040513d602081101561150357600080fd5b8101908080519060200190929190505050600a546131d690919063ffffffff16565b90505b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1930836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b1580156115bb57600080fd5b505af11580156115cf573d6000803e3d6000fd5b5050505061161761160484600501546115f664e8d4a510008561303f90919063ffffffff16565b6130c590919063ffffffff16565b846003015461314e90919063ffffffff16565b83600301819055504283600201819055505050505b50565b600260015414156116a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026001819055506000600682815481106116bf57fe5b9060005260206000209060060201905060006007600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600081600001549050600082600001819055506000826001018190555061178f33828560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166135359092919063ffffffff16565b808360050154106117be576117b18184600501546131d690919063ffffffff16565b83600501819055506117c9565b600083600501819055505b833373ffffffffffffffffffffffffffffffffffffffff167fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae0595836040518082815260200191505060405180910390a35050506001808190555050565b6000600680549050905060005b8181101561184e5761184381611300565b806001019050611832565b5050565b61185a613259565b73ffffffffffffffffffffffffffffffffffffffff16611878611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6119c7613259565b73ffffffffffffffffffffffffffffffffffffffff166119e5611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614611a6e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8260001515600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611b35576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f6e6f6e4475706c6963617465643a206475706c6963617465640000000000000081525060200191505060405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611b9c57600080fd5b505afa158015611bb0573d6000803e3d6000fd5b505050506040513d6020811015611bc657600080fd5b81019080805190602001909291905050505060fa8361ffff161115611c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613a286025913960400191505060405180910390fd5b8115611c4557611c44611825565b5b60006009544211611c5857600954611c5a565b425b9050611c718660085461314e90919063ffffffff16565b6008819055506001600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060066040518060c001604052808773ffffffffffffffffffffffffffffffffffffffff168152602001888152602001838152602001600081526020018661ffff1681526020016000815250908060018154018082558091505060019003906000526020600020906006020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a81548161ffff021916908361ffff16021790555060a0820151816005015550506001600680549050037faa6642278d4bbef86d8990c37355d5d4dfe365c194106bdf7a65162268606f07868887604051808473ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018261ffff168152602001935050505060405180910390a2505050505050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600a54600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015611f0557600080fd5b505afa158015611f19573d6000803e3d6000fd5b505050506040513d6020811015611f2f57600080fd5b810190808051906020019092919050505010611f4e5760009050611f64565b611f6183836131d690919063ffffffff16565b90505b92915050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461202d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f73657446656541646472657373313a20464f5242494444454e0000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260088152602001807f216e6f6e7a65726f00000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f999c45fcf5692552720291fde1ed748e188fffc3fd0d230f3c0b22c0d7582f2c60405160405180910390a350565b6007602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b600b6020528060005260406000206000915054906101000a900460ff1681565b600a5481565b6121cd613259565b73ffffffffffffffffffffffffffffffffffffffff166121eb611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614612274576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60fa8261ffff1611156122d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613b446025913960400191505060405180910390fd5b80156122e1576122e0611825565b5b61232683612318600687815481106122f557fe5b9060005260206000209060060201600101546008546131d690919063ffffffff16565b61314e90919063ffffffff16565b600881905550826006858154811061233a57fe5b906000526020600020906006020160010181905550816006858154811061235d57fe5b906000526020600020906006020160040160006101000a81548161ffff021916908361ffff160217905550837f39f0c3d078af018954b4fa56832a05a2b511afaa999b133ea3f1c487c21ed287600686815481106123b757fe5b906000526020600020906006020160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168585604051808473ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018261ffff168152602001935050505060405180910390a250505050565b600260015414156124a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026001819055506000600683815481106124be57fe5b9060005260206000209060060201905060006007600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905061252b84611300565b60008160000154111561259a576000612582826001015461257464e8d4a510006125668760030154876000015461303f90919063ffffffff16565b6130c590919063ffffffff16565b6131d690919063ffffffff16565b90506000811115612598576125973382613261565b5b505b60008311156129995760008260000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561263057600080fd5b505afa158015612644573d6000803e3d6000fd5b505050506040513d602081101561265a57600080fd5b810190808051906020019092919050505090506126be3330868660000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166135d7909392919063ffffffff16565b808360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561274a57600080fd5b505afa15801561275e573d6000803e3d6000fd5b505050506040513d602081101561277457600080fd5b810190808051906020019092919050505003935060008360040160009054906101000a900461ffff1661ffff1611156129585760006127e66127106127d88660040160009054906101000a900461ffff1661ffff168861303f90919063ffffffff16565b6130c590919063ffffffff16565b905061286c600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166128226002846130c590919063ffffffff16565b8660000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166135359092919063ffffffff16565b6128f0600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166128a66002846130c590919063ffffffff16565b8660000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166135359092919063ffffffff16565b6129198161290b87866000015461314e90919063ffffffff16565b6131d690919063ffffffff16565b836000018190555061294a8161293c87876005015461314e90919063ffffffff16565b6131d690919063ffffffff16565b846005018190555050612997565b61296f84836000015461314e90919063ffffffff16565b826000018190555061298e84846005015461314e90919063ffffffff16565b83600501819055505b505b6129cb64e8d4a510006129bd8460030154846000015461303f90919063ffffffff16565b6130c590919063ffffffff16565b8160010181905550833373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15856040518082815260200191505060405180910390a35050600180819055505050565b60095481565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612af8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f73657446656541646472657373323a20464f5242494444454e0000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260088152602001807f216e6f6e7a65726f00000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f27170fbbc70bb19e7252d999e7a10fca57657d00ec01b026ae273970b2c84e9160405160405180910390a350565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612c67613259565b73ffffffffffffffffffffffffffffffffffffffff16612c85611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614612d0e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600a54600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015612d7957600080fd5b505afa158015612d8d573d6000803e3d6000fd5b505050506040513d6020811015612da357600080fd5b810190808051906020019092919050505010612e0a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603f815260200180613ae4603f913960400191505060405180910390fd5b80600a819055507fe493ec45ddd3a76acef0c00e0a4cc1e449100df6158b37ca497ed787681cbb5b600a546040518082815260200191505060405180910390a150565b612e55613259565b73ffffffffffffffffffffffffffffffffffffffff16612e73611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614612efc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613a776026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008083141561305257600090506130bf565b600082840290508284828161306357fe5b04146130ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613b236021913960400191505060405180910390fd5b809150505b92915050565b600080821161313c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b81838161314557fe5b04905092915050565b6000808284019050838110156131cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008282111561324e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b600033905090565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156132ec57600080fd5b505afa158015613300573d6000803e3d6000fd5b505050506040513d602081101561331657600080fd5b8101908080519060200190929190505050905060008183111561340857600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156133c657600080fd5b505af11580156133da573d6000803e3d6000fd5b505050506040513d60208110156133f057600080fd5b810190808051906020019092919050505090506134d9565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561349b57600080fd5b505af11580156134af573d6000803e3d6000fd5b505050506040513d60208110156134c557600080fd5b810190808051906020019092919050505090505b8061352f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613a9d6021913960400191505060405180910390fd5b50505050565b6135d28363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613698565b505050565b613692846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613698565b50505050565b60606136fa826040518060400160405280602081526020017f5361666542455032303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166137879092919063ffffffff16565b90506000815111156137825780806020019051602081101561371b57600080fd5b8101908080519060200190929190505050613781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613a4d602a913960400191505060405180910390fd5b5b505050565b6060613796848460008561379f565b90509392505050565b6060824710156137fa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613abe6026913960400191505060405180910390fd5b61380385613948565b613875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106138c557805182526020820191506020810190506020830392506138a2565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613927576040519150601f19603f3d011682016040523d82523d6000602084013e61392c565b606091505b509150915061393c82828661395b565b92505050949350505050565b600080823b905060008111915050919050565b6060831561396b57829050613a20565b60008351111561397e5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156139e55780820151818401526020810190506139ca565b50505050905090810190601f168015613a125780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b939250505056fe6164643a20696e76616c6964206465706f7369742066656520626173697320706f696e74735361666542455032303a204245503230206f7065726174696f6e20646964206e6f7420737563636565644f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737373616665594146495472616e736665723a207472616e73666572206661696c6564416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c63616e6e6f74206368616e6765206d617820737570706c79206966206d617820737570706c792068617320616c7265616479206265656e2072656163686564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f777365743a20696e76616c6964206465706f7369742066656520626173697320706f696e7473a26469706673582212206b7c578620f0d47d062393c460da71cd2eddabd459b70ea7c28b8fb494dae01c64736f6c634300060c0033000000000000000000000000280dfe6f44eb0cede997609a1e88014f5e0898c9000000000000000000000000600651565f76638a333d6b482da5783db1c798d3000000000000000000000000df68b6af47079b0a397abbdd5204f12b5dd8327c000000000000000000000000000000000000000000000000011fc51222ce8000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806386f754f4116100f9578063d963842211610097578063e8033c4711610071578063e8033c4714610701578063eb78f95e14610745578063f103b43314610779578063f2fde38b146107a7576101c4565b8063d963842214610659578063e2bbb158146106ab578063e6fd48bc146106e3576101c4565b80638fb23f5e116100d35780638fb23f5e1461053457806393f1a40b14610578578063cbd258b5146105e1578063d5abeb011461063b576101c4565b806386f754f4146104805780638da5cb5b146104b45780638dbb1e3a146104e8576101c4565b8063441a3e70116101665780635312ea8e116101405780635312ea8e146103d6578063630b5ba114610404578063715018a61461040e57806384e82a3314610418576101c4565b8063441a3e7014610352578063457454e91461038a57806351eb05a6146103a8576101c4565b80631526fe27116101a25780631526fe271461027757806317caf6f1146102f65780631b3b8b79146103145780632176a66f14610348576101c4565b8063081e3eda146101c95780630a13f9a9146101e75780630ba84cd214610249575b600080fd5b6101d16107eb565b6040518082815260200191505060405180910390f35b610233600480360360408110156101fd57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506107f8565b6040518082815260200191505060405180910390f35b6102756004803603602081101561025f57600080fd5b8101908080359060200190929190505050610989565b005b6102a36004803603602081101561028d57600080fd5b8101908080359060200190929190505050610b16565b604051808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018361ffff168152602001828152602001965050505050505060405180910390f35b6102fe610b8d565b6040518082815260200191505060405180910390f35b61031c610b93565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610350610bb9565b005b6103886004803603604081101561036857600080fd5b810190808035906020019092919080359060200190929190505050610ff5565b005b6103926112fa565b6040518082815260200191505060405180910390f35b6103d4600480360360208110156103be57600080fd5b8101908080359060200190929190505050611300565b005b610402600480360360208110156103ec57600080fd5b810190808035906020019092919050505061162f565b005b61040c611825565b005b610416611852565b005b61047e6004803603608081101561042e57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803561ffff1690602001909291908035151590602001909291905050506119bf565b005b610488611e49565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104bc611e6f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61051e600480360360408110156104fe57600080fd5b810190808035906020019092919080359060200190929190505050611e98565b6040518082815260200191505060405180910390f35b6105766004803603602081101561054a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f6a565b005b6105c46004803603604081101561058e57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061216e565b604051808381526020018281526020019250505060405180910390f35b610623600480360360208110156105f757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061219f565b60405180821515815260200191505060405180910390f35b6106436121bf565b6040518082815260200191505060405180910390f35b6106a96004803603608081101561066f57600080fd5b810190808035906020019092919080359060200190929190803561ffff1690602001909291908035151590602001909291905050506121c5565b005b6106e1600480360360408110156106c157600080fd5b81019080803590602001909291908035906020019092919050505061242e565b005b6106eb612a2f565b6040518082815260200191505060405180910390f35b6107436004803603602081101561071757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a35565b005b61074d612c39565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107a56004803603602081101561078f57600080fd5b8101908080359060200190929190505050612c5f565b005b6107e9600480360360208110156107bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e4d565b005b6000600680549050905090565b6000806006848154811061080857fe5b9060005260206000209060060201905060006007600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008260030154905082600201544211801561088d57506000836005015414155b801561089b57506000600854115b1561093a5760006108b0846002015442611e98565b905060006108f36008546108e587600101546108d76003548761303f90919063ffffffff16565b61303f90919063ffffffff16565b6130c590919063ffffffff16565b9050610935610926866005015461091864e8d4a510008561303f90919063ffffffff16565b6130c590919063ffffffff16565b8461314e90919063ffffffff16565b925050505b61097e826001015461097064e8d4a5100061096285876000015461303f90919063ffffffff16565b6130c590919063ffffffff16565b6131d690919063ffffffff16565b935050505092915050565b610991613259565b73ffffffffffffffffffffffffffffffffffffffff166109af611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614610a38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b670de0b6b3a7640000811115610ab6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f746f6f206869676821000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b610abe611825565b806003819055503373ffffffffffffffffffffffffffffffffffffffff167fe2492e003bbe8afa53088b406f0c1cb5d9e280370fc72a74cf116ffd343c4053826040518082815260200191505060405180910390a250565b60068181548110610b2357fe5b90600052602060002090600602016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030154908060040160009054906101000a900461ffff16908060050154905086565b60085481565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610bc1613259565b73ffffffffffffffffffffffffffffffffffffffff16610bdf611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614610c68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600060068054905014610ce3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f73657475704661726d20616c72656164792063616c6c6564210000000000000081525060200191505060405180910390fd5b610d06610bb873fb55940f86d42d9b43e547ec4d632019a906cfae6000806119bf565b610d29610bb87373cf275d7a74447ae9aaa5967fa83cf3a003d86c6000806119bf565b610d5a6107d0600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806119bf565b610d7d60647384652bb2539513baf36e225c930fdd8eaa63ce2760fa60006119bf565b610da06064735201f6482eea49c90fe609ed9d8f69328bac8dda60fa60006119bf565b610dc360647387425d8812f44726091831a9a109f4bdc3ea34b460fa60006119bf565b610de660647301efed58b534d7a7464359a6f8d14d986125816b60fa60006119bf565b610e09606473913398d79438e8d709211cfc3dc8566f6c67e1a860fa60006119bf565b610e2c6064731c31fb3359357f6436565ccb3e982bc6bf4189ae60fa60006119bf565b610e4f6064734c0a68dd92449fc06c1a651e9eb1dffb61d64e1860fa60006119bf565b610e726064733fee6e8fbde48b727f82c55639ed2dd0cd9ba64260fa60006119bf565b610e9560647396059759c6492fb4e8a9777b65f307f2c811a34f60fa60006119bf565b610eb860647382af49447d8a07e3bd95bd0d56f35241523fbab160fa60006119bf565b610edb6064733d9907f9a368ad0a51be60f7da3b97cf940982d860fa60006119bf565b610efe6064735979d7b546e38e414f7e9822514be443a480052960fa60006119bf565b610f21606473fc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a60fa60006119bf565b610f44606473088cd8f5ef3652623c22d48b1605dcfe860cd70460fa60006119bf565b610f67606473da10009cbd5d07dd0cecc66161fc93d7c9000da160fa60006119bf565b610f8a60647393b346b6bc2548da6a1e7d98e9a421b42541425b60fa60006119bf565b610fad606473fd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb960fa60006119bf565b610fd06064732f2a2543b76a4166549f7aab2e75bef0aefc5b0f60fa60006119bf565b610ff3606473ff970a61a04b1ca14834a43f5de4533ebddb5cc860fa60006119bf565b565b6002600154141561106e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555060006006838154811061108557fe5b9060005260206000209060060201905060006007600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508281600001541015611163576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f77697468647261773a206e6f7420676f6f64000000000000000000000000000081525060200191505060405180910390fd5b61116c84611300565b60006111b682600101546111a864e8d4a5100061119a8760030154876000015461303f90919063ffffffff16565b6130c590919063ffffffff16565b6131d690919063ffffffff16565b905060008111156111cc576111cb3382613261565b5b6000841115611263576111ec8483600001546131d690919063ffffffff16565b826000018190555061124333858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166135359092919063ffffffff16565b61125a8484600501546131d690919063ffffffff16565b83600501819055505b61129564e8d4a510006112878560030154856000015461303f90919063ffffffff16565b6130c590919063ffffffff16565b8260010181905550843373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568866040518082815260200191505060405180910390a3505050600180819055505050565b60035481565b60006006828154811061130f57fe5b9060005260206000209060060201905080600201544211611330575061162c565b600081600501541480611347575060008160010154145b1561135b574281600201819055505061162c565b600061136b826002015442611e98565b905060006113ae6008546113a085600101546113926003548761303f90919063ffffffff16565b61303f90919063ffffffff16565b6130c590919063ffffffff16565b9050600a5461146882600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561141f57600080fd5b505afa158015611433573d6000803e3d6000fd5b505050506040513d602081101561144957600080fd5b810190808051906020019092919050505061314e90919063ffffffff16565b111561152857611525600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156114d957600080fd5b505afa1580156114ed573d6000803e3d6000fd5b505050506040513d602081101561150357600080fd5b8101908080519060200190929190505050600a546131d690919063ffffffff16565b90505b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1930836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b1580156115bb57600080fd5b505af11580156115cf573d6000803e3d6000fd5b5050505061161761160484600501546115f664e8d4a510008561303f90919063ffffffff16565b6130c590919063ffffffff16565b846003015461314e90919063ffffffff16565b83600301819055504283600201819055505050505b50565b600260015414156116a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026001819055506000600682815481106116bf57fe5b9060005260206000209060060201905060006007600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600081600001549050600082600001819055506000826001018190555061178f33828560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166135359092919063ffffffff16565b808360050154106117be576117b18184600501546131d690919063ffffffff16565b83600501819055506117c9565b600083600501819055505b833373ffffffffffffffffffffffffffffffffffffffff167fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae0595836040518082815260200191505060405180910390a35050506001808190555050565b6000600680549050905060005b8181101561184e5761184381611300565b806001019050611832565b5050565b61185a613259565b73ffffffffffffffffffffffffffffffffffffffff16611878611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6119c7613259565b73ffffffffffffffffffffffffffffffffffffffff166119e5611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614611a6e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8260001515600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611b35576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f6e6f6e4475706c6963617465643a206475706c6963617465640000000000000081525060200191505060405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611b9c57600080fd5b505afa158015611bb0573d6000803e3d6000fd5b505050506040513d6020811015611bc657600080fd5b81019080805190602001909291905050505060fa8361ffff161115611c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613a286025913960400191505060405180910390fd5b8115611c4557611c44611825565b5b60006009544211611c5857600954611c5a565b425b9050611c718660085461314e90919063ffffffff16565b6008819055506001600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060066040518060c001604052808773ffffffffffffffffffffffffffffffffffffffff168152602001888152602001838152602001600081526020018661ffff1681526020016000815250908060018154018082558091505060019003906000526020600020906006020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a81548161ffff021916908361ffff16021790555060a0820151816005015550506001600680549050037faa6642278d4bbef86d8990c37355d5d4dfe365c194106bdf7a65162268606f07868887604051808473ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018261ffff168152602001935050505060405180910390a2505050505050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600a54600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015611f0557600080fd5b505afa158015611f19573d6000803e3d6000fd5b505050506040513d6020811015611f2f57600080fd5b810190808051906020019092919050505010611f4e5760009050611f64565b611f6183836131d690919063ffffffff16565b90505b92915050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461202d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f73657446656541646472657373313a20464f5242494444454e0000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260088152602001807f216e6f6e7a65726f00000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f999c45fcf5692552720291fde1ed748e188fffc3fd0d230f3c0b22c0d7582f2c60405160405180910390a350565b6007602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b600b6020528060005260406000206000915054906101000a900460ff1681565b600a5481565b6121cd613259565b73ffffffffffffffffffffffffffffffffffffffff166121eb611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614612274576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60fa8261ffff1611156122d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613b446025913960400191505060405180910390fd5b80156122e1576122e0611825565b5b61232683612318600687815481106122f557fe5b9060005260206000209060060201600101546008546131d690919063ffffffff16565b61314e90919063ffffffff16565b600881905550826006858154811061233a57fe5b906000526020600020906006020160010181905550816006858154811061235d57fe5b906000526020600020906006020160040160006101000a81548161ffff021916908361ffff160217905550837f39f0c3d078af018954b4fa56832a05a2b511afaa999b133ea3f1c487c21ed287600686815481106123b757fe5b906000526020600020906006020160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168585604051808473ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018261ffff168152602001935050505060405180910390a250505050565b600260015414156124a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026001819055506000600683815481106124be57fe5b9060005260206000209060060201905060006007600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905061252b84611300565b60008160000154111561259a576000612582826001015461257464e8d4a510006125668760030154876000015461303f90919063ffffffff16565b6130c590919063ffffffff16565b6131d690919063ffffffff16565b90506000811115612598576125973382613261565b5b505b60008311156129995760008260000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561263057600080fd5b505afa158015612644573d6000803e3d6000fd5b505050506040513d602081101561265a57600080fd5b810190808051906020019092919050505090506126be3330868660000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166135d7909392919063ffffffff16565b808360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561274a57600080fd5b505afa15801561275e573d6000803e3d6000fd5b505050506040513d602081101561277457600080fd5b810190808051906020019092919050505003935060008360040160009054906101000a900461ffff1661ffff1611156129585760006127e66127106127d88660040160009054906101000a900461ffff1661ffff168861303f90919063ffffffff16565b6130c590919063ffffffff16565b905061286c600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166128226002846130c590919063ffffffff16565b8660000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166135359092919063ffffffff16565b6128f0600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166128a66002846130c590919063ffffffff16565b8660000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166135359092919063ffffffff16565b6129198161290b87866000015461314e90919063ffffffff16565b6131d690919063ffffffff16565b836000018190555061294a8161293c87876005015461314e90919063ffffffff16565b6131d690919063ffffffff16565b846005018190555050612997565b61296f84836000015461314e90919063ffffffff16565b826000018190555061298e84846005015461314e90919063ffffffff16565b83600501819055505b505b6129cb64e8d4a510006129bd8460030154846000015461303f90919063ffffffff16565b6130c590919063ffffffff16565b8160010181905550833373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15856040518082815260200191505060405180910390a35050600180819055505050565b60095481565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612af8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f73657446656541646472657373323a20464f5242494444454e0000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260088152602001807f216e6f6e7a65726f00000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f27170fbbc70bb19e7252d999e7a10fca57657d00ec01b026ae273970b2c84e9160405160405180910390a350565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612c67613259565b73ffffffffffffffffffffffffffffffffffffffff16612c85611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614612d0e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600a54600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015612d7957600080fd5b505afa158015612d8d573d6000803e3d6000fd5b505050506040513d6020811015612da357600080fd5b810190808051906020019092919050505010612e0a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603f815260200180613ae4603f913960400191505060405180910390fd5b80600a819055507fe493ec45ddd3a76acef0c00e0a4cc1e449100df6158b37ca497ed787681cbb5b600a546040518082815260200191505060405180910390a150565b612e55613259565b73ffffffffffffffffffffffffffffffffffffffff16612e73611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614612efc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613a776026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008083141561305257600090506130bf565b600082840290508284828161306357fe5b04146130ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613b236021913960400191505060405180910390fd5b809150505b92915050565b600080821161313c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b81838161314557fe5b04905092915050565b6000808284019050838110156131cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008282111561324e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b600033905090565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156132ec57600080fd5b505afa158015613300573d6000803e3d6000fd5b505050506040513d602081101561331657600080fd5b8101908080519060200190929190505050905060008183111561340857600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156133c657600080fd5b505af11580156133da573d6000803e3d6000fd5b505050506040513d60208110156133f057600080fd5b810190808051906020019092919050505090506134d9565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561349b57600080fd5b505af11580156134af573d6000803e3d6000fd5b505050506040513d60208110156134c557600080fd5b810190808051906020019092919050505090505b8061352f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613a9d6021913960400191505060405180910390fd5b50505050565b6135d28363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613698565b505050565b613692846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613698565b50505050565b60606136fa826040518060400160405280602081526020017f5361666542455032303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166137879092919063ffffffff16565b90506000815111156137825780806020019051602081101561371b57600080fd5b8101908080519060200190929190505050613781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613a4d602a913960400191505060405180910390fd5b5b505050565b6060613796848460008561379f565b90509392505050565b6060824710156137fa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613abe6026913960400191505060405180910390fd5b61380385613948565b613875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106138c557805182526020820191506020810190506020830392506138a2565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613927576040519150601f19603f3d011682016040523d82523d6000602084013e61392c565b606091505b509150915061393c82828661395b565b92505050949350505050565b600080823b905060008111915050919050565b6060831561396b57829050613a20565b60008351111561397e5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156139e55780820151818401526020810190506139ca565b50505050905090810190601f168015613a125780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b939250505056fe6164643a20696e76616c6964206465706f7369742066656520626173697320706f696e74735361666542455032303a204245503230206f7065726174696f6e20646964206e6f7420737563636565644f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737373616665594146495472616e736665723a207472616e73666572206661696c6564416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c63616e6e6f74206368616e6765206d617820737570706c79206966206d617820737570706c792068617320616c7265616479206265656e2072656163686564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f777365743a20696e76616c6964206465706f7369742066656520626173697320706f696e7473a26469706673582212206b7c578620f0d47d062393c460da71cd2eddabd459b70ea7c28b8fb494dae01c64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000280dfe6f44eb0cede997609a1e88014f5e0898c9000000000000000000000000600651565f76638a333d6b482da5783db1c798d3000000000000000000000000df68b6af47079b0a397abbdd5204f12b5dd8327c000000000000000000000000000000000000000000000000011fc51222ce8000
-----Decoded View---------------
Arg [0] : _yafi (address): 0x280dFE6f44eB0CEDe997609a1E88014f5e0898C9
Arg [1] : _feeAddress1 (address): 0x600651565f76638a333D6B482DA5783dB1C798D3
Arg [2] : _feeAddress2 (address): 0xDF68B6aF47079b0a397abBdD5204F12B5Dd8327C
Arg [3] : _yafiPerSecond (uint256): 81000000000000000
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000280dfe6f44eb0cede997609a1e88014f5e0898c9
Arg [1] : 000000000000000000000000600651565f76638a333d6b482da5783db1c798d3
Arg [2] : 000000000000000000000000df68b6af47079b0a397abbdd5204f12b5dd8327c
Arg [3] : 000000000000000000000000000000000000000000000000011fc51222ce8000
Deployed Bytecode Sourcemap
223:12228:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2055:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4058:740;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11890:280;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;773:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;877:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;705:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;9147:2143;;;:::i;:::-;;7323:814;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;670:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4994:863;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;8145:561;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;4806:180;;;:::i;:::-;;1763:148:5;;;:::i;:::-;;2358:918:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;647:16;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;1112:87:5;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;3847:203:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11298:288;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;806:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;2158:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;969:51;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3284:555;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;5865:1450;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;918:42;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11594:288;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;738:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12178:270;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2066:244:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2055:95:4;2100:7;2127:8;:15;;;;2120:22;;2055:95;:::o;4058:740::-;4131:7;4151:21;4175:8;4184:4;4175:14;;;;;;;;;;;;;;;;;;4151:38;;4200:21;4224:8;:14;4233:4;4224:14;;;;;;;;;;;:21;4239:5;4224:21;;;;;;;;;;;;;;;4200:45;;4256:23;4282:4;:20;;;4256:46;;4335:4;:24;;;4317:15;:42;:64;;;;;4380:1;4363:4;:13;;;:18;;4317:64;:87;;;;;4403:1;4385:15;;:19;4317:87;4313:397;;;4421:18;4442:56;4456:4;:24;;;4482:15;4442:13;:56::i;:::-;4421:77;;4513:18;4534:71;4589:15;;4534:50;4568:4;:15;;;4534:29;4549:13;;4534:10;:14;;:29;;;;:::i;:::-;:33;;:50;;;;:::i;:::-;:54;;:71;;;;:::i;:::-;4513:92;;4638:60;4658:39;4683:4;:13;;;4658:20;4673:4;4658:10;:14;;:20;;;;:::i;:::-;:24;;:39;;;;:::i;:::-;4638:15;:19;;:60;;;;:::i;:::-;4620:78;;4313:397;;;4727:63;4774:4;:15;;;4727:42;4764:4;4727:32;4743:15;4727:4;:11;;;:15;;:32;;;;:::i;:::-;:36;;:42;;;;:::i;:::-;:46;;:63;;;;:::i;:::-;4720:70;;;;;4058:740;;;;:::o;11890:280::-;1343:12:5;:10;:12::i;:::-;1332:23;;:7;:5;:7::i;:::-;:23;;;1324:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11998:19:4::1;11980:14;:37;;11972:59;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;12042:17;:15;:17::i;:::-;12086:14;12070:13;:30;;;;12135:10;12116:46;;;12147:14;12116:46;;;;;;;;;;;;;;;;;;11890:280:::0;:::o;773:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;877:34::-;;;;:::o;705:26::-;;;;;;;;;;;;;:::o;9147:2143::-;1343:12:5;:10;:12::i;:::-;1332:23;;:7;:5;:7::i;:::-;:23;;;1324:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9225:1:4::1;9206:8;:15;;;;:20;9198:58;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;9269:71;9273:4;9286:42;9331:1;9334:5:::0;9269:3:::1;:71::i;:::-;9364;9368:4;9381:42;9426:1;9429:5:::0;9364:3:::1;:71::i;:::-;9459:25;9463:4;9469;;;;;;;;;;;9475:1;9478:5:::0;9459:3:::1;:25::i;:::-;9505:72;9509:3;9521:42;9566:3;9571:5;9505:3;:72::i;:::-;9601;9605:3;9617:42;9662:3;9667:5;9601:3;:72::i;:::-;9699;9703:3;9715:42;9760:3;9765:5;9699:3;:72::i;:::-;9796;9800:3;9812:42;9857:3;9862:5;9796:3;:72::i;:::-;9891;9895:3;9907:42;9952:3;9957:5;9891:3;:72::i;:::-;9986;9990:3;10002:42;10047:3;10052:5;9986:3;:72::i;:::-;10082;10086:3;10098:42;10143:3;10148:5;10082:3;:72::i;:::-;10178;10182:3;10194:42;10239:3;10244:5;10178:3;:72::i;:::-;10274;10278:3;10290:42;10335:3;10340:5;10274:3;:72::i;:::-;10372;10376:3;10388:42;10433:3;10438:5;10372:3;:72::i;:::-;10463;10467:3;10479:42;10524:3;10529:5;10463:3;:72::i;:::-;10555;10559:3;10571:42;10616:3;10621:5;10555:3;:72::i;:::-;10649;10653:3;10665:42;10710:3;10715:5;10649:3;:72::i;:::-;10739;10743:3;10755:42;10800:3;10805:5;10739:3;:72::i;:::-;10831;10835:3;10847:42;10892:3;10897:5;10831:3;:72::i;:::-;10921;10925:3;10937:42;10982:3;10987:5;10921:3;:72::i;:::-;11012;11016:3;11028:42;11073:3;11078:5;11012:3;:72::i;:::-;11103;11107:3;11119:42;11164:3;11169:5;11103:3;:72::i;:::-;11194;11198:3;11210:42;11255:3;11260:5;11194:3;:72::i;:::-;9147:2143::o:0;7323:814::-;1721:1:6;2327:7;;:19;;2319:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1721:1;2460:7;:18;;;;7405:21:4::1;7429:8;7438:4;7429:14;;;;;;;;;;;;;;;;;;7405:38;;7454:21;7478:8;:14;7487:4;7478:14;;;;;;;;;;;:26;7493:10;7478:26;;;;;;;;;;;;;;;7454:50;;7538:7;7523:4;:11;;;:22;;7515:53;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;7579:16;7590:4;7579:10;:16::i;:::-;7606:15;7624:68;7676:4;:15;;;7624:47;7666:4;7624:37;7640:4;:20;;;7624:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47;;;;:::i;:::-;:51;;:68;;;;:::i;:::-;7606:86;;7717:1;7707:7;:11;7703:81;;;7735:37;7752:10;7764:7;7735:16;:37::i;:::-;7703:81;7808:1;7798:7;:11;7794:209;;;7840:24;7856:7;7840:4;:11;;;:15;;:24;;;;:::i;:::-;7826:4;:11;;:38;;;;7879:55;7913:10;7926:7;7879:4;:12;;;;;;;;;;;;:25;;;;:55;;;;;:::i;:::-;7965:26;7983:7;7965:4;:13;;;:17;;:26;;;;:::i;:::-;7949:4;:13;;:42;;;;7794:209;8031:47;8073:4;8031:37;8047:4;:20;;;8031:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47;;;;:::i;:::-;8013:4;:15;;:65;;;;8115:4;8103:10;8094:35;;;8121:7;8094:35;;;;;;;;;;;;;;;;;;2491:1:6;;;1677::::0;2639:7;:22;;;;7323:814:4;;:::o;670:28::-;;;;:::o;4994:863::-;5046:21;5070:8;5079:4;5070:14;;;;;;;;;;;;;;;;;;5046:38;;5118:4;:24;;;5099:15;:43;5095:82;;5159:7;;;5095:82;5208:1;5191:4;:13;;;:18;:42;;;;5232:1;5213:4;:15;;;:20;5191:42;5187:138;;;5277:15;5250:4;:24;;:42;;;;5307:7;;;5187:138;5335:18;5356:56;5370:4;:24;;;5396:15;5356:13;:56::i;:::-;5335:77;;5423:18;5444:71;5499:15;;5444:50;5478:4;:15;;;5444:29;5459:13;;5444:10;:14;;:29;;;;:::i;:::-;:33;;:50;;;;:::i;:::-;:54;;:71;;;;:::i;:::-;5423:92;;5567:9;;5530:34;5553:10;5530:4;;;;;;;;;;;:16;;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:22;;:34;;;;:::i;:::-;:46;5526:125;;;5606:33;5620:4;;;;;;;;;;;:16;;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5606:9;;:13;;:33;;;;:::i;:::-;5593:46;;5526:125;5661:4;;;;;;;;;;;:9;;;5679:4;5686:10;5661:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5731:65;5756:39;5781:4;:13;;;5756:20;5771:4;5756:10;:14;;:20;;;;:::i;:::-;:24;;:39;;;;:::i;:::-;5731:4;:20;;;:24;;:65;;;;:::i;:::-;5708:4;:20;;:88;;;;5834:15;5807:4;:24;;:42;;;;4994:863;;;;;:::o;8145:561::-;1721:1:6;2327:7;;:19;;2319:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1721:1;2460:7;:18;;;;8219:21:4::1;8243:8;8252:4;8243:14;;;;;;;;;;;;;;;;;;8219:38;;8268:21;8292:8;:14;8301:4;8292:14;;;;;;;;;;;:26;8307:10;8292:26;;;;;;;;;;;;;;;8268:50;;8329:14;8346:4;:11;;;8329:28;;8382:1;8368:4;:11;;:15;;;;8412:1;8394:4;:15;;:19;;;;8424:54;8458:10;8471:6;8424:4;:12;;;;;;;;;;;;:25;;;;:54;;;;;:::i;:::-;8512:6;8495:4;:13;;;:23;8491:147;;8551:25;8569:6;8551:4;:13;;;:17;;:25;;;;:::i;:::-;8535:4;:13;;:41;;;;8491:147;;;8625:1;8609:4;:13;;:17;;;;8491:147;8685:4;8673:10;8655:43;;;8691:6;8655:43;;;;;;;;;;;;;;;;;;2491:1:6;;;1677::::0;2639:7;:22;;;;8145:561:4;:::o;4806:180::-;4851:14;4868:8;:15;;;;4851:32;;4899:11;4894:85;4922:6;4916:3;:12;4894:85;;;4952:15;4963:3;4952:10;:15::i;:::-;4930:5;;;;;4894:85;;;;4806:180;:::o;1763:148:5:-;1343:12;:10;:12::i;:::-;1332:23;;:7;:5;:7::i;:::-;:23;;;1324:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1870:1:::1;1833:40;;1854:6;::::0;::::1;;;;;;;;1833:40;;;;;;;;;;;;1901:1;1884:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;1763:148::o:0;2358:918:4:-;1343:12:5;:10;:12::i;:::-;1332:23;;:7;:5;:7::i;:::-;:23;;;1324:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2480:8:4::1;2295:5;2268:32;;:13;:23;2282:8;2268:23;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;2260:70;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;2501:8:::2;:18;;;2528:4;2501:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;2572:3;2555:13;:20;;;;2547:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2632:11;2628:61;;;2660:17;:15;:17::i;:::-;2628:61;2699:27;2747:14;;2729:15;:32;:67;;2782:14;;2729:67;;;2764:15;2729:67;2699:97;;2825:32;2845:11;2825:15;;:19;;:32;;;;:::i;:::-;2807:15;:50;;;;2894:4;2868:13;:23;2882:8;2868:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;2909:8;2923:251;;;;;;;;2957:8;2923:251;;;;;;2993:11;2923:251;;;;3040:19;2923:251;;;;3092:1;2923:251;;;;3123:13;2923:251;;;;;;3161:1;2923:251;;::::0;2909:266:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3219:1;3201:8;:15;;;;:19;3193:75;3230:8;3241:11;3254:13;3193:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2341:1;1403::5::1;2358:918:4::0;;;;:::o;647:16::-;;;;;;;;;;;;;:::o;1112:87:5:-;1158:7;1185:6;;;;;;;;;;;1178:13;;1112:87;:::o;3847:203:4:-;3919:7;3965:9;;3943:4;;;;;;;;;;;:16;;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:31;3939:72;;3998:1;3991:8;;;;3939:72;4028:14;4036:5;4028:3;:7;;:14;;;;:::i;:::-;4021:21;;3847:203;;;;;:::o;11298:288::-;11386:11;;;;;;;;;;;11372:25;;:10;:25;;;11364:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11470:1;11446:26;;:12;:26;;;;11438:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11510:12;11496:11;;:26;;;;;;;;;;;;;;;;;;11565:12;11538:40;;11553:10;11538:40;;;;;;;;;;;;11298:288;:::o;806:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2158:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;969:51::-;;;;:::o;3284:555::-;1343:12:5;:10;:12::i;:::-;1332:23;;:7;:5;:7::i;:::-;:23;;;1324:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3427:3:4::1;3410:13;:20;;;;3402:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3487:11;3483:61;;;3515:17;:15;:17::i;:::-;3483:61;3572:63;3623:11;3572:46;3592:8;3601:4;3592:14;;;;;;;;;;;;;;;;;;:25;;;3572:15;;:19;;:46;;;;:::i;:::-;:50;;:63;;;;:::i;:::-;3554:15;:81;;;;3674:11;3646:8;3655:4;3646:14;;;;;;;;;;;;;;;;;;:25;;:39;;;;3726:13;3696:8;3705:4;3696:14;;;;;;;;;;;;;;;;;;:27;;;:43;;;;;;;;;;;;;;;;;;3765:4;3757:74;3779:8;3788:4;3779:14;;;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;3804:11;3817:13;3757:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3284:555:::0;;;;:::o;5865:1450::-;1721:1:6;2327:7;;:19;;2319:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1721:1;2460:7;:18;;;;5946:21:4::1;5970:8;5979:4;5970:14;;;;;;;;;;;;;;;;;;5946:38;;5995:21;6019:8;:14;6028:4;6019:14;;;;;;;;;;;:26;6034:10;6019:26;;;;;;;;;;;;;;;5995:50;;6056:16;6067:4;6056:10;:16::i;:::-;6101:1;6087:4;:11;;;:15;6083:237;;;6119:15;6137:68;6189:4;:15;;;6137:47;6179:4;6137:37;6153:4;:20;;;6137:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47;;;;:::i;:::-;:51;;:68;;;;:::i;:::-;6119:86;;6234:1;6224:7;:11;6220:89;;;6256:37;6273:10;6285:7;6256:16;:37::i;:::-;6220:89;6083:237;;6344:1;6334:7;:11;6330:852;;;6362:21;6386:4;:12;;;;;;;;;;;;:22;;;6417:4;6386:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;6362:61;;6438:74;6476:10;6497:4;6504:7;6438:4;:12;;;;;;;;;;;;:29;;;;:74;;;;;;:::i;:::-;6577:13;6537:4;:12;;;;;;;;;;;;:22;;;6568:4;6537:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;:53;6527:63;;6629:1;6609:4;:17;;;;;;;;;;;;:21;;;6605:566;;;6651:18;6672:41;6707:5;6672:30;6684:4;:17;;;;;;;;;;;;6672:30;;:7;:11;;:30;;;;:::i;:::-;:34;;:41;;;;:::i;:::-;6651:62;;6732:57;6758:11;;;;;;;;;;;6771:17;6786:1;6771:10;:14;;:17;;;;:::i;:::-;6732:4;:12;;;;;;;;;;;;:25;;;;:57;;;;;:::i;:::-;6808;6834:11;;;;;;;;;;;6847:17;6862:1;6847:10;:14;;:17;;;;:::i;:::-;6808:4;:12;;;;;;;;;;;;:25;;;;:57;;;;;:::i;:::-;6898:40;6927:10;6898:24;6914:7;6898:4;:11;;;:15;;:24;;;;:::i;:::-;:28;;:40;;;;:::i;:::-;6884:4;:11;;:54;;;;6973:42;7004:10;6973:26;6991:7;6973:4;:13;;;:17;;:26;;;;:::i;:::-;:30;;:42;;;;:::i;:::-;6957:4;:13;;:58;;;;6605:566;;;;7070:24;7086:7;7070:4;:11;;;:15;;:24;;;;:::i;:::-;7056:4;:11;;:38;;;;7129:26;7147:7;7129:4;:13;;;:17;;:26;;;;:::i;:::-;7113:4;:13;;:42;;;;6605:566;6330:852;;7210:47;7252:4;7210:37;7226:4;:20;;;7210:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47;;;;:::i;:::-;7192:4;:15;;:65;;;;7293:4;7281:10;7273:34;;;7299:7;7273:34;;;;;;;;;;;;;;;;;;2491:1:6;;1677::::0;2639:7;:22;;;;5865:1450:4;;:::o;918:42::-;;;;:::o;11594:288::-;11682:11;;;;;;;;;;;11668:25;;:10;:25;;;11660:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11766:1;11742:26;;:12;:26;;;;11734:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11806:12;11792:11;;:26;;;;;;;;;;;;;;;;;;11861:12;11834:40;;11849:10;11834:40;;;;;;;;;;;;11594:288;:::o;738:26::-;;;;;;;;;;;;;:::o;12178:270::-;1343:12:5;:10;:12::i;:::-;1332:23;;:7;:5;:7::i;:::-;:23;;;1324:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12285:9:4::1;;12264:4;;;;;;;;;;;:16;;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;:30;12256:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12385:13;12373:9;:25;;;;12414:26;12430:9;;12414:26;;;;;;;;;;;;;;;;;;12178:270:::0;:::o;2066:244:5:-;1343:12;:10;:12::i;:::-;1332:23;;:7;:5;:7::i;:::-;:23;;;1324:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2175:1:::1;2155:22;;:8;:22;;;;2147:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2265:8;2236:38;;2257:6;::::0;::::1;;;;;;;;2236:38;;;;;;;;;;;;2294:8;2285:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;2066:244:::0;:::o;3653:220:8:-;3711:7;3740:1;3735;:6;3731:20;;;3750:1;3743:8;;;;3731:20;3762:9;3778:1;3774;:5;3762:17;;3807:1;3802;3798;:5;;;;;;:10;3790:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3864:1;3857:8;;;3653:220;;;;;:::o;4351:153::-;4409:7;4441:1;4437;:5;4429:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4495:1;4491;:5;;;;;;4484:12;;4351:153;;;;:::o;2774:179::-;2832:7;2852:9;2868:1;2864;:5;2852:17;;2893:1;2888;:6;;2880:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2944:1;2937:8;;;2774:179;;;;:::o;3236:158::-;3294:7;3327:1;3322;:6;;3314:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3385:1;3381;:5;3374:12;;3236:158;;;;:::o;613:106:2:-;666:15;701:10;694:17;;613:106;:::o;8714:425:4:-;8790:15;8808:4;;;;;;;;;;;:14;;;8831:4;8808:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8790:47;;8848:20;8901:7;8891;:17;8887:173;;;8943:4;;;;;;;;;;;:13;;;8957:3;8962:7;8943:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8925:45;;8887:173;;;9021:4;;;;;;;;;;;:13;;;9035:3;9040:7;9021:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9003:45;;8887:173;9078:15;9070:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8714:425;;;;:::o;706:177:7:-;789:86;809:5;839:23;;;864:2;868:5;816:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;789:19;:86::i;:::-;706:177;;;:::o;891:205::-;992:96;1012:5;1042:27;;;1071:4;1077:2;1081:5;1019:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;992:19;:96::i;:::-;891:205;;;;:::o;3011:761::-;3435:23;3461:69;3489:4;3461:69;;;;;;;;;;;;;;;;;3469:5;3461:27;;;;:69;;;;;:::i;:::-;3435:95;;3565:1;3545:10;:17;:21;3541:224;;;3687:10;3676:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3668:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3541:224;3011:761;;;:::o;3671:195:0:-;3774:12;3806:52;3828:6;3836:4;3842:1;3845:12;3806:21;:52::i;:::-;3799:59;;3671:195;;;;;:::o;4723:530::-;4850:12;4908:5;4883:21;:30;;4875:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4975:18;4986:6;4975:10;:18::i;:::-;4967:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5101:12;5115:23;5142:6;:11;;5162:5;5170:4;5142:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5100:75;;;;5193:52;5211:7;5220:10;5232:12;5193:17;:52::i;:::-;5186:59;;;;4723:530;;;;;;:::o;751:422::-;811:4;1019:12;1130:7;1118:20;1110:28;;1164:1;1157:4;:8;1150:15;;;751:422;;;:::o;7263:742::-;7378:12;7407:7;7403:595;;;7438:10;7431:17;;;;7403:595;7572:1;7552:10;:17;:21;7548:439;;;7815:10;7809:17;7876:15;7863:10;7859:2;7855:19;7848:44;7763:148;7958:12;7951:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7263:742;;;;;;:::o
Swarm Source
ipfs://6b7c578620f0d47d062393c460da71cd2eddabd459b70ea7c28b8fb494dae01c
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$2.59
Net Worth in ETH
0.000962
Token Allocations
WBTC
74.26%
WETH
17.23%
LUSD
8.51%
Multichain Portfolio | 35 Chains
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.