Source Code
Latest 25 from a total of 46 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Get Reward | 11136943 | 1956 days ago | IN | 0 ETH | 0.00186677 | ||||
| Draw Refer Pendi... | 11136881 | 1956 days ago | IN | 0 ETH | 0.00066192 | ||||
| Withdraw | 11136529 | 1956 days ago | IN | 0 ETH | 0.00377824 | ||||
| Withdraw | 11136251 | 1956 days ago | IN | 0 ETH | 0.00643033 | ||||
| Draw Refer Pendi... | 11136248 | 1956 days ago | IN | 0 ETH | 0.00255773 | ||||
| Get Reward | 11136248 | 1956 days ago | IN | 0 ETH | 0.00302694 | ||||
| Draw Refer Pendi... | 11131216 | 1957 days ago | IN | 0 ETH | 0.00317424 | ||||
| Get Reward | 11131204 | 1957 days ago | IN | 0 ETH | 0.00315582 | ||||
| Get Reward | 11131173 | 1957 days ago | IN | 0 ETH | 0.00312221 | ||||
| Get Reward | 11131152 | 1957 days ago | IN | 0 ETH | 0.00328497 | ||||
| Get Reward | 11131133 | 1957 days ago | IN | 0 ETH | 0.00271265 | ||||
| Draw Refer Pendi... | 11131115 | 1957 days ago | IN | 0 ETH | 0.00318938 | ||||
| Deposit | 11131070 | 1957 days ago | IN | 0 ETH | 0.00848487 | ||||
| Deposit | 11130926 | 1957 days ago | IN | 0 ETH | 0.00823529 | ||||
| Deposit | 11130806 | 1957 days ago | IN | 0 ETH | 0.00644689 | ||||
| Registration Ext | 11130797 | 1957 days ago | IN | 0 ETH | 0.00284336 | ||||
| Deposit | 11130778 | 1957 days ago | IN | 0 ETH | 0.00674032 | ||||
| Registration Ext | 11130767 | 1957 days ago | IN | 0 ETH | 0.0030074 | ||||
| Deposit | 11130668 | 1957 days ago | IN | 0 ETH | 0.00752048 | ||||
| Deposit | 11130631 | 1957 days ago | IN | 0 ETH | 0.01383252 | ||||
| Registration Ext | 11130626 | 1957 days ago | IN | 0 ETH | 0.00574141 | ||||
| Deposit | 11130607 | 1957 days ago | IN | 0 ETH | 0.01128432 | ||||
| Registration Ext | 11130601 | 1957 days ago | IN | 0 ETH | 0.00546801 | ||||
| Deposit | 11130519 | 1957 days ago | IN | 0 ETH | 0.01831906 | ||||
| Registration Ext | 11130486 | 1957 days ago | IN | 0 ETH | 0.00656161 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MasterChef
Compiler Version
v0.6.3+commit.8dda9521
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-10-25
*/
/**
*Submitted for verification at Etherscan.io on 2020-10-04
*/
/**
*Submitted for verification at Etherscan.io on 2020-10-04
*/
/**
*Submitted for verification at Etherscan.io on 2020-10-01
*/
pragma solidity 0.6.3;
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;
}
}
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);
}
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;
}
}
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () internal {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
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);
}
}
}
}
/**
* @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");
}
}
}
// MasterChef is the master of Lef. He can make Lef and he is a fair guy.
//
// Note that it's ownable and the owner wields tremendous power. The ownership
// will be transferred to a governance smart contract once Lef is sufficiently
// distributed and the community can show to govern itself.
//
// Have fun reading it. Hopefully it's bug-free. God bless.
contract MasterChef is Ownable {
using SafeMath for uint256;
using SafeERC20 for IERC20;
// Info of each user.
struct UserInfo {
uint256 pid;
uint256 amount; // How many LP tokens the user has provided.
uint256 reward;
uint256 rewardPaid;
uint256 updateTime;
uint256 userRewardPerTokenPaid;
}
// Info of each user that stakes LP tokens.
mapping (uint256 => mapping (address => UserInfo)) public userInfo;
// Info of each pool.
struct PoolInfo {
IERC20 lpToken; // Address of LP token contract.
uint256 allocPoint; // How many allocation points assigned to this pool. Lefs to distribute per block.
uint256 lastRewardTime; // Last block number that Lefs distribution occurs.
uint256 accLefPerShare; // Accumulated Lefs per share, times 1e18. See below.
uint256 totalPool;
}
// Info of each pool.
PoolInfo[] public poolInfo;
struct VipPoolInfo {
uint256 allocPoint; // How many allocation points assigned to this pool. Lefs to distribute per block.
uint256 lastTime; // Last block number that Lefs distribution occurs.
uint256 rewardPerTokenStored; // Accumulated Lefs per share, times 1e18. See below.
uint256 vipNumber;
}
mapping(uint256 => VipPoolInfo) public vipPoolInfo;
struct User {
uint id;
address referrer;
uint256[] referAmount;
uint256 referReward;
uint256 totalReward;
uint256 referRewardPerTokenPaid;
uint256 vip;
}
mapping(address => User) public users;
uint public lastUserId = 2;
mapping(uint256 => address) public regisUser;
uint256[] DURATIONS =[3 days, 10 days, 22 days];
bool initialized = false;
//uint256 public initreward = 1250*1e18;
uint256 public starttime = 1599829200;//秒
uint256 public periodFinish = 0;
uint256 public rewardRate = 0;
uint256 public totalMinted = 0;
uint256 public drawPending_threshold = 2000 * 1e18;
uint256 public indirectRefer_threshold = 58094760000000000;
mapping(uint => uint256) public vipLevel;
uint32 vipLevalLength = 0;
//The Lef TOKEN!
// IERC20 public lef = IERC20(0x54CF703014A82B4FF7E9a95DD45e453e1Ba13eb1);
IERC20 public lef ;
address public defaultReferAddr = address(0xCfCe2a772ae87c5Fae474b2dE0324ee19C2c145f);
// Total allocation poitns. Must be the sum of all allocation points in all pools.总权重
uint256 public totalAllocPoint = 0;
// Bonus muliplier for early lef makers.早期挖矿的额外奖励
uint256 public constant BONUS_MULTIPLIER = 3;
event RewardPaid(address indexed user, uint256 reward);
event Deposit(address indexed user, uint256 indexed pid, uint256 amount);
event Withdraw(address indexed user, uint256 indexed pid, uint256 amount);
event Registration(address indexed user, address indexed referrer, uint indexed userId, uint referrerId);
function initContract (IERC20 _lef,uint256 _rewardRate,uint256 _starttime,uint256 _periodFinish,address _defaultReferAddr) public onlyOwner{
require(initialized == false,"has initialized");
lef = _lef;
rewardRate = _rewardRate;
starttime = _starttime;
periodFinish = _periodFinish;
defaultReferAddr = _defaultReferAddr;
User memory user = User({
id: 1,
referrer: address(0),
referAmount:new uint256[](2),
referReward:0,
totalReward:0,
referRewardPerTokenPaid:0,
vip:0
});
users[defaultReferAddr] = user;
regisUser[1] = defaultReferAddr;
initialized = true;
}
function setVipLevel(uint level,uint256 amount) public onlyOwner {
if(vipLevalLength < 3){
vipLevalLength++;
// uint256 vip1 = 0;
// uint256 vip2 = 0;
// uint256 vip3 = 0;
//
// for(uint i = 1;i < vipLevalLength;i++){
// address regAddr = regisUser[i];
// uint256 vip = getVipLeval(regAddr);
// if(vip == 1){
// vip1 ++;
// }else if(vip == 2){
// vip2 ++;
// }else if(vip == 3){
// vip3 ++;
// }
//
// }
// vipPoolInfo[1].vipNumber = vip1;
// vipPoolInfo[2].vipNumber = vip2;
// vipPoolInfo[3].vipNumber = vip3;
// for(uint i = 1;i < vipLevalLength;i++){
// updateVipPool(regisUser[i]);
// }
}
vipLevel[level] = amount;
}
function poolLength() external view returns (uint256) {
return poolInfo.length;
}
function isUserExists(address user) public view returns (bool) {
return (users[user].id != 0);
}
function registrationExt(address referrerAddress) external {
registration(msg.sender, referrerAddress);
}
function registration(address userAddress, address referrerAddress) private {
//require(msg.value == 0.05 ether, "registration cost 0.05");
require(!isUserExists(userAddress), "user exists");
require(isUserExists(referrerAddress), "referrer not exists");
uint32 size;
assembly {
size := extcodesize(userAddress)
}
require(size == 0, "cannot be a contract");
User memory user = User({
id: lastUserId,
referrer: referrerAddress,
referAmount:new uint256[](2),
totalReward:0,
referReward:0,
referRewardPerTokenPaid:0,
vip:0
});
regisUser[lastUserId] = userAddress;
users[userAddress] = user;
lastUserId++;
emit Registration(userAddress, referrerAddress, users[userAddress].id, users[referrerAddress].id);
}
function setDrawReferThreshold(uint256 _threshold) public onlyOwner{
drawPending_threshold = _threshold;
}
function drawReferPending() public{
require(isUserExists(msg.sender), "user exists");
require(getAllDeposit(msg.sender) > drawPending_threshold,"must mt 2000 * 1e18");
uint256 pengdingReward = 0;
uint256 vip = getVipLevel(msg.sender);
if(vip >0){
VipPoolInfo storage vipPool = vipPoolInfo[vip];
User storage user = users[msg.sender];
uint256 rewardPerTokenStored = vipPool.rewardPerTokenStored;
uint256 lpSupply = vipPool.vipNumber;
if (block.timestamp > vipPool.lastTime && lpSupply != 0) {
uint256 multiplier = getMultiplier(vipPool.lastTime, block.timestamp);
uint256 lefReward = multiplier.mul(rewardRate).mul(vipPool.allocPoint).div(totalAllocPoint);
rewardPerTokenStored = rewardPerTokenStored.add(lefReward.div(lpSupply));
}
pengdingReward = rewardPerTokenStored.sub(user.referRewardPerTokenPaid).add(users[msg.sender].referReward);
safeLefTransfer(msg.sender, pengdingReward);
users[msg.sender].referReward = 0;
users[msg.sender].totalReward += pengdingReward;
user.referRewardPerTokenPaid = rewardPerTokenStored;
}
}
//
function getReferReward(address _referrer) public view returns(uint256){
// require(isUserExists(_referrer), "user exists");
uint256 pengdingReward = 0;
if(!isUserExists(_referrer)){
return pengdingReward;
}
uint256 vip = getVipLevel(_referrer);
pengdingReward = users[_referrer].referReward;
if(vip >0){
VipPoolInfo storage vipPool = vipPoolInfo[vip];
User storage user = users[_referrer];
uint256 rewardPerTokenStored = vipPool.rewardPerTokenStored;
uint256 lpSupply = vipPool.vipNumber;
if (block.timestamp > vipPool.lastTime && lpSupply != 0) {
uint256 multiplier = getMultiplier(vipPool.lastTime, block.timestamp);
uint256 lefReward = multiplier.mul(rewardRate).mul(vipPool.allocPoint).div(totalAllocPoint);
rewardPerTokenStored = rewardPerTokenStored.add(lefReward.div(lpSupply));
}
return rewardPerTokenStored.sub(user.referRewardPerTokenPaid).add(pengdingReward);
}
return pengdingReward;
}
// Add a new lp to the pool. Can only be called by the owner.
// XXX DO NOT add the same LP token more than once. Rewards will be messed up if you do.
function addLp(uint256 _allocPoint, IERC20 _lpToken) public onlyOwner {
uint256 lastRewardTime = block.timestamp > starttime ? block.timestamp : starttime;
//totalAllocPoint = totalAllocPoint.add(_allocPoint);
poolInfo.push(PoolInfo({
lpToken: _lpToken,
allocPoint: _allocPoint,
lastRewardTime: lastRewardTime,
accLefPerShare: 0,
totalPool:0
}));
}
function addVipPoolPoint(uint256 _vipIndex,uint256 _allocPoint) public onlyOwner {
uint256 lastTime = block.timestamp > starttime ? block.timestamp : starttime;
vipPoolInfo[_vipIndex].allocPoint = _allocPoint;
if(vipPoolInfo[_vipIndex].lastTime == 0){
vipPoolInfo[_vipIndex].lastTime = lastTime;
}
// vipPoolInfo[_vipIndex] =VipPoolInfo({
// allocPoint: _allocPoint,
// lastTime:lastTime,
// rewardPerTokenStored:0,
// vipNumber:0
// });
}
// Update the given pool's Lef allocation point. Can only be called by the owner.
function set(uint256 _pid, uint256 _allocPoint) public onlyOwner {
totalAllocPoint = totalAllocPoint.sub(poolInfo[_pid].allocPoint).add(_allocPoint);
poolInfo[_pid].allocPoint = _allocPoint;
}
function setTotalAllocPoint(uint256 _totalAllocPoint) public onlyOwner{
totalAllocPoint = _totalAllocPoint;
}
function setRewardRate(uint256 _rewardRate) public onlyOwner {
rewardRate = _rewardRate;
}
// Return reward multiplier over the given _from to _to block.
function getMultiplier(uint256 _from, uint256 _to) public view returns (uint256) {
if (_to <= periodFinish) {
return _to.sub(_from).mul(BONUS_MULTIPLIER);
} else if (_from >= periodFinish) {
return _to.sub(_from);
} else {
return periodFinish.sub(_from).mul(BONUS_MULTIPLIER).add(
_to.sub(periodFinish)
);
}
}
function pendingLef(uint256 _pid, address _user) public view returns (uint256) {
PoolInfo storage pool = poolInfo[_pid];
UserInfo storage user = userInfo[_pid][_user];
uint256 accLefPerShare = pool.accLefPerShare;
uint256 lpSupply = pool.totalPool;
uint256 result = user.reward;
if (block.timestamp > pool.lastRewardTime && lpSupply != 0) {
uint256 multiplier = getMultiplier(pool.lastRewardTime, block.timestamp);
uint256 lefReward = multiplier.mul(rewardRate).mul(pool.allocPoint).div(totalAllocPoint);
accLefPerShare = pool.accLefPerShare.add(lefReward.mul(1e18).div(lpSupply));
}
result += user.amount.mul((accLefPerShare).sub(user.userRewardPerTokenPaid)).div(1e18);
return result;
}
function pendingAllLef(address _user) public view returns (uint256) {
uint256 result = 0;
for(uint256 i = 0;i< poolInfo.length;i++ ){
result = result.add(pendingLef(i,_user));
}
return result;
}
function allLefAmount(address _user) public view returns (uint256) {
uint256 result = 0;
for(uint256 i = 0;i< poolInfo.length;i++ ){
UserInfo storage user = userInfo[i][_user];
result = result.add(pendingLef(i,_user).add(user.rewardPaid));
}
return result;
}
function getAllDeposit(address _user) public view returns (uint256) {
uint256 result = 0;
for(uint256 i = 0;i< poolInfo.length;i++ ){
UserInfo storage user = userInfo[i][_user];
result = result.add(user.amount);
}
return result;
}
function updateVipPool(address _user) internal {
address _referrer = users[_user].referrer;
for(uint i = 1;i < 3;i++){
if(isUserExists(_referrer) && _referrer != address(0)){
uint256 vip = getVipLevel(_referrer);
uint256 _vip = users[_referrer].vip;
uint256 skip_num ;
if(vip > _vip){
skip_num = vip.sub(_vip);
}else if(vip < _vip){
skip_num = _vip.sub(vip);
}
if(skip_num != 0){
bool gloryBonus = false;
if(i == 2 && users[_user].vip >= 2 && vip >= 2){
gloryBonus == true;
}
if(_vip != 0){
VipPoolInfo storage _vpInfo = vipPoolInfo[_vip];
if(vipPoolInfo[_vip].vipNumber != 0){
uint256 _multiplier = getMultiplier(_vpInfo.lastTime, block.timestamp);
uint256 _lefReward;
if(gloryBonus){
_lefReward = _multiplier.mul(rewardRate).mul((_vpInfo.allocPoint).add(totalAllocPoint.mul(3).div(100))).div(totalAllocPoint);
}else{
_lefReward = _multiplier.mul(rewardRate).mul(_vpInfo.allocPoint).div(totalAllocPoint);
}
totalMinted = totalMinted.add(_lefReward);
//lef.mint(address(this), _lefReward);
_vpInfo.rewardPerTokenStored = _vpInfo.rewardPerTokenStored.add(_lefReward.div(_vpInfo.vipNumber));
users[_referrer].referReward = ((_vpInfo.rewardPerTokenStored).sub(users[_referrer].referRewardPerTokenPaid)).add(users[_referrer].referReward);
_vpInfo.vipNumber -= 1;
users[_referrer].referRewardPerTokenPaid = _vpInfo.rewardPerTokenStored;
_vpInfo.lastTime = block.timestamp;
}
}
if(vip != 0){
VipPoolInfo storage vpInfo = vipPoolInfo[vip];
if(vpInfo.vipNumber != 0){
uint256 multiplier = getMultiplier(vpInfo.lastTime, block.timestamp);
uint256 lefReward;
if(gloryBonus){
lefReward = multiplier.mul(rewardRate).mul((vpInfo.allocPoint).add(totalAllocPoint.mul(3).div(100))).div(totalAllocPoint);
}else{
lefReward = multiplier.mul(rewardRate).mul(vpInfo.allocPoint).div(totalAllocPoint);
}
totalMinted = totalMinted.add(lefReward);
//lef.mint(address(this), lefReward);
vpInfo.rewardPerTokenStored = vpInfo.rewardPerTokenStored.add(lefReward.div(vpInfo.vipNumber));
}
//if(vpInfo.rewardPerTokenStored != 0){
// users[_referrer].referReward = ((vpInfo.rewardPerTokenStored).sub(users[_referrer].referRewardPerTokenPaid)).add(users[_referrer].referReward);
//}
vpInfo.vipNumber += 1;
users[_referrer].referRewardPerTokenPaid = vpInfo.rewardPerTokenStored;
vpInfo.lastTime = block.timestamp;
}
}
users[_referrer].vip= vip;
_referrer = users[_referrer].referrer;
}
}
}
function setIndirectThreshold(uint256 _indirectThreshold) public onlyOwner{
indirectRefer_threshold = _indirectThreshold;
}
function getVipLevel(address _user) public view returns(uint256){
uint256 vip = 0;
if(isUserExists(_user)){
uint256 directReferAmount = users[_user].referAmount[0];
uint256 indirectReferAmount = users[_user].referAmount[1];
for(uint256 i = 1;i<=3;i++){
if(directReferAmount < vipLevel[i]){
break;
} else{
vip = i;
}
}
if(vip == 3){
if(directReferAmount > vipLevel[3] && indirectReferAmount >=indirectRefer_threshold){
vip = 3;
}else if(directReferAmount > vipLevel[3] && indirectReferAmount <= indirectRefer_threshold){
vip = 2;
}
}
}
return vip;
}
function getReferAmount(address _user,uint256 _index) public view returns(uint256){
if(isUserExists(_user)){
return users[_user].referAmount[_index];
}
return 0;
}
// Update reward variables of the given pool to be up-to-date.
function updatePool(uint256 _pid,address _user) internal {
PoolInfo storage pool = poolInfo[_pid];
if (block.timestamp <= pool.lastRewardTime) {
return;
}
uint256 lpSupply = pool.totalPool;
if (lpSupply == 0) {
pool.lastRewardTime = block.timestamp;
return;
}
UserInfo storage user = userInfo[_pid][_user];
uint256 multiplier = getMultiplier(pool.lastRewardTime, block.timestamp);
uint256 lefReward = multiplier.mul(rewardRate).mul(pool.allocPoint).div(totalAllocPoint);
totalMinted = totalMinted.add(lefReward);
//lef.mint(address(this), lefReward);
pool.accLefPerShare = pool.accLefPerShare.add(lefReward.mul(1e18).div(lpSupply));
user.reward = user.amount.mul((pool.accLefPerShare).sub(user.userRewardPerTokenPaid)).div(1e18).add(user.reward);
user.userRewardPerTokenPaid = pool.accLefPerShare;
pool.lastRewardTime = block.timestamp;
}
// Deposit LP tokens to MasterChef for lef allocation.
function deposit(uint256 _pid, uint256 _amount) public checkStart checkhalve{
require(isUserExists(msg.sender), "user don't exists");
PoolInfo storage pool = poolInfo[_pid];
UserInfo storage user = userInfo[_pid][msg.sender];
updatePool(_pid,msg.sender);
if(_amount > 0) {
pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount);
user.amount = user.amount.add(_amount);
user.updateTime = block.timestamp;
user.pid = _pid;
pool.totalPool = pool.totalPool.add(_amount);
address _referrer = users[msg.sender].referrer;
for(uint256 i = 0;i<2;i++){
if(_referrer!= address(0) && isUserExists(_referrer)){
users[_referrer].referAmount[i] += _amount;
_referrer = users[_referrer].referrer;
}
}
}
//
updateVipPool(msg.sender);
emit Deposit(msg.sender, _pid, _amount);
}
function getReward(uint256 _pid) public {
PoolInfo storage pool = poolInfo[_pid];
UserInfo storage user = userInfo[_pid][msg.sender];
uint256 accLefPerShare = pool.accLefPerShare;
uint256 lpSupply = pool.totalPool;
if (block.timestamp > pool.lastRewardTime && lpSupply != 0) {
uint256 multiplier = getMultiplier(pool.lastRewardTime, block.timestamp);
uint256 lefReward = multiplier.mul(rewardRate).mul(pool.allocPoint).div(totalAllocPoint);
accLefPerShare = pool.accLefPerShare.add(lefReward.mul(1e18).div(lpSupply));
}
uint256 reward = user.amount.mul((accLefPerShare).sub(user.userRewardPerTokenPaid)).div(1e18).add(user.reward);
if (reward > 0) {
safeLefTransfer(msg.sender, reward);
user.rewardPaid = user.rewardPaid.add(reward);
user.reward = 0;
emit RewardPaid(msg.sender, reward);
}
user.userRewardPerTokenPaid = accLefPerShare;
}
// Withdraw LP tokens from MasterChef.
function withdraw(uint256 _pid, uint256 _amount) public checkhalve{
UserInfo storage user = userInfo[_pid][msg.sender];
//require(block.timestamp > DURATIONS[_pid].add(user.updateTime),"");
PoolInfo storage pool = poolInfo[_pid];
require(user.amount >= _amount, "withdraw: not good");
updatePool(_pid,msg.sender);
safeLefTransfer(msg.sender, user.reward);
user.reward = 0;
user.rewardPaid = user.rewardPaid.add(user.reward);
emit RewardPaid(msg.sender, user.rewardPaid);
if(_amount > 0) {
user.amount = user.amount.sub(_amount);
pool.lpToken.safeTransfer(address(msg.sender), _amount);
pool.totalPool -= _amount;
address _referrer = users[msg.sender].referrer;
for(uint256 i = 0;i<2;i++){
if(_referrer!= address(0) && isUserExists(_referrer)){
users[_referrer].referAmount[i] -= _amount;
_referrer = users[_referrer].referrer;
}
}
}
updateVipPool(msg.sender);
emit Withdraw(msg.sender, _pid, _amount);
}
// Withdraw without caring about rewards. EMERGENCY ONLY.
// function emergencyWithdraw(uint256 _pid) public {
// PoolInfo storage pool = poolInfo[_pid];
// UserInfo storage user = userInfo[_pid][msg.sender];
// pool.lpToken.safeTransfer(address(msg.sender), user.amount);
// emit EmergencyWithdraw(msg.sender, _pid, user.amount);
// user.amount = 0;
// }
// Safe lef transfer function, just in case if rounding error causes pool to not have enough lefs.
function safeLefTransfer(address _to, uint256 _amount) internal {
uint256 lefBal = lef.balanceOf(address(this));
if (_amount > lefBal) {
lef.transfer(_to, lefBal);
} else {
lef.transfer(_to, _amount);
}
}
modifier checkhalve(){
if (totalMinted >= 500000 *1e18) {
// initreward = initreward.mul(50).div(100);
rewardRate = rewardRate.mul(90).div(100);
totalMinted = 0;
// periodFinish = periodFinish.add(DURATION);
}
_;
}
modifier checkStart(){
require(block.timestamp > starttime,"not start");
_;
}
// Update dev address by the previous dev.
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"referrer","type":"address"},{"indexed":true,"internalType":"uint256","name":"userId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"referrerId","type":"uint256"}],"name":"Registration","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"BONUS_MULTIPLIER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IERC20","name":"_lpToken","type":"address"}],"name":"addLp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_vipIndex","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"}],"name":"addVipPoolPoint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"allLefAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultReferAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"drawPending_threshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"drawReferPending","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getAllDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"getMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getReferAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_referrer","type":"address"}],"name":"getReferReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getVipLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"indirectRefer_threshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_lef","type":"address"},{"internalType":"uint256","name":"_rewardRate","type":"uint256"},{"internalType":"uint256","name":"_starttime","type":"uint256"},{"internalType":"uint256","name":"_periodFinish","type":"uint256"},{"internalType":"address","name":"_defaultReferAddr","type":"address"}],"name":"initContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"isUserExists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastUserId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lef","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"pendingAllLef","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingLef","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"periodFinish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract IERC20","name":"lpToken","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardTime","type":"uint256"},{"internalType":"uint256","name":"accLefPerShare","type":"uint256"},{"internalType":"uint256","name":"totalPool","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"regisUser","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"referrerAddress","type":"address"}],"name":"registrationExt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_threshold","type":"uint256"}],"name":"setDrawReferThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_indirectThreshold","type":"uint256"}],"name":"setIndirectThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardRate","type":"uint256"}],"name":"setRewardRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_totalAllocPoint","type":"uint256"}],"name":"setTotalAllocPoint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"level","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setVipLevel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"starttime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"pid","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"reward","type":"uint256"},{"internalType":"uint256","name":"rewardPaid","type":"uint256"},{"internalType":"uint256","name":"updateTime","type":"uint256"},{"internalType":"uint256","name":"userRewardPerTokenPaid","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"users","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"referrer","type":"address"},{"internalType":"uint256","name":"referReward","type":"uint256"},{"internalType":"uint256","name":"totalReward","type":"uint256"},{"internalType":"uint256","name":"referRewardPerTokenPaid","type":"uint256"},{"internalType":"uint256","name":"vip","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"vipLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"vipPoolInfo","outputs":[{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastTime","type":"uint256"},{"internalType":"uint256","name":"rewardPerTokenStored","type":"uint256"},{"internalType":"uint256","name":"vipNumber","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
600260055560e06040526203f4806080908152620d2f0060a052621d010060c052620000309060079060036200010c565b506008805460ff19169055635f5b74d06009556000600a819055600b819055600c819055686c6b935b8bbd400000600d5566ce64e05d1c9000600e556010805463ffffffff19169055601180546001600160a01b03191673cfce2a772ae87c5fae474b2de0324ee19c2c145f1790556012819055620000b76001600160e01b036200010716565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000180565b335b90565b82805482825590600052602060002090810192821562000151579160200282015b8281111562000151578251829062ffffff169055916020019190600101906200012d565b506200015f92915062000163565b5090565b6200010991905b808211156200015f57600081556001016200016a565b61300f80620001906000396000f3fe608060405234801561001057600080fd5b50600436106102745760003560e01c8063768599c711610151578063a3ec3d7b116100c3578063cb41eda811610087578063cb41eda814610772578063cc1fc7f11461077a578063e2bbb158146107a0578063ebe2b12b146107c3578063f2fde38b146107cb578063f7184aed146107f157610274565b8063a3ec3d7b146106c7578063a449a713146106cf578063a87430ba146106ec578063be9baf501461074d578063ca8e6c031461075557610274565b80638da58897116101155780638da58897146106105780638da5cb5b146106185780638dbb1e3a1461062057806393f1a40b146106435780639e447fc6146106a2578063a2309ff8146106bf57610274565b8063768599c71461057557806378609c5e14610598578063797eee24146105da5780637b0a47ee146106005780638aa285501461060857610274565b8063348d4487116101ea57806358eb8d88116101ae57806358eb8d88146104ca57806359948f44146104ed5780635cc61bbc146105135780636b6854b11461053f57806370b895c714610565578063715018a61461056d57610274565b8063348d4487146104375780633df5ef101461043f578063441a3e70146104655780634fe1777314610488578063509222cd1461049057610274565b8063155298a51161023c578063155298a51461037357806317caf6f1146103ac5780631ab06ee5146103b45780631c4b774b146103d75780632cb8b90e146103f457806332854c131461041157610274565b8063081e3eda146102795780631128d7cb1461029357806311b1d828146102b2578063151b03c1146102f55780631526fe2714610321575b600080fd5b61028161081d565b60408051918252519081900360200190f35b6102b0600480360360208110156102a957600080fd5b5035610824565b005b6102cf600480360360208110156102c857600080fd5b5035610881565b604080519485526020850193909352838301919091526060830152519081900360800190f35b6102816004803603604081101561030b57600080fd5b506001600160a01b0381351690602001356108aa565b61033e6004803603602081101561033757600080fd5b50356108fd565b604080516001600160a01b03909616865260208601949094528484019290925260608401526080830152519081900360a00190f35b6103906004803603602081101561038957600080fd5b5035610945565b604080516001600160a01b039092168252519081900360200190f35b610281610960565b6102b0600480360360408110156103ca57600080fd5b5080359060200135610966565b6102b0600480360360208110156103ed57600080fd5b5035610a2e565b6102b06004803603602081101561040a57600080fd5b5035610bc7565b6102816004803603602081101561042757600080fd5b50356001600160a01b0316610c24565b610281610d81565b6102816004803603602081101561045557600080fd5b50356001600160a01b0316610d87565b6102b06004803603604081101561047b57600080fd5b5080359060200135610dee565b61028161105f565b6104b6600480360360208110156104a657600080fd5b50356001600160a01b0316611065565b604080519115158252519081900360200190f35b6102b0600480360360408110156104e057600080fd5b5080359060200135611082565b6102816004803603602081101561050357600080fd5b50356001600160a01b0316611125565b6102b06004803603604081101561052957600080fd5b50803590602001356001600160a01b0316611177565b6102816004803603602081101561055557600080fd5b50356001600160a01b03166112fe565b610390611414565b6102b061142b565b6102b06004803603604081101561058b57600080fd5b50803590602001356114cd565b6102b0600480360360a08110156105ae57600080fd5b506001600160a01b03813581169160208101359160408201359160608101359160809091013516611567565b6102b0600480360360208110156105f057600080fd5b50356001600160a01b03166117a3565b6102816117b0565b6102816117b6565b6102816117bb565b6103906117c1565b6102816004803603604081101561063657600080fd5b50803590602001356117d0565b61066f6004803603604081101561065957600080fd5b50803590602001356001600160a01b0316611842565b604080519687526020870195909552858501939093526060850191909152608084015260a0830152519081900360c00190f35b6102b0600480360360208110156106b857600080fd5b5035611880565b6102816118dd565b6102b06118e3565b610281600480360360208110156106e557600080fd5b5035611a8a565b6107126004803603602081101561070257600080fd5b50356001600160a01b0316611a9c565b604080519687526001600160a01b039095166020870152858501939093526060850191909152608084015260a0830152519081900360c00190f35b610281611ade565b6102b06004803603602081101561076b57600080fd5b5035611ae4565b610390611b41565b6102816004803603602081101561079057600080fd5b50356001600160a01b0316611b50565b6102b0600480360360408110156107b657600080fd5b5080359060200135611b83565b610281611dec565b6102b0600480360360208110156107e157600080fd5b50356001600160a01b0316611df2565b6102816004803603604081101561080757600080fd5b50803590602001356001600160a01b0316611eea565b6002545b90565b61082c612009565b6000546001600160a01b0390811691161461087c576040805162461bcd60e51b81526020600482018190526024820152600080516020612f90833981519152604482015290519081900360640190fd5b600e55565b600360208190526000918252604090912080546001820154600283015492909301549092919084565b60006108b583611065565b156108f3576001600160a01b03831660009081526004602052604090206002018054839081106108e157fe5b906000526020600020015490506108f7565b5060005b92915050565b6002818154811061090a57fe5b6000918252602090912060059091020180546001820154600283015460038401546004909401546001600160a01b0390931694509092909185565b6006602052600090815260409020546001600160a01b031681565b60125481565b61096e612009565b6000546001600160a01b039081169116146109be576040805162461bcd60e51b81526020600482018190526024820152600080516020612f90833981519152604482015290519081900360640190fd5b610a01816109f5600285815481106109d257fe5b90600052602060002090600502016001015460125461200d90919063ffffffff16565b9063ffffffff61205616565b6012819055508060028381548110610a1557fe5b9060005260206000209060050201600101819055505050565b600060028281548110610a3d57fe5b600091825260208083208584526001825260408085203386529092529220600360059092029092019081015460048201546002830154929450909142118015610a8557508015155b15610b10576000610a9a8560020154426117d0565b90506000610ad9601254610acd8860010154610ac1600b54876120b090919063ffffffff16565b9063ffffffff6120b016565b9063ffffffff61210916565b9050610b0b610afa84610acd84670de0b6b3a764000063ffffffff6120b016565b60038801549063ffffffff61205616565b935050505b6000610b5184600201546109f5670de0b6b3a7640000610acd610b4089600501548961200d90919063ffffffff16565b60018a01549063ffffffff6120b016565b90508015610bbb57610b63338261214b565b6003840154610b78908263ffffffff61205616565b60038501556000600285015560408051828152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b50506005909101555050565b610bcf612009565b6000546001600160a01b03908116911614610c1f576040805162461bcd60e51b81526020600482018190526024820152600080516020612f90833981519152604482015290519081900360640190fd5b600d55565b600080610c3083611065565b15610d79576001600160a01b038316600090815260046020526040812060020180548290610c5a57fe5b90600052602060002001549050600060046000866001600160a01b03166001600160a01b03168152602001908152602001600020600201600181548110610c9d57fe5b600091825260209091200154905060015b60038111610cdc576000818152600f6020526040902054831015610cd157610cdc565b809350600101610cae565b508260031415610d76576003600052600f6020527f45f76dafbbad695564362934e24d72eedc57f9fc1a65f39bca62176cc82968285482118015610d225750600e548110155b15610d305760039250610d76565b6003600052600f6020527f45f76dafbbad695564362934e24d72eedc57f9fc1a65f39bca62176cc82968285482118015610d6c5750600e548111155b15610d7657600292505b50505b90505b919050565b60055481565b600080805b600254811015610de75760008181526001602090815260408083206001600160a01b038816845290915290206003810154610ddc90610dcf906109f58589611eea565b849063ffffffff61205616565b925050600101610d8c565b5092915050565b6969e10de76676d0800000600c5410610e2557610e1c6064610acd605a600b546120b090919063ffffffff16565b600b556000600c555b600082815260016020908152604080832033845290915281206002805491929185908110610e4f57fe5b906000526020600020906005020190508282600101541015610ead576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b610eb784336122f5565b610ec533836002015461214b565b6000600283018190556003830154610ee29163ffffffff61205616565b60038301819055604080519182525133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a28215611019576001820154610f39908463ffffffff61200d16565b60018301558054610f5a906001600160a01b0316338563ffffffff61244d16565b60048082018054859003905533600090815260209190915260408120600101546001600160a01b0316905b6002811015611016576001600160a01b03821615801590610faa5750610faa82611065565b1561100e576001600160a01b0382166000908152600460205260409020600201805486919083908110610fd957fe5b600091825260208083209091018054939093039092556001600160a01b03938416815260049091526040902060010154909116905b600101610f85565b50505b6110223361249f565b604080518481529051859133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a350505050565b600d5481565b6001600160a01b0316600090815260046020526040902054151590565b61108a612009565b6000546001600160a01b039081169116146110da576040805162461bcd60e51b81526020600482018190526024820152600080516020612f90833981519152604482015290519081900360640190fd5b600060095442116110ed576009546110ef565b425b6000848152600360205260409020838155600101549091506111205760008381526003602052604090206001018190555b505050565b600080805b600254811015610de75760008181526001602081815260408084206001600160a01b03891685529091529091209081015461116c90849063ffffffff61205616565b92505060010161112a565b61117f612009565b6000546001600160a01b039081169116146111cf576040805162461bcd60e51b81526020600482018190526024820152600080516020612f90833981519152604482015290519081900360640190fd5b600060095442116111e2576009546111e4565b425b6040805160a0810182526001600160a01b039485168152602081019586529081019182526000606082018181526080830182815260028054600181018255935292517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace600590930292830180546001600160a01b031916919097161790955594517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acf86015590517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad085015591517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad184015550517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad290910155565b60008061130a83611065565b611315579050610d7c565b600061132084610c24565b6001600160a01b038516600090815260046020526040902060030154925090508015610de75760008181526003602081815260408084206001600160a01b0389168552600490925290922060028301549183015460018401549192914211801561138957508015155b156113ec57600061139e8560010154426117d0565b905060006113c5601254610acd8860000154610ac1600b54876120b090919063ffffffff16565b90506113e76113da828563ffffffff61210916565b859063ffffffff61205616565b935050505b611407866109f585600501548561200d90919063ffffffff16565b9650505050505050610d7c565b60105464010000000090046001600160a01b031681565b611433612009565b6000546001600160a01b03908116911614611483576040805162461bcd60e51b81526020600482018190526024820152600080516020612f90833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6114d5612009565b6000546001600160a01b03908116911614611525576040805162461bcd60e51b81526020600482018190526024820152600080516020612f90833981519152604482015290519081900360640190fd5b601054600363ffffffff9091161015611555576010805463ffffffff8082166001011663ffffffff199091161790555b6000918252600f602052604090912055565b61156f612009565b6000546001600160a01b039081169116146115bf576040805162461bcd60e51b81526020600482018190526024820152600080516020612f90833981519152604482015290519081900360640190fd5b60085460ff1615611609576040805162461bcd60e51b815260206004820152600f60248201526e1a185cc81a5b9a5d1a585b1a5e9959608a1b604482015290519081900360640190fd5b60108054640100000000600160c01b0319166401000000006001600160a01b038881169190910291909117909155600b8590556009849055600a839055601180546001600160a01b031916918316919091179055611665612e77565b6040805160e081018252600181526000602082015281516002808252606082018452919283019181602001602082028036833750505081526000602080830182905260408084018390526060840183905260809093018290526011546001600160a01b039081168352600482529183902084518155848201516001820180546001600160a01b03191691909416179092559183015180519394508493919261171592600285019290910190612ebd565b50606082015160038201556080820151600482015560a0820151600582015560c090910151600691820155601154600160008190526020929092527f3e5fec24aa4dc4e5aee2e025e51e1392c72a2500577559fae9665c6d52bd6a3180546001600160a01b0319166001600160a01b039092169190911790556008805460ff19169091179055505050505050565b6117ad3382612828565b50565b600b5481565b600381565b60095481565b6000546001600160a01b031690565b6000600a5482116117f7576117f06003610ac1848663ffffffff61200d16565b90506108f7565b600a548310611810576117f0828463ffffffff61200d16565b6117f0611828600a548461200d90919063ffffffff16565b6109f56003610ac187600a5461200d90919063ffffffff16565b600160208181526000938452604080852090915291835291208054918101546002820154600383015460048401546005909401549293919290919086565b611888612009565b6000546001600160a01b039081169116146118d8576040805162461bcd60e51b81526020600482018190526024820152600080516020612f90833981519152604482015290519081900360640190fd5b600b55565b600c5481565b6118ec33611065565b61192b576040805162461bcd60e51b815260206004820152600b60248201526a757365722065786973747360a81b604482015290519081900360640190fd5b600d5461193733611125565b1161197f576040805162461bcd60e51b81526020600482015260136024820152720daeae6e840dae8406460606040544062ca627606b1b604482015290519081900360640190fd5b60008061198b33610c24565b90508015611a8657600081815260036020818152604080842033855260049092529092206002830154918301546001840154919291421180156119cd57508015155b15611a235760006119e28560010154426117d0565b90506000611a09601254610acd8860000154610ac1600b54876120b090919063ffffffff16565b9050611a1e6113da828563ffffffff61210916565b935050505b336000908152600460205260409020600301546005840154611a5191906109f590859063ffffffff61200d16565b9550611a5d338761214b565b503360009081526004602081905260408220600381019290925501805486019055600590910155505b5050565b600f6020526000908152604090205481565b600460208190526000918252604090912080546001820154600383015493830154600584015460069094015492946001600160a01b0390921693919290919086565b600e5481565b611aec612009565b6000546001600160a01b03908116911614611b3c576040805162461bcd60e51b81526020600482018190526024820152600080516020612f90833981519152604482015290519081900360640190fd5b601255565b6011546001600160a01b031681565b600080805b600254811015610de757611b79611b6c8286611eea565b839063ffffffff61205616565b9150600101611b55565b6009544211611bc5576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b6969e10de76676d0800000600c5410611bfc57611bf36064610acd605a600b546120b090919063ffffffff16565b600b556000600c555b611c0533611065565b611c4a576040805162461bcd60e51b81526020600482015260116024820152707573657220646f6e27742065786973747360781b604482015290519081900360640190fd5b600060028381548110611c5957fe5b600091825260208083208684526001825260408085203380875293529093206005909202909201925090611c8e9085906122f5565b8215611da6578154611cb1906001600160a01b031633308663ffffffff612a8b16565b6001810154611cc6908463ffffffff61205616565b600182015542600480830191909155848255820154611ceb908463ffffffff61205616565b60048084019190915533600090815260209190915260408120600101546001600160a01b0316905b6002811015611da3576001600160a01b03821615801590611d385750611d3882611065565b15611d9b576001600160a01b0382166000908152600460205260409020600201805486919083908110611d6757fe5b6000918252602080832090910180549093019092556001600160a01b03938416815260049091526040902060010154909116905b600101611d13565b50505b611daf3361249f565b604080518481529051859133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a350505050565b600a5481565b611dfa612009565b6000546001600160a01b03908116911614611e4a576040805162461bcd60e51b81526020600482018190526024820152600080516020612f90833981519152604482015290519081900360640190fd5b6001600160a01b038116611e8f5760405162461bcd60e51b8152600401808060200182810382526026815260200180612f236026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60008060028481548110611efa57fe5b600091825260208083208784526001825260408085206001600160a01b038916865290925292206003600590920290920190810154600482015460028085015490840154939550919290919042118015611f5357508115155b15611fc6576000611f688660020154426117d0565b90506000611f8f601254610acd8960010154610ac1600b54876120b090919063ffffffff16565b9050611fc1611fb085610acd84670de0b6b3a764000063ffffffff6120b016565b60038901549063ffffffff61205616565b945050505b611ffd670de0b6b3a7640000610acd611fec87600501548761200d90919063ffffffff16565b60018801549063ffffffff6120b016565b01979650505050505050565b3390565b600061204f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612aeb565b9392505050565b60008282018381101561204f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000826120bf575060006108f7565b828202828482816120cc57fe5b041461204f5760405162461bcd60e51b8152600401808060200182810382526021815260200180612f6f6021913960400191505060405180910390fd5b600061204f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612b82565b601054604080516370a0823160e01b8152306004820152905160009264010000000090046001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561219e57600080fd5b505afa1580156121b2573d6000803e3d6000fd5b505050506040513d60208110156121c857600080fd5b5051905080821115612265576010546040805163a9059cbb60e01b81526001600160a01b0386811660048301526024820185905291516401000000009093049091169163a9059cbb916044808201926020929091908290030181600087803b15801561223357600080fd5b505af1158015612247573d6000803e3d6000fd5b505050506040513d602081101561225d57600080fd5b506111209050565b6010546040805163a9059cbb60e01b81526001600160a01b0386811660048301526024820186905291516401000000009093049091169163a9059cbb916044808201926020929091908290030181600087803b1580156122c457600080fd5b505af11580156122d8573d6000803e3d6000fd5b505050506040513d60208110156122ee57600080fd5b5050505050565b60006002838154811061230457fe5b90600052602060002090600502019050806002015442116123255750611a86565b60048101548061233c575042600290910155611a86565b60008481526001602090815260408083206001600160a01b03871684529091528120600284015490919061237090426117d0565b90506000612397601254610acd8760010154610ac1600b54876120b090919063ffffffff16565b600c549091506123ad908263ffffffff61205616565b600c556123e06123cf85610acd84670de0b6b3a764000063ffffffff6120b016565b60038701549063ffffffff61205616565b6003860181905560028401546005850154612428926109f591670de0b6b3a764000091610acd91612417919063ffffffff61200d16565b60018901549063ffffffff6120b016565b6002808501919091556003860154600590940193909355505042920191909155505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611120908490612be7565b6001600160a01b038082166000908152600460205260409020600190810154909116905b6003811015611120576124d582611065565b80156124e957506001600160a01b03821615155b156128205760006124f983610c24565b6001600160a01b0384166000908152600460205260408120600601549192508183111561253757612530838363ffffffff61200d16565b9050612552565b818310156125525761254f828463ffffffff61200d16565b90505b80156127f457600060028514801561258657506001600160a01b038716600090815260046020526040902060060154600211155b8015612593575060028410155b5082156126fe57600083815260036020819052604090912090810154156126fc5760006125c48260010154426117d0565b9050600083156126185760125461261190610acd6125fd6125ef60648385600363ffffffff6120b016565b87549063ffffffff61205616565b600b54610ac190879063ffffffff6120b016565b905061263e565b61263b601254610acd8560000154610ac1600b54876120b090919063ffffffff16565b90505b600c54612651908263ffffffff61205616565b600c55600383015461267f9061266e90839063ffffffff61210916565b60028501549063ffffffff61205616565b600284018190556001600160a01b038a16600090815260046020526040902060038101546005909101546126bc926109f59163ffffffff61200d16565b6001600160a01b038a1660009081526004602052604090206003808201929092559084018054600019019055600284015460059091015550504260018201555b505b83156127f257600084815260036020819052604090912090810154156127be57600061272e8260010154426117d0565b9050600083156127605760125461275990610acd6125fd6125ef60648385600363ffffffff6120b016565b9050612786565b612783601254610acd8560000154610ac1600b54876120b090919063ffffffff16565b90505b600c54612799908263ffffffff61205616565b600c5560038301546127b69061266e90839063ffffffff61210916565b600284015550505b600381018054600190810190915560028201546001600160a01b038916600090815260046020526040902060050155429101555b505b50506001600160a01b039283166000908152600460205260409020600681019190915560010154909116905b6001016124c3565b61283182611065565b15612871576040805162461bcd60e51b815260206004820152600b60248201526a757365722065786973747360a81b604482015290519081900360640190fd5b61287a81611065565b6128c1576040805162461bcd60e51b81526020600482015260136024820152727265666572726572206e6f742065786973747360681b604482015290519081900360640190fd5b813b63ffffffff811615612913576040805162461bcd60e51b815260206004820152601460248201527318d85b9b9bdd08189948184818dbdb9d1c9858dd60621b604482015290519081900360640190fd5b61291b612e77565b6040805160e08101825260055481526001600160a01b0385166020820152815160028082526060820184529192830191816020016020820280368337505050815260006020808301829052604080840183905260608401839052608090930182905260055482526006815282822080546001600160a01b03199081166001600160a01b038b8116918217909355845260048352928490208551815585830151600182018054909516921691909117909255918301518051939450849391926129eb92600285019290910190612ebd565b5060608201516003820155608082015160048083019190915560a083015160058084019190915560c09093015160069092019190915581546001019091556001600160a01b0380861660008181526020938452604080822054938816808352918190205481519081529051939491937f309bb360e8b69c23937ccc5fb01f9aeeead1c95a99604e175113ff82f2b1723a929181900390910190a450505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052612ae5908590612be7565b50505050565b60008184841115612b7a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612b3f578181015183820152602001612b27565b50505050905090810190601f168015612b6c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183612bd15760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612b3f578181015183820152602001612b27565b506000838581612bdd57fe5b0495945050505050565b6060612c3c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612c989092919063ffffffff16565b80519091501561112057808060200190516020811015612c5b57600080fd5b50516111205760405162461bcd60e51b815260040180806020018281038252602a815260200180612fb0602a913960400191505060405180910390fd5b6060612ca78484600085612caf565b949350505050565b606082471015612cf05760405162461bcd60e51b8152600401808060200182810382526026815260200180612f496026913960400191505060405180910390fd5b612cf985612e0b565b612d4a576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310612d895780518252601f199092019160209182019101612d6a565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612deb576040519150601f19603f3d011682016040523d82523d6000602084013e612df0565b606091505b5091509150612e00828286612e11565b979650505050505050565b3b151590565b60608315612e2057508161204f565b825115612e305782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315612b3f578181015183820152602001612b27565b6040518060e001604052806000815260200160006001600160a01b0316815260200160608152602001600081526020016000815260200160008152602001600081525090565b828054828255906000526020600020908101928215612ef8579160200282015b82811115612ef8578251825591602001919060010190612edd565b50612f04929150612f08565b5090565b61082191905b80821115612f045760008155600101612f0e56fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212207fb089c75f854cc72907d0be52337dffb41614846ce2315fb51ff742519b221464736f6c63430006030033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102745760003560e01c8063768599c711610151578063a3ec3d7b116100c3578063cb41eda811610087578063cb41eda814610772578063cc1fc7f11461077a578063e2bbb158146107a0578063ebe2b12b146107c3578063f2fde38b146107cb578063f7184aed146107f157610274565b8063a3ec3d7b146106c7578063a449a713146106cf578063a87430ba146106ec578063be9baf501461074d578063ca8e6c031461075557610274565b80638da58897116101155780638da58897146106105780638da5cb5b146106185780638dbb1e3a1461062057806393f1a40b146106435780639e447fc6146106a2578063a2309ff8146106bf57610274565b8063768599c71461057557806378609c5e14610598578063797eee24146105da5780637b0a47ee146106005780638aa285501461060857610274565b8063348d4487116101ea57806358eb8d88116101ae57806358eb8d88146104ca57806359948f44146104ed5780635cc61bbc146105135780636b6854b11461053f57806370b895c714610565578063715018a61461056d57610274565b8063348d4487146104375780633df5ef101461043f578063441a3e70146104655780634fe1777314610488578063509222cd1461049057610274565b8063155298a51161023c578063155298a51461037357806317caf6f1146103ac5780631ab06ee5146103b45780631c4b774b146103d75780632cb8b90e146103f457806332854c131461041157610274565b8063081e3eda146102795780631128d7cb1461029357806311b1d828146102b2578063151b03c1146102f55780631526fe2714610321575b600080fd5b61028161081d565b60408051918252519081900360200190f35b6102b0600480360360208110156102a957600080fd5b5035610824565b005b6102cf600480360360208110156102c857600080fd5b5035610881565b604080519485526020850193909352838301919091526060830152519081900360800190f35b6102816004803603604081101561030b57600080fd5b506001600160a01b0381351690602001356108aa565b61033e6004803603602081101561033757600080fd5b50356108fd565b604080516001600160a01b03909616865260208601949094528484019290925260608401526080830152519081900360a00190f35b6103906004803603602081101561038957600080fd5b5035610945565b604080516001600160a01b039092168252519081900360200190f35b610281610960565b6102b0600480360360408110156103ca57600080fd5b5080359060200135610966565b6102b0600480360360208110156103ed57600080fd5b5035610a2e565b6102b06004803603602081101561040a57600080fd5b5035610bc7565b6102816004803603602081101561042757600080fd5b50356001600160a01b0316610c24565b610281610d81565b6102816004803603602081101561045557600080fd5b50356001600160a01b0316610d87565b6102b06004803603604081101561047b57600080fd5b5080359060200135610dee565b61028161105f565b6104b6600480360360208110156104a657600080fd5b50356001600160a01b0316611065565b604080519115158252519081900360200190f35b6102b0600480360360408110156104e057600080fd5b5080359060200135611082565b6102816004803603602081101561050357600080fd5b50356001600160a01b0316611125565b6102b06004803603604081101561052957600080fd5b50803590602001356001600160a01b0316611177565b6102816004803603602081101561055557600080fd5b50356001600160a01b03166112fe565b610390611414565b6102b061142b565b6102b06004803603604081101561058b57600080fd5b50803590602001356114cd565b6102b0600480360360a08110156105ae57600080fd5b506001600160a01b03813581169160208101359160408201359160608101359160809091013516611567565b6102b0600480360360208110156105f057600080fd5b50356001600160a01b03166117a3565b6102816117b0565b6102816117b6565b6102816117bb565b6103906117c1565b6102816004803603604081101561063657600080fd5b50803590602001356117d0565b61066f6004803603604081101561065957600080fd5b50803590602001356001600160a01b0316611842565b604080519687526020870195909552858501939093526060850191909152608084015260a0830152519081900360c00190f35b6102b0600480360360208110156106b857600080fd5b5035611880565b6102816118dd565b6102b06118e3565b610281600480360360208110156106e557600080fd5b5035611a8a565b6107126004803603602081101561070257600080fd5b50356001600160a01b0316611a9c565b604080519687526001600160a01b039095166020870152858501939093526060850191909152608084015260a0830152519081900360c00190f35b610281611ade565b6102b06004803603602081101561076b57600080fd5b5035611ae4565b610390611b41565b6102816004803603602081101561079057600080fd5b50356001600160a01b0316611b50565b6102b0600480360360408110156107b657600080fd5b5080359060200135611b83565b610281611dec565b6102b0600480360360208110156107e157600080fd5b50356001600160a01b0316611df2565b6102816004803603604081101561080757600080fd5b50803590602001356001600160a01b0316611eea565b6002545b90565b61082c612009565b6000546001600160a01b0390811691161461087c576040805162461bcd60e51b81526020600482018190526024820152600080516020612f90833981519152604482015290519081900360640190fd5b600e55565b600360208190526000918252604090912080546001820154600283015492909301549092919084565b60006108b583611065565b156108f3576001600160a01b03831660009081526004602052604090206002018054839081106108e157fe5b906000526020600020015490506108f7565b5060005b92915050565b6002818154811061090a57fe5b6000918252602090912060059091020180546001820154600283015460038401546004909401546001600160a01b0390931694509092909185565b6006602052600090815260409020546001600160a01b031681565b60125481565b61096e612009565b6000546001600160a01b039081169116146109be576040805162461bcd60e51b81526020600482018190526024820152600080516020612f90833981519152604482015290519081900360640190fd5b610a01816109f5600285815481106109d257fe5b90600052602060002090600502016001015460125461200d90919063ffffffff16565b9063ffffffff61205616565b6012819055508060028381548110610a1557fe5b9060005260206000209060050201600101819055505050565b600060028281548110610a3d57fe5b600091825260208083208584526001825260408085203386529092529220600360059092029092019081015460048201546002830154929450909142118015610a8557508015155b15610b10576000610a9a8560020154426117d0565b90506000610ad9601254610acd8860010154610ac1600b54876120b090919063ffffffff16565b9063ffffffff6120b016565b9063ffffffff61210916565b9050610b0b610afa84610acd84670de0b6b3a764000063ffffffff6120b016565b60038801549063ffffffff61205616565b935050505b6000610b5184600201546109f5670de0b6b3a7640000610acd610b4089600501548961200d90919063ffffffff16565b60018a01549063ffffffff6120b016565b90508015610bbb57610b63338261214b565b6003840154610b78908263ffffffff61205616565b60038501556000600285015560408051828152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b50506005909101555050565b610bcf612009565b6000546001600160a01b03908116911614610c1f576040805162461bcd60e51b81526020600482018190526024820152600080516020612f90833981519152604482015290519081900360640190fd5b600d55565b600080610c3083611065565b15610d79576001600160a01b038316600090815260046020526040812060020180548290610c5a57fe5b90600052602060002001549050600060046000866001600160a01b03166001600160a01b03168152602001908152602001600020600201600181548110610c9d57fe5b600091825260209091200154905060015b60038111610cdc576000818152600f6020526040902054831015610cd157610cdc565b809350600101610cae565b508260031415610d76576003600052600f6020527f45f76dafbbad695564362934e24d72eedc57f9fc1a65f39bca62176cc82968285482118015610d225750600e548110155b15610d305760039250610d76565b6003600052600f6020527f45f76dafbbad695564362934e24d72eedc57f9fc1a65f39bca62176cc82968285482118015610d6c5750600e548111155b15610d7657600292505b50505b90505b919050565b60055481565b600080805b600254811015610de75760008181526001602090815260408083206001600160a01b038816845290915290206003810154610ddc90610dcf906109f58589611eea565b849063ffffffff61205616565b925050600101610d8c565b5092915050565b6969e10de76676d0800000600c5410610e2557610e1c6064610acd605a600b546120b090919063ffffffff16565b600b556000600c555b600082815260016020908152604080832033845290915281206002805491929185908110610e4f57fe5b906000526020600020906005020190508282600101541015610ead576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b610eb784336122f5565b610ec533836002015461214b565b6000600283018190556003830154610ee29163ffffffff61205616565b60038301819055604080519182525133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a28215611019576001820154610f39908463ffffffff61200d16565b60018301558054610f5a906001600160a01b0316338563ffffffff61244d16565b60048082018054859003905533600090815260209190915260408120600101546001600160a01b0316905b6002811015611016576001600160a01b03821615801590610faa5750610faa82611065565b1561100e576001600160a01b0382166000908152600460205260409020600201805486919083908110610fd957fe5b600091825260208083209091018054939093039092556001600160a01b03938416815260049091526040902060010154909116905b600101610f85565b50505b6110223361249f565b604080518481529051859133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a350505050565b600d5481565b6001600160a01b0316600090815260046020526040902054151590565b61108a612009565b6000546001600160a01b039081169116146110da576040805162461bcd60e51b81526020600482018190526024820152600080516020612f90833981519152604482015290519081900360640190fd5b600060095442116110ed576009546110ef565b425b6000848152600360205260409020838155600101549091506111205760008381526003602052604090206001018190555b505050565b600080805b600254811015610de75760008181526001602081815260408084206001600160a01b03891685529091529091209081015461116c90849063ffffffff61205616565b92505060010161112a565b61117f612009565b6000546001600160a01b039081169116146111cf576040805162461bcd60e51b81526020600482018190526024820152600080516020612f90833981519152604482015290519081900360640190fd5b600060095442116111e2576009546111e4565b425b6040805160a0810182526001600160a01b039485168152602081019586529081019182526000606082018181526080830182815260028054600181018255935292517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace600590930292830180546001600160a01b031916919097161790955594517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acf86015590517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad085015591517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad184015550517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad290910155565b60008061130a83611065565b611315579050610d7c565b600061132084610c24565b6001600160a01b038516600090815260046020526040902060030154925090508015610de75760008181526003602081815260408084206001600160a01b0389168552600490925290922060028301549183015460018401549192914211801561138957508015155b156113ec57600061139e8560010154426117d0565b905060006113c5601254610acd8860000154610ac1600b54876120b090919063ffffffff16565b90506113e76113da828563ffffffff61210916565b859063ffffffff61205616565b935050505b611407866109f585600501548561200d90919063ffffffff16565b9650505050505050610d7c565b60105464010000000090046001600160a01b031681565b611433612009565b6000546001600160a01b03908116911614611483576040805162461bcd60e51b81526020600482018190526024820152600080516020612f90833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6114d5612009565b6000546001600160a01b03908116911614611525576040805162461bcd60e51b81526020600482018190526024820152600080516020612f90833981519152604482015290519081900360640190fd5b601054600363ffffffff9091161015611555576010805463ffffffff8082166001011663ffffffff199091161790555b6000918252600f602052604090912055565b61156f612009565b6000546001600160a01b039081169116146115bf576040805162461bcd60e51b81526020600482018190526024820152600080516020612f90833981519152604482015290519081900360640190fd5b60085460ff1615611609576040805162461bcd60e51b815260206004820152600f60248201526e1a185cc81a5b9a5d1a585b1a5e9959608a1b604482015290519081900360640190fd5b60108054640100000000600160c01b0319166401000000006001600160a01b038881169190910291909117909155600b8590556009849055600a839055601180546001600160a01b031916918316919091179055611665612e77565b6040805160e081018252600181526000602082015281516002808252606082018452919283019181602001602082028036833750505081526000602080830182905260408084018390526060840183905260809093018290526011546001600160a01b039081168352600482529183902084518155848201516001820180546001600160a01b03191691909416179092559183015180519394508493919261171592600285019290910190612ebd565b50606082015160038201556080820151600482015560a0820151600582015560c090910151600691820155601154600160008190526020929092527f3e5fec24aa4dc4e5aee2e025e51e1392c72a2500577559fae9665c6d52bd6a3180546001600160a01b0319166001600160a01b039092169190911790556008805460ff19169091179055505050505050565b6117ad3382612828565b50565b600b5481565b600381565b60095481565b6000546001600160a01b031690565b6000600a5482116117f7576117f06003610ac1848663ffffffff61200d16565b90506108f7565b600a548310611810576117f0828463ffffffff61200d16565b6117f0611828600a548461200d90919063ffffffff16565b6109f56003610ac187600a5461200d90919063ffffffff16565b600160208181526000938452604080852090915291835291208054918101546002820154600383015460048401546005909401549293919290919086565b611888612009565b6000546001600160a01b039081169116146118d8576040805162461bcd60e51b81526020600482018190526024820152600080516020612f90833981519152604482015290519081900360640190fd5b600b55565b600c5481565b6118ec33611065565b61192b576040805162461bcd60e51b815260206004820152600b60248201526a757365722065786973747360a81b604482015290519081900360640190fd5b600d5461193733611125565b1161197f576040805162461bcd60e51b81526020600482015260136024820152720daeae6e840dae8406460606040544062ca627606b1b604482015290519081900360640190fd5b60008061198b33610c24565b90508015611a8657600081815260036020818152604080842033855260049092529092206002830154918301546001840154919291421180156119cd57508015155b15611a235760006119e28560010154426117d0565b90506000611a09601254610acd8860000154610ac1600b54876120b090919063ffffffff16565b9050611a1e6113da828563ffffffff61210916565b935050505b336000908152600460205260409020600301546005840154611a5191906109f590859063ffffffff61200d16565b9550611a5d338761214b565b503360009081526004602081905260408220600381019290925501805486019055600590910155505b5050565b600f6020526000908152604090205481565b600460208190526000918252604090912080546001820154600383015493830154600584015460069094015492946001600160a01b0390921693919290919086565b600e5481565b611aec612009565b6000546001600160a01b03908116911614611b3c576040805162461bcd60e51b81526020600482018190526024820152600080516020612f90833981519152604482015290519081900360640190fd5b601255565b6011546001600160a01b031681565b600080805b600254811015610de757611b79611b6c8286611eea565b839063ffffffff61205616565b9150600101611b55565b6009544211611bc5576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b6969e10de76676d0800000600c5410611bfc57611bf36064610acd605a600b546120b090919063ffffffff16565b600b556000600c555b611c0533611065565b611c4a576040805162461bcd60e51b81526020600482015260116024820152707573657220646f6e27742065786973747360781b604482015290519081900360640190fd5b600060028381548110611c5957fe5b600091825260208083208684526001825260408085203380875293529093206005909202909201925090611c8e9085906122f5565b8215611da6578154611cb1906001600160a01b031633308663ffffffff612a8b16565b6001810154611cc6908463ffffffff61205616565b600182015542600480830191909155848255820154611ceb908463ffffffff61205616565b60048084019190915533600090815260209190915260408120600101546001600160a01b0316905b6002811015611da3576001600160a01b03821615801590611d385750611d3882611065565b15611d9b576001600160a01b0382166000908152600460205260409020600201805486919083908110611d6757fe5b6000918252602080832090910180549093019092556001600160a01b03938416815260049091526040902060010154909116905b600101611d13565b50505b611daf3361249f565b604080518481529051859133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a350505050565b600a5481565b611dfa612009565b6000546001600160a01b03908116911614611e4a576040805162461bcd60e51b81526020600482018190526024820152600080516020612f90833981519152604482015290519081900360640190fd5b6001600160a01b038116611e8f5760405162461bcd60e51b8152600401808060200182810382526026815260200180612f236026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60008060028481548110611efa57fe5b600091825260208083208784526001825260408085206001600160a01b038916865290925292206003600590920290920190810154600482015460028085015490840154939550919290919042118015611f5357508115155b15611fc6576000611f688660020154426117d0565b90506000611f8f601254610acd8960010154610ac1600b54876120b090919063ffffffff16565b9050611fc1611fb085610acd84670de0b6b3a764000063ffffffff6120b016565b60038901549063ffffffff61205616565b945050505b611ffd670de0b6b3a7640000610acd611fec87600501548761200d90919063ffffffff16565b60018801549063ffffffff6120b016565b01979650505050505050565b3390565b600061204f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612aeb565b9392505050565b60008282018381101561204f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000826120bf575060006108f7565b828202828482816120cc57fe5b041461204f5760405162461bcd60e51b8152600401808060200182810382526021815260200180612f6f6021913960400191505060405180910390fd5b600061204f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612b82565b601054604080516370a0823160e01b8152306004820152905160009264010000000090046001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561219e57600080fd5b505afa1580156121b2573d6000803e3d6000fd5b505050506040513d60208110156121c857600080fd5b5051905080821115612265576010546040805163a9059cbb60e01b81526001600160a01b0386811660048301526024820185905291516401000000009093049091169163a9059cbb916044808201926020929091908290030181600087803b15801561223357600080fd5b505af1158015612247573d6000803e3d6000fd5b505050506040513d602081101561225d57600080fd5b506111209050565b6010546040805163a9059cbb60e01b81526001600160a01b0386811660048301526024820186905291516401000000009093049091169163a9059cbb916044808201926020929091908290030181600087803b1580156122c457600080fd5b505af11580156122d8573d6000803e3d6000fd5b505050506040513d60208110156122ee57600080fd5b5050505050565b60006002838154811061230457fe5b90600052602060002090600502019050806002015442116123255750611a86565b60048101548061233c575042600290910155611a86565b60008481526001602090815260408083206001600160a01b03871684529091528120600284015490919061237090426117d0565b90506000612397601254610acd8760010154610ac1600b54876120b090919063ffffffff16565b600c549091506123ad908263ffffffff61205616565b600c556123e06123cf85610acd84670de0b6b3a764000063ffffffff6120b016565b60038701549063ffffffff61205616565b6003860181905560028401546005850154612428926109f591670de0b6b3a764000091610acd91612417919063ffffffff61200d16565b60018901549063ffffffff6120b016565b6002808501919091556003860154600590940193909355505042920191909155505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611120908490612be7565b6001600160a01b038082166000908152600460205260409020600190810154909116905b6003811015611120576124d582611065565b80156124e957506001600160a01b03821615155b156128205760006124f983610c24565b6001600160a01b0384166000908152600460205260408120600601549192508183111561253757612530838363ffffffff61200d16565b9050612552565b818310156125525761254f828463ffffffff61200d16565b90505b80156127f457600060028514801561258657506001600160a01b038716600090815260046020526040902060060154600211155b8015612593575060028410155b5082156126fe57600083815260036020819052604090912090810154156126fc5760006125c48260010154426117d0565b9050600083156126185760125461261190610acd6125fd6125ef60648385600363ffffffff6120b016565b87549063ffffffff61205616565b600b54610ac190879063ffffffff6120b016565b905061263e565b61263b601254610acd8560000154610ac1600b54876120b090919063ffffffff16565b90505b600c54612651908263ffffffff61205616565b600c55600383015461267f9061266e90839063ffffffff61210916565b60028501549063ffffffff61205616565b600284018190556001600160a01b038a16600090815260046020526040902060038101546005909101546126bc926109f59163ffffffff61200d16565b6001600160a01b038a1660009081526004602052604090206003808201929092559084018054600019019055600284015460059091015550504260018201555b505b83156127f257600084815260036020819052604090912090810154156127be57600061272e8260010154426117d0565b9050600083156127605760125461275990610acd6125fd6125ef60648385600363ffffffff6120b016565b9050612786565b612783601254610acd8560000154610ac1600b54876120b090919063ffffffff16565b90505b600c54612799908263ffffffff61205616565b600c5560038301546127b69061266e90839063ffffffff61210916565b600284015550505b600381018054600190810190915560028201546001600160a01b038916600090815260046020526040902060050155429101555b505b50506001600160a01b039283166000908152600460205260409020600681019190915560010154909116905b6001016124c3565b61283182611065565b15612871576040805162461bcd60e51b815260206004820152600b60248201526a757365722065786973747360a81b604482015290519081900360640190fd5b61287a81611065565b6128c1576040805162461bcd60e51b81526020600482015260136024820152727265666572726572206e6f742065786973747360681b604482015290519081900360640190fd5b813b63ffffffff811615612913576040805162461bcd60e51b815260206004820152601460248201527318d85b9b9bdd08189948184818dbdb9d1c9858dd60621b604482015290519081900360640190fd5b61291b612e77565b6040805160e08101825260055481526001600160a01b0385166020820152815160028082526060820184529192830191816020016020820280368337505050815260006020808301829052604080840183905260608401839052608090930182905260055482526006815282822080546001600160a01b03199081166001600160a01b038b8116918217909355845260048352928490208551815585830151600182018054909516921691909117909255918301518051939450849391926129eb92600285019290910190612ebd565b5060608201516003820155608082015160048083019190915560a083015160058084019190915560c09093015160069092019190915581546001019091556001600160a01b0380861660008181526020938452604080822054938816808352918190205481519081529051939491937f309bb360e8b69c23937ccc5fb01f9aeeead1c95a99604e175113ff82f2b1723a929181900390910190a450505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052612ae5908590612be7565b50505050565b60008184841115612b7a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612b3f578181015183820152602001612b27565b50505050905090810190601f168015612b6c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183612bd15760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612b3f578181015183820152602001612b27565b506000838581612bdd57fe5b0495945050505050565b6060612c3c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612c989092919063ffffffff16565b80519091501561112057808060200190516020811015612c5b57600080fd5b50516111205760405162461bcd60e51b815260040180806020018281038252602a815260200180612fb0602a913960400191505060405180910390fd5b6060612ca78484600085612caf565b949350505050565b606082471015612cf05760405162461bcd60e51b8152600401808060200182810382526026815260200180612f496026913960400191505060405180910390fd5b612cf985612e0b565b612d4a576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310612d895780518252601f199092019160209182019101612d6a565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612deb576040519150601f19603f3d011682016040523d82523d6000602084013e612df0565b606091505b5091509150612e00828286612e11565b979650505050505050565b3b151590565b60608315612e2057508161204f565b825115612e305782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315612b3f578181015183820152602001612b27565b6040518060e001604052806000815260200160006001600160a01b0316815260200160608152602001600081526020016000815260200160008152602001600081525090565b828054828255906000526020600020908101928215612ef8579160200282015b82811115612ef8578251825591602001919060010190612edd565b50612f04929150612f08565b5090565b61082191905b80821115612f045760008155600101612f0e56fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212207fb089c75f854cc72907d0be52337dffb41614846ce2315fb51ff742519b221464736f6c63430006030033
Deployed Bytecode Sourcemap
21585:21331:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21585:21331:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;26111:95:0;;;:::i;:::-;;;;;;;;;;;;;;;;36376:134;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;36376:134:0;;:::i;:::-;;22917:50;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;22917:50:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37195:178;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;37195:178:0;;;;;;;;:::i;22537:26::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;22537:26:0;;:::i;:::-;;;;-1:-1:-1;;;;;22537:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23273:44;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;23273:44:0;;:::i;:::-;;;;-1:-1:-1;;;;;23273:44:0;;;;;;;;;;;;;;24157:34;;;:::i;30893:217::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;30893:217:0;;;;;;;:::i;39492:993::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;39492:993:0;;:::i;27389:111::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;27389:111:0;;:::i;36516:674::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;36516:674:0;-1:-1:-1;;;;;36516:674:0;;:::i;23243:26::-;;;:::i;32896:289::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;32896:289:0;-1:-1:-1;;;;;32896:289:0;;:::i;40542:1119::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;40542:1119:0;;;;;;;:::i;23632:50::-;;;:::i;26217:104::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;26217:104:0;-1:-1:-1;;;;;26217:104:0;;:::i;:::-;;;;;;;;;;;;;;;;;;30267:531;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;30267:531:0;;;;;;;:::i;33193:263::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;33193:263:0;-1:-1:-1;;;;;33193:263:0;;:::i;29808:450::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;29808:450:0;;;;;;-1:-1:-1;;;;;29808:450:0;;:::i;28650:986::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;28650:986:0;-1:-1:-1;;;;;28650:986:0;;:::i;23935:17::-;;;:::i;9141:148::-;;;:::i;25353:750::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;25353:750:0;;;;;;;:::i;24666:677::-;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;;24666:677:0;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;26332:119::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;26332:119:0;-1:-1:-1;;;;;26332:119:0;;:::i;23558:29::-;;;:::i;24271:44::-;;;:::i;23467:37::-;;;:::i;8499:79::-;;;:::i;31418:419::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;31418:419:0;;;;;;;:::i;21991:66::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21991:66:0;;;;;;-1:-1:-1;;;;;21991:66:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31236:96;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;31236:96:0;;:::i;23596:30::-;;;:::i;27505:1133::-;;;:::i;23757:40::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;23757:40:0;;:::i;23197:37::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;23197:37:0;-1:-1:-1;;;;;23197:37:0;;:::i;:::-;;;;;;;-1:-1:-1;;;;;23197:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23688:58;;;:::i;31116:114::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;31116:114:0;;:::i;23963:85::-;;;:::i;32666:222::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;32666:222:0;-1:-1:-1;;;;;32666:222:0;;:::i;38533:948::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;38533:948:0;;;;;;;:::i;23518:31::-;;;:::i;9444:244::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;9444:244:0;-1:-1:-1;;;;;9444:244:0;;:::i;31847:811::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;31847:811:0;;;;;;-1:-1:-1;;;;;31847:811:0;;:::i;26111:95::-;26183:8;:15;26111:95;;:::o;36376:134::-;8721:12;:10;:12::i;:::-;8711:6;;-1:-1:-1;;;;;8711:6:0;;;:22;;;8703:67;;;;;-1:-1:-1;;;8703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8703:67:0;;;;;;;;;;;;;;;36458:23:::1;:44:::0;36376:134::o;22917:50::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37195:178::-;37269:7;37285:19;37298:5;37285:12;:19::i;:::-;37282:74;;;-1:-1:-1;;;;;37318:12:0;;;;;;:5;:12;;;;;:24;;:32;;37343:6;;37318:32;;;;;;;;;;;;;;37311:39;;;;37282:74;-1:-1:-1;37367:1:0;37195:178;;;;;:::o;22537:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22537:26:0;;;;-1:-1:-1;22537:26:0;;;;;:::o;23273:44::-;;;;;;;;;;;;-1:-1:-1;;;;;23273:44:0;;:::o;24157:34::-;;;;:::o;30893:217::-;8721:12;:10;:12::i;:::-;8711:6;;-1:-1:-1;;;;;8711:6:0;;;:22;;;8703:67;;;;;-1:-1:-1;;;8703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8703:67:0;;;;;;;;;;;;;;;30989:63:::1;31040:11;30989:46;31009:8;31018:4;31009:14;;;;;;;;;;;;;;;;;;:25;;;30989:15;;:19;;:46;;;;:::i;:::-;:50:::0;:63:::1;:50;:63;:::i;:::-;30971:15;:81;;;;31091:11;31063:8;31072:4;31063:14;;;;;;;;;;;;;;;;;;:25;;:39;;;;30893:217:::0;;:::o;39492:993::-;39540:21;39564:8;39573:4;39564:14;;;;;;;;;;;;;;;;39613;;;:8;:14;;;;;;39628:10;39613:26;;;;;;;39675:19;39564:14;;;;;;;39675:19;;;;39724:14;;;;39771:19;;;;39564:14;;-1:-1:-1;39675:19:0;;39753:15;:37;:54;;;;-1:-1:-1;39794:13:0;;;39753:54;39749:353;;;39824:18;39846:51;39860:4;:19;;;39881:15;39846:13;:51::i;:::-;39824:73;;39912:17;39932:68;39984:15;;39932:47;39963:4;:15;;;39932:26;39947:10;;39932;:14;;:26;;;;:::i;:::-;:30;:47;:30;:47;:::i;:::-;:51;:68;:51;:68;:::i;:::-;39912:88;-1:-1:-1;40032:58:0;40056:33;40080:8;40056:19;39912:88;40070:4;40056:19;:13;:19;:::i;:33::-;40032:19;;;;;:58;:23;:58;:::i;:::-;40015:75;;39749:353;;;40112:14;40129:93;40210:4;:11;;;40129:76;40200:4;40129:66;40145:49;40166:4;:27;;;40146:14;40145:20;;:49;;;;:::i;:::-;40129:11;;;;;:66;:15;:66;:::i;:93::-;40112:110;-1:-1:-1;40240:10:0;;40236:191;;40258:35;40274:10;40286:6;40258:15;:35::i;:::-;40317:15;;;;:27;;40337:6;40317:27;:19;:27;:::i;:::-;40299:15;;;:45;40364:1;40350:11;;;:15;40385:30;;;;;;;;40396:10;;40385:30;;;;;;;;;;40236:191;-1:-1:-1;;40433:27:0;;;;:44;-1:-1:-1;;39492:993:0:o;27389:111::-;8721:12;:10;:12::i;:::-;8711:6;;-1:-1:-1;;;;;8711:6:0;;;:22;;;8703:67;;;;;-1:-1:-1;;;8703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8703:67:0;;;;;;;;;;;;;;;27461:21:::1;:34:::0;27389:111::o;36516:674::-;36572:7;;36612:19;36625:5;36612:12;:19::i;:::-;36609:560;;;-1:-1:-1;;;;;36666:12:0;;36638:25;36666:12;;;:5;:12;;;;;:24;;:27;;36638:25;;36666:27;;;;;;;;;;;;36638:55;;36708:27;36738:5;:12;36744:5;-1:-1:-1;;;;;36738:12:0;-1:-1:-1;;;;;36738:12:0;;;;;;;;;;;;:24;;36763:1;36738:27;;;;;;;;;;;;;;;;;;;-1:-1:-1;36787:1:0;36771:131;36792:1;36789;:4;36771:131;;36828:11;;;;:8;:11;;;;;;36808:31;;36805:85;;;36848:5;;36805:85;36881:1;36874:8;;36794:3;;36771:131;;;;36910:3;36917:1;36910:8;36907:257;;;36961:1;36952:11;;:8;:11;;;;36932:31;;:80;;;;;36989:23;;36967:19;:45;;36932:80;36929:229;;;37030:1;37024:7;;36929:229;;;37079:1;37070:11;;:8;:11;;;;37050:31;;:81;;;;;37108:23;;37085:19;:46;;37050:81;37047:111;;;37149:1;37143:7;;37047:111;36609:560;;;37182:3;-1:-1:-1;36516:674:0;;;;:::o;23243:26::-;;;;:::o;32896:289::-;32954:7;;;32991:163;33012:8;:15;33009:18;;32991:163;;;33039:21;33063:11;;;:8;:11;;;;;;;;-1:-1:-1;;;;;33063:18:0;;;;;;;;;33131:15;;;;33096:52;;33107:40;;:19;33072:1;33075:5;33107:10;:19::i;:40::-;33096:6;;:52;:10;:52;:::i;:::-;33087:61;-1:-1:-1;;33028:3:0;;32991:163;;;-1:-1:-1;33171:6:0;32896:289;-1:-1:-1;;32896:289:0:o;40542:1119::-;42512:12;42497:11;;:27;42493:246;;42606:27;42629:3;42606:18;42621:2;42606:10;;:14;;:18;;;;:::i;:27::-;42593:10;:40;42655:1;42641:11;:15;42493:246;40621:21:::1;40645:14:::0;;;:8:::1;:14;::::0;;;;;;;40660:10:::1;40645:26:::0;;;;;;;40790:8:::1;:14:::0;;40645:26;;40621:21;40654:4;;40790:14;::::1;;;;;;;;;;;;;;;40766:38;;40848:7;40833:4;:11;;;:22;;40825:53;;;::::0;;-1:-1:-1;;;40825:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;40825:53:0;;;;;;;;;;;;;::::1;;40889:27;40900:4;40905:10;40889;:27::i;:::-;40940:40;40956:10;40968:4;:11;;;40940:15;:40::i;:::-;40999:1;40985:11;::::0;::::1;:15:::0;;;41023::::1;::::0;::::1;::::0;:32:::1;::::0;::::1;:19;:32;:::i;:::-;41005:15;::::0;::::1;:50:::0;;;41065:39:::1;::::0;;;;;;41076:10:::1;::::0;41065:39:::1;::::0;;;;;::::1;::::0;;::::1;41118:11:::0;;41115:458:::1;;41160:11;::::0;::::1;::::0;:24:::1;::::0;41176:7;41160:24:::1;:15;:24;:::i;:::-;41146:11;::::0;::::1;:38:::0;41201:12;;:55:::1;::::0;-1:-1:-1;;;;;41201:12:0::1;41235:10;41248:7:::0;41201:55:::1;:25;:55;:::i;:::-;41270:14;::::0;;::::1;:25:::0;;;;::::1;::::0;;41335:10:::1;41270:14;41329:17:::0;;;::::1;::::0;;;;;;;-1:-1:-1;41329:26:0::1;::::0;-1:-1:-1;;;;;41329:26:0::1;::::0;41361:200:::1;41381:1;41379;:3;41361:200;;;-1:-1:-1::0;;;;;41397:22:0;::::1;::::0;;::::1;::::0;:49:::1;;;41423:23;41436:9;41423:12;:23::i;:::-;41394:161;;;-1:-1:-1::0;;;;;41455:16:0;::::1;;::::0;;;:5:::1;:16;::::0;;;;:28:::1;;:31:::0;;41490:7;;41455:28;41484:1;;41455:31;::::1;;;;;;::::0;;;::::1;::::0;;;;;::::1;:42:::0;;;;;::::1;::::0;;;-1:-1:-1;;;;;41522:16:0;;::::1;::::0;;:5:::1;:16:::0;;;;;;-1:-1:-1;41522:25:0::1;::::0;;;::::1;::::0;41394:161:::1;41383:3;;41361:200;;;;41115:458;;41577:25;41591:10;41577:13;:25::i;:::-;41618:35;::::0;;;;;;;41639:4;;41627:10:::1;::::0;41618:35:::1;::::0;;;;::::1;::::0;;::::1;42748:1;;40542:1119:::0;;:::o;23632:50::-;;;;:::o;26217:104::-;-1:-1:-1;;;;;26293:11:0;26274:4;26293:11;;;:5;:11;;;;;:14;:19;;;26217:104::o;30267:531::-;8721:12;:10;:12::i;:::-;8711:6;;-1:-1:-1;;;;;8711:6:0;;;:22;;;8703:67;;;;;-1:-1:-1;;;8703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8703:67:0;;;;;;;;;;;;;;;30359:16:::1;30396:9;;30378:15;:27;:57;;30426:9;;30378:57;;;30408:15;30378:57;30440:22;::::0;;;:11:::1;:22;::::0;;;;:47;;;30495:31:::1;;::::0;30359:76;;-1:-1:-1;30492:94:0::1;;30538:22;::::0;;;:11:::1;:22;::::0;;;;:31:::1;;:42:::0;;;30492:94:::1;8781:1;30267:531:::0;;:::o;33193:263::-;33252:7;;;33289:136;33310:8;:15;33307:18;;33289:136;;;33337:21;33361:11;;;:8;:11;;;;;;;;-1:-1:-1;;;;;33361:18:0;;;;;;;;;;33407:11;;;;33396:23;;:6;;:23;:10;:23;:::i;:::-;33387:32;-1:-1:-1;;33326:3:0;;33289:136;;29808:450;8721:12;:10;:12::i;:::-;8711:6;;-1:-1:-1;;;;;8711:6:0;;;:22;;;8703:67;;;;;-1:-1:-1;;;8703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8703:67:0;;;;;;;;;;;;;;;29892:22:::1;29935:9;;29917:15;:27;:57;;29965:9;;29917:57;;;29947:15;29917:57;30062:185;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;30062:185:0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;-1:-1:-1;30062:185:0;;;;;;;;;;;;30048:8:::1;27:10:-1::0;;39:1:::1;23:18:::0;::::1;45:23:::0;;30048:200:0;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;;30048:200:0::1;::::0;;;::::1;;::::0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30048:200:0;;;;;;29808:450::o;28650:986::-;28713:7;;28815:23;28828:9;28815:12;:23::i;:::-;28811:62;;28853:14;-1:-1:-1;28846:21:0;;28811:62;28877:11;28891:22;28903:9;28891:11;:22::i;:::-;-1:-1:-1;;;;;28935:16:0;;;;;;:5;:16;;;;;:28;;;;-1:-1:-1;28877:36:0;-1:-1:-1;28971:6:0;;28968:638;;28988:27;29018:16;;;:11;:16;;;;;;;;-1:-1:-1;;;;;29060:16:0;;;;:5;:16;;;;;;29113:28;;;;29166:17;;;;29211:16;;;;29060;;29113:28;29193:15;:34;:51;;;;-1:-1:-1;29231:13:0;;;29193:51;29189:321;;;29253:18;29274:48;29288:7;:16;;;29306:15;29274:13;:48::i;:::-;29253:69;;29329:17;29349:71;29404:15;;29349:50;29380:7;:18;;;29349:26;29364:10;;29349;:14;;:26;;;;:::i;:71::-;29329:91;-1:-1:-1;29454:49:0;29479:23;29329:91;29493:8;29479:23;:13;:23;:::i;:::-;29454:20;;:49;:24;:49;:::i;:::-;29431:72;;29189:321;;;29526:74;29585:14;29526:54;29551:4;:28;;;29526:20;:24;;:54;;;;:::i;:74::-;29519:81;;;;;;;;;;23935:17;;;;;;-1:-1:-1;;;;;23935:17:0;;:::o;9141:148::-;8721:12;:10;:12::i;:::-;8711:6;;-1:-1:-1;;;;;8711:6:0;;;:22;;;8703:67;;;;;-1:-1:-1;;;8703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8703:67:0;;;;;;;;;;;;;;;9248:1:::1;9232:6:::0;;9211:40:::1;::::0;-1:-1:-1;;;;;9232:6:0;;::::1;::::0;9211:40:::1;::::0;9248:1;;9211:40:::1;9279:1;9262:19:::0;;-1:-1:-1;;;;;;9262:19:0::1;::::0;;9141:148::o;25353:750::-;8721:12;:10;:12::i;:::-;8711:6;;-1:-1:-1;;;;;8711:6:0;;;:22;;;8703:67;;;;;-1:-1:-1;;;8703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8703:67:0;;;;;;;;;;;;;;;25428:14:::1;::::0;25445:1:::1;25428:14;::::0;;::::1;:18;25425:641;;;25457:14;:16:::0;;::::1;::::0;;::::1;::::0;::::1;;-1:-1:-1::0;;25457:16:0;;::::1;;::::0;;25425:641:::1;26070:15;::::0;;;:8:::1;:15;::::0;;;;;:24;25353:750::o;24666:677::-;8721:12;:10;:12::i;:::-;8711:6;;-1:-1:-1;;;;;8711:6:0;;;:22;;;8703:67;;;;;-1:-1:-1;;;8703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8703:67:0;;;;;;;;;;;;;;;24819:11:::1;::::0;::::1;;:20;24811:47;;;::::0;;-1:-1:-1;;;24811:47:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;24811:47:0;;;;;;;;;;;;;::::1;;24869:3;:10:::0;;-1:-1:-1;;;;;;24869:10:0::1;::::0;-1:-1:-1;;;;;24869:10:0;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;24884::::1;:24:::0;;;24913:9:::1;:22:::0;;;24940:12:::1;:28:::0;;;24973:16:::1;:37:::0;;-1:-1:-1;;;;;;24973:37:0::1;::::0;;::::1;::::0;;;::::1;::::0;;25018:16:::1;;:::i;:::-;25037:195;::::0;;::::1;::::0;::::1;::::0;;25061:1:::1;25037:195:::0;;-1:-1:-1;25037:195:0::1;::::0;::::1;::::0;25124:16;;25138:1:::1;25124:16:::0;;;;;::::1;::::0;;25037:195;;;;;25124:16:::1;;;29:2:-1;21:6;17:15;125:4;109:14;101:6;88:42;-1:-1:::0;;;25037:195:0;;25158:1:::1;25037:195;::::0;;::::1;::::0;;;;;;;;;;;;;;;;;;;;;;;25245:16:::1;::::0;-1:-1:-1;;;;;25245:16:0;;::::1;25239:23:::0;;:5:::1;:23:::0;;;;;;:30;;;;;;::::1;::::0;25245:16;25239:30;::::1;::::0;;-1:-1:-1;;;;;;25239:30:0::1;::::0;;;::::1;;::::0;;;;;::::1;::::0;;;;;-1:-1:-1;25239:30:0;;:23;;:30:::1;::::0;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;25239:30:0::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;25295:16:::1;::::0;;-1:-1:-1;25279:12:0;;;::::1;::::0;;;;;:32;;-1:-1:-1;;;;;;25279:32:0::1;-1:-1:-1::0;;;;;25295:16:0;;::::1;25279:32:::0;;;::::1;::::0;;25316:11:::1;:18:::0;;-1:-1:-1;;25316:18:0::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;;24666:677:0:o;26332:119::-;26402:41;26415:10;26427:15;26402:12;:41::i;:::-;26332:119;:::o;23558:29::-;;;;:::o;24271:44::-;24314:1;24271:44;:::o;23467:37::-;;;;:::o;8499:79::-;8537:7;8564:6;-1:-1:-1;;;;;8564:6:0;8499:79;:::o;31418:419::-;31490:7;31521:12;;31514:3;:19;31510:320;;31557:36;24314:1;31557:14;:3;31565:5;31557:14;:7;:14;:::i;:36::-;31550:43;;;;31510:320;31624:12;;31615:5;:21;31611:219;;31660:14;:3;31668:5;31660:14;:7;:14;:::i;31611:219::-;31714:104;31782:21;31790:12;;31782:3;:7;;:21;;;;:::i;:::-;31714:45;24314:1;31714:23;31731:5;31714:12;;:16;;:23;;;;:::i;21991:66::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31236:96::-;8721:12;:10;:12::i;:::-;8711:6;;-1:-1:-1;;;;;8711:6:0;;;:22;;;8703:67;;;;;-1:-1:-1;;;8703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8703:67:0;;;;;;;;;;;;;;;31302:10:::1;:24:::0;31236:96::o;23596:30::-;;;;:::o;27505:1133::-;27552:24;27565:10;27552:12;:24::i;:::-;27544:48;;;;;-1:-1:-1;;;27544:48:0;;;;;;;;;;;;-1:-1:-1;;;27544:48:0;;;;;;;;;;;;;;;27639:21;;27611:25;27625:10;27611:13;:25::i;:::-;:49;27603:80;;;;;-1:-1:-1;;;27603:80:0;;;;;;;;;;;;-1:-1:-1;;;27603:80:0;;;;;;;;;;;;;;;27692:22;;27739:23;27751:10;27739:11;:23::i;:::-;27725:37;-1:-1:-1;27772:6:0;;27769:865;;27787:27;27817:16;;;:11;:16;;;;;;;;27865:10;27859:17;;:5;:17;;;;;;27913:28;;;;27966:17;;;;28011:16;;;;27859:17;;27913:28;27993:15;:34;:51;;;;-1:-1:-1;28031:13:0;;;27993:51;27989:321;;;28053:18;28074:48;28088:7;:16;;;28106:15;28074:13;:48::i;:::-;28053:69;;28129:17;28149:71;28204:15;;28149:50;28180:7;:18;;;28149:26;28164:10;;28149;:14;;:26;;;;:::i;:71::-;28129:91;-1:-1:-1;28254:49:0;28279:23;28129:91;28293:8;28279:23;:13;:23;:::i;28254:49::-;28231:72;;27989:321;;;28402:10;28396:17;;;;:5;:17;;;;;:29;;;28362:28;;;;28337:89;;28396:29;28337:54;;:20;;:54;:24;:54;:::i;:89::-;28320:106;;28433:43;28449:10;28461:14;28433:15;:43::i;:::-;-1:-1:-1;28489:10:0;28515:1;28483:17;;;:5;:17;;;;;;;:29;;;:33;;;;28523:29;:47;;;;;;28577:28;;;;:51;-1:-1:-1;27769:865:0;27505:1133;;:::o;23757:40::-;;;;;;;;;;;;;:::o;23197:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23197:37:0;;;;;;;;;;:::o;23688:58::-;;;;:::o;31116:114::-;8721:12;:10;:12::i;:::-;8711:6;;-1:-1:-1;;;;;8711:6:0;;;:22;;;8703:67;;;;;-1:-1:-1;;;8703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8703:67:0;;;;;;;;;;;;;;;31191:15:::1;:34:::0;31116:114::o;23963:85::-;;;-1:-1:-1;;;;;23963:85:0;;:::o;32666:222::-;32725:7;;;32763:94;32784:8;:15;32781:18;;32763:94;;;32820:31;32831:19;32842:1;32844:5;32831:10;:19::i;:::-;32820:6;;:31;:10;:31;:::i;:::-;32811:40;-1:-1:-1;32800:3:0;;32763:94;;38533:948;42820:9;;42801:15;:28;42793:49;;;;;-1:-1:-1;;;42793:49:0;;;;;;;;;;;;-1:-1:-1;;;42793:49:0;;;;;;;;;;;;;;;42512:12:::1;42497:11;;:27;42493:246;;42606:27;42629:3;42606:18;42621:2;42606:10;;:14;;:18;;;;:::i;:27::-;42593:10;:40:::0;42655:1:::1;42641:11;:15:::0;42493:246:::1;38624:24:::2;38637:10;38624:12;:24::i;:::-;38616:54;;;::::0;;-1:-1:-1;;;38616:54:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;38616:54:0;;;;;;;;;;;;;::::2;;38683:21;38707:8;38716:4;38707:14;;;;;;;;;::::0;;;::::2;::::0;;;38756;;;:8:::2;:14:::0;;;;;;38771:10:::2;38756:26:::0;;;;;;;;38707:14:::2;::::0;;::::2;::::0;;::::2;::::0;-1:-1:-1;38756:26:0;38793:27:::2;::::0;38765:4;;38793:10:::2;:27::i;:::-;38839:11:::0;;38836:552:::2;;38866:12:::0;;:74:::2;::::0;-1:-1:-1;;;;;38866:12:0::2;38904:10;38925:4;38932:7:::0;38866:74:::2;:29;:74;:::i;:::-;38969:11;::::0;::::2;::::0;:24:::2;::::0;38985:7;38969:24:::2;:15;:24;:::i;:::-;38955:11;::::0;::::2;:38:::0;39017:15:::2;38999;::::0;;::::2;:33:::0;;;;39038:15;;;39076:14;::::2;::::0;:27:::2;::::0;39095:7;39076:27:::2;:18;:27;:::i;:::-;39059:14;::::0;;::::2;:44:::0;;;;39143:10:::2;39117:17;39137::::0;;;::::2;::::0;;;;;;;:26:::2;;::::0;-1:-1:-1;;;;;39137:26:0::2;::::0;39169:204:::2;39189:1;39187;:3;39169:204;;;-1:-1:-1::0;;;;;39209:22:0;::::2;::::0;;::::2;::::0;:49:::2;;;39235:23;39248:9;39235:12;:23::i;:::-;39206:161;;;-1:-1:-1::0;;;;;39267:16:0;::::2;;::::0;;;:5:::2;:16;::::0;;;;:28:::2;;:31:::0;;39302:7;;39267:28;39296:1;;39267:31;::::2;;;;;;::::0;;;::::2;::::0;;;;;::::2;:42:::0;;;;::::2;::::0;;;-1:-1:-1;;;;;39334:16:0;;::::2;::::0;;:5:::2;:16:::0;;;;;;-1:-1:-1;39334:25:0::2;::::0;;;::::2;::::0;39206:161:::2;39191:3;;39169:204;;;;38836:552;;39398:25;39412:10;39398:13;:25::i;:::-;39439:34;::::0;;;;;;;39459:4;;39447:10:::2;::::0;39439:34:::2;::::0;;;;::::2;::::0;;::::2;42748:1;;38533:948:::0;;:::o;23518:31::-;;;;:::o;9444:244::-;8721:12;:10;:12::i;:::-;8711:6;;-1:-1:-1;;;;;8711:6:0;;;:22;;;8703:67;;;;;-1:-1:-1;;;8703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8703:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;9533:22:0;::::1;9525:73;;;;-1:-1:-1::0;;;9525:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9635:6;::::0;;9614:38:::1;::::0;-1:-1:-1;;;;;9614:38:0;;::::1;::::0;9635:6;::::1;::::0;9614:38:::1;::::0;::::1;9663:6;:17:::0;;-1:-1:-1;;;;;;9663:17:0::1;-1:-1:-1::0;;;;;9663:17:0;;;::::1;::::0;;;::::1;::::0;;9444:244::o;31847:811::-;31917:7;31937:21;31961:8;31970:4;31961:14;;;;;;;;;;;;;;;;32010;;;:8;:14;;;;;;-1:-1:-1;;;;;32010:21:0;;;;;;;;;32067:19;31961:14;;;;;;;32067:19;;;;32116:14;;;;32152:11;;;;;32196:19;;;;31961:14;;-1:-1:-1;32067:19:0;;32116:14;;32152:11;32178:15;:37;:54;;;;-1:-1:-1;32219:13:0;;;32178:54;32174:353;;;32249:18;32271:51;32285:4;:19;;;32306:15;32271:13;:51::i;:::-;32249:73;;32337:17;32357:68;32409:15;;32357:47;32388:4;:15;;;32357:26;32372:10;;32357;:14;;:26;;;;:::i;:68::-;32337:88;-1:-1:-1;32457:58:0;32481:33;32505:8;32481:19;32337:88;32495:4;32481:19;:13;:19;:::i;:33::-;32457:19;;;;;:58;:23;:58;:::i;:::-;32440:75;;32174:353;;;32543:76;32614:4;32543:66;32559:49;32580:4;:27;;;32560:14;32559:20;;:49;;;;:::i;:::-;32543:11;;;;;:66;:15;:66;:::i;:76::-;32533:86;;31847:811;-1:-1:-1;;;;;;;31847:811:0:o;276:106::-;364:10;276:106;:::o;3996:136::-;4054:7;4081:43;4085:1;4088;4081:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4074:50;3996:136;-1:-1:-1;;;3996:136:0:o;3532:181::-;3590:7;3622:5;;;3646:6;;;;3638:46;;;;;-1:-1:-1;;;3638:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;4886:471;4944:7;5189:6;5185:47;;-1:-1:-1;5219:1:0;5212:8;;5185:47;5256:5;;;5260:1;5256;:5;:1;5280:5;;;;;:10;5272:56;;;;-1:-1:-1;;;5272:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5833:132;5891:7;5918:39;5922:1;5925;5918:39;;;;;;;;;;;;;;;;;:3;:39::i;42184:271::-;42276:3;;:28;;;-1:-1:-1;;;42276:28:0;;42298:4;42276:3;:28;;;;;-1:-1:-1;;42276:3:0;;;-1:-1:-1;;;;;42276:3:0;;:13;;:28;;;;;;;;;;;;;;:3;:28;;;2:2:-1;;;;27:1;24;17:12;2:2;42276:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;42276:28:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;42276:28:0;;-1:-1:-1;42319:16:0;;;42315:133;;;42352:3;;:25;;;-1:-1:-1;;;42352:25:0;;-1:-1:-1;;;;;42352:25:0;;;:3;:25;;;;;;;;;;;:3;;;;;;;;:12;;:25;;;;;;;;;;;;;;;-1:-1:-1;42352:3:0;:25;;;2:2:-1;;;;27:1;24;17:12;2:2;42352:25:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;42352:25:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;42315:133:0;;-1:-1:-1;42315:133:0;;42410:3;;:26;;;-1:-1:-1;;;42410:26:0;;-1:-1:-1;;;;;42410:26:0;;;:3;:26;;;;;;;;;;;:3;;;;;;;;:12;;:26;;;;;;;;;;;;;;;-1:-1:-1;42410:3:0;:26;;;2:2:-1;;;;27:1;24;17:12;2:2;42410:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;42410:26:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;42184:271:0;;;:::o;37450:1013::-;37518:21;37542:8;37551:4;37542:14;;;;;;;;;;;;;;;;;;37518:38;;37590:4;:19;;;37571:15;:38;37567:77;;37626:7;;;37567:77;37673:14;;;;37702:13;37698:104;;-1:-1:-1;37754:15:0;37732:19;;;;:37;37784:7;;37698:104;37806:21;37830:14;;;:8;:14;;;;;;;;-1:-1:-1;;;;;37830:21:0;;;;;;;;;37901:19;;;;37830:21;;37806;37887:51;;37922:15;37887:13;:51::i;:::-;37866:72;;37949:17;37969:68;38021:15;;37969:47;38000:4;:15;;;37969:26;37984:10;;37969;:14;;:26;;;;:::i;:68::-;38062:11;;37949:88;;-1:-1:-1;38062:26:0;;37949:88;38062:26;:15;:26;:::i;:::-;38048:11;:40;38166:58;38190:33;38214:8;38190:19;:9;38204:4;38190:19;:13;:19;:::i;:33::-;38166:19;;;;;:58;:23;:58;:::i;:::-;38144:19;;;:80;;;38333:11;;;;38289:27;;;;38247:98;;:81;;38323:4;;38247:71;;38263:54;;38144:80;38263:54;:25;:54;:::i;:::-;38247:11;;;;;:71;:15;:71;:::i;:98::-;38233:11;;;;:112;;;;38388:19;;;;38358:27;;;;:49;;;;-1:-1:-1;;38440:15:0;38418:19;;:37;;;;-1:-1:-1;37450:1013:0;;:::o;18141:177::-;18251:58;;;-1:-1:-1;;;;;18251:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;18251:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;18224:86:0;;18244:5;;18224:19;:86::i;33463:2908::-;-1:-1:-1;;;;;33535:12:0;;;33515:17;33535:12;;;:5;:12;;;;;:21;;;;;;;;;33561:2804;33580:1;33576;:5;33561:2804;;;33595:23;33608:9;33595:12;:23::i;:::-;:50;;;;-1:-1:-1;;;;;;33622:23:0;;;;33595:50;33592:2761;;;33653:11;33667:22;33679:9;33667:11;:22::i;:::-;-1:-1:-1;;;;;33711:16:0;;33696:12;33711:16;;;:5;:16;;;;;:20;;;33653:36;;-1:-1:-1;33765:10:0;;;33762:115;;;33796:13;:3;33804:4;33796:13;:7;:13;:::i;:::-;33784:25;;33762:115;;;33831:4;33825:3;:10;33822:55;;;33856:13;:4;33865:3;33856:13;:8;:13;:::i;:::-;33844:25;;33822:55;33892:13;;33889:2380;;33915:15;33955:1;33950:6;;:31;;;;-1:-1:-1;;;;;;33960:12:0;;;;;;:5;:12;;;;;:16;;;33980:1;-1:-1:-1;33960:21:0;33950:31;:43;;;;;33992:1;33985:3;:8;;33950:43;33947:83;34040:9;;34037:1066;;34059:27;34090:17;;;:11;:17;;;;;;;;34119:27;;;;:32;34116:976;;34162:19;34184:48;34198:7;:16;;;34216:15;34184:13;:48::i;:::-;34162:70;;34242:18;34273:10;34270:271;;;34403:15;;34308:111;;:90;34340:57;34365:31;34392:3;34308:90;34403:15;34385:1;34365:22;:19;:22;:::i;:31::-;34341:18;;;34340:57;:24;:57;:::i;:::-;34324:10;;34308:27;;:11;;:27;:15;:27;:::i;:111::-;34295:124;;34270:271;;;34458:72;34514:15;;34458:51;34490:7;:18;;;34458:27;34474:10;;34458:11;:15;;:27;;;;:::i;:72::-;34445:85;;34270:271;34573:11;;:27;;34589:10;34573:27;:15;:27;:::i;:::-;34559:11;:41;34736:17;;;;34688:67;;34721:33;;:10;;:33;:14;:33;:::i;:::-;34688:28;;;;;:67;:32;:67;:::i;:::-;34657:28;;;:98;;;-1:-1:-1;;;;;34879:16:0;;;;;;:5;:16;;;;;:28;;;;34832:40;;;;;34796:112;;34797:76;;;:34;:76;:::i;34796:112::-;-1:-1:-1;;;;;34765:16:0;;;;;;:5;:16;;;;;:28;;;;:143;;;;34927:17;;;:22;;-1:-1:-1;;34927:22:0;;;35003:28;;;;34960:40;;;;:71;-1:-1:-1;;35060:15:0;34948:1;35041:16;;:34;34116:976;34037:1066;;35113:8;;35110:1140;;35138:26;35168:16;;;:11;:16;;;;;;;;35196;;;;:21;35193:675;;35252:18;35273:47;35287:6;:15;;;35304;35273:13;:47::i;:::-;35252:68;;35344:17;35374:10;35371:265;;;35501:15;;35408:109;;:88;35439:56;35463:31;35490:3;35408:88;35501:15;35483:1;35463:22;:19;:22;:::i;35408:109::-;35396:121;;35371:265;;;35555:70;35609:15;;35555:49;35586:6;:17;;;35555:26;35570:10;;35555;:14;;:26;;;;:::i;:70::-;35543:82;;35371:265;35675:11;;:26;;35691:9;35675:26;:15;:26;:::i;:::-;35661:11;:40;35832:16;;;;35786:64;;35818:31;;:9;;:31;:13;:31;:::i;35786:64::-;35756:27;;;:94;-1:-1:-1;;35193:675:0;36096:16;;;:21;;36116:1;36096:21;;;;;;36171:27;;;;-1:-1:-1;;;;;36128:16:0;;36096;36128;;;:5;:16;;;;;:40;;:70;36225:15;36207;;:33;35110:1140;33889:2380;;-1:-1:-1;;;;;;;36276:16:0;;;;;;;:5;:16;;;;;:20;;;:25;;;;36321;;;;;;;33592:2761;33582:3;;33561:2804;;26459:924;26625:25;26638:11;26625:12;:25::i;:::-;26624:26;26616:50;;;;;-1:-1:-1;;;26616:50:0;;;;;;;;;;;;-1:-1:-1;;;26616:50:0;;;;;;;;;;;;;;;26685:29;26698:15;26685:12;:29::i;:::-;26677:61;;;;;-1:-1:-1;;;26677:61:0;;;;;;;;;;;;-1:-1:-1;;;26677:61:0;;;;;;;;;;;;;;;26813:24;;26860:9;;;;26852:42;;;;;-1:-1:-1;;;26852:42:0;;;;;;;;;;;;-1:-1:-1;;;26852:42:0;;;;;;;;;;;;;;;26920:16;;:::i;:::-;26939:200;;;;;;;;26963:10;;26939:200;;-1:-1:-1;;;;;26939:200:0;;;;;;27031:16;;27045:1;27031:16;;;;;;;;26939:200;;;;;27031:16;;;29:2:-1;21:6;17:15;125:4;109:14;101:6;88:42;-1:-1;;;26939:200:0;;27084:1;26939:200;;;;;;;;;;;;;;;;;;;;;;;;;;;27158:10;;27148:21;;:9;:21;;;;;:35;;-1:-1:-1;;;;;;27148:35:0;;;-1:-1:-1;;;;;27148:35:0;;;;;;;;;27204:18;;:5;:18;;;;;;:25;;;;;;;;-1:-1:-1;27204:25:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27204:25:0;;:18;;:25;;;;;;;;;;;:::i;:::-;-1:-1:-1;27204:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27244:12;;;;;;;-1:-1:-1;;;;;27326:18:0;;;-1:-1:-1;27326:18:0;;;;;;;;;;;:21;27283:92;;;27349:22;;;;;;;:25;27283:92;;;;;;;27326:21;;27283:92;;;;;;;;;;;;;26459:924;;;;:::o;18326:205::-;18454:68;;;-1:-1:-1;;;;;18454:68:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;18454:68:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;18427:96:0;;18447:5;;18427:19;:96::i;:::-;18326:205;;;;:::o;4435:192::-;4521:7;4557:12;4549:6;;;;4541:29;;;;-1:-1:-1;;;4541:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;4541:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4593:5:0;;;4435:192::o;6461:278::-;6547:7;6582:12;6575:5;6567:28;;;;-1:-1:-1;;;6567:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;6567:28:0;;6606:9;6622:1;6618;:5;;;;;;;6461:278;-1:-1:-1;;;;;6461:278:0:o;20446:761::-;20870:23;20896:69;20924:4;20896:69;;;;;;;;;;;;;;;;;20904:5;-1:-1:-1;;;;;20896:27:0;;;:69;;;;;:::i;:::-;20980:17;;20870:95;;-1:-1:-1;20980:21:0;20976:224;;21122:10;21111:30;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21111:30:0;21103:85;;;;-1:-1:-1;;;21103:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13239:195;13342:12;13374:52;13396:6;13404:4;13410:1;13413:12;13374:21;:52::i;:::-;13367:59;13239:195;-1:-1:-1;;;;13239:195:0:o;14291:530::-;14418:12;14476:5;14451:21;:30;;14443:81;;;;-1:-1:-1;;;14443:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14543:18;14554:6;14543:10;:18::i;:::-;14535:60;;;;;-1:-1:-1;;;14535:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14669:12;14683:23;14710:6;-1:-1:-1;;;;;14710:11:0;14730:5;14738:4;14710:33;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;14710:33:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;14668:75:0;;;;14761:52;14779:7;14788:10;14800:12;14761:17;:52::i;:::-;14754:59;14291:530;-1:-1:-1;;;;;;;14291:530:0:o;10321:422::-;10688:20;10727:8;;;10321:422::o;16831:742::-;16946:12;16975:7;16971:595;;;-1:-1:-1;17006:10:0;16999:17;;16971:595;17120:17;;:21;17116:439;;17383:10;17377:17;17444:15;17431:10;17427:2;17423:19;17416:44;17331:148;17519:20;;-1:-1:-1;;;17519:20:0;;;;;;;;;;;;;;;;;17526:12;;17519:20;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;21585:21331:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;21585:21331:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21585:21331:0;;;-1:-1:-1;21585:21331:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://7fb089c75f854cc72907d0be52337dffb41614846ce2315fb51ff742519b2214
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.