More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 27 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 4862875 | 5 days ago | IN | 0 S | 0.00461136 | ||||
Withdraw | 4862501 | 5 days ago | IN | 0 S | 0.00598966 | ||||
Withdraw | 4862461 | 5 days ago | IN | 0 S | 0.00599181 | ||||
Set | 4856428 | 5 days ago | IN | 0 S | 0.00333822 | ||||
Deposit | 4856243 | 5 days ago | IN | 0 S | 0.00857736 | ||||
Set | 4856157 | 5 days ago | IN | 0 S | 0.00443465 | ||||
Set | 4856138 | 5 days ago | IN | 0 S | 0.00443465 | ||||
Set | 4855571 | 5 days ago | IN | 0 S | 0.00213433 | ||||
Set | 4855220 | 5 days ago | IN | 0 S | 0.00204187 | ||||
Set | 4855207 | 5 days ago | IN | 0 S | 0.00204187 | ||||
Add | 4851914 | 5 days ago | IN | 0 S | 0.00963858 | ||||
Deposit | 4850246 | 5 days ago | IN | 0 S | 0.00446478 | ||||
Deposit | 4850095 | 5 days ago | IN | 0 S | 0.00545538 | ||||
Deposit | 4849244 | 5 days ago | IN | 0 S | 0.00456894 | ||||
Deposit | 4849158 | 5 days ago | IN | 0 S | 0.00556098 | ||||
Deposit | 4848369 | 5 days ago | IN | 0 S | 0.2124219 | ||||
Set | 4835588 | 5 days ago | IN | 0 S | 0.00204187 | ||||
Deposit | 4835235 | 5 days ago | IN | 0 S | 0.00795173 | ||||
Deposit | 4835057 | 5 days ago | IN | 0 S | 0.00567913 | ||||
Add | 4834937 | 5 days ago | IN | 0 S | 0.00948821 | ||||
Deposit | 4834473 | 5 days ago | IN | 0 S | 0.00845449 | ||||
Add | 4833975 | 5 days ago | IN | 0 S | 0.00935786 | ||||
Add | 4833928 | 5 days ago | IN | 0 S | 0.00961862 | ||||
Add | 4833228 | 5 days ago | IN | 0 S | 0.00799425 | ||||
Add | 4833070 | 5 days ago | IN | 0 S | 0.0078793 |
Loading...
Loading
Contract Name:
MasterChef
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2025-01-21 */ // SPDX-License-Identifier: MIT // File: contracts/libs/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: contracts/libs/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: contracts/libs/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: contracts/libs/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: contracts/libs/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/libs/Context.sol pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: contracts/libs/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: contracts/libs/BEP20.sol pragma solidity >=0.4.0; /** * @dev Implementation of the {IBEP20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {BEP20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-BEP20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of BEP20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IBEP20-approve}. */ contract BEP20 is Context, IBEP20, Ownable { using SafeMath for uint256; using Address for address; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor(string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the bep token owner. */ function getOwner() external override view returns (address) { return owner(); } /** * @dev Returns the token name. */ function name() public override view returns (string memory) { return _name; } /** * @dev Returns the token decimals. */ function decimals() public override view returns (uint8) { return _decimals; } /** * @dev Returns the token symbol. */ function symbol() public override view returns (string memory) { return _symbol; } /** * @dev See {BEP20-totalSupply}. */ function totalSupply() public override view returns (uint256) { return _totalSupply; } /** * @dev See {BEP20-balanceOf}. */ function balanceOf(address account) public override view returns (uint256) { return _balances[account]; } /** * @dev See {BEP20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {BEP20-allowance}. */ function allowance(address owner, address spender) public override view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {BEP20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {BEP20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {BEP20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "BEP20: transfer amount exceeds allowance") ); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {BEP20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {BEP20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "BEP20: decreased allowance below zero") ); return true; } /** * @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing * the total supply. * * Requirements * * - `msg.sender` must be the token owner */ function mint(uint256 amount) public onlyOwner returns (bool) { _mint(_msgSender(), amount); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "BEP20: transfer from the zero address"); require(recipient != address(0), "BEP20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "BEP20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal { require(account != address(0), "BEP20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "BEP20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal { require(owner != address(0), "BEP20: approve from the zero address"); require(spender != address(0), "BEP20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve( account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "BEP20: burn amount exceeds allowance") ); } } // File: contracts/DashToken.sol pragma solidity 0.6.12; // Dash Token with Governance. contract DashToken is BEP20('Dash Farm', 'D') { /// @notice Creates `_amount` token to `_to`. Must only be called by the owner (MasterChef). function mint(address _to, uint256 _amount) public onlyOwner { _mint(_to, _amount); } } // File: contracts/MasterChef.sol pragma solidity 0.6.12; // MasterChef is the master of Dash. He can make DASH and he is a fair guy. // // Note that it's ownable and the owner wields tremendous power. The ownership // will be transferred to a governance smart contract once Dash is sufficiently // distributed and the community can show to govern itself. // // Have fun reading it. Hopefully it's bug-free. God bless. contract MasterChef is Ownable, ReentrancyGuard { using SafeMath for uint256; using SafeBEP20 for IBEP20; // Info of each user. struct UserInfo { uint256 amount; // How many LP tokens the user has provided. uint256 rewardDebt; // Reward debt. See explanation below. // // We do some fancy math here. Basically, any point in time, the amount of DASH // entitled to a user but is pending to be distributed is: // // pending reward = (user.amount * pool.accDashPerShare) - user.rewardDebt // // Whenever a user deposits or withdraws LP tokens to a pool. Here's what happens: // 1. The pool's `accDashPerShare` (and `lastRewardTime`) gets updated. // 2. User receives the pending reward sent to his/her address. // 3. User's `amount` gets updated. // 4. User's `rewardDebt` gets updated. } // Info of each pool. struct PoolInfo { IBEP20 lpToken; // Address of LP token contract. uint256 allocPoint; // How many allocation points assigned to this pool. DASH to distribute per second. uint256 lastRewardTime; // Last time stamp that Dash distribution occurs. uint256 accDashPerShare; // Accumulated DASH per share, times 1e18. See below. uint16 depositFeeBP; // Deposit fee in basis points uint256 lpSupply; // Total Deposits in each pool } // The DASH TOKEN! DashToken public immutable dashToken; address public devaddress; address public feeAddress; // DASH tokens created per second. uint256 public dashPerSecond = 0.01 ether; // Info of each pool. PoolInfo[] public poolInfo; // Info of each user that stakes LP tokens. mapping(uint256 => mapping(address => UserInfo)) public userInfo; // Total allocation points. Must be the sum of all allocation points in all pools. uint256 public totalAllocPoint = 0; // The time when DASH mining starts. uint256 public startTime; uint256 constant MAX_DASH_SUPPLY = 10000000 ether; // Maximum Emission Rate uint256 public constant MAX_EMISSION_RATE = 100 ether; event addPool(uint256 indexed pid, address lpToken, uint256 allocPoint, uint256 depositFeeBP); event setPool(uint256 indexed pid, address lpToken, uint256 allocPoint, uint256 depositFeeBP); event Deposit(address indexed user, uint256 indexed pid, uint256 amount); event Withdraw(address indexed user, uint256 indexed pid, uint256 amount); event EmergencyWithdraw(address indexed user, uint256 indexed pid, uint256 amount); event SetFeeAddress(address indexed user, address indexed newAddress); event SetDevAddress(address indexed user, address indexed newAddress); event UpdateEmissionRate(address indexed user, uint256 dashPerSecond); event UpdateStartTime(uint256 startTimestamp); constructor( DashToken _dashToken, address _devaddress, uint256 _startTime ) public { dashToken = _dashToken; startTime = _startTime; devaddress = _devaddress; feeAddress = msg.sender; } function poolLength() external view returns (uint256) { return poolInfo.length; } mapping(IBEP20 => bool) public poolExistence; modifier nonDuplicated(IBEP20 _lpToken) { require(poolExistence[_lpToken] == false, "nonDuplicated: duplicated"); _; } // Add a new lp to the pool. Can only be called by the owner. function add(uint256 _allocPoint, IBEP20 _lpToken, uint16 _depositFeeBP, bool _withUpdate) external onlyOwner nonDuplicated(_lpToken) { require(_depositFeeBP <= 500, "add: invalid deposit fee basis points"); if (_withUpdate) { massUpdatePools(); } _lpToken.balanceOf(address(this)); uint256 lastRewardTime = block.timestamp > startTime ? block.timestamp : startTime; totalAllocPoint = totalAllocPoint.add(_allocPoint); poolExistence[_lpToken] = true; poolInfo.push( PoolInfo({ lpToken: _lpToken, allocPoint: _allocPoint, lastRewardTime: lastRewardTime, accDashPerShare: 0, depositFeeBP: _depositFeeBP, lpSupply: 0 }) ); emit addPool(poolInfo.length - 1, address(_lpToken), _allocPoint, _depositFeeBP); } // Update the given pool's DASH allocation point and deposit fee. Can only be called by the owner. function set(uint256 _pid, uint256 _allocPoint, uint16 _depositFeeBP, bool _withUpdate) external onlyOwner { require(_depositFeeBP <= 500, "set: invalid deposit fee basis points"); if (_withUpdate) { massUpdatePools(); } totalAllocPoint = totalAllocPoint.sub(poolInfo[_pid].allocPoint).add(_allocPoint); poolInfo[_pid].allocPoint = _allocPoint; poolInfo[_pid].depositFeeBP = _depositFeeBP; emit setPool(_pid, address(poolInfo[_pid].lpToken), _allocPoint, _depositFeeBP); } // Return reward multiplier over the given _from to _to time. function getMultiplier(uint256 _from, uint256 _to) public pure returns (uint256) { return _to.sub(_from); } // View function to see pending Dash on frontend. function pendingDash(uint256 _pid, address _user) external view returns (uint256) { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accDashPerShare = pool.accDashPerShare; if (block.timestamp > pool.lastRewardTime && pool.lpSupply != 0 && totalAllocPoint > 0) { uint256 multiplier = getMultiplier(pool.lastRewardTime, block.timestamp); uint256 dashReward = multiplier.mul(dashPerSecond).mul(pool.allocPoint).div(totalAllocPoint); uint256 devReward = dashReward.div(10); uint256 totalRewards = dashToken.totalSupply().add(devReward).add(dashReward); if (totalRewards > MAX_DASH_SUPPLY) { dashReward = MAX_DASH_SUPPLY.sub(dashToken.totalSupply()); } accDashPerShare = accDashPerShare.add(dashReward.mul(1e18).div(pool.lpSupply)); } return user.amount.mul(accDashPerShare).div(1e18).sub(user.rewardDebt); } // Update reward variables for all pools. Be careful of gas spending! function massUpdatePools() public { uint256 length = poolInfo.length; for (uint256 pid = 0; pid < length; ++pid) { updatePool(pid); } } // Update reward variables of the given pool to be up-to-date. function updatePool(uint256 _pid) public { PoolInfo storage pool = poolInfo[_pid]; if (block.timestamp <= pool.lastRewardTime) { return; } if (pool.lpSupply == 0 || pool.allocPoint == 0) { pool.lastRewardTime = block.timestamp; return; } uint256 multiplier = getMultiplier(pool.lastRewardTime, block.timestamp); uint256 dashReward = multiplier.mul(dashPerSecond).mul(pool.allocPoint).div(totalAllocPoint); uint256 devReward = dashReward.div(10); uint256 totalRewards = dashToken.totalSupply().add(devReward).add(dashReward); // Accounts for Total Supply together with rewards if (totalRewards <= MAX_DASH_SUPPLY) { // mint as normal as not at maxSupply dashToken.mint(devaddress, dashReward.div(10)); dashToken.mint(address(this), dashReward); } else { // mint the difference only to MC, update dashReward dashReward = MAX_DASH_SUPPLY.sub(dashToken.totalSupply()); dashToken.mint(address(this), dashReward); } if (dashReward != 0) { // only calculate and update if dashReward is non 0 pool.accDashPerShare = pool.accDashPerShare.add( dashReward.mul(1e18).div(pool.lpSupply) ); } pool.lastRewardTime = block.timestamp; } // Deposit LP tokens to MasterChef for DASH allocation. function deposit(uint256 _pid, uint256 _amount) external nonReentrant { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; updatePool(_pid); if (user.amount > 0) { uint256 pending = user .amount .mul(pool.accDashPerShare) .div(1e18) .sub(user.rewardDebt); if (pending > 0) { safeDashTransfer(msg.sender, pending); } } if (_amount > 0) { uint256 balanceBefore = pool.lpToken.balanceOf(address(this)); pool.lpToken.transferFrom(msg.sender, address(this), _amount); _amount = pool.lpToken.balanceOf(address(this)).sub(balanceBefore); if (pool.depositFeeBP > 0) { uint256 depositFee = _amount.mul(pool.depositFeeBP).div(10000); pool.lpToken.safeTransfer(feeAddress, depositFee); user.amount = user.amount.add(_amount).sub(depositFee); pool.lpSupply = pool.lpSupply.add(_amount).sub(depositFee); } else { pool.lpSupply = pool.lpSupply.add(_amount); user.amount = user.amount.add(_amount); } } user.rewardDebt = user.amount.mul(pool.accDashPerShare).div(1e18); emit Deposit(msg.sender, _pid, _amount); } // Withdraw LP tokens from MasterChef. function withdraw(uint256 _pid, uint256 _amount) external nonReentrant { _withdraw(_pid, msg.sender, _amount); } function _withdraw(uint256 _pid, address _user, uint256 _amount) internal { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; require(user.amount >= _amount, "withdraw: not good"); updatePool(_pid); uint256 pending = user.amount.mul(pool.accDashPerShare).div(1e18).sub(user.rewardDebt); if (pending > 0) { safeDashTransfer(_user, pending); } if (_amount > 0) { user.amount = user.amount.sub(_amount); pool.lpToken.safeTransfer(address(_user), _amount); pool.lpSupply = pool.lpSupply.sub(_amount); } user.rewardDebt = user.amount.mul(pool.accDashPerShare).div(1e18); emit Withdraw(_user, _pid, _amount); } // Withdraw without caring about rewards. EMERGENCY ONLY. function emergencyWithdraw(uint256 _pid) public nonReentrant { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; uint256 amount = user.amount; user.amount = 0; user.rewardDebt = 0; pool.lpToken.safeTransfer(address(msg.sender), amount); if (pool.lpSupply >= amount) { pool.lpSupply = pool.lpSupply.sub(amount); } else { pool.lpSupply = 0; } emit EmergencyWithdraw(msg.sender, _pid, amount); } // Safe dashToken transfer function, just in case if rounding error causes pool to not have enough DASH. function safeDashTransfer(address _to, uint256 _amount) internal { uint256 dashBal = dashToken.balanceOf(address(this)); bool transferSuccess = false; if (_amount > dashBal) { transferSuccess = dashToken.transfer(_to, dashBal); } else { transferSuccess = dashToken.transfer(_to, _amount); } require(transferSuccess, "safeDashTransfer: Transfer failed"); } // Update dev address by the previous dev. function setDevAddress(address _devaddress) external onlyOwner { require(_devaddress != address(0), "!nonzero"); devaddress = _devaddress; emit SetDevAddress(msg.sender, _devaddress); } function setFeeAddress(address _feeAddress) external onlyOwner { require(_feeAddress != address(0), "!nonzero"); feeAddress = _feeAddress; emit SetFeeAddress(msg.sender, _feeAddress); } function updateEmissionRate(uint256 _dashTokenPerSecond) external onlyOwner { require(_dashTokenPerSecond <= MAX_EMISSION_RATE,"Too high"); massUpdatePools(); dashPerSecond = _dashTokenPerSecond; emit UpdateEmissionRate(msg.sender, _dashTokenPerSecond); } // Only update before start of farm function updateStartTime(uint256 _startTimestamp) external onlyOwner { require(startTime > block.timestamp, "Farm already started"); require( block.timestamp < _startTimestamp, "cannot set start time in the past" ); for(uint256 i = 0; i < poolInfo.length; i++) { poolInfo[i].lastRewardTime = _startTimestamp; } startTime = _startTimestamp; emit UpdateStartTime(startTime); } // Switches active pool function switchActivePool( uint16[] calldata _activePids, uint16[] calldata _newPids, uint256[] calldata _newAllocPoints ) external onlyOwner { for (uint256 i = 0; i < _activePids.length; i++) { updatePool(_activePids[i]); PoolInfo storage activePool = poolInfo[_activePids[i]]; activePool.allocPoint = 0; } for (uint256 i = 0; i < _newPids.length; i++) { PoolInfo storage newPool = poolInfo[_newPids[i]]; newPool.allocPoint = _newAllocPoints[i]; } } // Forces user to withdraw when allocpoint is set to 0 function forceWithdraw(uint16 _pid, address[] memory _userAddresses) external onlyOwner { require(poolInfo[_pid].allocPoint == 0, "Alloc point is not 0"); for (uint256 i = 0; i < _userAddresses.length; i++) { _withdraw( _pid, _userAddresses[i], userInfo[_pid][_userAddresses[i]].amount ); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract DashToken","name":"_dashToken","type":"address"},{"internalType":"address","name":"_devaddress","type":"address"},{"internalType":"uint256","name":"_startTime","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"SetDevAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"SetFeeAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"dashPerSecond","type":"uint256"}],"name":"UpdateEmissionRate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"startTimestamp","type":"uint256"}],"name":"UpdateStartTime","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"address","name":"lpToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"allocPoint","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"depositFeeBP","type":"uint256"}],"name":"addPool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"address","name":"lpToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"allocPoint","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"depositFeeBP","type":"uint256"}],"name":"setPool","type":"event"},{"inputs":[],"name":"MAX_EMISSION_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IBEP20","name":"_lpToken","type":"address"},{"internalType":"uint16","name":"_depositFeeBP","type":"uint16"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dashPerSecond","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dashToken","outputs":[{"internalType":"contract DashToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devaddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_pid","type":"uint16"},{"internalType":"address[]","name":"_userAddresses","type":"address[]"}],"name":"forceWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"getMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingDash","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IBEP20","name":"","type":"address"}],"name":"poolExistence","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract IBEP20","name":"lpToken","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardTime","type":"uint256"},{"internalType":"uint256","name":"accDashPerShare","type":"uint256"},{"internalType":"uint16","name":"depositFeeBP","type":"uint16"},{"internalType":"uint256","name":"lpSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"uint16","name":"_depositFeeBP","type":"uint16"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_devaddress","type":"address"}],"name":"setDevAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeAddress","type":"address"}],"name":"setFeeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16[]","name":"_activePids","type":"uint16[]"},{"internalType":"uint16[]","name":"_newPids","type":"uint16[]"},{"internalType":"uint256[]","name":"_newAllocPoints","type":"uint256[]"}],"name":"switchActivePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_dashTokenPerSecond","type":"uint256"}],"name":"updateEmissionRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTimestamp","type":"uint256"}],"name":"updateStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a0604052662386f26fc10000600455600060075534801561002057600080fd5b5060405162002bd238038062002bd28339818101604052606081101561004557600080fd5b508051602082015160409092015190919060006100606100f9565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180556001600160601b031960609390931b92909216608052600891909155600280546001600160a01b03929092166001600160a01b031992831617905560038054909116331790556100fd565b3390565b60805160601c612a856200014d60003980610ad25280610b825280610c395280610ca45280610d3d52806116f35280611f865280611ff7528061240752806124ac52806125565250612a856000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806378e9792511610104578063c352bd05116100a2578063e2bbb15811610071578063e2bbb15814610664578063f2fde38b14610687578063f882ddae146106ad578063fc4d0d92146106b5576101cf565b8063c352bd05146105c7578063cbd258b5146105cf578063d0d41fe114610609578063d96384221461062f576101cf565b806388c8ec95116100de57806388c8ec951461054f5780638da5cb5b146105575780638dbb1e3a1461055f57806393f1a40b14610582576101cf565b806378e97925146104e357806384e82a33146104eb5780638705fcd414610529576101cf565b8063441a3e70116101715780635bbdf38e1161014b5780635bbdf38e14610319578063630b5ba114610427578063715018a61461042f5780637492a94b14610437576101cf565b8063441a3e70146102bc57806351eb05a6146102df5780635312ea8e146102fc576101cf565b80631526fe27116101ad5780631526fe271461022a57806317caf6f1146102885780634127535814610290578063436cc3d6146102b4576101cf565b806306bcf02f146101d4578063081e3eda146101f35780630ba84cd21461020d575b600080fd5b6101f1600480360360208110156101ea57600080fd5b50356106e1565b005b6101fb610841565b60408051918252519081900360200190f35b6101f16004803603602081101561022357600080fd5b5035610847565b6102476004803603602081101561024057600080fd5b5035610938565b604080516001600160a01b039097168752602087019590955285850193909352606085019190915261ffff16608084015260a0830152519081900360c00190f35b6101fb61098c565b610298610992565b604080516001600160a01b039092168252519081900360200190f35b6101fb6109a1565b6101f1600480360360408110156102d257600080fd5b50803590602001356109ae565b6101f1600480360360208110156102f557600080fd5b5035610a1e565b6101f16004803603602081101561031257600080fd5b5035610e13565b6101f16004803603606081101561032f57600080fd5b810190602081018135600160201b81111561034957600080fd5b82018360208201111561035b57600080fd5b803590602001918460208302840111600160201b8311171561037c57600080fd5b919390929091602081019035600160201b81111561039957600080fd5b8201836020820111156103ab57600080fd5b803590602001918460208302840111600160201b831117156103cc57600080fd5b919390929091602081019035600160201b8111156103e957600080fd5b8201836020820111156103fb57600080fd5b803590602001918460208302840111600160201b8311171561041c57600080fd5b509092509050610f3c565b6101f1611086565b6101f16110a9565b6101f16004803603604081101561044d57600080fd5b61ffff8235169190810190604081016020820135600160201b81111561047257600080fd5b82018360208201111561048457600080fd5b803590602001918460208302840111600160201b831117156104a557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611155945050505050565b6101fb6112b0565b6101f16004803603608081101561050157600080fd5b508035906001600160a01b036020820135169061ffff604082013516906060013515156112b6565b6101f16004803603602081101561053f57600080fd5b50356001600160a01b03166115fd565b6102986116f1565b610298611715565b6101fb6004803603604081101561057557600080fd5b5080359060200135611724565b6105ae6004803603604081101561059857600080fd5b50803590602001356001600160a01b0316611739565b6040805192835260208301919091528051918290030190f35b6101fb61175d565b6105f5600480360360208110156105e557600080fd5b50356001600160a01b0316611763565b604080519115158252519081900360200190f35b6101f16004803603602081101561061f57600080fd5b50356001600160a01b0316611778565b6101f16004803603608081101561064557600080fd5b5080359060208101359061ffff6040820135169060600135151561186c565b6101f16004803603604081101561067a57600080fd5b5080359060200135611a2c565b6101f16004803603602081101561069d57600080fd5b50356001600160a01b0316611db0565b610298611eb2565b6101fb600480360360408110156106cb57600080fd5b50803590602001356001600160a01b0316611ec1565b6106e96120b3565b6001600160a01b03166106fa611715565b6001600160a01b031614610743576040805162461bcd60e51b81526020600482018190526024820152600080516020612a30833981519152604482015290519081900360640190fd5b4260085411610790576040805162461bcd60e51b815260206004820152601460248201527311985c9b48185b1c9958591e481cdd185c9d195960621b604482015290519081900360640190fd5b8042106107ce5760405162461bcd60e51b81526004018080602001828103825260218152602001806129c96021913960400191505060405180910390fd5b60005b6005548110156108055781600582815481106107e957fe5b60009182526020909120600260069092020101556001016107d1565b5060088190556040805182815290517fa09018266c541576eb124551c9c57c82a8129add3ba6777a5974b1d0e6252e999181900360200190a150565b60055490565b61084f6120b3565b6001600160a01b0316610860611715565b6001600160a01b0316146108a9576040805162461bcd60e51b81526020600482018190526024820152600080516020612a30833981519152604482015290519081900360640190fd5b68056bc75e2d631000008111156108f2576040805162461bcd60e51b81526020600482015260086024820152670a8dede40d0d2ced60c31b604482015290519081900360640190fd5b6108fa611086565b600481905560408051828152905133917fe2492e003bbe8afa53088b406f0c1cb5d9e280370fc72a74cf116ffd343c4053919081900360200190a250565b6005818154811061094557fe5b60009182526020909120600690910201805460018201546002830154600384015460048501546005909501546001600160a01b0390941695509193909261ffff9091169086565b60075481565b6003546001600160a01b031681565b68056bc75e2d6310000081565b60026001541415610a06576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600155610a168233836120b7565b505060018055565b600060058281548110610a2d57fe5b9060005260206000209060060201905080600201544211610a4e5750610e10565b60058101541580610a6157506001810154155b15610a725742600290910155610e10565b6000610a82826002015442611724565b90506000610ab5600754610aaf8560010154610aa96004548761223a90919063ffffffff16565b9061223a565b90612293565b90506000610ac482600a612293565b90506000610b6183610b5b847f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610b2957600080fd5b505afa158015610b3d573d6000803e3d6000fd5b505050506040513d6020811015610b5357600080fd5b5051906122fa565b906122fa565b90506a084595161401484a0000008111610c9f576002546001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116916340c10f199116610bb686600a612293565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015610bfc57600080fd5b505af1158015610c10573d6000803e3d6000fd5b5050604080516340c10f1960e01b81523060048201526024810187905290516001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001693506340c10f199250604480830192600092919082900301818387803b158015610c8257600080fd5b505af1158015610c96573d6000803e3d6000fd5b50505050610dcb565b610d397f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610cfb57600080fd5b505afa158015610d0f573d6000803e3d6000fd5b505050506040513d6020811015610d2557600080fd5b50516a084595161401484a00000090612354565b92507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166340c10f1930856040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015610db257600080fd5b505af1158015610dc6573d6000803e3d6000fd5b505050505b8215610e01576005850154610dfb90610df090610aaf86670de0b6b3a764000061223a565b6003870154906122fa565b60038601555b42856002018190555050505050505b50565b60026001541415610e6b576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600181905550600060058281548110610e8257fe5b60009182526020808320858452600680835260408086203380885294528520805486825560018201969096559302018054909450919291610ecf916001600160a01b0390911690836123b1565b80836005015410610ef3576005830154610ee99082612354565b6005840155610efb565b600060058401555b604080518281529051859133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a35050600180555050565b610f446120b3565b6001600160a01b0316610f55611715565b6001600160a01b031614610f9e576040805162461bcd60e51b81526020600482018190526024820152600080516020612a30833981519152604482015290519081900360640190fd5b60005b8581101561101757610fcc878783818110610fb857fe5b9050602002013561ffff1661ffff16610a1e565b60006005888884818110610fdc57fe5b9050602002013561ffff1661ffff1681548110610ff557fe5b6000918252602082206001600690920201810191909155919091019050610fa1565b5060005b8381101561107d576000600586868481811061103357fe5b9050602002013561ffff1661ffff168154811061104c57fe5b9060005260206000209060060201905083838381811061106857fe5b6020029190910135600192830155500161101b565b50505050505050565b60055460005b818110156110a55761109d81610a1e565b60010161108c565b5050565b6110b16120b3565b6001600160a01b03166110c2611715565b6001600160a01b03161461110b576040805162461bcd60e51b81526020600482018190526024820152600080516020612a30833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61115d6120b3565b6001600160a01b031661116e611715565b6001600160a01b0316146111b7576040805162461bcd60e51b81526020600482018190526024820152600080516020612a30833981519152604482015290519081900360640190fd5b60058261ffff16815481106111c857fe5b906000526020600020906006020160010154600014611225576040805162461bcd60e51b81526020600482015260146024820152730416c6c6f6320706f696e74206973206e6f7420360641b604482015290519081900360640190fd5b60005b81518110156112ab576112a38361ffff1683838151811061124557fe5b6020026020010151600660008761ffff168152602001908152602001600020600086868151811061127257fe5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020600001546120b7565b600101611228565b505050565b60085481565b6112be6120b3565b6001600160a01b03166112cf611715565b6001600160a01b031614611318576040805162461bcd60e51b81526020600482018190526024820152600080516020612a30833981519152604482015290519081900360640190fd5b6001600160a01b038316600090815260096020526040902054839060ff1615611388576040805162461bcd60e51b815260206004820152601960248201527f6e6f6e4475706c6963617465643a206475706c69636174656400000000000000604482015290519081900360640190fd5b6101f48361ffff1611156113cd5760405162461bcd60e51b815260040180806020018281038252602581526020018061290d6025913960400191505060405180910390fd5b81156113db576113db611086565b604080516370a0823160e01b815230600482015290516001600160a01b038616916370a08231916024808301926020929190829003018186803b15801561142157600080fd5b505afa158015611435573d6000803e3d6000fd5b505050506040513d602081101561144b57600080fd5b5050600854600090421161146157600854611463565b425b60075490915061147390876122fa565b600781905550600160096000876001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff02191690831515021790555060056040518060c00160405280876001600160a01b03168152602001888152602001838152602001600081526020018661ffff1681526020016000815250908060018154018082558091505060019003906000526020600020906006020160009091909190915060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a81548161ffff021916908361ffff16021790555060a0820151816005015550506001600580549050037faa6642278d4bbef86d8990c37355d5d4dfe365c194106bdf7a65162268606f0786888760405180846001600160a01b031681526020018381526020018261ffff168152602001935050505060405180910390a2505050505050565b6116056120b3565b6001600160a01b0316611616611715565b6001600160a01b03161461165f576040805162461bcd60e51b81526020600482018190526024820152600080516020612a30833981519152604482015290519081900360640190fd5b6001600160a01b0381166116a5576040805162461bcd60e51b8152602060048201526008602482015267216e6f6e7a65726f60c01b604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b03831690811790915560405133907fd44190acf9d04bdb5d3a1aafff7e6dee8b40b93dfb8c5d3f0eea4b9f4539c3f790600090a350565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b031690565b60006117308284612354565b90505b92915050565b60066020908152600092835260408084209091529082529020805460019091015482565b60045481565b60096020526000908152604090205460ff1681565b6117806120b3565b6001600160a01b0316611791611715565b6001600160a01b0316146117da576040805162461bcd60e51b81526020600482018190526024820152600080516020612a30833981519152604482015290519081900360640190fd5b6001600160a01b038116611820576040805162461bcd60e51b8152602060048201526008602482015267216e6f6e7a65726f60c01b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b03831690811790915560405133907f618c54559e94f1499a808aad71ee8729f8e74e8c48e979616328ce493a1a52e790600090a350565b6118746120b3565b6001600160a01b0316611885611715565b6001600160a01b0316146118ce576040805162461bcd60e51b81526020600482018190526024820152600080516020612a30833981519152604482015290519081900360640190fd5b6101f48261ffff1611156119135760405162461bcd60e51b8152600401808060200182810382526025815260200180612a0b6025913960400191505060405180910390fd5b801561192157611921611086565b61195883610b5b6005878154811061193557fe5b90600052602060002090600602016001015460075461235490919063ffffffff16565b600781905550826005858154811061196c57fe5b906000526020600020906006020160010181905550816005858154811061198f57fe5b906000526020600020906006020160040160006101000a81548161ffff021916908361ffff160217905550837f39f0c3d078af018954b4fa56832a05a2b511afaa999b133ea3f1c487c21ed287600586815481106119e957fe5b600091825260209182902060069091020154604080516001600160a01b03909216825291810187905261ffff86168183015290519081900360600190a250505050565b60026001541415611a84576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600181905550600060058381548110611a9b57fe5b60009182526020808320868452600680835260408086203387529093529190932091029091019150611acc84610a1e565b805415611b1e576000611b0a8260010154611b04670de0b6b3a7640000610aaf8760030154876000015461223a90919063ffffffff16565b90612354565b90508015611b1c57611b1c3382612403565b505b8215611d4c578154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611b6e57600080fd5b505afa158015611b82573d6000803e3d6000fd5b505050506040513d6020811015611b9857600080fd5b50518354604080516323b872dd60e01b81523360048201523060248201526044810188905290519293506001600160a01b03909116916323b872dd916064808201926020929091908290030181600087803b158015611bf657600080fd5b505af1158015611c0a573d6000803e3d6000fd5b505050506040513d6020811015611c2057600080fd5b50508254604080516370a0823160e01b81523060048201529051611ca49284926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015611c7257600080fd5b505afa158015611c86573d6000803e3d6000fd5b505050506040513d6020811015611c9c57600080fd5b505190612354565b600484015490945061ffff1615611d27576004830154600090611cd49061271090610aaf90889061ffff1661223a565b6003548554919250611cf3916001600160a01b039081169116836123b1565b8254611d05908290611b0490886122fa565b83556005840154611d1c908290611b0490886122fa565b600585015550611d4a565b6005830154611d3690856122fa565b60058401558154611d4790856122fa565b82555b505b60038201548154611d6a91670de0b6b3a764000091610aaf9161223a565b6001820155604080518481529051859133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a35050600180555050565b611db86120b3565b6001600160a01b0316611dc9611715565b6001600160a01b031614611e12576040805162461bcd60e51b81526020600482018190526024820152600080516020612a30833981519152604482015290519081900360640190fd5b6001600160a01b038116611e575760405162461bcd60e51b815260040180806020018281038252602681526020018061295c6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6002546001600160a01b031681565b60008060058481548110611ed157fe5b60009182526020808320878452600680835260408086206001600160a01b038a168752909352919093209102909101600381015460028201549193509042118015611f1f5750600583015415155b8015611f2d57506000600754115b1561207e576000611f42846002015442611724565b90506000611f69600754610aaf8760010154610aa96004548761223a90919063ffffffff16565b90506000611f7882600a612293565b90506000611fdd83610b5b847f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610b2957600080fd5b90506a084595161401484a0000008111156120515761204e7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610cfb57600080fd5b92505b60058701546120779061207090610aaf86670de0b6b3a764000061223a565b86906122fa565b9450505050505b6120a98260010154611b04670de0b6b3a7640000610aaf85876000015461223a90919063ffffffff16565b9695505050505050565b3390565b6000600584815481106120c657fe5b60009182526020808320878452600680835260408086206001600160a01b038a168752909352919093208054929091029092019250831115612144576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b61214d85610a1e565b600061217e8260010154611b04670de0b6b3a7640000610aaf8760030154876000015461223a90919063ffffffff16565b90508015612190576121908582612403565b83156121cf5781546121a29085612354565b825582546121ba906001600160a01b031686866123b1565b60058301546121c99085612354565b60058401555b600383015482546121ed91670de0b6b3a764000091610aaf9161223a565b600183015560408051858152905187916001600160a01b038816917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a3505050505050565b60008261224957506000611733565b8282028284828161225657fe5b04146117305760405162461bcd60e51b81526004018080602001828103825260218152602001806129ea6021913960400191505060405180910390fd5b60008082116122e9576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816122f257fe5b049392505050565b600082820183811015611730576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000828211156123ab576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526112ab90849061263c565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561247257600080fd5b505afa158015612486573d6000803e3d6000fd5b505050506040513d602081101561249c57600080fd5b50519050600081831115612554577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a9059cbb85846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561252157600080fd5b505af1158015612535573d6000803e3d6000fd5b505050506040513d602081101561254b57600080fd5b505190506125fa565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a9059cbb85856040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156125cb57600080fd5b505af11580156125df573d6000803e3d6000fd5b505050506040513d60208110156125f557600080fd5b505190505b806126365760405162461bcd60e51b81526004018080602001828103825260218152602001806129826021913960400191505060405180910390fd5b50505050565b6060612691826040518060400160405280602081526020017f5361666542455032303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166126ed9092919063ffffffff16565b8051909150156112ab578080602001905160208110156126b057600080fd5b50516112ab5760405162461bcd60e51b815260040180806020018281038252602a815260200180612932602a913960400191505060405180910390fd5b60606126fc8484600085612706565b90505b9392505050565b6060824710156127475760405162461bcd60e51b81526004018080602001828103825260268152602001806129a36026913960400191505060405180910390fd5b61275085612862565b6127a1576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106127e05780518252601f1990920191602091820191016127c1565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612842576040519150601f19603f3d011682016040523d82523d6000602084013e612847565b606091505b5091509150612857828286612868565b979650505050505050565b3b151590565b606083156128775750816126ff565b8251156128875782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156128d15781810151838201526020016128b9565b50505050905090810190601f1680156128fe5780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe6164643a20696e76616c6964206465706f7369742066656520626173697320706f696e74735361666542455032303a204245503230206f7065726174696f6e20646964206e6f7420737563636565644f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737373616665446173685472616e736665723a205472616e73666572206661696c6564416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c63616e6e6f74207365742073746172742074696d6520696e207468652070617374536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f777365743a20696e76616c6964206465706f7369742066656520626173697320706f696e74734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220445e2764c0d3f5e4adf727045da1a2cfc7b13838f5fe23362b2ef108242a628764736f6c634300060c003300000000000000000000000005854c86a95a929e5b3ffef5a34dd6da3ebc0770000000000000000000000000a9176694eb5fdc36f6d890d11145d8a507d5072c0000000000000000000000000000000000000000000000000000000067925970
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806378e9792511610104578063c352bd05116100a2578063e2bbb15811610071578063e2bbb15814610664578063f2fde38b14610687578063f882ddae146106ad578063fc4d0d92146106b5576101cf565b8063c352bd05146105c7578063cbd258b5146105cf578063d0d41fe114610609578063d96384221461062f576101cf565b806388c8ec95116100de57806388c8ec951461054f5780638da5cb5b146105575780638dbb1e3a1461055f57806393f1a40b14610582576101cf565b806378e97925146104e357806384e82a33146104eb5780638705fcd414610529576101cf565b8063441a3e70116101715780635bbdf38e1161014b5780635bbdf38e14610319578063630b5ba114610427578063715018a61461042f5780637492a94b14610437576101cf565b8063441a3e70146102bc57806351eb05a6146102df5780635312ea8e146102fc576101cf565b80631526fe27116101ad5780631526fe271461022a57806317caf6f1146102885780634127535814610290578063436cc3d6146102b4576101cf565b806306bcf02f146101d4578063081e3eda146101f35780630ba84cd21461020d575b600080fd5b6101f1600480360360208110156101ea57600080fd5b50356106e1565b005b6101fb610841565b60408051918252519081900360200190f35b6101f16004803603602081101561022357600080fd5b5035610847565b6102476004803603602081101561024057600080fd5b5035610938565b604080516001600160a01b039097168752602087019590955285850193909352606085019190915261ffff16608084015260a0830152519081900360c00190f35b6101fb61098c565b610298610992565b604080516001600160a01b039092168252519081900360200190f35b6101fb6109a1565b6101f1600480360360408110156102d257600080fd5b50803590602001356109ae565b6101f1600480360360208110156102f557600080fd5b5035610a1e565b6101f16004803603602081101561031257600080fd5b5035610e13565b6101f16004803603606081101561032f57600080fd5b810190602081018135600160201b81111561034957600080fd5b82018360208201111561035b57600080fd5b803590602001918460208302840111600160201b8311171561037c57600080fd5b919390929091602081019035600160201b81111561039957600080fd5b8201836020820111156103ab57600080fd5b803590602001918460208302840111600160201b831117156103cc57600080fd5b919390929091602081019035600160201b8111156103e957600080fd5b8201836020820111156103fb57600080fd5b803590602001918460208302840111600160201b8311171561041c57600080fd5b509092509050610f3c565b6101f1611086565b6101f16110a9565b6101f16004803603604081101561044d57600080fd5b61ffff8235169190810190604081016020820135600160201b81111561047257600080fd5b82018360208201111561048457600080fd5b803590602001918460208302840111600160201b831117156104a557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611155945050505050565b6101fb6112b0565b6101f16004803603608081101561050157600080fd5b508035906001600160a01b036020820135169061ffff604082013516906060013515156112b6565b6101f16004803603602081101561053f57600080fd5b50356001600160a01b03166115fd565b6102986116f1565b610298611715565b6101fb6004803603604081101561057557600080fd5b5080359060200135611724565b6105ae6004803603604081101561059857600080fd5b50803590602001356001600160a01b0316611739565b6040805192835260208301919091528051918290030190f35b6101fb61175d565b6105f5600480360360208110156105e557600080fd5b50356001600160a01b0316611763565b604080519115158252519081900360200190f35b6101f16004803603602081101561061f57600080fd5b50356001600160a01b0316611778565b6101f16004803603608081101561064557600080fd5b5080359060208101359061ffff6040820135169060600135151561186c565b6101f16004803603604081101561067a57600080fd5b5080359060200135611a2c565b6101f16004803603602081101561069d57600080fd5b50356001600160a01b0316611db0565b610298611eb2565b6101fb600480360360408110156106cb57600080fd5b50803590602001356001600160a01b0316611ec1565b6106e96120b3565b6001600160a01b03166106fa611715565b6001600160a01b031614610743576040805162461bcd60e51b81526020600482018190526024820152600080516020612a30833981519152604482015290519081900360640190fd5b4260085411610790576040805162461bcd60e51b815260206004820152601460248201527311985c9b48185b1c9958591e481cdd185c9d195960621b604482015290519081900360640190fd5b8042106107ce5760405162461bcd60e51b81526004018080602001828103825260218152602001806129c96021913960400191505060405180910390fd5b60005b6005548110156108055781600582815481106107e957fe5b60009182526020909120600260069092020101556001016107d1565b5060088190556040805182815290517fa09018266c541576eb124551c9c57c82a8129add3ba6777a5974b1d0e6252e999181900360200190a150565b60055490565b61084f6120b3565b6001600160a01b0316610860611715565b6001600160a01b0316146108a9576040805162461bcd60e51b81526020600482018190526024820152600080516020612a30833981519152604482015290519081900360640190fd5b68056bc75e2d631000008111156108f2576040805162461bcd60e51b81526020600482015260086024820152670a8dede40d0d2ced60c31b604482015290519081900360640190fd5b6108fa611086565b600481905560408051828152905133917fe2492e003bbe8afa53088b406f0c1cb5d9e280370fc72a74cf116ffd343c4053919081900360200190a250565b6005818154811061094557fe5b60009182526020909120600690910201805460018201546002830154600384015460048501546005909501546001600160a01b0390941695509193909261ffff9091169086565b60075481565b6003546001600160a01b031681565b68056bc75e2d6310000081565b60026001541415610a06576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600155610a168233836120b7565b505060018055565b600060058281548110610a2d57fe5b9060005260206000209060060201905080600201544211610a4e5750610e10565b60058101541580610a6157506001810154155b15610a725742600290910155610e10565b6000610a82826002015442611724565b90506000610ab5600754610aaf8560010154610aa96004548761223a90919063ffffffff16565b9061223a565b90612293565b90506000610ac482600a612293565b90506000610b6183610b5b847f00000000000000000000000005854c86a95a929e5b3ffef5a34dd6da3ebc07706001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610b2957600080fd5b505afa158015610b3d573d6000803e3d6000fd5b505050506040513d6020811015610b5357600080fd5b5051906122fa565b906122fa565b90506a084595161401484a0000008111610c9f576002546001600160a01b037f00000000000000000000000005854c86a95a929e5b3ffef5a34dd6da3ebc07708116916340c10f199116610bb686600a612293565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015610bfc57600080fd5b505af1158015610c10573d6000803e3d6000fd5b5050604080516340c10f1960e01b81523060048201526024810187905290516001600160a01b037f00000000000000000000000005854c86a95a929e5b3ffef5a34dd6da3ebc07701693506340c10f199250604480830192600092919082900301818387803b158015610c8257600080fd5b505af1158015610c96573d6000803e3d6000fd5b50505050610dcb565b610d397f00000000000000000000000005854c86a95a929e5b3ffef5a34dd6da3ebc07706001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610cfb57600080fd5b505afa158015610d0f573d6000803e3d6000fd5b505050506040513d6020811015610d2557600080fd5b50516a084595161401484a00000090612354565b92507f00000000000000000000000005854c86a95a929e5b3ffef5a34dd6da3ebc07706001600160a01b03166340c10f1930856040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015610db257600080fd5b505af1158015610dc6573d6000803e3d6000fd5b505050505b8215610e01576005850154610dfb90610df090610aaf86670de0b6b3a764000061223a565b6003870154906122fa565b60038601555b42856002018190555050505050505b50565b60026001541415610e6b576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600181905550600060058281548110610e8257fe5b60009182526020808320858452600680835260408086203380885294528520805486825560018201969096559302018054909450919291610ecf916001600160a01b0390911690836123b1565b80836005015410610ef3576005830154610ee99082612354565b6005840155610efb565b600060058401555b604080518281529051859133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a35050600180555050565b610f446120b3565b6001600160a01b0316610f55611715565b6001600160a01b031614610f9e576040805162461bcd60e51b81526020600482018190526024820152600080516020612a30833981519152604482015290519081900360640190fd5b60005b8581101561101757610fcc878783818110610fb857fe5b9050602002013561ffff1661ffff16610a1e565b60006005888884818110610fdc57fe5b9050602002013561ffff1661ffff1681548110610ff557fe5b6000918252602082206001600690920201810191909155919091019050610fa1565b5060005b8381101561107d576000600586868481811061103357fe5b9050602002013561ffff1661ffff168154811061104c57fe5b9060005260206000209060060201905083838381811061106857fe5b6020029190910135600192830155500161101b565b50505050505050565b60055460005b818110156110a55761109d81610a1e565b60010161108c565b5050565b6110b16120b3565b6001600160a01b03166110c2611715565b6001600160a01b03161461110b576040805162461bcd60e51b81526020600482018190526024820152600080516020612a30833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61115d6120b3565b6001600160a01b031661116e611715565b6001600160a01b0316146111b7576040805162461bcd60e51b81526020600482018190526024820152600080516020612a30833981519152604482015290519081900360640190fd5b60058261ffff16815481106111c857fe5b906000526020600020906006020160010154600014611225576040805162461bcd60e51b81526020600482015260146024820152730416c6c6f6320706f696e74206973206e6f7420360641b604482015290519081900360640190fd5b60005b81518110156112ab576112a38361ffff1683838151811061124557fe5b6020026020010151600660008761ffff168152602001908152602001600020600086868151811061127257fe5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020600001546120b7565b600101611228565b505050565b60085481565b6112be6120b3565b6001600160a01b03166112cf611715565b6001600160a01b031614611318576040805162461bcd60e51b81526020600482018190526024820152600080516020612a30833981519152604482015290519081900360640190fd5b6001600160a01b038316600090815260096020526040902054839060ff1615611388576040805162461bcd60e51b815260206004820152601960248201527f6e6f6e4475706c6963617465643a206475706c69636174656400000000000000604482015290519081900360640190fd5b6101f48361ffff1611156113cd5760405162461bcd60e51b815260040180806020018281038252602581526020018061290d6025913960400191505060405180910390fd5b81156113db576113db611086565b604080516370a0823160e01b815230600482015290516001600160a01b038616916370a08231916024808301926020929190829003018186803b15801561142157600080fd5b505afa158015611435573d6000803e3d6000fd5b505050506040513d602081101561144b57600080fd5b5050600854600090421161146157600854611463565b425b60075490915061147390876122fa565b600781905550600160096000876001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff02191690831515021790555060056040518060c00160405280876001600160a01b03168152602001888152602001838152602001600081526020018661ffff1681526020016000815250908060018154018082558091505060019003906000526020600020906006020160009091909190915060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a81548161ffff021916908361ffff16021790555060a0820151816005015550506001600580549050037faa6642278d4bbef86d8990c37355d5d4dfe365c194106bdf7a65162268606f0786888760405180846001600160a01b031681526020018381526020018261ffff168152602001935050505060405180910390a2505050505050565b6116056120b3565b6001600160a01b0316611616611715565b6001600160a01b03161461165f576040805162461bcd60e51b81526020600482018190526024820152600080516020612a30833981519152604482015290519081900360640190fd5b6001600160a01b0381166116a5576040805162461bcd60e51b8152602060048201526008602482015267216e6f6e7a65726f60c01b604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b03831690811790915560405133907fd44190acf9d04bdb5d3a1aafff7e6dee8b40b93dfb8c5d3f0eea4b9f4539c3f790600090a350565b7f00000000000000000000000005854c86a95a929e5b3ffef5a34dd6da3ebc077081565b6000546001600160a01b031690565b60006117308284612354565b90505b92915050565b60066020908152600092835260408084209091529082529020805460019091015482565b60045481565b60096020526000908152604090205460ff1681565b6117806120b3565b6001600160a01b0316611791611715565b6001600160a01b0316146117da576040805162461bcd60e51b81526020600482018190526024820152600080516020612a30833981519152604482015290519081900360640190fd5b6001600160a01b038116611820576040805162461bcd60e51b8152602060048201526008602482015267216e6f6e7a65726f60c01b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b03831690811790915560405133907f618c54559e94f1499a808aad71ee8729f8e74e8c48e979616328ce493a1a52e790600090a350565b6118746120b3565b6001600160a01b0316611885611715565b6001600160a01b0316146118ce576040805162461bcd60e51b81526020600482018190526024820152600080516020612a30833981519152604482015290519081900360640190fd5b6101f48261ffff1611156119135760405162461bcd60e51b8152600401808060200182810382526025815260200180612a0b6025913960400191505060405180910390fd5b801561192157611921611086565b61195883610b5b6005878154811061193557fe5b90600052602060002090600602016001015460075461235490919063ffffffff16565b600781905550826005858154811061196c57fe5b906000526020600020906006020160010181905550816005858154811061198f57fe5b906000526020600020906006020160040160006101000a81548161ffff021916908361ffff160217905550837f39f0c3d078af018954b4fa56832a05a2b511afaa999b133ea3f1c487c21ed287600586815481106119e957fe5b600091825260209182902060069091020154604080516001600160a01b03909216825291810187905261ffff86168183015290519081900360600190a250505050565b60026001541415611a84576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600181905550600060058381548110611a9b57fe5b60009182526020808320868452600680835260408086203387529093529190932091029091019150611acc84610a1e565b805415611b1e576000611b0a8260010154611b04670de0b6b3a7640000610aaf8760030154876000015461223a90919063ffffffff16565b90612354565b90508015611b1c57611b1c3382612403565b505b8215611d4c578154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611b6e57600080fd5b505afa158015611b82573d6000803e3d6000fd5b505050506040513d6020811015611b9857600080fd5b50518354604080516323b872dd60e01b81523360048201523060248201526044810188905290519293506001600160a01b03909116916323b872dd916064808201926020929091908290030181600087803b158015611bf657600080fd5b505af1158015611c0a573d6000803e3d6000fd5b505050506040513d6020811015611c2057600080fd5b50508254604080516370a0823160e01b81523060048201529051611ca49284926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015611c7257600080fd5b505afa158015611c86573d6000803e3d6000fd5b505050506040513d6020811015611c9c57600080fd5b505190612354565b600484015490945061ffff1615611d27576004830154600090611cd49061271090610aaf90889061ffff1661223a565b6003548554919250611cf3916001600160a01b039081169116836123b1565b8254611d05908290611b0490886122fa565b83556005840154611d1c908290611b0490886122fa565b600585015550611d4a565b6005830154611d3690856122fa565b60058401558154611d4790856122fa565b82555b505b60038201548154611d6a91670de0b6b3a764000091610aaf9161223a565b6001820155604080518481529051859133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a35050600180555050565b611db86120b3565b6001600160a01b0316611dc9611715565b6001600160a01b031614611e12576040805162461bcd60e51b81526020600482018190526024820152600080516020612a30833981519152604482015290519081900360640190fd5b6001600160a01b038116611e575760405162461bcd60e51b815260040180806020018281038252602681526020018061295c6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6002546001600160a01b031681565b60008060058481548110611ed157fe5b60009182526020808320878452600680835260408086206001600160a01b038a168752909352919093209102909101600381015460028201549193509042118015611f1f5750600583015415155b8015611f2d57506000600754115b1561207e576000611f42846002015442611724565b90506000611f69600754610aaf8760010154610aa96004548761223a90919063ffffffff16565b90506000611f7882600a612293565b90506000611fdd83610b5b847f00000000000000000000000005854c86a95a929e5b3ffef5a34dd6da3ebc07706001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610b2957600080fd5b90506a084595161401484a0000008111156120515761204e7f00000000000000000000000005854c86a95a929e5b3ffef5a34dd6da3ebc07706001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610cfb57600080fd5b92505b60058701546120779061207090610aaf86670de0b6b3a764000061223a565b86906122fa565b9450505050505b6120a98260010154611b04670de0b6b3a7640000610aaf85876000015461223a90919063ffffffff16565b9695505050505050565b3390565b6000600584815481106120c657fe5b60009182526020808320878452600680835260408086206001600160a01b038a168752909352919093208054929091029092019250831115612144576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b61214d85610a1e565b600061217e8260010154611b04670de0b6b3a7640000610aaf8760030154876000015461223a90919063ffffffff16565b90508015612190576121908582612403565b83156121cf5781546121a29085612354565b825582546121ba906001600160a01b031686866123b1565b60058301546121c99085612354565b60058401555b600383015482546121ed91670de0b6b3a764000091610aaf9161223a565b600183015560408051858152905187916001600160a01b038816917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a3505050505050565b60008261224957506000611733565b8282028284828161225657fe5b04146117305760405162461bcd60e51b81526004018080602001828103825260218152602001806129ea6021913960400191505060405180910390fd5b60008082116122e9576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816122f257fe5b049392505050565b600082820183811015611730576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000828211156123ab576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526112ab90849061263c565b60007f00000000000000000000000005854c86a95a929e5b3ffef5a34dd6da3ebc07706001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561247257600080fd5b505afa158015612486573d6000803e3d6000fd5b505050506040513d602081101561249c57600080fd5b50519050600081831115612554577f00000000000000000000000005854c86a95a929e5b3ffef5a34dd6da3ebc07706001600160a01b031663a9059cbb85846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561252157600080fd5b505af1158015612535573d6000803e3d6000fd5b505050506040513d602081101561254b57600080fd5b505190506125fa565b7f00000000000000000000000005854c86a95a929e5b3ffef5a34dd6da3ebc07706001600160a01b031663a9059cbb85856040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156125cb57600080fd5b505af11580156125df573d6000803e3d6000fd5b505050506040513d60208110156125f557600080fd5b505190505b806126365760405162461bcd60e51b81526004018080602001828103825260218152602001806129826021913960400191505060405180910390fd5b50505050565b6060612691826040518060400160405280602081526020017f5361666542455032303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166126ed9092919063ffffffff16565b8051909150156112ab578080602001905160208110156126b057600080fd5b50516112ab5760405162461bcd60e51b815260040180806020018281038252602a815260200180612932602a913960400191505060405180910390fd5b60606126fc8484600085612706565b90505b9392505050565b6060824710156127475760405162461bcd60e51b81526004018080602001828103825260268152602001806129a36026913960400191505060405180910390fd5b61275085612862565b6127a1576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106127e05780518252601f1990920191602091820191016127c1565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612842576040519150601f19603f3d011682016040523d82523d6000602084013e612847565b606091505b5091509150612857828286612868565b979650505050505050565b3b151590565b606083156128775750816126ff565b8251156128875782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156128d15781810151838201526020016128b9565b50505050905090810190601f1680156128fe5780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe6164643a20696e76616c6964206465706f7369742066656520626173697320706f696e74735361666542455032303a204245503230206f7065726174696f6e20646964206e6f7420737563636565644f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737373616665446173685472616e736665723a205472616e73666572206661696c6564416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c63616e6e6f74207365742073746172742074696d6520696e207468652070617374536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f777365743a20696e76616c6964206465706f7369742066656520626173697320706f696e74734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220445e2764c0d3f5e4adf727045da1a2cfc7b13838f5fe23362b2ef108242a628764736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000005854c86a95a929e5b3ffef5a34dd6da3ebc0770000000000000000000000000a9176694eb5fdc36f6d890d11145d8a507d5072c0000000000000000000000000000000000000000000000000000000067925970
-----Decoded View---------------
Arg [0] : _dashToken (address): 0x05854c86A95a929e5B3ffEf5a34dd6DA3ebc0770
Arg [1] : _devaddress (address): 0xa9176694eB5FdC36f6D890D11145D8a507D5072C
Arg [2] : _startTime (uint256): 1737644400
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000005854c86a95a929e5b3ffef5a34dd6da3ebc0770
Arg [1] : 000000000000000000000000a9176694eb5fdc36f6d890d11145d8a507d5072c
Arg [2] : 0000000000000000000000000000000000000000000000000000000067925970
Deployed Bytecode Sourcemap
39626:14425:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52430:497;;;;;;;;;;;;;;;;-1:-1:-1;52430:497:0;;:::i;:::-;;42845:95;;;:::i;:::-;;;;;;;;;;;;;;;;52085:296;;;;;;;;;;;;;;;;-1:-1:-1;52085:296:0;;:::i;41343:26::-;;;;;;;;;;;;;;;;-1:-1:-1;41343:26:0;;:::i;:::-;;;;-1:-1:-1;;;;;41343:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41584:34;;;:::i;41192:25::-;;;:::i;:::-;;;;-1:-1:-1;;;;;41192:25:0;;;;;;;;;;;;;;41786:53;;;:::i;49459:126::-;;;;;;;;;;;;;;;;-1:-1:-1;49459:126:0;;;;;;;:::i;46453:1451::-;;;;;;;;;;;;;;;;-1:-1:-1;46453:1451:0;;:::i;50463:558::-;;;;;;;;;;;;;;;;-1:-1:-1;50463:558:0;;:::i;52964:590::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;52964:590:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;52964:590:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;52964:590:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;52964:590:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;52964:590:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;52964:590:0;;;;;;;;;;-1:-1:-1;52964:590:0;;-1:-1:-1;52964:590:0;-1:-1:-1;52964:590:0;:::i;46197:180::-;;;:::i;28084:148::-;;;:::i;53622:426::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53622:426:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53622:426:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53622:426:0;;-1:-1:-1;53622:426:0;;-1:-1:-1;;;;;53622:426:0:i;41667:24::-;;;:::i;43215:939::-;;;;;;;;;;;;;;;;-1:-1:-1;43215:939:0;;;-1:-1:-1;;;;;43215:939:0;;;;;;;;;;;;;;;;;;;:::i;51860:217::-;;;;;;;;;;;;;;;;-1:-1:-1;51860:217:0;-1:-1:-1;;;;;51860:217:0;;:::i;41117:36::-;;;:::i;27433:87::-;;;:::i;44896:121::-;;;;;;;;;;;;;;;;-1:-1:-1;44896:121:0;;;;;;;:::i;41425:64::-;;;;;;;;;;;;;;;;-1:-1:-1;41425:64:0;;;;;;-1:-1:-1;;;;;41425:64:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;41266:41;;;:::i;42948:44::-;;;;;;;;;;;;;;;;-1:-1:-1;42948:44:0;-1:-1:-1;;;;;42948:44:0;;:::i;:::-;;;;;;;;;;;;;;;;;;51635:217;;;;;;;;;;;;;;;;-1:-1:-1;51635:217:0;-1:-1:-1;;;;;51635:217:0;;:::i;44266:555::-;;;;;;;;;;;;;;;;-1:-1:-1;44266:555:0;;;;;;;;;;;;;;;;;;;;;:::i;47973:1434::-;;;;;;;;;;;;;;;;-1:-1:-1;47973:1434:0;;;;;;;:::i;28387:244::-;;;;;;;;;;;;;;;;-1:-1:-1;28387:244:0;-1:-1:-1;;;;;28387:244:0;;:::i;41160:25::-;;;:::i;45083:1031::-;;;;;;;;;;;;;;;;-1:-1:-1;45083:1031:0;;;;;;-1:-1:-1;;;;;45083:1031:0;;:::i;52430:497::-;27664:12;:10;:12::i;:::-;-1:-1:-1;;;;;27653:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27653:23:0;;27645:68;;;;;-1:-1:-1;;;27645:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27645:68:0;;;;;;;;;;;;;;;52530:15:::1;52518:9;;:27;52510:60;;;::::0;;-1:-1:-1;;;52510:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;52510:60:0;;;;;;;;;;;;;::::1;;52623:15;52605;:33;52583:116;;;;-1:-1:-1::0;;;52583:116:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52716:9;52712:116;52735:8;:15:::0;52731:19;::::1;52712:116;;;52801:15;52772:8;52781:1;52772:11;;;;;;;;;::::0;;;::::1;::::0;;;:26:::1;:11;::::0;;::::1;;:26;:44:::0;52752:3:::1;;52712:116;;;-1:-1:-1::0;52848:9:0::1;:27:::0;;;52893:26:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;52430:497:::0;:::o;42845:95::-;42917:8;:15;42845:95;:::o;52085:296::-;27664:12;:10;:12::i;:::-;-1:-1:-1;;;;;27653:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27653:23:0;;27645:68;;;;;-1:-1:-1;;;27645:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27645:68:0;;;;;;;;;;;;;;;41830:9:::1;52180:19;:40;;52172:60;;;::::0;;-1:-1:-1;;;52172:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;52172:60:0;;;;;;;;;;;;;::::1;;52243:17;:15;:17::i;:::-;52271:13;:35:::0;;;52322:51:::1;::::0;;;;;;;52341:10:::1;::::0;52322:51:::1;::::0;;;;;::::1;::::0;;::::1;52085:296:::0;:::o;41343:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41343:26:0;;;;-1:-1:-1;41343:26:0;;;;;;;;;;:::o;41584:34::-;;;;:::o;41192:25::-;;;-1:-1:-1;;;;;41192:25:0;;:::o;41786:53::-;41830:9;41786:53;:::o;49459:126::-;1768:1;2374:7;;:19;;2366:63;;;;;-1:-1:-1;;;2366:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1768:1;2507:7;:18;49541:36:::1;49551:4:::0;49557:10:::1;49569:7:::0;49541:9:::1;:36::i;:::-;-1:-1:-1::0;;1724:1:0;2686:22;;49459:126::o;46453:1451::-;46505:21;46529:8;46538:4;46529:14;;;;;;;;;;;;;;;;;;46505:38;;46577:4;:19;;;46558:15;:38;46554:77;;46613:7;;;46554:77;46647:13;;;;:18;;:42;;-1:-1:-1;46669:15:0;;;;:20;46647:42;46643:133;;;46728:15;46706:19;;;;:37;46758:7;;46643:133;46788:18;46809:51;46823:4;:19;;;46844:15;46809:13;:51::i;:::-;46788:72;;46871:18;46892:71;46947:15;;46892:50;46926:4;:15;;;46892:29;46907:13;;46892:10;:14;;:29;;;;:::i;:::-;:33;;:50::i;:::-;:54;;:71::i;:::-;46871:92;-1:-1:-1;46974:17:0;46994:18;46871:92;47009:2;46994:14;:18::i;:::-;46974:38;;47023:20;47046:54;47089:10;47046:38;47074:9;47046;-1:-1:-1;;;;;47046:21:0;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47046:23:0;;:27;:38::i;:::-;:42;;:54::i;:::-;47023:77;;41735:14;47177:12;:31;47173:429;;47291:10;;-1:-1:-1;;;;;47276:9:0;:14;;;;;47291:10;47303:18;:10;47318:2;47303:14;:18::i;:::-;47276:46;;;;;;;;;;;;;-1:-1:-1;;;;;47276:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47337:41:0;;;-1:-1:-1;;;47337:41:0;;47360:4;47337:41;;;;;;;;;;;;-1:-1:-1;;;;;47337:9:0;:14;;-1:-1:-1;47337:14:0;;-1:-1:-1;47337:41:0;;;;;-1:-1:-1;;47337:41:0;;;;;;;-1:-1:-1;47337:14:0;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47173:429;;;47490:44;47510:9;-1:-1:-1;;;;;47510:21:0;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47510:23:0;41735:14;;47490:19;:44::i;:::-;47477:57;;47549:9;-1:-1:-1;;;;;47549:14:0;;47572:4;47579:10;47549:41;;;;;;;;;;;;;-1:-1:-1;;;;;47549:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47173:429;47618:15;;47614:233;;47806:13;;;;47738:97;;47781:39;;:20;:10;47796:4;47781:14;:20::i;:39::-;47738:20;;;;;:24;:97::i;:::-;47715:20;;;:120;47614:233;47881:15;47859:4;:19;;:37;;;;46453:1451;;;;;;;:::o;50463:558::-;1768:1;2374:7;;:19;;2366:63;;;;;-1:-1:-1;;;2366:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1768:1;2507:7;:18;;;;50535:21:::1;50559:8;50568:4;50559:14;;;;;;;;;::::0;;;::::1;::::0;;;50608;;;50559::::1;50608::::0;;;;;;;50623:10:::1;50608:26:::0;;;;;;;50662:11;;50684:15;;;-1:-1:-1;50710:15:0;::::1;:19:::0;;;;50559:14;::::1;;50740:12:::0;;50559:14;;-1:-1:-1;50608:26:0;;50662:11;50740:54:::1;::::0;-1:-1:-1;;;;;50740:12:0;;::::1;::::0;50662:11;50740:25:::1;:54::i;:::-;50829:6;50811:4;:13;;;:24;50807:148;;50868:13;::::0;::::1;::::0;:25:::1;::::0;50886:6;50868:17:::1;:25::i;:::-;50852:13;::::0;::::1;:41:::0;50807:148:::1;;;50942:1;50926:13;::::0;::::1;:17:::0;50807:148:::1;50970:43;::::0;;;;;;;51000:4;;50988:10:::1;::::0;50970:43:::1;::::0;;;;::::1;::::0;;::::1;-1:-1:-1::0;;1724:1:0;2686:22;;-1:-1:-1;;50463:558:0:o;52964:590::-;27664:12;:10;:12::i;:::-;-1:-1:-1;;;;;27653:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27653:23:0;;27645:68;;;;;-1:-1:-1;;;27645:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27645:68:0;;;;;;;;;;;;;;;53154:9:::1;53149:211;53169:22:::0;;::::1;53149:211;;;53213:26;53224:11;;53236:1;53224:14;;;;;;;;;;;;;;;53213:26;;:10;:26::i;:::-;53254:27;53284:8;53293:11;;53305:1;53293:14;;;;;;;;;;;;;;;53284:24;;;;;;;;;;;::::0;;;::::1;::::0;;53323:21:::1;53284:24;::::0;;::::1;;53323:21:::0;::::1;:25:::0;;;;53193:3;;;::::1;::::0;-1:-1:-1;53149:211:0::1;;;;53377:9;53372:175;53392:19:::0;;::::1;53372:175;;;53433:24;53460:8;53469;;53478:1;53469:11;;;;;;;;;;;;;;;53460:21;;;;;;;;;;;;;;;;;;;;53433:48;;53517:15;;53533:1;53517:18;;;;;;;;;::::0;;;::::1;;53496;::::0;;::::1;:39:::0;-1:-1:-1;53413:3:0::1;53372:175;;;;52964:590:::0;;;;;;:::o;46197:180::-;46259:8;:15;46242:14;46285:85;46313:6;46307:3;:12;46285:85;;;46343:15;46354:3;46343:10;:15::i;:::-;46321:5;;46285:85;;;;46197:180;:::o;28084:148::-;27664:12;:10;:12::i;:::-;-1:-1:-1;;;;;27653:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27653:23:0;;27645:68;;;;;-1:-1:-1;;;27645:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27645:68:0;;;;;;;;;;;;;;;28191:1:::1;28175:6:::0;;28154:40:::1;::::0;-1:-1:-1;;;;;28175:6:0;;::::1;::::0;28154:40:::1;::::0;28191:1;;28154:40:::1;28222:1;28205:19:::0;;-1:-1:-1;;;;;;28205:19:0::1;::::0;;28084:148::o;53622:426::-;27664:12;:10;:12::i;:::-;-1:-1:-1;;;;;27653:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27653:23:0;;27645:68;;;;;-1:-1:-1;;;27645:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27645:68:0;;;;;;;;;;;;;;;53752:8:::1;53761:4;53752:14;;;;;;;;;;;;;;;;;;;;:25;;;53781:1;53752:30;53744:63;;;::::0;;-1:-1:-1;;;53744:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;53744:63:0;;;;;;;;;;;;;::::1;;53825:9;53820:221;53844:14;:21;53840:1;:25;53820:221;;;53887:142;53915:4;53887:142;;53938:14;53953:1;53938:17;;;;;;;;;;;;;;53974:8;:14;53983:4;53974:14;;;;;;;;;;;;;:33;53989:14;54004:1;53989:17;;;;;;;;;;;;;;-1:-1:-1::0;;;;;53974:33:0::1;-1:-1:-1::0;;;;;53974:33:0::1;;;;;;;;;;;;:40;;;53887:9;:142::i;:::-;53867:3;;53820:221;;;;53622:426:::0;;:::o;41667:24::-;;;;:::o;43215:939::-;27664:12;:10;:12::i;:::-;-1:-1:-1;;;;;27653:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27653:23:0;;27645:68;;;;;-1:-1:-1;;;27645:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27645:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;43058:23:0;::::1;;::::0;;;:13:::1;:23;::::0;;;;;43339:8;;43058:23:::1;;:32;43050:70;;;::::0;;-1:-1:-1;;;43050:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;43385:3:::2;43368:13;:20;;;;43360:70;;;;-1:-1:-1::0;;;43360:70:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43445:11;43441:61;;;43473:17;:15;:17::i;:::-;43512:33;::::0;;-1:-1:-1;;;43512:33:0;;43539:4:::2;43512:33;::::0;::::2;::::0;;;-1:-1:-1;;;;;43512:18:0;::::2;::::0;::::2;::::0;:33;;;;;::::2;::::0;;;;;;;;:18;:33;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;;43599:9:0::2;::::0;43556:22:::2;::::0;43581:15:::2;:27;:57;;43629:9;;43581:57;;;43611:15;43581:57;43667:15;::::0;43556:82;;-1:-1:-1;43667:32:0::2;::::0;43687:11;43667:19:::2;:32::i;:::-;43649:15;:50;;;;43736:4;43710:13;:23;43724:8;-1:-1:-1::0;;;;;43710:23:0::2;-1:-1:-1::0;;;;;43710:23:0::2;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;43751:8;43779:265;;;;;;;;43816:8;-1:-1:-1::0;;;;;43779:265:0::2;;;;;43855:11;43779:265;;;;43901:14;43779:265;;;;43951:1;43779:265;;;;43985:13;43779:265;;;;;;44027:1;43779:265;;::::0;43751:304:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;43751:304:0::2;;;;;-1:-1:-1::0;;;;;43751:304:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44097:1;44079:8;:15;;;;:19;44071:75;44108:8;44119:11;44132:13;44071:75;;;;-1:-1:-1::0;;;;;44071:75:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43131:1;27724::::1;43215:939:::0;;;;:::o;51860:217::-;27664:12;:10;:12::i;:::-;-1:-1:-1;;;;;27653:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27653:23:0;;27645:68;;;;;-1:-1:-1;;;27645:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27645:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;51942:25:0;::::1;51934:46;;;::::0;;-1:-1:-1;;;51934:46:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;51934:46:0;;;;;;;;;;;;;::::1;;51991:10;:24:::0;;-1:-1:-1;;;;;;51991:24:0::1;-1:-1:-1::0;;;;;51991:24:0;::::1;::::0;;::::1;::::0;;;52031:38:::1;::::0;52045:10:::1;::::0;52031:38:::1;::::0;-1:-1:-1;;52031:38:0::1;51860:217:::0;:::o;41117:36::-;;;:::o;27433:87::-;27479:7;27506:6;-1:-1:-1;;;;;27506:6:0;27433:87;:::o;44896:121::-;44968:7;44995:14;:3;45003:5;44995:7;:14::i;:::-;44988:21;;44896:121;;;;;:::o;41425:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41266:41::-;;;;:::o;42948:44::-;;;;;;;;;;;;;;;:::o;51635:217::-;27664:12;:10;:12::i;:::-;-1:-1:-1;;;;;27653:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27653:23:0;;27645:68;;;;;-1:-1:-1;;;27645:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27645:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;51717:25:0;::::1;51709:46;;;::::0;;-1:-1:-1;;;51709:46:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;51709:46:0;;;;;;;;;;;;;::::1;;51766:10;:24:::0;;-1:-1:-1;;;;;;51766:24:0::1;-1:-1:-1::0;;;;;51766:24:0;::::1;::::0;;::::1;::::0;;;51806:38:::1;::::0;51820:10:::1;::::0;51806:38:::1;::::0;-1:-1:-1;;51806:38:0::1;51635:217:::0;:::o;44266:555::-;27664:12;:10;:12::i;:::-;-1:-1:-1;;;;;27653:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27653:23:0;;27645:68;;;;;-1:-1:-1;;;27645:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27645:68:0;;;;;;;;;;;;;;;44409:3:::1;44392:13;:20;;;;44384:70;;;;-1:-1:-1::0;;;44384:70:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44469:11;44465:61;;;44497:17;:15;:17::i;:::-;44554:63;44605:11;44554:46;44574:8;44583:4;44574:14;;;;;;;;;;;;;;;;;;:25;;;44554:15;;:19;;:46;;;;:::i;:63::-;44536:15;:81;;;;44656:11;44628:8;44637:4;44628:14;;;;;;;;;;;;;;;;;;:25;;:39;;;;44708:13;44678:8;44687:4;44678:14;;;;;;;;;;;;;;;;;;:27;;;:43;;;;;;;;;;;;;;;;;;44747:4;44739:74;44761:8;44770:4;44761:14;;;;;;;;;::::0;;;::::1;::::0;;;;::::1;::::0;;::::1;;:22:::0;44739:74:::1;::::0;;-1:-1:-1;;;;;44761:22:0;;::::1;44739:74:::0;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;;;;;;;;;;;;::::1;44266:555:::0;;;;:::o;47973:1434::-;1768:1;2374:7;;:19;;2366:63;;;;;-1:-1:-1;;;2366:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1768:1;2507:7;:18;;;;48054:21:::1;48078:8;48087:4;48078:14;;;;;;;;;::::0;;;::::1;::::0;;;48127;;;48078::::1;48127::::0;;;;;;;48142:10:::1;48127:26:::0;;;;;;;;;48078:14;::::1;::::0;;::::1;::::0;-1:-1:-1;48164:16:0::1;48136:4:::0;48164:10:::1;:16::i;:::-;48197:11:::0;;:15;48193:309:::1;;48229:15;48247:140;48371:4;:15;;;48247:101;48343:4;48247:73;48299:4;:20;;;48247:4;:29;;;:51;;:73;;;;:::i;:101::-;:123:::0;::::1;:140::i;:::-;48229:158:::0;-1:-1:-1;48406:11:0;;48402:89:::1;;48438:37;48455:10;48467:7;48438:16;:37::i;:::-;48193:309;;48518:11:::0;;48514:760:::1;;48570:12:::0;;:37:::1;::::0;;-1:-1:-1;;;48570:37:0;;48601:4:::1;48570:37;::::0;::::1;::::0;;;48546:21:::1;::::0;-1:-1:-1;;;;;48570:12:0::1;::::0;:22:::1;::::0;:37;;;;;::::1;::::0;;;;;;;;:12;:37;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;48570:37:0;48622:12;;:61:::1;::::0;;-1:-1:-1;;;48622:61:0;;48648:10:::1;48622:61;::::0;::::1;::::0;48668:4:::1;48622:61:::0;;;;;;;;;;;;48570:37;;-1:-1:-1;;;;;;48622:12:0;;::::1;::::0;:25:::1;::::0;:61;;;;;48570:37:::1;::::0;48622:61;;;;;;;;:12:::1;::::0;:61;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;48708:12:0;;:37:::1;::::0;;-1:-1:-1;;;48708:37:0;;48739:4:::1;48708:37;::::0;::::1;::::0;;;:56:::1;::::0;48750:13;;-1:-1:-1;;;;;48708:12:0;;::::1;::::0;:22:::1;::::0;:37;;;;;48622:61:::1;::::0;48708:37;;;;;;;;:12;:37;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;48708:37:0;;:41:::1;:56::i;:::-;48785:17;::::0;::::1;::::0;48698:66;;-1:-1:-1;48785:17:0::1;;:21:::0;48781:482:::1;;48860:17;::::0;::::1;::::0;48827:18:::1;::::0;48848:41:::1;::::0;48883:5:::1;::::0;48848:30:::1;::::0;:7;;48860:17:::1;;48848:11;:30::i;:41::-;48934:10;::::0;48908:12;;48827:62;;-1:-1:-1;48908:49:0::1;::::0;-1:-1:-1;;;;;48908:12:0;;::::1;::::0;48934:10:::1;48827:62:::0;48908:25:::1;:49::i;:::-;48990:11:::0;;:40:::1;::::0;49019:10;;48990:24:::1;::::0;49006:7;48990:15:::1;:24::i;:40::-;48976:54:::0;;49065:13:::1;::::0;::::1;::::0;:42:::1;::::0;49096:10;;49065:26:::1;::::0;49083:7;49065:17:::1;:26::i;:42::-;49049:13;::::0;::::1;:58:::0;-1:-1:-1;48781:482:0::1;;;49164:13;::::0;::::1;::::0;:26:::1;::::0;49182:7;49164:17:::1;:26::i;:::-;49148:13;::::0;::::1;:42:::0;49223:11;;:24:::1;::::0;49239:7;49223:15:::1;:24::i;:::-;49209:38:::0;;48781:482:::1;48514:760;;49318:20;::::0;::::1;::::0;49302:11;;:47:::1;::::0;49344:4:::1;::::0;49302:37:::1;::::0;:15:::1;:37::i;:47::-;49284:15;::::0;::::1;:65:::0;49365:34:::1;::::0;;;;;;;49385:4;;49373:10:::1;::::0;49365:34:::1;::::0;;;;::::1;::::0;;::::1;-1:-1:-1::0;;1724:1:0;2686:22;;-1:-1:-1;;47973:1434:0:o;28387:244::-;27664:12;:10;:12::i;:::-;-1:-1:-1;;;;;27653:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27653:23:0;;27645:68;;;;;-1:-1:-1;;;27645:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27645:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;28476:22:0;::::1;28468:73;;;;-1:-1:-1::0;;;28468:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28578:6;::::0;;28557:38:::1;::::0;-1:-1:-1;;;;;28557:38:0;;::::1;::::0;28578:6;::::1;::::0;28557:38:::1;::::0;::::1;28606:6;:17:::0;;-1:-1:-1;;;;;;28606:17:0::1;-1:-1:-1::0;;;;;28606:17:0;;;::::1;::::0;;;::::1;::::0;;28387:244::o;41160:25::-;;;-1:-1:-1;;;;;41160:25:0;;:::o;45083:1031::-;45156:7;45176:21;45200:8;45209:4;45200:14;;;;;;;;;;;;;;;;45249;;;45200;45249;;;;;;;-1:-1:-1;;;;;45249:21:0;;;;;;;;;;;45200:14;;;;;45307:20;;;;45360:19;;;;45200:14;;-1:-1:-1;45307:20:0;45342:15;:37;:59;;;;-1:-1:-1;45383:13:0;;;;:18;;45342:59;:82;;;;;45423:1;45405:15;;:19;45342:82;45338:688;;;45441:18;45462:51;45476:4;:19;;;45497:15;45462:13;:51::i;:::-;45441:72;;45528:18;45549:71;45604:15;;45549:50;45583:4;:15;;;45549:29;45564:13;;45549:10;:14;;:29;;;;:::i;:71::-;45528:92;-1:-1:-1;45635:17:0;45655:18;45528:92;45670:2;45655:14;:18::i;:::-;45635:38;;45702:20;45725:54;45768:10;45725:38;45753:9;45725;-1:-1:-1;;;;;45725:21:0;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:54;45702:77;;41735:14;45798:12;:30;45794:128;;;45862:44;45882:9;-1:-1:-1;;;;;45882:21:0;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45862:44;45849:57;;45794:128;45999:13;;;;45954:60;;45974:39;;:20;:10;45989:4;45974:14;:20::i;:39::-;45954:15;;:19;:60::i;:::-;45936:78;;45338:688;;;;;46043:63;46090:4;:15;;;46043:42;46080:4;46043:32;46059:15;46043:4;:11;;;:15;;:32;;;;:::i;:63::-;46036:70;45083:1031;-1:-1:-1;;;;;;45083:1031:0:o;25984:106::-;26072:10;25984:106;:::o;49593:799::-;49678:21;49702:8;49711:4;49702:14;;;;;;;;;;;;;;;;49751;;;49702;49751;;;;;;;-1:-1:-1;;;;;49751:21:0;;;;;;;;;;;49793:11;;49702:14;;;;;;;;-1:-1:-1;;;49793:22:0;49785:53;;;;;-1:-1:-1;;;49785:53:0;;;;;;;;;;;;-1:-1:-1;;;49785:53:0;;;;;;;;;;;;;;;49849:16;49860:4;49849:10;:16::i;:::-;49876:15;49894:68;49946:4;:15;;;49894:47;49936:4;49894:37;49910:4;:20;;;49894:4;:11;;;:15;;:37;;;;:::i;:68::-;49876:86;-1:-1:-1;49977:11:0;;49973:76;;50005:32;50022:5;50029:7;50005:16;:32::i;:::-;50063:11;;50059:204;;50105:11;;:24;;50121:7;50105:15;:24::i;:::-;50091:38;;50144:12;;:50;;-1:-1:-1;;;;;50144:12:0;50178:5;50186:7;50144:25;:50::i;:::-;50225:13;;;;:26;;50243:7;50225:17;:26::i;:::-;50209:13;;;:42;50059:204;50307:20;;;;50291:11;;:47;;50333:4;;50291:37;;:15;:37::i;:47::-;50273:15;;;:65;50354:30;;;;;;;;50370:4;;-1:-1:-1;;;;;50354:30:0;;;;;;;;;;;;49593:799;;;;;;:::o;17622:220::-;17680:7;17704:6;17700:20;;-1:-1:-1;17719:1:0;17712:8;;17700:20;17743:5;;;17747:1;17743;:5;:1;17767:5;;;;;:10;17759:56;;;;-1:-1:-1;;;17759:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18320:153;18378:7;18410:1;18406;:5;18398:44;;;;;-1:-1:-1;;;18398:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18464:1;18460;:5;;;;;;;18320:153;-1:-1:-1;;;18320:153:0:o;16743:179::-;16801:7;16833:5;;;16857:6;;;;16849:46;;;;;-1:-1:-1;;;16849:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;17205:158;17263:7;17296:1;17291;:6;;17283:49;;;;;-1:-1:-1;;;17283:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17350:5:0;;;17205:158::o;22047:211::-;22191:58;;;-1:-1:-1;;;;;22191:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22191:58:0;-1:-1:-1;;;22191:58:0;;;22164:86;;22184:5;;22164:19;:86::i;51139:440::-;51215:15;51233:9;-1:-1:-1;;;;;51233:19:0;;51261:4;51233:34;;;;;;;;;;;;;-1:-1:-1;;;;;51233:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51233:34:0;;-1:-1:-1;51278:20:0;51321:17;;;51317:183;;;51373:9;-1:-1:-1;;;;;51373:18:0;;51392:3;51397:7;51373:32;;;;;;;;;;;;;-1:-1:-1;;;;;51373:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51373:32:0;;-1:-1:-1;51317:183:0;;;51456:9;-1:-1:-1;;;;;51456:18:0;;51475:3;51480:7;51456:32;;;;;;;;;;;;;-1:-1:-1;;;;;51456:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51456:32:0;;-1:-1:-1;51317:183:0;51518:15;51510:61;;;;-1:-1:-1;;;51510:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51139:440;;;;:::o;24582:774::-;25006:23;25032:69;25060:4;25032:69;;;;;;;;;;;;;;;;;25040:5;-1:-1:-1;;;;;25032:27:0;;;:69;;;;;:::i;:::-;25116:17;;25006:95;;-1:-1:-1;25116:21:0;25112:237;;25271:10;25260:30;;;;;;;;;;;;;;;-1:-1:-1;25260:30:0;25252:85;;;;-1:-1:-1;;;25252:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6400:195;6503:12;6535:52;6557:6;6565:4;6571:1;6574:12;6535:21;:52::i;:::-;6528:59;;6400:195;;;;;;:::o;7452:530::-;7579:12;7637:5;7612:21;:30;;7604:81;;;;-1:-1:-1;;;7604:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7704:18;7715:6;7704:10;:18::i;:::-;7696:60;;;;;-1:-1:-1;;;7696:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7830:12;7844:23;7871:6;-1:-1:-1;;;;;7871:11:0;7891:5;7899:4;7871:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7871:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7829:75;;;;7922:52;7940:7;7949:10;7961:12;7922:17;:52::i;:::-;7915:59;7452:530;-1:-1:-1;;;;;;;7452:530:0:o;3482:422::-;3849:20;3888:8;;;3482:422::o;9992:742::-;10107:12;10136:7;10132:595;;;-1:-1:-1;10167:10:0;10160:17;;10132:595;10281:17;;:21;10277:439;;10544:10;10538:17;10605:15;10592:10;10588:2;10584:19;10577:44;10492:148;10687:12;10680:20;;-1:-1:-1;;;10680:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://445e2764c0d3f5e4adf727045da1a2cfc7b13838f5fe23362b2ef108242a6287
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.