Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
This contract has been partially verified via Sourcify.
View contract in Sourcify repository
- Contract name:
- SaffronStrategy
- Optimization enabled
- true
- Compiler version
- v0.7.4+commit.3f05b770
- Optimization runs
- 999999
- EVM Version
- istanbul
- Verified at
- 2026-04-22T09:52:15.242306Z
Constructor Arguments
000000000000000000000000b753428af26e81097e7fd17f40c88aaa3e04902c00000000000000000000000009e9ff67d9d5a25fa465db6f0bede5560581f8cb0000000000000000000000000000000000000000000000000000000000000000
Arg [0] (address) : 0xb753428af26e81097e7fd17f40c88aaa3e04902c
Arg [1] (address) : 0x09e9ff67d9d5a25fa465db6f0bede5560581f8cb
Arg [2] (bool) : false
SaffronStrategy.sol
// File: contracts\interfaces\ISaffronBase.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.1;
interface ISaffronBase {
enum Tranche {S, AA, A}
enum LPTokenType {dsec, principal}
// Store values (balances, dsec, vdsec) with TrancheUint256
struct TrancheUint256 {
uint256 S;
uint256 AA;
uint256 A;
}
struct epoch_params {
uint256 start_date; // Time when the platform launched
uint256 duration; // Duration of epoch
}
}
// File: contracts\interfaces\ISaffronStrategy.sol
pragma solidity ^0.7.1;
interface ISaffronStrategy is ISaffronBase{
function deploy_all_capital() external;
function select_adapter_for_liquidity_removal() external returns(address);
function add_adapter(address adapter_address) external;
function add_pool(address pool_address) external;
function delete_adapters() external;
function set_governance(address to) external;
function get_adapter_address(uint256 adapter_index) external view returns(address);
function set_pool_SFI_reward(uint256 poolIndex, uint256 reward) external;
}
// File: contracts\interfaces\ISaffronPool.sol
pragma solidity ^0.7.1;
interface ISaffronPool is ISaffronBase {
function add_liquidity(uint256 amount, Tranche tranche) external;
function remove_liquidity(address v1_dsec_token_address, uint256 dsec_amount, address v1_principal_token_address, uint256 principal_amount) external;
function get_base_asset_address() external view returns(address);
function hourly_strategy(address adapter_address) external;
function wind_down_epoch(uint256 epoch, uint256 amount_sfi) external;
function set_governance(address to) external;
function get_epoch_cycle_params() external view returns (uint256, uint256);
function shutdown() external;
}
// File: contracts\interfaces\ISaffronAdapter.sol
pragma solidity ^0.7.1;
interface ISaffronAdapter is ISaffronBase {
function deploy_capital(uint256 amount) external;
function return_capital(uint256 base_asset_amount, address to) external;
function approve_transfer(address addr,uint256 amount) external;
function get_base_asset_address() external view returns(address);
function set_base_asset(address addr) external;
function get_holdings() external returns(uint256);
function get_interest(uint256 principal) external returns(uint256);
function set_governance(address to) external;
}
// File: contracts\lib\IERC20.sol
pragma solidity ^0.7.1;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// File: contracts\lib\SafeMath.sol
pragma solidity ^0.7.1;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
// File: contracts\lib\Address.sol
pragma solidity ^0.7.1;
/**
* @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.3._
*/
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.3._
*/
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);
}
}
}
}
// File: contracts\lib\SafeERC20.sol
pragma solidity ^0.7.1;
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using SafeMath for uint256;
using Address for address;
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(IERC20 token, address spender, uint256 value) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
// solhint-disable-next-line max-line-length
require((value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).add(value);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. 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, "SafeERC20: low-level call failed");
if (returndata.length > 0) { // Return data is optional
// solhint-disable-next-line max-line-length
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
// File: @chainlink\contracts\src\v0.7\interfaces\AggregatorV3Interface.sol
pragma solidity ^0.7.0;
interface AggregatorV3Interface {
function decimals()
external
view
returns (
uint8
);
function description()
external
view
returns (
string memory
);
function version()
external
view
returns (
uint256
);
// getRoundData and latestRoundData should both raise "No data present"
// if they do not have data to report, instead of returning unset values
// which could be misinterpreted as actual reported values.
function getRoundData(
uint80 _roundId
)
external
view
returns (
uint80 roundId,
int256 answer,
uint256 startedAt,
uint256 updatedAt,
uint80 answeredInRound
);
function latestRoundData()
external
view
returns (
uint80 roundId,
int256 answer,
uint256 startedAt,
uint256 updatedAt,
uint80 answeredInRound
);
}
// File: contracts\ChainlinkRewardOracle.sol
pragma solidity ^0.7.1;
contract ChainlinkRewardOracle {
mapping(uint16 => uint256[]) public base_SFI_rewards;
mapping(uint16 => uint256[]) public bonus_SFI_rewards;
mapping(uint256 => AggregatorV3Interface) public pool_feed;
mapping(uint256 => uint256) public base_asset_price_begin;
mapping(uint256 => uint256) public base_asset_price_end;
mapping(uint256 => uint256) public limit; // If end price is less than X percent of `begin` use maximum reward; 1e18 scale
mapping(uint16 => uint16[]) public tracked_pools;
enum states {UNSET, REWARD_SET, STARTED, ENDED}
mapping(uint16 => states) public epoch_state;
address public governance;
address public _new_governance;
address public strategy;
constructor(address strategyAddr) {
governance = msg.sender;
strategy = strategyAddr;
}
function set_feed(uint16 epoch, uint16 pool, address feedAddr, uint256 maxPct, uint256 alt_reward) public {
require(msg.sender == strategy || msg.sender == governance, "must be strategy or gov");
require(epoch_state[epoch] == states.REWARD_SET, "rewards must be set and not started");
require(pool < base_SFI_rewards[epoch].length, "cannot feed pool with undefined reward");
require(maxPct < 1 ether, "can't award on no change"); // Prevent divide by zero
uint256 index = pack(epoch, pool);
pool_feed[index] = AggregatorV3Interface(feedAddr);
tracked_pools[epoch].push(pool);
limit[index] = maxPct;
bonus_SFI_rewards[epoch][pool] = alt_reward;
}
function set_base_reward(uint16 epoch, uint256[] calldata SFI_rewards) public {
require(msg.sender == strategy || msg.sender == governance, "must be strategy or gov");
require(epoch_state[epoch] == states.UNSET || epoch_state[epoch] == states.REWARD_SET, "must not be started");
epoch_state[epoch] = states.REWARD_SET;
base_SFI_rewards[epoch] = SFI_rewards;
bonus_SFI_rewards[epoch] = SFI_rewards;
}
event BeginEpoch(uint16 epoch);
function begin_epoch(uint16 epoch) public {
require(msg.sender == strategy || msg.sender == governance, "must be strategy or gov");
require(epoch_state[epoch] == states.REWARD_SET, "must set rewards first");
epoch_state[epoch] = states.STARTED;
emit BeginEpoch(epoch);
for (uint256 i = 0; i < tracked_pools[epoch].length; i++) {
uint256 index = pack(epoch, tracked_pools[epoch][i]);
base_asset_price_begin[index] = get_latest_price(index);
}
}
event EndEpoch(uint16 epoch);
function end_epoch(uint16 epoch) public {
require(msg.sender == strategy || msg.sender == governance, "must be strategy or gov");
require(epoch_state[epoch] == states.STARTED, "must be started");
epoch_state[epoch] = states.ENDED;
emit EndEpoch(epoch);
for (uint256 i = 0; i < tracked_pools[epoch].length; i++) {
uint256 index = pack(epoch, tracked_pools[epoch][i]);
base_asset_price_end[index] = get_latest_price(index);
}
}
event OracleGetReward(uint256 index, uint256 begin, uint256 end, uint256 reward);
function get_reward(uint16 epoch, uint16 pool) public view returns (uint256 index, uint256 begin, uint256 end, uint256 reward) {
require(epoch_state[epoch] == states.ENDED, "must be ended");
if (pool > base_SFI_rewards[epoch].length) {
return (index, begin, end, reward);
}
index = pack(epoch, pool);
if (pool_feed[index] == AggregatorV3Interface(0x0)) {
reward = base_SFI_rewards[epoch][pool];
return (index, begin, end, reward);
}
begin = base_asset_price_begin[index];
end = base_asset_price_end[index];
if (end >= begin) {
reward = base_SFI_rewards[epoch][pool];
return (index, begin, end, reward);
}
uint256 pct = limit[index];
uint256 max_price_move = begin * pct / 1e18;
reward = base_SFI_rewards[epoch][pool] + calc_reward_bonus(begin, end, pct, max_price_move, bonus_SFI_rewards[epoch][pool]);
return (index, begin, end, reward);
}
function calc_reward_bonus(uint256 begin, uint256 end, uint256 pct, uint256 max_price_move, uint256 bonus_SFI_reward) internal pure returns (uint256) {
if (end <= max_price_move) return bonus_SFI_reward;
uint256 delta = (begin - end);
uint256 delta_pct = (delta * 1 ether) / begin;
uint256 reward_multiplier = delta_pct * 1 ether / (1 ether - pct);
return bonus_SFI_reward * reward_multiplier / 1 ether;
}
function get_latest_price(uint256 index) internal view returns (uint256) {
AggregatorV3Interface priceFeed = pool_feed[index];
require(priceFeed != AggregatorV3Interface(0x0), "no feed found");
// uint80 roundID, int price, uint startedAt, uint timeStamp, uint80 answeredInRound
(,int price,,,) = priceFeed.latestRoundData();
return uint256(price);
}
function pack(uint16 epoch, uint16 pool) internal pure returns (uint256) {
return uint256(epoch) | uint256(pool) << 16;
}
// function unpack(uint256 value) public pure returns (uint16, uint16) {
// return (uint16(value), uint16(value >> 16));
// }
event SetGovernance(address prev, address next);
event AcceptGovernance(address who);
function set_governance(address to) external {
require(msg.sender == governance, "must be governance");
_new_governance = to;
emit SetGovernance(msg.sender, to);
}
function accept_governance() external {
require(msg.sender == _new_governance, "must be new governance");
governance = msg.sender;
emit AcceptGovernance(msg.sender);
}
function set_strategy(address to) external {
require(msg.sender == governance, "must be governance");
strategy = to;
}
}
// File: contracts\lib\Context.sol
pragma solidity ^0.7.1;
/*
* @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;
}
}
// File: contracts\lib\ERC20.sol
pragma solidity ^0.7.1;
/**
* @dev Implementation of the {IERC20} 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 {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-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 ERC20 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 {IERC20-approve}.
*/
contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
using Address for address;
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_) {
_name = name_;
_symbol = symbol_;
_decimals = 18;
}
/**
* @dev Returns the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
* called.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view returns (uint8) {
return _decimals;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-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 virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20};
*
* 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 virtual override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: 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 {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual 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 {IERC20-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 virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
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), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
_balances[sender] = _balances[sender].sub(amount, "ERC20: 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 virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_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 virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
_balances[account] = _balances[account].sub(amount, "ERC20: 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 virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Sets {decimals} to a value other than the default one of 18.
*
* WARNING: This function should only be called from the constructor. Most
* applications that interact with token contracts will not expect
* {decimals} to ever change, and may work incorrectly if it does.
*/
function _setupDecimals(uint8 decimals_) internal {
_decimals = decimals_;
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be to transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}
// File: contracts\SFI.sol
pragma solidity ^0.7.1;
contract SFI is ERC20 {
using SafeERC20 for IERC20;
address public governance;
address public SFI_minter;
uint256 public MAX_TOKENS = 100000 ether;
constructor (string memory name, string memory symbol) ERC20(name, symbol) {
// Initial governance is Saffron Deployer
governance = msg.sender;
}
function mint_SFI(address to, uint256 amount) public {
require(msg.sender == SFI_minter, "must be SFI_minter");
require(this.totalSupply() + amount < MAX_TOKENS, "cannot mint more than MAX_TOKENS");
_mint(to, amount);
}
function set_minter(address to) external {
require(msg.sender == governance, "must be governance");
SFI_minter = to;
}
function set_governance(address to) external {
require(msg.sender == governance, "must be governance");
governance = to;
}
event ErcSwept(address who, address to, address token, uint256 amount);
function erc_sweep(address _token, address _to) public {
require(msg.sender == governance, "must be governance");
IERC20 tkn = IERC20(_token);
uint256 tBal = tkn.balanceOf(address(this));
tkn.safeTransfer(_to, tBal);
emit ErcSwept(msg.sender, _to, _token, tBal);
}
}
// File: contracts\SaffronStrategy.sol
pragma solidity ^0.7.1;
// v0: all functions returns the only adapter that exists
// v1: evaluate adapters by interest rate and return the best one possible per currency
contract SaffronStrategy is ISaffronStrategy {
using SafeERC20 for IERC20;
using SafeMath for uint256;
ChainlinkRewardOracle public oracle;
address public governance;
address public team_address;
address public SFI_address;
address[] public pools;
address[] public adapters;
mapping(address=>uint256) private adapter_indexes;
mapping(uint256=>address) private adapter_addresses;
uint256[] public pool_SFI_rewards = [
10500000000000000000, // 10.5 SFI - dai comp
33750000000000000000, // 33.75 SFI - eth uni
22500000000000000000, // 22.5 SFI - sfi stake
1500000000000000000 , // 1.5 SFI - btse
15500000000000000000, // 10.5 SFI - wbtc comp
1500000000000000000, // 1.5 SFI - geeq
1500000000000000000, // 1.5 SFI - esd
33750000000000000000, // 33.75 SFI - eth sushi
1500000000000000000, // 1.5 SFI - alpha
10500000000000000000, // 10.5 SFI - dai rari
1500000000000000000, // 1.5 SFI - prt
10500000000000000000, // 10.5 SFI - usdt comp
10500000000000000000 // 10.5 SFI - usdc comp
];
// True if epoch has been wound down already
mapping(uint256=>bool) public epoch_wound_down;
uint256 public last_deploy; // Last run of Hourly Deploy
uint256 public deploy_interval; // Hourly deploy interval
epoch_params public epoch_cycle = epoch_params({
start_date: 1604239200, // 11/01/2020 @ 2:00pm (UTC)
duration: 14 days // 1210000 seconds
});
constructor(address _sfi_address, address _team_address, bool epoch_cycle_reset) {
governance = msg.sender;
team_address = _team_address;
SFI_address = _sfi_address;
deploy_interval = 1 hours;
epoch_cycle.duration = (epoch_cycle_reset ? 30 minutes : 14 days); // Make testing previous epochs easier
epoch_cycle.start_date = (epoch_cycle_reset ? (block.timestamp) - (4 * epoch_cycle.duration) : 1604239200); // Make testing previous epochs easier
}
function set_oracle(address oracleAddr) external {
require(msg.sender == team_address || msg.sender == governance, "must be team or governance");
oracle = ChainlinkRewardOracle(oracleAddr);
}
function oracle_set_reward(uint16 epoch) external {
require(msg.sender == team_address || msg.sender == governance, "must be team or governance");
oracle.set_base_reward(epoch, pool_SFI_rewards);
}
function wind_down_epoch(uint256 epoch) external {
require(epoch == 12, "v1.12: only epoch 12");
require(!epoch_wound_down[epoch], "epoch already wound down");
require(msg.sender == team_address || msg.sender == governance, "must be team or governance");
uint256 current_epoch = get_current_epoch();
require(epoch < current_epoch, "cannot wind down future epoch");
epoch_wound_down[epoch] = true;
// Team Funds - https://miro.medium.com/max/568/1*8vnnKp4JzzCA3tNqW246XA.png
uint256 team_sfi = 54 * 1 ether;
SFI(SFI_address).mint_SFI(team_address, team_sfi);
for (uint256 i = 0; i < pools.length; i++) {
uint256 rewardSFI = 0;
if (i < pool_SFI_rewards.length) {
rewardSFI = pool_SFI_rewards[i];
SFI(SFI_address).mint_SFI(pools[i], rewardSFI);
}
ISaffronPool(pools[i]).wind_down_epoch(epoch, rewardSFI);
}
}
function wind_down_epoch_oracle(uint256 epoch) external {
require(epoch == 12, "v1.12: only epoch 12");
require(!epoch_wound_down[epoch], "epoch already wound down");
require(msg.sender == team_address || msg.sender == governance, "must be team or governance");
uint256 current_epoch = get_current_epoch();
require(epoch < current_epoch, "cannot wind down future epoch");
epoch_wound_down[epoch] = true;
require(oracle != ChainlinkRewardOracle(0x0), "no oracle");
// Team Funds - https://miro.medium.com/max/568/1*8vnnKp4JzzCA3tNqW246XA.png
uint256 team_sfi = 54 * 1 ether;
SFI(SFI_address).mint_SFI(team_address, team_sfi);
oracle.end_epoch(uint16(epoch));
for (uint16 i = 0; i < pools.length; i++) {
uint256 rewardSFI = 0;
if (i < pool_SFI_rewards.length) {
(,,,rewardSFI) = oracle.get_reward(uint16(epoch), i);
require(rewardSFI <= 34 ether, "oracle failure: rewards too high");
SFI(SFI_address).mint_SFI(pools[i], rewardSFI);
}
ISaffronPool(pools[i]).wind_down_epoch(epoch, rewardSFI);
}
}
// Wind down pool exists just in case one of the pools is broken
function wind_down_pool(uint256 pool, uint256 epoch) external {
require(msg.sender == team_address || msg.sender == governance, "must be team or governance");
require(epoch == 12, "v1.12: only epoch 12");
uint256 current_epoch = get_current_epoch();
require(epoch < current_epoch, "cannot wind down future epoch");
if (pool == uint(-1)) {
require(!epoch_wound_down[epoch], "epoch already wound down");
epoch_wound_down[epoch] = true;
// Team Funds - https://miro.medium.com/max/568/1*8vnnKp4JzzCA3tNqW246XA.png
uint256 team_sfi = 54 * 1 ether;
SFI(SFI_address).mint_SFI(team_address, team_sfi);
} else {
uint256 rewardSFI = 0;
if (pool < pool_SFI_rewards.length) {
rewardSFI = pool_SFI_rewards[pool];
SFI(SFI_address).mint_SFI(pools[pool], rewardSFI);
}
ISaffronPool(pools[pool]).wind_down_epoch(epoch, rewardSFI);
}
}
// Deploy all capital in pool (funnel 100% of pooled base assets into best adapter)
function deploy_all_capital() external override {
require(block.timestamp >= last_deploy + (deploy_interval), "deploy call too soon" );
last_deploy = block.timestamp;
// DAI/Compound
ISaffronPool pool = ISaffronPool(pools[0]);
IERC20 base_asset = IERC20(pool.get_base_asset_address());
if (base_asset.balanceOf(pools[0]) > 0) pool.hourly_strategy(adapters[0]);
// DAI/Rari
pool = ISaffronPool(pools[9]);
base_asset = IERC20(pool.get_base_asset_address());
if (base_asset.balanceOf(pools[9]) > 0) pool.hourly_strategy(adapters[1]);
// wBTC/Compound
pool = ISaffronPool(pools[4]);
base_asset = IERC20(pool.get_base_asset_address());
if (base_asset.balanceOf(pools[4]) > 0) pool.hourly_strategy(adapters[2]);
// USDT/Compound
pool = ISaffronPool(pools[11]);
base_asset = IERC20(pool.get_base_asset_address());
if (base_asset.balanceOf(pools[11]) > 0) pool.hourly_strategy(adapters[3]);
// USDC/Compound
pool = ISaffronPool(pools[12]);
base_asset = IERC20(pool.get_base_asset_address());
if (base_asset.balanceOf(pools[12]) > 0) pool.hourly_strategy(adapters[4]);
}
function deploy_all_capital_single_pool(uint256 pool_index, uint256 adapter_index) public {
require(msg.sender == governance, "must be governance");
ISaffronPool pool = ISaffronPool(pools[pool_index]);
IERC20 base_asset = IERC20(pool.get_base_asset_address());
if (base_asset.balanceOf(pools[pool_index]) > 0) pool.hourly_strategy(adapters[adapter_index]);
}
function v01_final_deploy() external {
require(msg.sender == governance, "must be governance");
// DAI Compound
ISaffronPool pool = ISaffronPool(pools[0]);
IERC20 base_asset = IERC20(pool.get_base_asset_address());
if (base_asset.balanceOf(pools[0]) > 0) pool.hourly_strategy(adapters[0]);
// Rari
pool = ISaffronPool(pools[9]);
base_asset = IERC20(pool.get_base_asset_address());
if (base_asset.balanceOf(pools[9]) > 0) pool.hourly_strategy(adapters[1]);
// wBTC/Compound
pool = ISaffronPool(pools[4]);
base_asset = IERC20(pool.get_base_asset_address());
if (base_asset.balanceOf(pools[4]) > 0) pool.hourly_strategy(adapters[2]);
// USDT/Compound
pool = ISaffronPool(pools[11]);
base_asset = IERC20(pool.get_base_asset_address());
if (base_asset.balanceOf(pools[11]) > 0) pool.hourly_strategy(adapters[3]);
// USDC/Compound
pool = ISaffronPool(pools[12]);
base_asset = IERC20(pool.get_base_asset_address());
if (base_asset.balanceOf(pools[12]) > 0) pool.hourly_strategy(adapters[4]);
for (uint256 i = 0; i < pools.length; i++) {
ISaffronPool(pools[i]).shutdown();
}
}
// Add adapters to a list of adapters passed in
function add_adapter(address adapter_address) external override {
require(msg.sender == governance, "add_adapter: must be governance");
adapter_indexes[adapter_address] = adapters.length;
adapters.push(adapter_address);
}
// Get an adapter's address by index
function get_adapter_index(address adapter_address) public view returns(uint256) {
return adapter_indexes[adapter_address];
}
// Get an adapter's address by index
function get_adapter_address(uint256 index) external view override returns(address) {
return address(adapters[index]);
}
function add_pool(address pool_address) external override {
require(msg.sender == governance, "add_pool: must be governance");
pools.push(pool_address);
}
function delete_adapters() external override {
require(msg.sender == governance, "delete_adapters: must be governance");
delete adapters;
}
function set_team_address(address to) public {
require(msg.sender == governance || msg.sender == team_address, "permission");
team_address = to;
}
function set_governance(address to) external override {
require(msg.sender == governance, "set_governance: must be governance");
governance = to;
}
function set_pool_SFI_reward(uint256 poolIndex, uint256 reward) external override {
require(msg.sender == governance, "set_governance: must be governance");
pool_SFI_rewards[poolIndex] = reward;
}
function shutdown_pool(uint256 poolIndex) external {
require(msg.sender == governance, "must be governance");
ISaffronPool(pools[poolIndex]).shutdown();
}
function select_adapter_for_liquidity_removal() external view override returns(address) {
return adapters[0]; // v0: only one adapter
}
// v1.5 add replace adapter function
// v1.5 add remove adapter function
/*** TIME UTILITY FUNCTIONS ***/
function get_epoch_end(uint256 epoch) public view returns (uint256) {
return epoch_cycle.start_date.add(epoch.add(1).mul(epoch_cycle.duration));
}
function get_current_epoch() public view returns (uint256) {
require(block.timestamp > epoch_cycle.start_date, "before epoch 0");
return (block.timestamp - epoch_cycle.start_date) / epoch_cycle.duration;
}
function get_seconds_until_epoch_end(uint256 epoch) public view returns (uint256) {
return epoch_cycle.start_date.add(epoch.add(1).mul(epoch_cycle.duration)).sub(block.timestamp);
}
event ErcSwept(address who, address to, address token, uint256 amount);
function erc_sweep(address _token, address _to) public {
require(msg.sender == governance, "must be governance");
IERC20 tkn = IERC20(_token);
uint256 tBal = tkn.balanceOf(address(this));
tkn.safeTransfer(_to, tBal);
emit ErcSwept(msg.sender, _to, _token, tBal);
}
}
Compiler Settings
{"remappings":[],"optimizer":{"runs":999999,"enabled":true},"metadata":{"bytecodeHash":"ipfs"},"libraries":{},"evmVersion":"istanbul","compilationTarget":{"SaffronStrategy.sol":"SaffronStrategy"}}
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_sfi_address","internalType":"address"},{"type":"address","name":"_team_address","internalType":"address"},{"type":"bool","name":"epoch_cycle_reset","internalType":"bool"}]},{"type":"event","name":"ErcSwept","inputs":[{"type":"address","name":"who","internalType":"address","indexed":false},{"type":"address","name":"to","internalType":"address","indexed":false},{"type":"address","name":"token","internalType":"address","indexed":false},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"SFI_address","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"adapters","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"add_adapter","inputs":[{"type":"address","name":"adapter_address","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"add_pool","inputs":[{"type":"address","name":"pool_address","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"delete_adapters","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"deploy_all_capital","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"deploy_all_capital_single_pool","inputs":[{"type":"uint256","name":"pool_index","internalType":"uint256"},{"type":"uint256","name":"adapter_index","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"deploy_interval","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"start_date","internalType":"uint256"},{"type":"uint256","name":"duration","internalType":"uint256"}],"name":"epoch_cycle","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"epoch_wound_down","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"erc_sweep","inputs":[{"type":"address","name":"_token","internalType":"address"},{"type":"address","name":"_to","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"get_adapter_address","inputs":[{"type":"uint256","name":"index","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"get_adapter_index","inputs":[{"type":"address","name":"adapter_address","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"get_current_epoch","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"get_epoch_end","inputs":[{"type":"uint256","name":"epoch","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"get_seconds_until_epoch_end","inputs":[{"type":"uint256","name":"epoch","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"governance","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"last_deploy","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract ChainlinkRewardOracle"}],"name":"oracle","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"oracle_set_reward","inputs":[{"type":"uint16","name":"epoch","internalType":"uint16"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"pool_SFI_rewards","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"pools","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"select_adapter_for_liquidity_removal","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"set_governance","inputs":[{"type":"address","name":"to","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"set_oracle","inputs":[{"type":"address","name":"oracleAddr","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"set_pool_SFI_reward","inputs":[{"type":"uint256","name":"poolIndex","internalType":"uint256"},{"type":"uint256","name":"reward","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"set_team_address","inputs":[{"type":"address","name":"to","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"shutdown_pool","inputs":[{"type":"uint256","name":"poolIndex","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"team_address","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"v01_final_deploy","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"wind_down_epoch","inputs":[{"type":"uint256","name":"epoch","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"wind_down_epoch_oracle","inputs":[{"type":"uint256","name":"epoch","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"wind_down_pool","inputs":[{"type":"uint256","name":"pool","internalType":"uint256"},{"type":"uint256","name":"epoch","internalType":"uint256"}]}]
Contract Creation Code
0x6102206040526791b77e5e5d9a000060808181526801d460162f516f000060a0819052680138400eca364a000060c0526714d1120d7b16000060e081905267d71b0fe0a28e000061010052610120819052610140819052610160919091526101808190526101a08390526101c0526101e0829052610200919091526200008a90600890600d62000176565b5060408051808201909152635f9ebf60808252621275006020909201829052600c55600d55348015620000bc57600080fd5b50604051620045ac380380620045ac83398181016040526060811015620000e257600080fd5b508051602082015160409092015160018054336001600160a01b0319918216179091556002805482166001600160a01b038087169190911790915560038054909216908416179055610e10600b559091908062000143576212750062000147565b6107085b62ffffff16600d55806200016057635f9ebf6062000169565b600d5460040242035b600c5550620001e8915050565b828054828255906000526020600020908101928215620001bf579160200282015b82811115620001bf57825182906001600160481b031690559160200191906001019062000197565b50620001cd929150620001d1565b5090565b5b80821115620001cd5760008155600101620001d2565b6143b480620001f86000396000f3fe608060405234801561001057600080fd5b506004361061020b5760003560e01c80639ba6e0ee1161012a578063cdaa608d116100bd578063e653be741161008c578063ef92008311610071578063ef92008314610596578063f04af652146105b3578063fd821062146105d05761020b565b8063e653be7414610586578063e7dbe7711461058e5761020b565b8063cdaa608d146104fb578063d07495031461052e578063d0c87c1e14610561578063df4cbfd8146105695761020b565b8063b613ab97116100f9578063b613ab9714610455578063bd4f3b8314610488578063c45a2fe3146104bb578063ccb06307146104de5761020b565b80639ba6e0ee146103dc578063a684b599146103ff578063ab3a1cc014610430578063ac4afa38146104385761020b565b80635aa6e675116101a257806382306a4b1161017157806382306a4b1461038e578063837a9bc7146103af5780638f32cf0c146103b757806392e4d082146103bf5761020b565b80635aa6e6751461034357806372deebf31461034b5780637dc0d1d0146103535780637f9126101461035b5761020b565b80632a0ccc88116101de5780632a0ccc881461029d5780632b666fcf146102ce5780634e0bad78146103095780634ef501ac146103265761020b565b80630522157514610210578063070313fa1461022a5780630efb8dbd1461025f5780631816f3141461027c575b600080fd5b6102186105f3565b60408051918252519081900360200190f35b61025d6004803603602081101561024057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166105f9565b005b6102186004803603602081101561027557600080fd5b50356106b0565b6102846106de565b6040805192835260208301919091528051918290030190f35b6102a56106e7565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b61025d600480360360408110156102e457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610703565b61025d6004803603602081101561031f57600080fd5b50356108ac565b6102a56004803603602081101561033c57600080fd5b50356109c8565b6102a56109ff565b61025d610a1b565b6102a56115b6565b6102186004803603602081101561037157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166115d2565b61025d600480360360208110156103a457600080fd5b503561ffff166115fa565b610218611764565b6102a56117ec565b610218600480360360208110156103d557600080fd5b5035611808565b61025d600480360360408110156103f257600080fd5b5080359060200135611829565b61041c6004803603602081101561041557600080fd5b50356118b7565b604080519115158252519081900360200190f35b61025d6118cc565b6102a56004803603602081101561044e57600080fd5b503561251e565b61025d6004803603602081101561046b57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661252e565b61025d6004803603602081101561049e57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661263a565b61025d600480360360408110156104d157600080fd5b5080359060200135612729565b6102a5600480360360208110156104f457600080fd5b50356129ee565b61025d6004803603602081101561051157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612a25565b61025d6004803603602081101561054457600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612b14565b610218612c11565b6102186004803603602081101561057f57600080fd5b5035612c17565b61025d612c43565b6102a5612cc1565b61025d600480360360208110156105ac57600080fd5b5035612cf8565b61025d600480360360208110156105c957600080fd5b50356133ae565b61025d600480360360408110156105e657600080fd5b5080359060200135613851565b600a5481565b60015473ffffffffffffffffffffffffffffffffffffffff163314610669576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806142ef6022913960400191505060405180910390fd5b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600d546000906106d8906106cf906106c9856001613cf0565b90613d6b565b600c5490613cf0565b92915050565b600c54600d5482565b60035473ffffffffffffffffffffffffffffffffffffffff1681565b60015473ffffffffffffffffffffffffffffffffffffffff16331461078957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f6d75737420626520676f7665726e616e63650000000000000000000000000000604482015290519081900360640190fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051839160009173ffffffffffffffffffffffffffffffffffffffff8416916370a08231916024808301926020929190829003018186803b1580156107fa57600080fd5b505afa15801561080e573d6000803e3d6000fd5b505050506040513d602081101561082457600080fd5b5051905061084973ffffffffffffffffffffffffffffffffffffffff83168483613dde565b6040805133815273ffffffffffffffffffffffffffffffffffffffff80861660208301528616818301526060810183905290517f2c4e64c7c0957a81c0076a0a3f3c7d9f0a5d6158292071c794436f829d12cfb79181900360800190a150505050565b60015473ffffffffffffffffffffffffffffffffffffffff16331461093257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f6d75737420626520676f7665726e616e63650000000000000000000000000000604482015290519081900360640190fd5b6004818154811061093f57fe5b6000918252602082200154604080517ffc0e74d1000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169263fc0e74d19260048084019382900301818387803b1580156109ad57600080fd5b505af11580156109c1573d6000803e3d6000fd5b5050505050565b600581815481106109d857600080fd5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b600b54600a5401421015610a9057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f6465706c6f792063616c6c20746f6f20736f6f6e000000000000000000000000604482015290519081900360640190fd5b42600a8190555060006004600081548110610aa757fe5b6000918252602080832090910154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b158015610b1a57600080fd5b505afa158015610b2e573d6000803e3d6000fd5b505050506040513d6020811015610b4457600080fd5b50516004805491925060009173ffffffffffffffffffffffffffffffffffffffff8416916370a08231918490610b7657fe5b60009182526020918290200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301525160248083019392829003018186803b158015610be957600080fd5b505afa158015610bfd573d6000803e3d6000fd5b505050506040513d6020811015610c1357600080fd5b50511115610cd0578173ffffffffffffffffffffffffffffffffffffffff16634c1a42596005600081548110610c4557fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152516024808301939282900301818387803b158015610cb757600080fd5b505af1158015610ccb573d6000803e3d6000fd5b505050505b6004600981548110610cde57fe5b60009182526020918290200154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b158015610d5057600080fd5b505afa158015610d64573d6000803e3d6000fd5b505050506040513d6020811015610d7a57600080fd5b50516004805491925060009173ffffffffffffffffffffffffffffffffffffffff8416916370a08231916009908110610daf57fe5b60009182526020918290200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301525160248083019392829003018186803b158015610e2257600080fd5b505afa158015610e36573d6000803e3d6000fd5b505050506040513d6020811015610e4c57600080fd5b50511115610f09578173ffffffffffffffffffffffffffffffffffffffff16634c1a42596005600181548110610e7e57fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152516024808301939282900301818387803b158015610ef057600080fd5b505af1158015610f04573d6000803e3d6000fd5b505050505b60048081548110610f1657fe5b60009182526020918290200154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b158015610f8857600080fd5b505afa158015610f9c573d6000803e3d6000fd5b505050506040513d6020811015610fb257600080fd5b50516004805491925060009173ffffffffffffffffffffffffffffffffffffffff8416916370a082319181908110610fe657fe5b60009182526020918290200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301525160248083019392829003018186803b15801561105957600080fd5b505afa15801561106d573d6000803e3d6000fd5b505050506040513d602081101561108357600080fd5b50511115611140578173ffffffffffffffffffffffffffffffffffffffff16634c1a425960056002815481106110b557fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152516024808301939282900301818387803b15801561112757600080fd5b505af115801561113b573d6000803e3d6000fd5b505050505b6004600b8154811061114e57fe5b60009182526020918290200154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b1580156111c057600080fd5b505afa1580156111d4573d6000803e3d6000fd5b505050506040513d60208110156111ea57600080fd5b50516004805491925060009173ffffffffffffffffffffffffffffffffffffffff8416916370a0823191600b90811061121f57fe5b60009182526020918290200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301525160248083019392829003018186803b15801561129257600080fd5b505afa1580156112a6573d6000803e3d6000fd5b505050506040513d60208110156112bc57600080fd5b50511115611379578173ffffffffffffffffffffffffffffffffffffffff16634c1a425960056003815481106112ee57fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152516024808301939282900301818387803b15801561136057600080fd5b505af1158015611374573d6000803e3d6000fd5b505050505b6004600c8154811061138757fe5b60009182526020918290200154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b1580156113f957600080fd5b505afa15801561140d573d6000803e3d6000fd5b505050506040513d602081101561142357600080fd5b50516004805491925060009173ffffffffffffffffffffffffffffffffffffffff8416916370a0823191600c90811061145857fe5b60009182526020918290200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301525160248083019392829003018186803b1580156114cb57600080fd5b505afa1580156114df573d6000803e3d6000fd5b505050506040513d60208110156114f557600080fd5b505111156115b2578173ffffffffffffffffffffffffffffffffffffffff16634c1a4259600560048154811061152757fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152516024808301939282900301818387803b15801561159957600080fd5b505af11580156115ad573d6000803e3d6000fd5b505050505b5050565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205490565b60025473ffffffffffffffffffffffffffffffffffffffff16331480611637575060015473ffffffffffffffffffffffffffffffffffffffff1633145b6116a257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6d757374206265207465616d206f7220676f7665726e616e6365000000000000604482015290519081900360640190fd5b600054604080517f5306081b00000000000000000000000000000000000000000000000000000000815261ffff84166004820190815260248201928352600880546044840181905273ffffffffffffffffffffffffffffffffffffffff90951694635306081b94879492939290916064909101908490801561174357602002820191906000526020600020905b81548152602001906001019080831161172f575b50509350505050600060405180830381600087803b1580156109ad57600080fd5b600c5460009042116117d757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f6265666f72652065706f63682030000000000000000000000000000000000000604482015290519081900360640190fd5b600d54600c544203816117e657fe5b04905090565b60025473ffffffffffffffffffffffffffffffffffffffff1681565b6008818154811061181857600080fd5b600091825260209091200154905081565b60015473ffffffffffffffffffffffffffffffffffffffff163314611899576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806142ef6022913960400191505060405180910390fd5b80600883815481106118a757fe5b6000918252602090912001555050565b60096020526000908152604090205460ff1681565b60015473ffffffffffffffffffffffffffffffffffffffff16331461195257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f6d75737420626520676f7665726e616e63650000000000000000000000000000604482015290519081900360640190fd5b6000600460008154811061196257fe5b6000918252602080832090910154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b1580156119d557600080fd5b505afa1580156119e9573d6000803e3d6000fd5b505050506040513d60208110156119ff57600080fd5b50516004805491925060009173ffffffffffffffffffffffffffffffffffffffff8416916370a08231918490611a3157fe5b60009182526020918290200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301525160248083019392829003018186803b158015611aa457600080fd5b505afa158015611ab8573d6000803e3d6000fd5b505050506040513d6020811015611ace57600080fd5b50511115611b8b578173ffffffffffffffffffffffffffffffffffffffff16634c1a42596005600081548110611b0057fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152516024808301939282900301818387803b158015611b7257600080fd5b505af1158015611b86573d6000803e3d6000fd5b505050505b6004600981548110611b9957fe5b60009182526020918290200154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b158015611c0b57600080fd5b505afa158015611c1f573d6000803e3d6000fd5b505050506040513d6020811015611c3557600080fd5b50516004805491925060009173ffffffffffffffffffffffffffffffffffffffff8416916370a08231916009908110611c6a57fe5b60009182526020918290200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301525160248083019392829003018186803b158015611cdd57600080fd5b505afa158015611cf1573d6000803e3d6000fd5b505050506040513d6020811015611d0757600080fd5b50511115611dc4578173ffffffffffffffffffffffffffffffffffffffff16634c1a42596005600181548110611d3957fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152516024808301939282900301818387803b158015611dab57600080fd5b505af1158015611dbf573d6000803e3d6000fd5b505050505b60048081548110611dd157fe5b60009182526020918290200154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b158015611e4357600080fd5b505afa158015611e57573d6000803e3d6000fd5b505050506040513d6020811015611e6d57600080fd5b50516004805491925060009173ffffffffffffffffffffffffffffffffffffffff8416916370a082319181908110611ea157fe5b60009182526020918290200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301525160248083019392829003018186803b158015611f1457600080fd5b505afa158015611f28573d6000803e3d6000fd5b505050506040513d6020811015611f3e57600080fd5b50511115611ffb578173ffffffffffffffffffffffffffffffffffffffff16634c1a42596005600281548110611f7057fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152516024808301939282900301818387803b158015611fe257600080fd5b505af1158015611ff6573d6000803e3d6000fd5b505050505b6004600b8154811061200957fe5b60009182526020918290200154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b15801561207b57600080fd5b505afa15801561208f573d6000803e3d6000fd5b505050506040513d60208110156120a557600080fd5b50516004805491925060009173ffffffffffffffffffffffffffffffffffffffff8416916370a0823191600b9081106120da57fe5b60009182526020918290200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301525160248083019392829003018186803b15801561214d57600080fd5b505afa158015612161573d6000803e3d6000fd5b505050506040513d602081101561217757600080fd5b50511115612234578173ffffffffffffffffffffffffffffffffffffffff16634c1a425960056003815481106121a957fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152516024808301939282900301818387803b15801561221b57600080fd5b505af115801561222f573d6000803e3d6000fd5b505050505b6004600c8154811061224257fe5b60009182526020918290200154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b1580156122b457600080fd5b505afa1580156122c8573d6000803e3d6000fd5b505050506040513d60208110156122de57600080fd5b50516004805491925060009173ffffffffffffffffffffffffffffffffffffffff8416916370a0823191600c90811061231357fe5b60009182526020918290200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301525160248083019392829003018186803b15801561238657600080fd5b505afa15801561239a573d6000803e3d6000fd5b505050506040513d60208110156123b057600080fd5b5051111561246d578173ffffffffffffffffffffffffffffffffffffffff16634c1a425960056004815481106123e257fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152516024808301939282900301818387803b15801561245457600080fd5b505af1158015612468573d6000803e3d6000fd5b505050505b60005b600454811015612519576004818154811061248757fe5b6000918252602082200154604080517ffc0e74d1000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169263fc0e74d19260048084019382900301818387803b1580156124f557600080fd5b505af1158015612509573d6000803e3d6000fd5b5050600190920191506124709050565b505050565b600481815481106109d857600080fd5b60015473ffffffffffffffffffffffffffffffffffffffff1633146125b457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f6164645f616461707465723a206d75737420626520676f7665726e616e636500604482015290519081900360640190fd5b6005805473ffffffffffffffffffffffffffffffffffffffff9092166000818152600660205260408120849055600184018355919091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db090910180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b60025473ffffffffffffffffffffffffffffffffffffffff16331480612677575060015473ffffffffffffffffffffffffffffffffffffffff1633145b6126e257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6d757374206265207465616d206f7220676f7665726e616e6365000000000000604482015290519081900360640190fd5b600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60015473ffffffffffffffffffffffffffffffffffffffff1633146127af57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f6d75737420626520676f7665726e616e63650000000000000000000000000000604482015290519081900360640190fd5b6000600483815481106127be57fe5b6000918252602080832090910154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b15801561283157600080fd5b505afa158015612845573d6000803e3d6000fd5b505050506040513d602081101561285b57600080fd5b50516004805491925060009173ffffffffffffffffffffffffffffffffffffffff8416916370a08231918890811061288f57fe5b60009182526020918290200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301525160248083019392829003018186803b15801561290257600080fd5b505afa158015612916573d6000803e3d6000fd5b505050506040513d602081101561292c57600080fd5b505111156129e8578173ffffffffffffffffffffffffffffffffffffffff16634c1a42596005858154811061295d57fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152516024808301939282900301818387803b1580156129cf57600080fd5b505af11580156129e3573d6000803e3d6000fd5b505050505b50505050565b6000600582815481106129fd57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b60015473ffffffffffffffffffffffffffffffffffffffff16331480612a62575060025473ffffffffffffffffffffffffffffffffffffffff1633145b612acd57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f7065726d697373696f6e00000000000000000000000000000000000000000000604482015290519081900360640190fd5b600280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60015473ffffffffffffffffffffffffffffffffffffffff163314612b9a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f6164645f706f6f6c3a206d75737420626520676f7665726e616e636500000000604482015290519081900360640190fd5b600480546001810182556000919091527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600b5481565b60006106d842612c3d6106cf600c600101546106c9600188613cf090919063ffffffff16565b90613e6b565b60015473ffffffffffffffffffffffffffffffffffffffff163314612cb3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806143326023913960400191505060405180910390fd5b612cbf6005600061428e565b565b60006005600081548110612cd157fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905090565b80600c14612d6757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f76312e31323a206f6e6c792065706f6368203132000000000000000000000000604482015290519081900360640190fd5b60008181526009602052604090205460ff1615612de557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f65706f636820616c726561647920776f756e6420646f776e0000000000000000604482015290519081900360640190fd5b60025473ffffffffffffffffffffffffffffffffffffffff16331480612e22575060015473ffffffffffffffffffffffffffffffffffffffff1633145b612e8d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6d757374206265207465616d206f7220676f7665726e616e6365000000000000604482015290519081900360640190fd5b6000612e97611764565b9050808210612f0757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f63616e6e6f742077696e6420646f776e206675747572652065706f6368000000604482015290519081900360640190fd5b600082815260096020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555473ffffffffffffffffffffffffffffffffffffffff16612fc057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f6e6f206f7261636c650000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600354600254604080517fc21b27c700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff92831660048201526802ed6689e54f1800006024820181905291519193929092169163c21b27c791604480830192600092919082900301818387803b15801561304a57600080fd5b505af115801561305e573d6000803e3d6000fd5b505060008054604080517f9afbb47500000000000000000000000000000000000000000000000000000000815261ffff89166004820152905173ffffffffffffffffffffffffffffffffffffffff9092169450639afbb4759350602480820193929182900301818387803b1580156130d557600080fd5b505af11580156130e9573d6000803e3d6000fd5b5050505060005b60045461ffff821610156129e85760085460009061ffff831610156132fc57600054604080517f560f609200000000000000000000000000000000000000000000000000000000815261ffff808916600483015285166024820152905173ffffffffffffffffffffffffffffffffffffffff9092169163560f609291604480820192608092909190829003018186803b15801561318c57600080fd5b505afa1580156131a0573d6000803e3d6000fd5b505050506040513d60808110156131b657600080fd5b506060015190506801d7d843dc3b48000081111561323557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f6f7261636c65206661696c7572653a207265776172647320746f6f2068696768604482015290519081900360640190fd5b6003546004805473ffffffffffffffffffffffffffffffffffffffff9092169163c21b27c7919061ffff861690811061326a57fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201869052516044808301939282900301818387803b1580156132e357600080fd5b505af11580156132f7573d6000803e3d6000fd5b505050505b60048261ffff168154811061330d57fe5b6000918252602082200154604080517f80e0f15f0000000000000000000000000000000000000000000000000000000081526004810189905260248101859052905173ffffffffffffffffffffffffffffffffffffffff909216926380e0f15f9260448084019382900301818387803b15801561338957600080fd5b505af115801561339d573d6000803e3d6000fd5b5050600190930192506130f0915050565b80600c1461341d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f76312e31323a206f6e6c792065706f6368203132000000000000000000000000604482015290519081900360640190fd5b60008181526009602052604090205460ff161561349b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f65706f636820616c726561647920776f756e6420646f776e0000000000000000604482015290519081900360640190fd5b60025473ffffffffffffffffffffffffffffffffffffffff163314806134d8575060015473ffffffffffffffffffffffffffffffffffffffff1633145b61354357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6d757374206265207465616d206f7220676f7665726e616e6365000000000000604482015290519081900360640190fd5b600061354d611764565b90508082106135bd57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f63616e6e6f742077696e6420646f776e206675747572652065706f6368000000604482015290519081900360640190fd5b60008281526009602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905560035460025482517fc21b27c700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff91821660048201526802ed6689e54f1800006024820181905293519394919092169263c21b27c792604480820193929182900301818387803b15801561367a57600080fd5b505af115801561368e573d6000803e3d6000fd5b5050505060005b6004548110156129e8576008546000908210156137a357600882815481106136b957fe5b90600052602060002001549050600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c21b27c76004848154811061371157fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201869052516044808301939282900301818387803b15801561378a57600080fd5b505af115801561379e573d6000803e3d6000fd5b505050505b600482815481106137b057fe5b6000918252602082200154604080517f80e0f15f0000000000000000000000000000000000000000000000000000000081526004810189905260248101859052905173ffffffffffffffffffffffffffffffffffffffff909216926380e0f15f9260448084019382900301818387803b15801561382c57600080fd5b505af1158015613840573d6000803e3d6000fd5b505060019093019250613695915050565b60025473ffffffffffffffffffffffffffffffffffffffff1633148061388e575060015473ffffffffffffffffffffffffffffffffffffffff1633145b6138f957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6d757374206265207465616d206f7220676f7665726e616e6365000000000000604482015290519081900360640190fd5b80600c1461396857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f76312e31323a206f6e6c792065706f6368203132000000000000000000000000604482015290519081900360640190fd5b6000613972611764565b90508082106139e257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f63616e6e6f742077696e6420646f776e206675747572652065706f6368000000604482015290519081900360640190fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831415613b635760008281526009602052604090205460ff1615613a8857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f65706f636820616c726561647920776f756e6420646f776e0000000000000000604482015290519081900360640190fd5b60008281526009602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905560035460025482517fc21b27c700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff91821660048201526802ed6689e54f1800006024820181905293519394919092169263c21b27c792604480820193929182900301818387803b158015613b4557600080fd5b505af1158015613b59573d6000803e3d6000fd5b5050505050612519565b600854600090841015613c675760088481548110613b7d57fe5b90600052602060002001549050600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c21b27c760048681548110613bd557fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201869052516044808301939282900301818387803b158015613c4e57600080fd5b505af1158015613c62573d6000803e3d6000fd5b505050505b60048481548110613c7457fe5b6000918252602082200154604080517f80e0f15f0000000000000000000000000000000000000000000000000000000081526004810187905260248101859052905173ffffffffffffffffffffffffffffffffffffffff909216926380e0f15f9260448084019382900301818387803b1580156129cf57600080fd5b600082820183811015613d6457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600082613d7a575060006106d8565b82820282848281613d8757fe5b0414613d64576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143116021913960400191505060405180910390fd5b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052612519908490613ead565b6000613d6483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613f85565b6060613f0f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166140369092919063ffffffff16565b80519091501561251957808060200190516020811015613f2e57600080fd5b5051612519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614355602a913960400191505060405180910390fd5b6000818484111561402e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613ff3578181015183820152602001613fdb565b50505050905090810190601f1680156140205780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6060614045848460008561404d565b949350505050565b6060824710156140a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806142c96026913960400191505060405180910390fd5b6140b185614208565b61411c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061418657805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101614149565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146141e8576040519150601f19603f3d011682016040523d82523d6000602084013e6141ed565b606091505b50915091506141fd82828661420e565b979650505050505050565b3b151590565b6060831561421d575081613d64565b82511561422d5782518084602001fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152845160248401528451859391928392604401919085019080838360008315613ff3578181015183820152602001613fdb565b50805460008255906000526020600020908101906142ac91906142af565b50565b5b808211156142c457600081556001016142b0565b509056fe416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c7365745f676f7665726e616e63653a206d75737420626520676f7665726e616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7764656c6574655f61646170746572733a206d75737420626520676f7665726e616e63655361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220b21990b9d17caa592b9ee2b149b51c54de50540f5ee797c888c8f70c2d8949fe64736f6c63430007040033000000000000000000000000b753428af26e81097e7fd17f40c88aaa3e04902c00000000000000000000000009e9ff67d9d5a25fa465db6f0bede5560581f8cb0000000000000000000000000000000000000000000000000000000000000000
Deployed ByteCode
0x608060405234801561001057600080fd5b506004361061020b5760003560e01c80639ba6e0ee1161012a578063cdaa608d116100bd578063e653be741161008c578063ef92008311610071578063ef92008314610596578063f04af652146105b3578063fd821062146105d05761020b565b8063e653be7414610586578063e7dbe7711461058e5761020b565b8063cdaa608d146104fb578063d07495031461052e578063d0c87c1e14610561578063df4cbfd8146105695761020b565b8063b613ab97116100f9578063b613ab9714610455578063bd4f3b8314610488578063c45a2fe3146104bb578063ccb06307146104de5761020b565b80639ba6e0ee146103dc578063a684b599146103ff578063ab3a1cc014610430578063ac4afa38146104385761020b565b80635aa6e675116101a257806382306a4b1161017157806382306a4b1461038e578063837a9bc7146103af5780638f32cf0c146103b757806392e4d082146103bf5761020b565b80635aa6e6751461034357806372deebf31461034b5780637dc0d1d0146103535780637f9126101461035b5761020b565b80632a0ccc88116101de5780632a0ccc881461029d5780632b666fcf146102ce5780634e0bad78146103095780634ef501ac146103265761020b565b80630522157514610210578063070313fa1461022a5780630efb8dbd1461025f5780631816f3141461027c575b600080fd5b6102186105f3565b60408051918252519081900360200190f35b61025d6004803603602081101561024057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166105f9565b005b6102186004803603602081101561027557600080fd5b50356106b0565b6102846106de565b6040805192835260208301919091528051918290030190f35b6102a56106e7565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b61025d600480360360408110156102e457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610703565b61025d6004803603602081101561031f57600080fd5b50356108ac565b6102a56004803603602081101561033c57600080fd5b50356109c8565b6102a56109ff565b61025d610a1b565b6102a56115b6565b6102186004803603602081101561037157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166115d2565b61025d600480360360208110156103a457600080fd5b503561ffff166115fa565b610218611764565b6102a56117ec565b610218600480360360208110156103d557600080fd5b5035611808565b61025d600480360360408110156103f257600080fd5b5080359060200135611829565b61041c6004803603602081101561041557600080fd5b50356118b7565b604080519115158252519081900360200190f35b61025d6118cc565b6102a56004803603602081101561044e57600080fd5b503561251e565b61025d6004803603602081101561046b57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661252e565b61025d6004803603602081101561049e57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661263a565b61025d600480360360408110156104d157600080fd5b5080359060200135612729565b6102a5600480360360208110156104f457600080fd5b50356129ee565b61025d6004803603602081101561051157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612a25565b61025d6004803603602081101561054457600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612b14565b610218612c11565b6102186004803603602081101561057f57600080fd5b5035612c17565b61025d612c43565b6102a5612cc1565b61025d600480360360208110156105ac57600080fd5b5035612cf8565b61025d600480360360208110156105c957600080fd5b50356133ae565b61025d600480360360408110156105e657600080fd5b5080359060200135613851565b600a5481565b60015473ffffffffffffffffffffffffffffffffffffffff163314610669576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806142ef6022913960400191505060405180910390fd5b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600d546000906106d8906106cf906106c9856001613cf0565b90613d6b565b600c5490613cf0565b92915050565b600c54600d5482565b60035473ffffffffffffffffffffffffffffffffffffffff1681565b60015473ffffffffffffffffffffffffffffffffffffffff16331461078957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f6d75737420626520676f7665726e616e63650000000000000000000000000000604482015290519081900360640190fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051839160009173ffffffffffffffffffffffffffffffffffffffff8416916370a08231916024808301926020929190829003018186803b1580156107fa57600080fd5b505afa15801561080e573d6000803e3d6000fd5b505050506040513d602081101561082457600080fd5b5051905061084973ffffffffffffffffffffffffffffffffffffffff83168483613dde565b6040805133815273ffffffffffffffffffffffffffffffffffffffff80861660208301528616818301526060810183905290517f2c4e64c7c0957a81c0076a0a3f3c7d9f0a5d6158292071c794436f829d12cfb79181900360800190a150505050565b60015473ffffffffffffffffffffffffffffffffffffffff16331461093257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f6d75737420626520676f7665726e616e63650000000000000000000000000000604482015290519081900360640190fd5b6004818154811061093f57fe5b6000918252602082200154604080517ffc0e74d1000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169263fc0e74d19260048084019382900301818387803b1580156109ad57600080fd5b505af11580156109c1573d6000803e3d6000fd5b5050505050565b600581815481106109d857600080fd5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b600b54600a5401421015610a9057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f6465706c6f792063616c6c20746f6f20736f6f6e000000000000000000000000604482015290519081900360640190fd5b42600a8190555060006004600081548110610aa757fe5b6000918252602080832090910154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b158015610b1a57600080fd5b505afa158015610b2e573d6000803e3d6000fd5b505050506040513d6020811015610b4457600080fd5b50516004805491925060009173ffffffffffffffffffffffffffffffffffffffff8416916370a08231918490610b7657fe5b60009182526020918290200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301525160248083019392829003018186803b158015610be957600080fd5b505afa158015610bfd573d6000803e3d6000fd5b505050506040513d6020811015610c1357600080fd5b50511115610cd0578173ffffffffffffffffffffffffffffffffffffffff16634c1a42596005600081548110610c4557fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152516024808301939282900301818387803b158015610cb757600080fd5b505af1158015610ccb573d6000803e3d6000fd5b505050505b6004600981548110610cde57fe5b60009182526020918290200154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b158015610d5057600080fd5b505afa158015610d64573d6000803e3d6000fd5b505050506040513d6020811015610d7a57600080fd5b50516004805491925060009173ffffffffffffffffffffffffffffffffffffffff8416916370a08231916009908110610daf57fe5b60009182526020918290200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301525160248083019392829003018186803b158015610e2257600080fd5b505afa158015610e36573d6000803e3d6000fd5b505050506040513d6020811015610e4c57600080fd5b50511115610f09578173ffffffffffffffffffffffffffffffffffffffff16634c1a42596005600181548110610e7e57fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152516024808301939282900301818387803b158015610ef057600080fd5b505af1158015610f04573d6000803e3d6000fd5b505050505b60048081548110610f1657fe5b60009182526020918290200154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b158015610f8857600080fd5b505afa158015610f9c573d6000803e3d6000fd5b505050506040513d6020811015610fb257600080fd5b50516004805491925060009173ffffffffffffffffffffffffffffffffffffffff8416916370a082319181908110610fe657fe5b60009182526020918290200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301525160248083019392829003018186803b15801561105957600080fd5b505afa15801561106d573d6000803e3d6000fd5b505050506040513d602081101561108357600080fd5b50511115611140578173ffffffffffffffffffffffffffffffffffffffff16634c1a425960056002815481106110b557fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152516024808301939282900301818387803b15801561112757600080fd5b505af115801561113b573d6000803e3d6000fd5b505050505b6004600b8154811061114e57fe5b60009182526020918290200154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b1580156111c057600080fd5b505afa1580156111d4573d6000803e3d6000fd5b505050506040513d60208110156111ea57600080fd5b50516004805491925060009173ffffffffffffffffffffffffffffffffffffffff8416916370a0823191600b90811061121f57fe5b60009182526020918290200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301525160248083019392829003018186803b15801561129257600080fd5b505afa1580156112a6573d6000803e3d6000fd5b505050506040513d60208110156112bc57600080fd5b50511115611379578173ffffffffffffffffffffffffffffffffffffffff16634c1a425960056003815481106112ee57fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152516024808301939282900301818387803b15801561136057600080fd5b505af1158015611374573d6000803e3d6000fd5b505050505b6004600c8154811061138757fe5b60009182526020918290200154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b1580156113f957600080fd5b505afa15801561140d573d6000803e3d6000fd5b505050506040513d602081101561142357600080fd5b50516004805491925060009173ffffffffffffffffffffffffffffffffffffffff8416916370a0823191600c90811061145857fe5b60009182526020918290200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301525160248083019392829003018186803b1580156114cb57600080fd5b505afa1580156114df573d6000803e3d6000fd5b505050506040513d60208110156114f557600080fd5b505111156115b2578173ffffffffffffffffffffffffffffffffffffffff16634c1a4259600560048154811061152757fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152516024808301939282900301818387803b15801561159957600080fd5b505af11580156115ad573d6000803e3d6000fd5b505050505b5050565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205490565b60025473ffffffffffffffffffffffffffffffffffffffff16331480611637575060015473ffffffffffffffffffffffffffffffffffffffff1633145b6116a257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6d757374206265207465616d206f7220676f7665726e616e6365000000000000604482015290519081900360640190fd5b600054604080517f5306081b00000000000000000000000000000000000000000000000000000000815261ffff84166004820190815260248201928352600880546044840181905273ffffffffffffffffffffffffffffffffffffffff90951694635306081b94879492939290916064909101908490801561174357602002820191906000526020600020905b81548152602001906001019080831161172f575b50509350505050600060405180830381600087803b1580156109ad57600080fd5b600c5460009042116117d757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f6265666f72652065706f63682030000000000000000000000000000000000000604482015290519081900360640190fd5b600d54600c544203816117e657fe5b04905090565b60025473ffffffffffffffffffffffffffffffffffffffff1681565b6008818154811061181857600080fd5b600091825260209091200154905081565b60015473ffffffffffffffffffffffffffffffffffffffff163314611899576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806142ef6022913960400191505060405180910390fd5b80600883815481106118a757fe5b6000918252602090912001555050565b60096020526000908152604090205460ff1681565b60015473ffffffffffffffffffffffffffffffffffffffff16331461195257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f6d75737420626520676f7665726e616e63650000000000000000000000000000604482015290519081900360640190fd5b6000600460008154811061196257fe5b6000918252602080832090910154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b1580156119d557600080fd5b505afa1580156119e9573d6000803e3d6000fd5b505050506040513d60208110156119ff57600080fd5b50516004805491925060009173ffffffffffffffffffffffffffffffffffffffff8416916370a08231918490611a3157fe5b60009182526020918290200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301525160248083019392829003018186803b158015611aa457600080fd5b505afa158015611ab8573d6000803e3d6000fd5b505050506040513d6020811015611ace57600080fd5b50511115611b8b578173ffffffffffffffffffffffffffffffffffffffff16634c1a42596005600081548110611b0057fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152516024808301939282900301818387803b158015611b7257600080fd5b505af1158015611b86573d6000803e3d6000fd5b505050505b6004600981548110611b9957fe5b60009182526020918290200154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b158015611c0b57600080fd5b505afa158015611c1f573d6000803e3d6000fd5b505050506040513d6020811015611c3557600080fd5b50516004805491925060009173ffffffffffffffffffffffffffffffffffffffff8416916370a08231916009908110611c6a57fe5b60009182526020918290200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301525160248083019392829003018186803b158015611cdd57600080fd5b505afa158015611cf1573d6000803e3d6000fd5b505050506040513d6020811015611d0757600080fd5b50511115611dc4578173ffffffffffffffffffffffffffffffffffffffff16634c1a42596005600181548110611d3957fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152516024808301939282900301818387803b158015611dab57600080fd5b505af1158015611dbf573d6000803e3d6000fd5b505050505b60048081548110611dd157fe5b60009182526020918290200154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b158015611e4357600080fd5b505afa158015611e57573d6000803e3d6000fd5b505050506040513d6020811015611e6d57600080fd5b50516004805491925060009173ffffffffffffffffffffffffffffffffffffffff8416916370a082319181908110611ea157fe5b60009182526020918290200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301525160248083019392829003018186803b158015611f1457600080fd5b505afa158015611f28573d6000803e3d6000fd5b505050506040513d6020811015611f3e57600080fd5b50511115611ffb578173ffffffffffffffffffffffffffffffffffffffff16634c1a42596005600281548110611f7057fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152516024808301939282900301818387803b158015611fe257600080fd5b505af1158015611ff6573d6000803e3d6000fd5b505050505b6004600b8154811061200957fe5b60009182526020918290200154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b15801561207b57600080fd5b505afa15801561208f573d6000803e3d6000fd5b505050506040513d60208110156120a557600080fd5b50516004805491925060009173ffffffffffffffffffffffffffffffffffffffff8416916370a0823191600b9081106120da57fe5b60009182526020918290200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301525160248083019392829003018186803b15801561214d57600080fd5b505afa158015612161573d6000803e3d6000fd5b505050506040513d602081101561217757600080fd5b50511115612234578173ffffffffffffffffffffffffffffffffffffffff16634c1a425960056003815481106121a957fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152516024808301939282900301818387803b15801561221b57600080fd5b505af115801561222f573d6000803e3d6000fd5b505050505b6004600c8154811061224257fe5b60009182526020918290200154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b1580156122b457600080fd5b505afa1580156122c8573d6000803e3d6000fd5b505050506040513d60208110156122de57600080fd5b50516004805491925060009173ffffffffffffffffffffffffffffffffffffffff8416916370a0823191600c90811061231357fe5b60009182526020918290200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301525160248083019392829003018186803b15801561238657600080fd5b505afa15801561239a573d6000803e3d6000fd5b505050506040513d60208110156123b057600080fd5b5051111561246d578173ffffffffffffffffffffffffffffffffffffffff16634c1a425960056004815481106123e257fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152516024808301939282900301818387803b15801561245457600080fd5b505af1158015612468573d6000803e3d6000fd5b505050505b60005b600454811015612519576004818154811061248757fe5b6000918252602082200154604080517ffc0e74d1000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169263fc0e74d19260048084019382900301818387803b1580156124f557600080fd5b505af1158015612509573d6000803e3d6000fd5b5050600190920191506124709050565b505050565b600481815481106109d857600080fd5b60015473ffffffffffffffffffffffffffffffffffffffff1633146125b457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f6164645f616461707465723a206d75737420626520676f7665726e616e636500604482015290519081900360640190fd5b6005805473ffffffffffffffffffffffffffffffffffffffff9092166000818152600660205260408120849055600184018355919091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db090910180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b60025473ffffffffffffffffffffffffffffffffffffffff16331480612677575060015473ffffffffffffffffffffffffffffffffffffffff1633145b6126e257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6d757374206265207465616d206f7220676f7665726e616e6365000000000000604482015290519081900360640190fd5b600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60015473ffffffffffffffffffffffffffffffffffffffff1633146127af57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f6d75737420626520676f7665726e616e63650000000000000000000000000000604482015290519081900360640190fd5b6000600483815481106127be57fe5b6000918252602080832090910154604080517fa72b6c30000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff9092169450849263a72b6c3092600480840193829003018186803b15801561283157600080fd5b505afa158015612845573d6000803e3d6000fd5b505050506040513d602081101561285b57600080fd5b50516004805491925060009173ffffffffffffffffffffffffffffffffffffffff8416916370a08231918890811061288f57fe5b60009182526020918290200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301525160248083019392829003018186803b15801561290257600080fd5b505afa158015612916573d6000803e3d6000fd5b505050506040513d602081101561292c57600080fd5b505111156129e8578173ffffffffffffffffffffffffffffffffffffffff16634c1a42596005858154811061295d57fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152516024808301939282900301818387803b1580156129cf57600080fd5b505af11580156129e3573d6000803e3d6000fd5b505050505b50505050565b6000600582815481106129fd57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b60015473ffffffffffffffffffffffffffffffffffffffff16331480612a62575060025473ffffffffffffffffffffffffffffffffffffffff1633145b612acd57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f7065726d697373696f6e00000000000000000000000000000000000000000000604482015290519081900360640190fd5b600280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60015473ffffffffffffffffffffffffffffffffffffffff163314612b9a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f6164645f706f6f6c3a206d75737420626520676f7665726e616e636500000000604482015290519081900360640190fd5b600480546001810182556000919091527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600b5481565b60006106d842612c3d6106cf600c600101546106c9600188613cf090919063ffffffff16565b90613e6b565b60015473ffffffffffffffffffffffffffffffffffffffff163314612cb3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806143326023913960400191505060405180910390fd5b612cbf6005600061428e565b565b60006005600081548110612cd157fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905090565b80600c14612d6757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f76312e31323a206f6e6c792065706f6368203132000000000000000000000000604482015290519081900360640190fd5b60008181526009602052604090205460ff1615612de557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f65706f636820616c726561647920776f756e6420646f776e0000000000000000604482015290519081900360640190fd5b60025473ffffffffffffffffffffffffffffffffffffffff16331480612e22575060015473ffffffffffffffffffffffffffffffffffffffff1633145b612e8d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6d757374206265207465616d206f7220676f7665726e616e6365000000000000604482015290519081900360640190fd5b6000612e97611764565b9050808210612f0757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f63616e6e6f742077696e6420646f776e206675747572652065706f6368000000604482015290519081900360640190fd5b600082815260096020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555473ffffffffffffffffffffffffffffffffffffffff16612fc057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f6e6f206f7261636c650000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600354600254604080517fc21b27c700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff92831660048201526802ed6689e54f1800006024820181905291519193929092169163c21b27c791604480830192600092919082900301818387803b15801561304a57600080fd5b505af115801561305e573d6000803e3d6000fd5b505060008054604080517f9afbb47500000000000000000000000000000000000000000000000000000000815261ffff89166004820152905173ffffffffffffffffffffffffffffffffffffffff9092169450639afbb4759350602480820193929182900301818387803b1580156130d557600080fd5b505af11580156130e9573d6000803e3d6000fd5b5050505060005b60045461ffff821610156129e85760085460009061ffff831610156132fc57600054604080517f560f609200000000000000000000000000000000000000000000000000000000815261ffff808916600483015285166024820152905173ffffffffffffffffffffffffffffffffffffffff9092169163560f609291604480820192608092909190829003018186803b15801561318c57600080fd5b505afa1580156131a0573d6000803e3d6000fd5b505050506040513d60808110156131b657600080fd5b506060015190506801d7d843dc3b48000081111561323557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f6f7261636c65206661696c7572653a207265776172647320746f6f2068696768604482015290519081900360640190fd5b6003546004805473ffffffffffffffffffffffffffffffffffffffff9092169163c21b27c7919061ffff861690811061326a57fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201869052516044808301939282900301818387803b1580156132e357600080fd5b505af11580156132f7573d6000803e3d6000fd5b505050505b60048261ffff168154811061330d57fe5b6000918252602082200154604080517f80e0f15f0000000000000000000000000000000000000000000000000000000081526004810189905260248101859052905173ffffffffffffffffffffffffffffffffffffffff909216926380e0f15f9260448084019382900301818387803b15801561338957600080fd5b505af115801561339d573d6000803e3d6000fd5b5050600190930192506130f0915050565b80600c1461341d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f76312e31323a206f6e6c792065706f6368203132000000000000000000000000604482015290519081900360640190fd5b60008181526009602052604090205460ff161561349b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f65706f636820616c726561647920776f756e6420646f776e0000000000000000604482015290519081900360640190fd5b60025473ffffffffffffffffffffffffffffffffffffffff163314806134d8575060015473ffffffffffffffffffffffffffffffffffffffff1633145b61354357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6d757374206265207465616d206f7220676f7665726e616e6365000000000000604482015290519081900360640190fd5b600061354d611764565b90508082106135bd57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f63616e6e6f742077696e6420646f776e206675747572652065706f6368000000604482015290519081900360640190fd5b60008281526009602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905560035460025482517fc21b27c700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff91821660048201526802ed6689e54f1800006024820181905293519394919092169263c21b27c792604480820193929182900301818387803b15801561367a57600080fd5b505af115801561368e573d6000803e3d6000fd5b5050505060005b6004548110156129e8576008546000908210156137a357600882815481106136b957fe5b90600052602060002001549050600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c21b27c76004848154811061371157fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201869052516044808301939282900301818387803b15801561378a57600080fd5b505af115801561379e573d6000803e3d6000fd5b505050505b600482815481106137b057fe5b6000918252602082200154604080517f80e0f15f0000000000000000000000000000000000000000000000000000000081526004810189905260248101859052905173ffffffffffffffffffffffffffffffffffffffff909216926380e0f15f9260448084019382900301818387803b15801561382c57600080fd5b505af1158015613840573d6000803e3d6000fd5b505060019093019250613695915050565b60025473ffffffffffffffffffffffffffffffffffffffff1633148061388e575060015473ffffffffffffffffffffffffffffffffffffffff1633145b6138f957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6d757374206265207465616d206f7220676f7665726e616e6365000000000000604482015290519081900360640190fd5b80600c1461396857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f76312e31323a206f6e6c792065706f6368203132000000000000000000000000604482015290519081900360640190fd5b6000613972611764565b90508082106139e257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f63616e6e6f742077696e6420646f776e206675747572652065706f6368000000604482015290519081900360640190fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831415613b635760008281526009602052604090205460ff1615613a8857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f65706f636820616c726561647920776f756e6420646f776e0000000000000000604482015290519081900360640190fd5b60008281526009602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905560035460025482517fc21b27c700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff91821660048201526802ed6689e54f1800006024820181905293519394919092169263c21b27c792604480820193929182900301818387803b158015613b4557600080fd5b505af1158015613b59573d6000803e3d6000fd5b5050505050612519565b600854600090841015613c675760088481548110613b7d57fe5b90600052602060002001549050600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c21b27c760048681548110613bd557fe5b6000918252602082200154604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201869052516044808301939282900301818387803b158015613c4e57600080fd5b505af1158015613c62573d6000803e3d6000fd5b505050505b60048481548110613c7457fe5b6000918252602082200154604080517f80e0f15f0000000000000000000000000000000000000000000000000000000081526004810187905260248101859052905173ffffffffffffffffffffffffffffffffffffffff909216926380e0f15f9260448084019382900301818387803b1580156129cf57600080fd5b600082820183811015613d6457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600082613d7a575060006106d8565b82820282848281613d8757fe5b0414613d64576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143116021913960400191505060405180910390fd5b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052612519908490613ead565b6000613d6483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613f85565b6060613f0f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166140369092919063ffffffff16565b80519091501561251957808060200190516020811015613f2e57600080fd5b5051612519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614355602a913960400191505060405180910390fd5b6000818484111561402e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613ff3578181015183820152602001613fdb565b50505050905090810190601f1680156140205780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6060614045848460008561404d565b949350505050565b6060824710156140a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806142c96026913960400191505060405180910390fd5b6140b185614208565b61411c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061418657805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101614149565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146141e8576040519150601f19603f3d011682016040523d82523d6000602084013e6141ed565b606091505b50915091506141fd82828661420e565b979650505050505050565b3b151590565b6060831561421d575081613d64565b82511561422d5782518084602001fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152845160248401528451859391928392604401919085019080838360008315613ff3578181015183820152602001613fdb565b50805460008255906000526020600020908101906142ac91906142af565b50565b5b808211156142c457600081556001016142b0565b509056fe416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c7365745f676f7665726e616e63653a206d75737420626520676f7665726e616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7764656c6574655f61646170746572733a206d75737420626520676f7665726e616e63655361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220b21990b9d17caa592b9ee2b149b51c54de50540f5ee797c888c8f70c2d8949fe64736f6c63430007040033