More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 540 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 21111914 | 39 hrs ago | IN | 0 ETH | 0.00043112 | ||||
Withdraw | 21100585 | 3 days ago | IN | 0 ETH | 0.00067705 | ||||
Withdraw | 21058405 | 9 days ago | IN | 0 ETH | 0.00067158 | ||||
Withdraw | 21055270 | 9 days ago | IN | 0 ETH | 0.00032287 | ||||
Withdraw | 21048764 | 10 days ago | IN | 0 ETH | 0.00044736 | ||||
Withdraw | 21048514 | 10 days ago | IN | 0 ETH | 0.00054532 | ||||
Withdraw | 21045532 | 10 days ago | IN | 0 ETH | 0.00043263 | ||||
Withdraw | 21045528 | 10 days ago | IN | 0 ETH | 0.00042229 | ||||
Harvest | 21045520 | 10 days ago | IN | 0 ETH | 0.00041397 | ||||
Withdraw | 21042997 | 11 days ago | IN | 0 ETH | 0.00060254 | ||||
Withdraw | 21037281 | 12 days ago | IN | 0 ETH | 0.00105311 | ||||
Withdraw | 21037034 | 12 days ago | IN | 0 ETH | 0.0014181 | ||||
Withdraw | 21036350 | 12 days ago | IN | 0 ETH | 0.00133527 | ||||
Withdraw | 21034674 | 12 days ago | IN | 0 ETH | 0.00079144 | ||||
Withdraw | 21034667 | 12 days ago | IN | 0 ETH | 0.00072954 | ||||
Withdraw | 21034480 | 12 days ago | IN | 0 ETH | 0.00084086 | ||||
Harvest | 21034465 | 12 days ago | IN | 0 ETH | 0.0008606 | ||||
Withdraw | 21031525 | 12 days ago | IN | 0 ETH | 0.00041313 | ||||
Withdraw | 21030672 | 12 days ago | IN | 0 ETH | 0.00118186 | ||||
Withdraw | 21030173 | 13 days ago | IN | 0 ETH | 0.00162103 | ||||
Withdraw | 21029572 | 13 days ago | IN | 0 ETH | 0.00208424 | ||||
Harvest | 21029566 | 13 days ago | IN | 0 ETH | 0.00172248 | ||||
Deposit | 21029546 | 13 days ago | IN | 0 ETH | 0.00212007 | ||||
Withdraw | 21029541 | 13 days ago | IN | 0 ETH | 0.00162204 | ||||
Deposit | 21029538 | 13 days ago | IN | 0 ETH | 0.00170054 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
CadaiStake
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-05-17 */ // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /* use 0.6.12 compiler version * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/ReentrancyGuard.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() internal { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: bsc-library/contracts/IBEP20.sol pragma solidity >=0.4.0; interface IBEP20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the bep token owner. */ function getOwner() external view returns (address); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address _owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: bsc-library/contracts/SafeBEP20.sol pragma solidity ^0.6.0; /** * @title SafeBEP20 * @dev Wrappers around BEP20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeBEP20 for IBEP20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeBEP20 { using SafeMath for uint256; using Address for address; function safeTransfer( IBEP20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IBEP20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IBEP20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IBEP20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeBEP20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IBEP20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IBEP20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeBEP20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IBEP20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeBEP20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeBEP20: BEP20 operation did not succeed"); } } } // File: contracts/SmartChefInitializable.sol pragma solidity 0.6.12; contract CadaiStake is Ownable, ReentrancyGuard { using SafeMath for uint256; using SafeBEP20 for IBEP20; // Accrued token per share uint256 public accTokenPerShare; // The block number when mining ends. uint256 public bonusEndBlock; // The block number when mining starts. uint256 public startBlock; // The block number of the last pool update uint256 public lastRewardBlock; // tokens created per block. uint256 public rewardPerBlock; // The precision factor uint256 public PRECISION_FACTOR; // The staked & reward token same IBEP20 public stakedToken; uint256 public stakedTokenSupply; uint256 public rewardTokenSupplyRemaining; uint256 public vestingTime; // Info of each user that stakes tokens (stakedToken) mapping(address => UserInfo) public userInfo; struct UserInfo { uint256 amount; // How many staked tokens the user has provided uint256 rewardDebt; // Reward debt uint256 lastDepositedAt; } event AdminTokenRecovery(address tokenRecovered, uint256 amount); event Deposit(address indexed user, uint256 amount); event EmergencyWithdraw(address indexed user, uint256 amount); event NewStartAndEndBlocks(uint256 startBlock, uint256 endBlock); event NewRewardPerBlock(uint256 rewardPerBlock); event RewardsStop(uint256 blockNumber); event Withdraw(address indexed user, uint256 amount); constructor() public { stakedToken = IBEP20(0x4229725D41e2233d75B47675b55c6781df0b56A7); rewardPerBlock = 10**18 / 100; // 0.01 token per block startBlock = block.number; bonusEndBlock = block.number.add(10512000); // One year PRECISION_FACTOR = uint256(10**12); lastRewardBlock = startBlock; } /* * @notice Deposit staked tokens and collect reward tokens (if any) * @param _amount: amount to withdraw (in stakedToken) */ function deposit(uint256 _amount) external nonReentrant { UserInfo storage user = userInfo[msg.sender]; require(_amount > 0, "Can't deposit zero amount"); _updatePool(); if (user.amount > 0) { uint256 pending = user.amount.mul(accTokenPerShare).div(PRECISION_FACTOR).sub(user.rewardDebt); if (pending > 0) { stakedToken.safeTransfer(address(msg.sender), pending); } } if (_amount > 0) { user.amount = user.amount.add(_amount); stakedToken.safeTransferFrom(address(msg.sender), address(this), _amount); stakedTokenSupply = stakedTokenSupply.add(_amount); } user.lastDepositedAt = block.timestamp; user.rewardDebt = user.amount.mul(accTokenPerShare).div(PRECISION_FACTOR); emit Deposit(msg.sender, _amount); } /* * Harvest reward */ function harvest() public { _updatePool(); UserInfo storage user = userInfo[msg.sender]; if (user.amount > 0) { uint256 pending = user.amount.mul(accTokenPerShare).div(PRECISION_FACTOR).sub(user.rewardDebt); if (pending > 0) { stakedToken.safeTransfer(address(msg.sender), pending); emit Withdraw(msg.sender, pending); } } user.rewardDebt = user.amount.mul(accTokenPerShare).div(PRECISION_FACTOR); } /* * @notice Withdraw staked tokens and collect reward tokens * @param _amount: amount to withdraw (in stakedToken) */ function withdraw(uint256 _amount) external nonReentrant { UserInfo storage user = userInfo[msg.sender]; require(user.amount >= _amount, "Amount to withdraw too high"); require(block.timestamp >= user.lastDepositedAt.add(vestingTime), "Vesting time requires!"); _updatePool(); uint256 pending = user.amount.mul(accTokenPerShare).div(PRECISION_FACTOR).sub(user.rewardDebt); if (_amount > 0) { user.amount = user.amount.sub(_amount); stakedTokenSupply = stakedTokenSupply.sub(_amount); stakedToken.safeTransfer(address(msg.sender), _amount); } if (pending > 0) { stakedToken.safeTransfer(address(msg.sender), pending); } user.rewardDebt = user.amount.mul(accTokenPerShare).div(PRECISION_FACTOR); emit Withdraw(msg.sender, _amount); } /* * @notice Withdraw staked tokens without caring about rewards rewards * @dev Needs to be for emergency. */ function emergencyWithdraw() external nonReentrant { UserInfo storage user = userInfo[msg.sender]; require(block.timestamp >= user.lastDepositedAt.add(vestingTime), "Vesting time requires!"); uint256 amountToTransfer = user.amount; user.amount = 0; user.rewardDebt = 0; if (amountToTransfer > 0) { stakedTokenSupply = stakedTokenSupply.sub(amountToTransfer); stakedToken.safeTransfer(address(msg.sender), amountToTransfer); } emit EmergencyWithdraw(msg.sender, user.amount); } /* * @notice Stop rewards * @dev Only callable by owner. Needs to be for emergency. */ function emergencyRewardWithdraw(uint256 _amount) external onlyOwner { require(_amount <= rewardTokenSupplyRemaining, "Only able to withdraw amount that not add to reward divident"); rewardTokenSupplyRemaining = rewardTokenSupplyRemaining.sub(_amount); stakedToken.safeTransfer(address(msg.sender), _amount); } /** * @notice It allows the admin to recover wrong tokens sent to the contract * @param _tokenAddress: the address of the token to withdraw * @param _tokenAmount: the number of tokens to withdraw * @dev This function is only callable by admin. */ function recoverWrongTokens(address _tokenAddress, uint256 _tokenAmount) external onlyOwner { require(_tokenAddress != address(stakedToken), "Cannot be staked token"); require(_tokenAddress != address(stakedToken), "Cannot be reward token"); IBEP20(_tokenAddress).safeTransfer(address(msg.sender), _tokenAmount); emit AdminTokenRecovery(_tokenAddress, _tokenAmount); } /* * @notice Stop rewards * @dev Only callable by owner */ function stopReward() external onlyOwner { bonusEndBlock = block.number; } function depositReward(uint256 _amount) external onlyOwner { rewardTokenSupplyRemaining = rewardTokenSupplyRemaining.add(_amount); stakedToken.safeTransferFrom(address(msg.sender), address(this), _amount); } /* * @notice Update reward per block * @dev Only callable by owner. * @param _rewardPerBlock: the reward per block */ function updateRewardPerBlock(uint256 _rewardPerBlock) external onlyOwner { rewardPerBlock = _rewardPerBlock; emit NewRewardPerBlock(_rewardPerBlock); } /** * @notice It allows the admin to update start and end blocks * @dev This function is only callable by owner. * @param _startBlock: the new start block * @param _bonusEndBlock: the new end block */ function updateStartAndEndBlocks(uint256 _startBlock, uint256 _bonusEndBlock) external onlyOwner { require(_startBlock < _bonusEndBlock, "New startBlock must be lower than new endBlock"); require(block.number < _startBlock, "New startBlock must be higher than current block"); startBlock = _startBlock; bonusEndBlock = _bonusEndBlock; // Set the lastRewardBlock as the startBlock lastRewardBlock = startBlock; emit NewStartAndEndBlocks(_startBlock, _bonusEndBlock); } /* * @notice View function to see pending reward on frontend. * @param _user: user address * @return Pending reward for a given user */ function pendingReward(address _user) external view returns (uint256) { UserInfo storage user = userInfo[_user]; if (block.number > lastRewardBlock && stakedTokenSupply != 0) { uint256 multiplier = _getMultiplier(lastRewardBlock, block.number); uint256 rewardAmount = multiplier.mul(rewardPerBlock); if(rewardAmount > rewardTokenSupplyRemaining){ rewardAmount = rewardTokenSupplyRemaining; } uint256 adjustedTokenPerShare = accTokenPerShare.add(rewardAmount.mul(PRECISION_FACTOR).div(stakedTokenSupply)); return user.amount.mul(adjustedTokenPerShare).div(PRECISION_FACTOR).sub(user.rewardDebt); } else { return user.amount.mul(accTokenPerShare).div(PRECISION_FACTOR).sub(user.rewardDebt); } } /* * @notice Update reward variables of the given pool to be up-to-date. */ function _updatePool() internal { if (block.number <= lastRewardBlock) { return; } if (stakedTokenSupply == 0) { lastRewardBlock = block.number; return; } uint256 multiplier = _getMultiplier(lastRewardBlock, block.number); uint256 rewardAmount = multiplier.mul(rewardPerBlock); if(rewardAmount > rewardTokenSupplyRemaining){ rewardAmount = rewardTokenSupplyRemaining; } rewardTokenSupplyRemaining = rewardTokenSupplyRemaining.sub(rewardAmount); accTokenPerShare = accTokenPerShare.add(rewardAmount.mul(PRECISION_FACTOR).div(stakedTokenSupply)); lastRewardBlock = block.number; } /* * @notice Return reward multiplier over the given _from to _to block. * @param _from: block to start * @param _to: block to finish */ function _getMultiplier(uint256 _from, uint256 _to) internal view returns (uint256) { if (_to <= bonusEndBlock) { return _to.sub(_from); } else if (_from >= bonusEndBlock) { return 0; } else { return bonusEndBlock.sub(_from); } } function updateVestingTime(uint256 priodInSecond) external onlyOwner { vestingTime = priodInSecond; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tokenRecovered","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AdminTokenRecovery","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"rewardPerBlock","type":"uint256"}],"name":"NewRewardPerBlock","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"startBlock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endBlock","type":"uint256"}],"name":"NewStartAndEndBlocks","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":false,"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"RewardsStop","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"PRECISION_FACTOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accTokenPerShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bonusEndBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"depositReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"emergencyRewardWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastRewardBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"pendingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"recoverWrongTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardTokenSupplyRemaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakedToken","outputs":[{"internalType":"contract IBEP20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakedTokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stopReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardPerBlock","type":"uint256"}],"name":"updateRewardPerBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startBlock","type":"uint256"},{"internalType":"uint256","name":"_bonusEndBlock","type":"uint256"}],"name":"updateStartAndEndBlocks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"priodInSecond","type":"uint256"}],"name":"updateVestingTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"},{"internalType":"uint256","name":"lastDepositedAt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vestingTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506000620000246200017160201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060018081905550734229725d41e2233d75b47675b55c6781df0b56a7600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550662386f26fc10000600681905550436004819055506200015062a06680436200017960201b62001f171790919060201c565b60038190555064e8d4a5100060078190555060045460058190555062000202565b600033905090565b600080828401905083811015620001f8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6128af80620002126000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80638da5cb5b116100de578063c7dab43611610097578063ccd34cd511610071578063ccd34cd514610509578063db2e21bc14610527578063f2fde38b14610531578063f40f0f52146105755761018e565b8063c7dab43614610489578063ca1ba0e3146104a7578063cc7a262e146104d55761018e565b80638da5cb5b146103955780638f662915146103c9578063921979af146103e75780639513997f14610405578063a9f8d1811461043d578063b6b55f251461045b5761018e565b80633f138d4b1161014b57806348cd4cb11161012557806348cd4cb114610345578063715018a61461036357806380dc06721461036d5780638ae39cac146103775761018e565b80633f138d4b146102cf5780634641257d1461031d578063483c5642146103275761018e565b806301f8a976146101935780631959a002146101c15780631aed6553146102275780631e2720ff146102455780632e1a7d4d146102735780633279beab146102a1575b600080fd5b6101bf600480360360208110156101a957600080fd5b81019080803590602001909291905050506105cd565b005b610203600480360360208110156101d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506106bd565b60405180848152602001838152602001828152602001935050505060405180910390f35b61022f6106e7565b6040518082815260200191505060405180910390f35b6102716004803603602081101561025b57600080fd5b81019080803590602001909291905050506106ed565b005b61029f6004803603602081101561028957600080fd5b8101908080359060200190929190505050610809565b005b6102cd600480360360208110156102b757600080fd5b8101908080359060200190929190505050610b9b565b005b61031b600480360360408110156102e557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d10565b005b610325610fcb565b005b61032f611149565b6040518082815260200191505060405180910390f35b61034d61114f565b6040518082815260200191505060405180910390f35b61036b611155565b005b6103756112c2565b005b61037f61137a565b6040518082815260200191505060405180910390f35b61039d611380565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103d16113a9565b6040518082815260200191505060405180910390f35b6103ef6113af565b6040518082815260200191505060405180910390f35b61043b6004803603604081101561041b57600080fd5b8101908080359060200190929190803590602001909291905050506113b5565b005b61044561156e565b6040518082815260200191505060405180910390f35b6104876004803603602081101561047157600080fd5b8101908080359060200190929190505050611574565b005b61049161188d565b6040518082815260200191505060405180910390f35b6104d3600480360360208110156104bd57600080fd5b8101908080359060200190929190505050611893565b005b6104dd61194c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610511611972565b6040518082815260200191505060405180910390f35b61052f611978565b005b6105736004803603602081101561054757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bb6565b005b6105b76004803603602081101561058b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611da8565b6040518082815260200191505060405180910390f35b6105d5611f9f565b73ffffffffffffffffffffffffffffffffffffffff166105f3611380565b73ffffffffffffffffffffffffffffffffffffffff161461067c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b806006819055507f0c4d677eef92893ac7ec52faf8140fc6c851ab4736302b4f3a89dfb20696a0df816040518082815260200191505060405180910390a150565b600c6020528060005260406000206000915090508060000154908060010154908060020154905083565b60035481565b6106f5611f9f565b73ffffffffffffffffffffffffffffffffffffffff16610713611380565b73ffffffffffffffffffffffffffffffffffffffff161461079c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6107b181600a54611f1790919063ffffffff16565b600a81905550610806333083600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611fa7909392919063ffffffff16565b50565b60026001541415610882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026001819055506000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508181600001541015610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f416d6f756e7420746f20776974686472617720746f6f2068696768000000000081525060200191505060405180910390fd5b610960600b548260020154611f1790919063ffffffff16565b4210156109d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f56657374696e672074696d65207265717569726573210000000000000000000081525060200191505060405180910390fd5b6109dd612068565b6000610a228260010154610a14600754610a06600254876000015461213090919063ffffffff16565b6121b690919063ffffffff16565b61223f90919063ffffffff16565b90506000831115610ab557610a4483836000015461223f90919063ffffffff16565b8260000181905550610a618360095461223f90919063ffffffff16565b600981905550610ab43384600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122c29092919063ffffffff16565b5b6000811115610b0c57610b0b3382600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122c29092919063ffffffff16565b5b610b39600754610b2b600254856000015461213090919063ffffffff16565b6121b690919063ffffffff16565b82600101819055503373ffffffffffffffffffffffffffffffffffffffff167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364846040518082815260200191505060405180910390a250506001808190555050565b610ba3611f9f565b73ffffffffffffffffffffffffffffffffffffffff16610bc1611380565b73ffffffffffffffffffffffffffffffffffffffff1614610c4a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600a54811115610ca5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603c815260200180612799603c913960400191505060405180910390fd5b610cba81600a5461223f90919063ffffffff16565b600a81905550610d0d3382600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122c29092919063ffffffff16565b50565b610d18611f9f565b73ffffffffffffffffffffffffffffffffffffffff16610d36611380565b73ffffffffffffffffffffffffffffffffffffffff1614610dbf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e83576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f43616e6e6f74206265207374616b656420746f6b656e0000000000000000000081525060200191505060405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f47576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f43616e6e6f742062652072657761726420746f6b656e0000000000000000000081525060200191505060405180910390fd5b610f7233828473ffffffffffffffffffffffffffffffffffffffff166122c29092919063ffffffff16565b7f74545154aac348a3eac92596bd1971957ca94795f4e954ec5f613b55fab781298282604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b610fd3612068565b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600081600001541115611111576000611068826001015461105a60075461104c600254876000015461213090919063ffffffff16565b6121b690919063ffffffff16565b61223f90919063ffffffff16565b9050600081111561110f576110c03382600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122c29092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364826040518082815260200191505060405180910390a25b505b61113e600754611130600254846000015461213090919063ffffffff16565b6121b690919063ffffffff16565b816001018190555050565b600a5481565b60045481565b61115d611f9f565b73ffffffffffffffffffffffffffffffffffffffff1661117b611380565b73ffffffffffffffffffffffffffffffffffffffff1614611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6112ca611f9f565b73ffffffffffffffffffffffffffffffffffffffff166112e8611380565b73ffffffffffffffffffffffffffffffffffffffff1614611371576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b43600381905550565b60065481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60025481565b60095481565b6113bd611f9f565b73ffffffffffffffffffffffffffffffffffffffff166113db611380565b73ffffffffffffffffffffffffffffffffffffffff1614611464576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8082106114bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806127d5602e913960400191505060405180910390fd5b814310611514576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806128296030913960400191505060405180910390fd5b81600481905550806003819055506004546005819055507f7cd0ab87d19036f3dfadadb232c78aa4879dda3f0c994a9d637532410ee2ce068282604051808381526020018281526020019250505060405180910390a15050565b60055481565b600260015414156115ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026001819055506000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600082116116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f43616e2774206465706f736974207a65726f20616d6f756e740000000000000081525060200191505060405180910390fd5b6116b6612068565b60008160000154111561176357600061170882600101546116fa6007546116ec600254876000015461213090919063ffffffff16565b6121b690919063ffffffff16565b61223f90919063ffffffff16565b90506000811115611761576117603382600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122c29092919063ffffffff16565b5b505b60008211156117f657611783828260000154611f1790919063ffffffff16565b81600001819055506117da333084600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611fa7909392919063ffffffff16565b6117ef82600954611f1790919063ffffffff16565b6009819055505b42816002018190555061182c60075461181e600254846000015461213090919063ffffffff16565b6121b690919063ffffffff16565b81600101819055503373ffffffffffffffffffffffffffffffffffffffff167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c836040518082815260200191505060405180910390a2506001808190555050565b600b5481565b61189b611f9f565b73ffffffffffffffffffffffffffffffffffffffff166118b9611380565b73ffffffffffffffffffffffffffffffffffffffff1614611942576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600b8190555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075481565b600260015414156119f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026001819055506000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611a55600b548260020154611f1790919063ffffffff16565b421015611aca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f56657374696e672074696d65207265717569726573210000000000000000000081525060200191505060405180910390fd5b60008160000154905060008260000181905550600082600101819055506000811115611b5957611b058160095461223f90919063ffffffff16565b600981905550611b583382600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122c29092919063ffffffff16565b5b3373ffffffffffffffffffffffffffffffffffffffff167f5fafa99d0643513820be26656b45130b01e1c03062e1266bf36f88cbd3bd969583600001546040518082815260200191505060405180910390a2505060018081905550565b611bbe611f9f565b73ffffffffffffffffffffffffffffffffffffffff16611bdc611380565b73ffffffffffffffffffffffffffffffffffffffff1614611c65576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ceb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806127736026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060055443118015611e005750600060095414155b15611ecb576000611e1360055443612364565b90506000611e2c6006548361213090919063ffffffff16565b9050600a54811115611e3e57600a5490505b6000611e7d611e6c600954611e5e6007548661213090919063ffffffff16565b6121b690919063ffffffff16565b600254611f1790919063ffffffff16565b9050611ec08460010154611eb2600754611ea485896000015461213090919063ffffffff16565b6121b690919063ffffffff16565b61223f90919063ffffffff16565b945050505050611f12565b611f0e8160010154611f00600754611ef2600254866000015461213090919063ffffffff16565b6121b690919063ffffffff16565b61223f90919063ffffffff16565b9150505b919050565b600080828401905083811015611f95576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b612062846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506123b9565b50505050565b60055443116120765761212e565b6000600954141561208d574360058190555061212e565b600061209b60055443612364565b905060006120b46006548361213090919063ffffffff16565b9050600a548111156120c657600a5490505b6120db81600a5461223f90919063ffffffff16565b600a8190555061211e61210d6009546120ff6007548561213090919063ffffffff16565b6121b690919063ffffffff16565b600254611f1790919063ffffffff16565b6002819055504360058190555050505b565b60008083141561214357600090506121b0565b600082840290508284828161215457fe5b04146121ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806128596021913960400191505060405180910390fd5b809150505b92915050565b600080821161222d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b81838161223657fe5b04905092915050565b6000828211156122b7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b61235f8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506123b9565b505050565b6000600354821161238957612382838361223f90919063ffffffff16565b90506123b3565b600354831061239b57600090506123b3565b6123b08360035461223f90919063ffffffff16565b90505b92915050565b606061241b826040518060400160405280602081526020017f5361666542455032303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166124a89092919063ffffffff16565b90506000815111156124a35780806020019051602081101561243c57600080fd5b81019080805190602001909291905050506124a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612749602a913960400191505060405180910390fd5b5b505050565b60606124b784846000856124c0565b90509392505050565b60608247101561251b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806128036026913960400191505060405180910390fd5b61252485612669565b612596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106125e657805182526020820191506020810190506020830392506125c3565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612648576040519150601f19603f3d011682016040523d82523d6000602084013e61264d565b606091505b509150915061265d82828661267c565b92505050949350505050565b600080823b905060008111915050919050565b6060831561268c57829050612741565b60008351111561269f5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156127065780820151818401526020810190506126eb565b50505050905090810190601f1680156127335780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b939250505056fe5361666542455032303a204245503230206f7065726174696f6e20646964206e6f7420737563636565644f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f6e6c792061626c6520746f20776974686472617720616d6f756e742074686174206e6f742061646420746f20726577617264206469766964656e744e6577207374617274426c6f636b206d757374206265206c6f776572207468616e206e657720656e64426c6f636b416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4e6577207374617274426c6f636b206d75737420626520686967686572207468616e2063757272656e7420626c6f636b536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a26469706673582212209179f321a32d5146ebf9a392936d66e30b815b1971819c263b856b1a6e8e878964736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80638da5cb5b116100de578063c7dab43611610097578063ccd34cd511610071578063ccd34cd514610509578063db2e21bc14610527578063f2fde38b14610531578063f40f0f52146105755761018e565b8063c7dab43614610489578063ca1ba0e3146104a7578063cc7a262e146104d55761018e565b80638da5cb5b146103955780638f662915146103c9578063921979af146103e75780639513997f14610405578063a9f8d1811461043d578063b6b55f251461045b5761018e565b80633f138d4b1161014b57806348cd4cb11161012557806348cd4cb114610345578063715018a61461036357806380dc06721461036d5780638ae39cac146103775761018e565b80633f138d4b146102cf5780634641257d1461031d578063483c5642146103275761018e565b806301f8a976146101935780631959a002146101c15780631aed6553146102275780631e2720ff146102455780632e1a7d4d146102735780633279beab146102a1575b600080fd5b6101bf600480360360208110156101a957600080fd5b81019080803590602001909291905050506105cd565b005b610203600480360360208110156101d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506106bd565b60405180848152602001838152602001828152602001935050505060405180910390f35b61022f6106e7565b6040518082815260200191505060405180910390f35b6102716004803603602081101561025b57600080fd5b81019080803590602001909291905050506106ed565b005b61029f6004803603602081101561028957600080fd5b8101908080359060200190929190505050610809565b005b6102cd600480360360208110156102b757600080fd5b8101908080359060200190929190505050610b9b565b005b61031b600480360360408110156102e557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d10565b005b610325610fcb565b005b61032f611149565b6040518082815260200191505060405180910390f35b61034d61114f565b6040518082815260200191505060405180910390f35b61036b611155565b005b6103756112c2565b005b61037f61137a565b6040518082815260200191505060405180910390f35b61039d611380565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103d16113a9565b6040518082815260200191505060405180910390f35b6103ef6113af565b6040518082815260200191505060405180910390f35b61043b6004803603604081101561041b57600080fd5b8101908080359060200190929190803590602001909291905050506113b5565b005b61044561156e565b6040518082815260200191505060405180910390f35b6104876004803603602081101561047157600080fd5b8101908080359060200190929190505050611574565b005b61049161188d565b6040518082815260200191505060405180910390f35b6104d3600480360360208110156104bd57600080fd5b8101908080359060200190929190505050611893565b005b6104dd61194c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610511611972565b6040518082815260200191505060405180910390f35b61052f611978565b005b6105736004803603602081101561054757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bb6565b005b6105b76004803603602081101561058b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611da8565b6040518082815260200191505060405180910390f35b6105d5611f9f565b73ffffffffffffffffffffffffffffffffffffffff166105f3611380565b73ffffffffffffffffffffffffffffffffffffffff161461067c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b806006819055507f0c4d677eef92893ac7ec52faf8140fc6c851ab4736302b4f3a89dfb20696a0df816040518082815260200191505060405180910390a150565b600c6020528060005260406000206000915090508060000154908060010154908060020154905083565b60035481565b6106f5611f9f565b73ffffffffffffffffffffffffffffffffffffffff16610713611380565b73ffffffffffffffffffffffffffffffffffffffff161461079c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6107b181600a54611f1790919063ffffffff16565b600a81905550610806333083600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611fa7909392919063ffffffff16565b50565b60026001541415610882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026001819055506000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508181600001541015610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f416d6f756e7420746f20776974686472617720746f6f2068696768000000000081525060200191505060405180910390fd5b610960600b548260020154611f1790919063ffffffff16565b4210156109d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f56657374696e672074696d65207265717569726573210000000000000000000081525060200191505060405180910390fd5b6109dd612068565b6000610a228260010154610a14600754610a06600254876000015461213090919063ffffffff16565b6121b690919063ffffffff16565b61223f90919063ffffffff16565b90506000831115610ab557610a4483836000015461223f90919063ffffffff16565b8260000181905550610a618360095461223f90919063ffffffff16565b600981905550610ab43384600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122c29092919063ffffffff16565b5b6000811115610b0c57610b0b3382600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122c29092919063ffffffff16565b5b610b39600754610b2b600254856000015461213090919063ffffffff16565b6121b690919063ffffffff16565b82600101819055503373ffffffffffffffffffffffffffffffffffffffff167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364846040518082815260200191505060405180910390a250506001808190555050565b610ba3611f9f565b73ffffffffffffffffffffffffffffffffffffffff16610bc1611380565b73ffffffffffffffffffffffffffffffffffffffff1614610c4a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600a54811115610ca5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603c815260200180612799603c913960400191505060405180910390fd5b610cba81600a5461223f90919063ffffffff16565b600a81905550610d0d3382600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122c29092919063ffffffff16565b50565b610d18611f9f565b73ffffffffffffffffffffffffffffffffffffffff16610d36611380565b73ffffffffffffffffffffffffffffffffffffffff1614610dbf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e83576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f43616e6e6f74206265207374616b656420746f6b656e0000000000000000000081525060200191505060405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f47576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f43616e6e6f742062652072657761726420746f6b656e0000000000000000000081525060200191505060405180910390fd5b610f7233828473ffffffffffffffffffffffffffffffffffffffff166122c29092919063ffffffff16565b7f74545154aac348a3eac92596bd1971957ca94795f4e954ec5f613b55fab781298282604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b610fd3612068565b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600081600001541115611111576000611068826001015461105a60075461104c600254876000015461213090919063ffffffff16565b6121b690919063ffffffff16565b61223f90919063ffffffff16565b9050600081111561110f576110c03382600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122c29092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364826040518082815260200191505060405180910390a25b505b61113e600754611130600254846000015461213090919063ffffffff16565b6121b690919063ffffffff16565b816001018190555050565b600a5481565b60045481565b61115d611f9f565b73ffffffffffffffffffffffffffffffffffffffff1661117b611380565b73ffffffffffffffffffffffffffffffffffffffff1614611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6112ca611f9f565b73ffffffffffffffffffffffffffffffffffffffff166112e8611380565b73ffffffffffffffffffffffffffffffffffffffff1614611371576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b43600381905550565b60065481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60025481565b60095481565b6113bd611f9f565b73ffffffffffffffffffffffffffffffffffffffff166113db611380565b73ffffffffffffffffffffffffffffffffffffffff1614611464576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8082106114bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806127d5602e913960400191505060405180910390fd5b814310611514576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806128296030913960400191505060405180910390fd5b81600481905550806003819055506004546005819055507f7cd0ab87d19036f3dfadadb232c78aa4879dda3f0c994a9d637532410ee2ce068282604051808381526020018281526020019250505060405180910390a15050565b60055481565b600260015414156115ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026001819055506000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600082116116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f43616e2774206465706f736974207a65726f20616d6f756e740000000000000081525060200191505060405180910390fd5b6116b6612068565b60008160000154111561176357600061170882600101546116fa6007546116ec600254876000015461213090919063ffffffff16565b6121b690919063ffffffff16565b61223f90919063ffffffff16565b90506000811115611761576117603382600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122c29092919063ffffffff16565b5b505b60008211156117f657611783828260000154611f1790919063ffffffff16565b81600001819055506117da333084600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611fa7909392919063ffffffff16565b6117ef82600954611f1790919063ffffffff16565b6009819055505b42816002018190555061182c60075461181e600254846000015461213090919063ffffffff16565b6121b690919063ffffffff16565b81600101819055503373ffffffffffffffffffffffffffffffffffffffff167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c836040518082815260200191505060405180910390a2506001808190555050565b600b5481565b61189b611f9f565b73ffffffffffffffffffffffffffffffffffffffff166118b9611380565b73ffffffffffffffffffffffffffffffffffffffff1614611942576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600b8190555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075481565b600260015414156119f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026001819055506000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611a55600b548260020154611f1790919063ffffffff16565b421015611aca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f56657374696e672074696d65207265717569726573210000000000000000000081525060200191505060405180910390fd5b60008160000154905060008260000181905550600082600101819055506000811115611b5957611b058160095461223f90919063ffffffff16565b600981905550611b583382600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122c29092919063ffffffff16565b5b3373ffffffffffffffffffffffffffffffffffffffff167f5fafa99d0643513820be26656b45130b01e1c03062e1266bf36f88cbd3bd969583600001546040518082815260200191505060405180910390a2505060018081905550565b611bbe611f9f565b73ffffffffffffffffffffffffffffffffffffffff16611bdc611380565b73ffffffffffffffffffffffffffffffffffffffff1614611c65576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ceb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806127736026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060055443118015611e005750600060095414155b15611ecb576000611e1360055443612364565b90506000611e2c6006548361213090919063ffffffff16565b9050600a54811115611e3e57600a5490505b6000611e7d611e6c600954611e5e6007548661213090919063ffffffff16565b6121b690919063ffffffff16565b600254611f1790919063ffffffff16565b9050611ec08460010154611eb2600754611ea485896000015461213090919063ffffffff16565b6121b690919063ffffffff16565b61223f90919063ffffffff16565b945050505050611f12565b611f0e8160010154611f00600754611ef2600254866000015461213090919063ffffffff16565b6121b690919063ffffffff16565b61223f90919063ffffffff16565b9150505b919050565b600080828401905083811015611f95576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b612062846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506123b9565b50505050565b60055443116120765761212e565b6000600954141561208d574360058190555061212e565b600061209b60055443612364565b905060006120b46006548361213090919063ffffffff16565b9050600a548111156120c657600a5490505b6120db81600a5461223f90919063ffffffff16565b600a8190555061211e61210d6009546120ff6007548561213090919063ffffffff16565b6121b690919063ffffffff16565b600254611f1790919063ffffffff16565b6002819055504360058190555050505b565b60008083141561214357600090506121b0565b600082840290508284828161215457fe5b04146121ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806128596021913960400191505060405180910390fd5b809150505b92915050565b600080821161222d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b81838161223657fe5b04905092915050565b6000828211156122b7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b61235f8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506123b9565b505050565b6000600354821161238957612382838361223f90919063ffffffff16565b90506123b3565b600354831061239b57600090506123b3565b6123b08360035461223f90919063ffffffff16565b90505b92915050565b606061241b826040518060400160405280602081526020017f5361666542455032303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166124a89092919063ffffffff16565b90506000815111156124a35780806020019051602081101561243c57600080fd5b81019080805190602001909291905050506124a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612749602a913960400191505060405180910390fd5b5b505050565b60606124b784846000856124c0565b90509392505050565b60608247101561251b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806128036026913960400191505060405180910390fd5b61252485612669565b612596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106125e657805182526020820191506020810190506020830392506125c3565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612648576040519150601f19603f3d011682016040523d82523d6000602084013e61264d565b606091505b509150915061265d82828661267c565b92505050949350505050565b600080823b905060008111915050919050565b6060831561268c57829050612741565b60008351111561269f5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156127065780820151818401526020810190506126eb565b50505050905090810190601f1680156127335780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b939250505056fe5361666542455032303a204245503230206f7065726174696f6e20646964206e6f7420737563636565644f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f6e6c792061626c6520746f20776974686472617720616d6f756e742074686174206e6f742061646420746f20726577617264206469766964656e744e6577207374617274426c6f636b206d757374206265206c6f776572207468616e206e657720656e64426c6f636b416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4e6577207374617274426c6f636b206d75737420626520686967686572207468616e2063757272656e7420626c6f636b536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a26469706673582212209179f321a32d5146ebf9a392936d66e30b815b1971819c263b856b1a6e8e878964736f6c634300060c0033
Deployed Bytecode Sourcemap
29057:10457:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36073:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29894:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29295:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35688:230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32716:899;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34457:342;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35089:413;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32040:524;;;:::i;:::-;;29752:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29377:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2752:148;;;:::i;:::-;;35592:88;;;:::i;:::-;;29533:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2101:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29212:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29713:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36492:541;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29460:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31073:919;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29802:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39396:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29679:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29600:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33756:583;;;:::i;:::-;;3055:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37206:858;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36073:175;2332:12;:10;:12::i;:::-;2321:23;;:7;:5;:7::i;:::-;:23;;;2313:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36175:15:::1;36158:14;:32;;;;36206:34;36224:15;36206:34;;;;;;;;;;;;;;;;;;36073:175:::0;:::o;29894:44::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29295:28::-;;;;:::o;35688:230::-;2332:12;:10;:12::i;:::-;2321:23;;:7;:5;:7::i;:::-;:23;;;2313:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35787:39:::1;35818:7;35787:26;;:30;;:39;;;;:::i;:::-;35758:26;:68;;;;35837:73;35874:10;35895:4;35902:7;35837:11;;;;;;;;;;;:28;;;;:73;;;;;;:::i;:::-;35688:230:::0;:::o;32716:899::-;12616:1;13221:7;;:19;;13213:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12616:1;13354:7;:18;;;;32784:21:::1;32808:8;:20;32817:10;32808:20;;;;;;;;;;;;;;;32784:44;;32862:7;32847:4;:11;;;:22;;32839:62;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32939:37;32964:11;;32939:4;:20;;;:24;;:37;;;;:::i;:::-;32920:15;:56;;32912:91;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33016:13;:11;:13::i;:::-;33042:15;33060:76;33120:4;:15;;;33060:55;33098:16;;33060:33;33076:16;;33060:4;:11;;;:15;;:33;;;;:::i;:::-;:37;;:55;;;;:::i;:::-;:59;;:76;;;;:::i;:::-;33042:94;;33163:1;33153:7;:11;33149:216;;;33195:24;33211:7;33195:4;:11;;;:15;;:24;;;;:::i;:::-;33181:4;:11;;:38;;;;33254:30;33276:7;33254:17;;:21;;:30;;;;:::i;:::-;33234:17;:50;;;;33299:54;33332:10;33345:7;33299:11;;;;;;;;;;;:24;;;;:54;;;;;:::i;:::-;33149:216;33391:1;33381:7;:11;33377:98;;;33409:54;33442:10;33455:7;33409:11;;;;;;;;;;;:24;;;;:54;;;;;:::i;:::-;33377:98;33505:55;33543:16;;33505:33;33521:16;;33505:4;:11;;;:15;;:33;;;;:::i;:::-;:37;;:55;;;;:::i;:::-;33487:4;:15;;:73;;;;33587:10;33578:29;;;33599:7;33578:29;;;;;;;;;;;;;;;;;;13385:1;;12572::::0;13533:7;:22;;;;32716:899;:::o;34457:342::-;2332:12;:10;:12::i;:::-;2321:23;;:7;:5;:7::i;:::-;:23;;;2313:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34556:26:::1;;34545:7;:37;;34537:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34687:39;34718:7;34687:26;;:30;;:39;;;;:::i;:::-;34658:26;:68;;;;34737:54;34770:10;34783:7;34737:11;;;;;;;;;;;:24;;;;:54;;;;;:::i;:::-;34457:342:::0;:::o;35089:413::-;2332:12;:10;:12::i;:::-;2321:23;;:7;:5;:7::i;:::-;:23;;;2313:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35225:11:::1;;;;;;;;;;;35200:37;;:13;:37;;;;35192:72;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;35308:11;;;;;;;;;;;35283:37;;:13;:37;;;;35275:72;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;35360:69;35403:10;35416:12;35367:13;35360:34;;;;:69;;;;;:::i;:::-;35447:47;35466:13;35481:12;35447:47;;;;;;;;;;;;;;;;;;;;;;;;;;35089:413:::0;;:::o;32040:524::-;32077:13;:11;:13::i;:::-;32101:21;32125:8;:20;32134:10;32125:20;;;;;;;;;;;;;;;32101:44;;32176:1;32162:4;:11;;;:15;32158:315;;;32194:15;32212:76;32272:4;:15;;;32212:55;32250:16;;32212:33;32228:16;;32212:4;:11;;;:15;;:33;;;;:::i;:::-;:37;;:55;;;;:::i;:::-;:59;;:76;;;;:::i;:::-;32194:94;;32317:1;32307:7;:11;32303:159;;;32339:54;32372:10;32385:7;32339:11;;;;;;;;;;;:24;;;;:54;;;;;:::i;:::-;32426:10;32417:29;;;32438:7;32417:29;;;;;;;;;;;;;;;;;;32303:159;32158:315;;32501:55;32539:16;;32501:33;32517:16;;32501:4;:11;;;:15;;:33;;;;:::i;:::-;:37;;:55;;;;:::i;:::-;32483:4;:15;;:73;;;;32040:524;:::o;29752:41::-;;;;:::o;29377:25::-;;;;:::o;2752:148::-;2332:12;:10;:12::i;:::-;2321:23;;:7;:5;:7::i;:::-;:23;;;2313:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2859:1:::1;2822:40;;2843:6;::::0;::::1;;;;;;;;2822:40;;;;;;;;;;;;2890:1;2873:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;2752:148::o:0;35592:88::-;2332:12;:10;:12::i;:::-;2321:23;;:7;:5;:7::i;:::-;:23;;;2313:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35660:12:::1;35644:13;:28;;;;35592:88::o:0;29533:29::-;;;;:::o;2101:87::-;2147:7;2174:6;;;;;;;;;;;2167:13;;2101:87;:::o;29212:31::-;;;;:::o;29713:32::-;;;;:::o;36492:541::-;2332:12;:10;:12::i;:::-;2321:23;;:7;:5;:7::i;:::-;:23;;;2313:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36622:14:::1;36608:11;:28;36600:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36721:11;36706:12;:26;36698:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36811:11;36798:10;:24;;;;36849:14;36833:13;:30;;;;36948:10;;36930:15;:28;;;;36976:49;36997:11;37010:14;36976:49;;;;;;;;;;;;;;;;;;;;;;;;36492:541:::0;;:::o;29460:30::-;;;;:::o;31073:919::-;12616:1;13221:7;;:19;;13213:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12616:1;13354:7;:18;;;;31140:21:::1;31164:8;:20;31173:10;31164:20;;;;;;;;;;;;;;;31140:44;;31213:1;31203:7;:11;31195:49;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31269:13;:11;:13::i;:::-;31313:1;31299:4;:11;;;:15;31295:262;;;31331:15;31349:76;31409:4;:15;;;31349:55;31387:16;;31349:33;31365:16;;31349:4;:11;;;:15;;:33;;;;:::i;:::-;:37;;:55;;;;:::i;:::-;:59;;:76;;;;:::i;:::-;31331:94;;31454:1;31444:7;:11;31440:106;;;31476:54;31509:10;31522:7;31476:11;;;;;;;;;;;:24;;;;:54;;;;;:::i;:::-;31440:106;31295:262;;31583:1;31573:7;:11;31569:235;;;31615:24;31631:7;31615:4;:11;;;:15;;:24;;;;:::i;:::-;31601:4;:11;;:38;;;;31654:73;31691:10;31712:4;31719:7;31654:11;;;;;;;;;;;:28;;;;:73;;;;;;:::i;:::-;31762:30;31784:7;31762:17;;:21;;:30;;;;:::i;:::-;31742:17;:50;;;;31569:235;31839:15;31816:4;:20;;:38;;;;31883:55;31921:16;;31883:33;31899:16;;31883:4;:11;;;:15;;:33;;;;:::i;:::-;:37;;:55;;;;:::i;:::-;31865:4;:15;;:73;;;;31964:10;31956:28;;;31976:7;31956:28;;;;;;;;;;;;;;;;;;13385:1;12572::::0;13533:7;:22;;;;31073:919;:::o;29802:26::-;;;;:::o;39396:115::-;2332:12;:10;:12::i;:::-;2321:23;;:7;:5;:7::i;:::-;:23;;;2313:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39490:13:::1;39476:11;:27;;;;39396:115:::0;:::o;29679:25::-;;;;;;;;;;;;;:::o;29600:31::-;;;;:::o;33756:583::-;12616:1;13221:7;;:19;;13213:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12616:1;13354:7;:18;;;;33818:21:::1;33842:8;:20;33851:10;33842:20;;;;;;;;;;;;;;;33818:44;;33900:37;33925:11;;33900:4;:20;;;:24;;:37;;;;:::i;:::-;33881:15;:56;;33873:91;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33975:24;34002:4;:11;;;33975:38;;34038:1;34024:4;:11;;:15;;;;34068:1;34050:4;:15;;:19;;;;34105:1;34086:16;:20;34082:190;;;34143:39;34165:16;34143:17;;:21;;:39;;;;:::i;:::-;34123:17;:59;;;;34197:63;34230:10;34243:16;34197:11;;;;;;;;;;;:24;;;;:63;;;;;:::i;:::-;34082:190;34307:10;34289:42;;;34319:4;:11;;;34289:42;;;;;;;;;;;;;;;;;;13385:1;;12572::::0;13533:7;:22;;;;33756:583::o;3055:244::-;2332:12;:10;:12::i;:::-;2321:23;;:7;:5;:7::i;:::-;:23;;;2313:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3164:1:::1;3144:22;;:8;:22;;;;3136:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3254:8;3225:38;;3246:6;::::0;::::1;;;;;;;;3225:38;;;;;;;;;;;;3283:8;3274:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;3055:244:::0;:::o;37206:858::-;37267:7;37287:21;37311:8;:15;37320:5;37311:15;;;;;;;;;;;;;;;37287:39;;37356:15;;37341:12;:30;:56;;;;;37396:1;37375:17;;:22;;37341:56;37337:720;;;37414:18;37435:45;37450:15;;37467:12;37435:14;:45::i;:::-;37414:66;;37495:20;37518:30;37533:14;;37518:10;:14;;:30;;;;:::i;:::-;37495:53;;37581:26;;37566:12;:41;37563:121;;;37642:26;;37627:41;;37563:121;37698:29;37747:79;37768:57;37807:17;;37768:34;37785:16;;37768:12;:16;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;37747:16;;:20;;:79;;;;:::i;:::-;37698:128;;37848:81;37913:4;:15;;;37848:60;37891:16;;37848:38;37864:21;37848:4;:11;;;:15;;:38;;;;:::i;:::-;:42;;:60;;;;:::i;:::-;:64;;:81;;;;:::i;:::-;37841:88;;;;;;;;37337:720;37969:76;38029:4;:15;;;37969:55;38007:16;;37969:33;37985:16;;37969:4;:11;;;:15;;:33;;;;:::i;:::-;:37;;:55;;;;:::i;:::-;:59;;:76;;;;:::i;:::-;37962:83;;;37206:858;;;;:::o;6099:179::-;6157:7;6177:9;6193:1;6189;:5;6177:17;;6218:1;6213;:6;;6205:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6269:1;6262:8;;;6099:179;;;;:::o;641:106::-;694:15;729:10;722:17;;641:106;:::o;25908:248::-;26052:96;26072:5;26102:27;;;26131:4;26137:2;26141:5;26079:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26052:19;:96::i;:::-;25908:248;;;;:::o;38165:740::-;38228:15;;38212:12;:31;38208:70;;38260:7;;38208:70;38315:1;38294:17;;:22;38290:106;;;38351:12;38333:15;:30;;;;38378:7;;38290:106;38408:18;38429:45;38444:15;;38461:12;38429:14;:45::i;:::-;38408:66;;38485:20;38508:30;38523:14;;38508:10;:14;;:30;;;;:::i;:::-;38485:53;;38567:26;;38552:12;:41;38549:113;;;38624:26;;38609:41;;38549:113;38701:44;38732:12;38701:26;;:30;;:44;;;;:::i;:::-;38672:26;:73;;;;38777:79;38798:57;38837:17;;38798:34;38815:16;;38798:12;:16;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;38777:16;;:20;;:79;;;;:::i;:::-;38758:16;:98;;;;38885:12;38867:15;:30;;;;38165:740;;;:::o;6978:220::-;7036:7;7065:1;7060;:6;7056:20;;;7075:1;7068:8;;;;7056:20;7087:9;7103:1;7099;:5;7087:17;;7132:1;7127;7123;:5;;;;;;:10;7115:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7189:1;7182:8;;;6978:220;;;;;:::o;7676:153::-;7734:7;7766:1;7762;:5;7754:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7820:1;7816;:5;;;;;;7809:12;;7676:153;;;;:::o;6561:158::-;6619:7;6652:1;6647;:6;;6639:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6710:1;6706;:5;6699:12;;6561:158;;;;:::o;25689:211::-;25806:86;25826:5;25856:23;;;25881:2;25885:5;25833:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25806:19;:86::i;:::-;25689:211;;;:::o;39079:309::-;39154:7;39185:13;;39178:3;:20;39174:207;;39222:14;39230:5;39222:3;:7;;:14;;;;:::i;:::-;39215:21;;;;39174:207;39267:13;;39258:5;:22;39254:127;;39304:1;39297:8;;;;39254:127;39345:24;39363:5;39345:13;;:17;;:24;;;;:::i;:::-;39338:31;;39079:309;;;;;:::o;28200:774::-;28624:23;28650:69;28678:4;28650:69;;;;;;;;;;;;;;;;;28658:5;28650:27;;;;:69;;;;;:::i;:::-;28624:95;;28754:1;28734:10;:17;:21;28730:237;;;28889:10;28878:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28870:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28730:237;28200:774;;;:::o;20502:229::-;20639:12;20671:52;20693:6;20701:4;20707:1;20710:12;20671:21;:52::i;:::-;20664:59;;20502:229;;;;;:::o;21622:571::-;21792:12;21850:5;21825:21;:30;;21817:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21917:18;21928:6;21917:10;:18::i;:::-;21909:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22043:12;22057:23;22084:6;:11;;22103:5;22110:4;22084:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22042:73;;;;22133:52;22151:7;22160:10;22172:12;22133:17;:52::i;:::-;22126:59;;;;21622:571;;;;;;:::o;17562:444::-;17622:4;17830:12;17954:7;17942:20;17934:28;;17997:1;17990:4;:8;17983:15;;;17562:444;;;:::o;24271:777::-;24421:12;24450:7;24446:595;;;24481:10;24474:17;;;;24446:595;24615:1;24595:10;:17;:21;24591:439;;;24858:10;24852:17;24919:15;24906:10;24902:2;24898:19;24891:44;24806:148;25001:12;24994:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24271:777;;;;;;:::o
Swarm Source
ipfs://9179f321a32d5146ebf9a392936d66e30b815b1971819c263b856b1a6e8e8789
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.09729 | 943,024.7283 | $91,746.88 |
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.