More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 889 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 12882579 | 1292 days ago | IN | 0 ETH | 0.00136422 | ||||
Claim | 12882437 | 1293 days ago | IN | 0 ETH | 0.00186662 | ||||
Claim | 12534121 | 1347 days ago | IN | 0 ETH | 0.00302379 | ||||
Withdraw | 12490686 | 1353 days ago | IN | 0 ETH | 0.0368664 | ||||
Stake | 12360131 | 1374 days ago | IN | 0 ETH | 0.005125 | ||||
Claim | 12350718 | 1375 days ago | IN | 0 ETH | 0.00335584 | ||||
Stake | 12316093 | 1380 days ago | IN | 0 ETH | 0.00545578 | ||||
Stake | 12261474 | 1389 days ago | IN | 0 ETH | 0.016271 | ||||
Stake | 12160981 | 1404 days ago | IN | 0 ETH | 0.0459259 | ||||
Withdraw | 12134221 | 1408 days ago | IN | 0 ETH | 0.01535225 | ||||
Claim | 12090346 | 1415 days ago | IN | 0 ETH | 0.02541921 | ||||
Withdraw | 12090315 | 1415 days ago | IN | 0 ETH | 0.02782466 | ||||
Claim | 12080457 | 1417 days ago | IN | 0 ETH | 0.01056354 | ||||
Stake | 12062713 | 1419 days ago | IN | 0 ETH | 0.0199714 | ||||
Stake | 11954548 | 1436 days ago | IN | 0 ETH | 0.01906903 | ||||
Stake | 11953815 | 1436 days ago | IN | 0 ETH | 0.02438515 | ||||
Claim | 11945876 | 1437 days ago | IN | 0 ETH | 0.00849596 | ||||
Withdraw | 11945688 | 1438 days ago | IN | 0 ETH | 0.0035038 | ||||
Withdraw | 11945688 | 1438 days ago | IN | 0 ETH | 0.009122 | ||||
Withdraw | 11911950 | 1443 days ago | IN | 0 ETH | 0.02496534 | ||||
Stake | 11862518 | 1450 days ago | IN | 0 ETH | 0.04064456 | ||||
Stake | 11847545 | 1453 days ago | IN | 0 ETH | 0.01732404 | ||||
Stake | 11782651 | 1463 days ago | IN | 0 ETH | 0.01902696 | ||||
Withdraw | 11774376 | 1464 days ago | IN | 0 ETH | 0.02324359 | ||||
Stake | 11774176 | 1464 days ago | IN | 0 ETH | 0.0291632 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
LPToDOKI
Compiler Version
v0.7.2+commit.51b20bc0
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-10-10 */ pragma solidity ^0.7.0; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.3._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.3._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } } library Arrays { /** * @dev Searches a sorted `array` and returns the first index that contains * a value greater or equal to `element`. If no such index exists (i.e. all * values in the array are strictly less than `element`), the array length is * returned. Time complexity O(log n). * * `array` is expected to be sorted in ascending order, and to contain no * repeated elements. */ function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) { if (array.length == 0) { return 0; } uint256 low = 0; uint256 high = array.length; while (low < high) { uint256 mid = Math.average(low, high); // Note that mid will always be strictly less than high (i.e. it will be a valid array index) // because Math.average rounds down (it does integer division with truncation). if (array[mid] > element) { high = mid; } else { low = mid + 1; } } // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound. if (low > 0 && array[low - 1] == element) { return low - 1; } else { return low; } } } library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } 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; } } 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } contract DokiCoinCore is ERC20("DokiDokiFinance", "DOKI") { using SafeMath for uint256; address internal _taxer; address internal _taxDestination; uint internal _taxRate = 0; mapping (address => bool) internal _taxWhitelist; function transfer(address recipient, uint256 amount) public override returns (bool) { uint256 taxAmount = amount.mul(_taxRate).div(100); if (_taxWhitelist[msg.sender] == true) { taxAmount = 0; } uint256 transferAmount = amount.sub(taxAmount); require(balanceOf(msg.sender) >= transferAmount, "insufficient balance."); super.transfer(recipient, amount); if (taxAmount != 0) { super.transfer(_taxDestination, taxAmount); } return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { uint256 taxAmount = amount.mul(_taxRate).div(100); if (_taxWhitelist[sender] == true) { taxAmount = 0; } uint256 transferAmount = amount.sub(taxAmount); require(balanceOf(sender) >= transferAmount, "insufficient balance."); super.transferFrom(sender, recipient, amount); if (taxAmount != 0) { super.transferFrom(sender, _taxDestination, taxAmount); } return true; } } contract DokiCoin is DokiCoinCore, Ownable { mapping (address => bool) public minters; constructor() { _taxer = owner(); _taxDestination = owner(); } function mint(address to, uint amount) public onlyMinter { _mint(to, amount); } function burn(uint amount) public { require(amount > 0); require(balanceOf(msg.sender) >= amount); _burn(msg.sender, amount); } function addMinter(address account) public onlyOwner { minters[account] = true; } function removeMinter(address account) public onlyOwner { minters[account] = false; } modifier onlyMinter() { require(minters[msg.sender], "Restricted to minters."); _; } modifier onlyTaxer() { require(msg.sender == _taxer, "Only for taxer."); _; } function setTaxer(address account) public onlyTaxer { _taxer = account; } function setTaxRate(uint256 rate) public onlyTaxer { _taxRate = rate; } function setTaxDestination(address account) public onlyTaxer { _taxDestination = account; } function addToWhitelist(address account) public onlyTaxer { _taxWhitelist[account] = true; } function removeFromWhitelist(address account) public onlyTaxer { _taxWhitelist[account] = false; } function taxer() public view returns(address) { return _taxer; } function taxDestination() public view returns(address) { return _taxDestination; } function taxRate() public view returns(uint256) { return _taxRate; } function isInWhitelist(address account) public view returns(bool) { return _taxWhitelist[account]; } } contract LPToDOKI is Ownable { using SafeMath for uint256; using SafeERC20 for DokiCoin; using SafeERC20 for IERC20; using Address for address; DokiCoin private doki; IERC20 private lpToken; //LP token balances mapping(address => uint256) private _lpBalances; uint private _lpTotalSupply; // halving period time uint256 public constant DURATION = 2 weeks; // initial amount of doki uint256 public initReward = 500 * 1e18; bool public haveStarted = false; // next time of halving uint256 public halvingTime = 0; uint256 public lastUpdateTime = 0; // distribution of per second uint256 public rewardRate = 0; uint256 public rewardPerLPToken = 0; mapping(address => uint256) private rewards; mapping(address => uint256) private userRewardPerTokenPaid; // Something about dev. address public devAddr; uint256 public devDistributeRate = 0; uint256 public lastDistributeTime = 0; uint256 public devFinishTime = 0; uint256 public devFundAmount = 90 * 1e18; uint256 public devDistributeDuration = 180 days; event Stake(address indexed from, uint amount); event Withdraw(address indexed to, uint amount); event Claim(address indexed to, uint amount); event Halving(uint amount); event Start(uint amount); constructor(address _doki, address _lpToken) { doki = DokiCoin(_doki); lpToken = IERC20(_lpToken); devAddr = owner(); } function totalSupply() public view returns(uint256) { return _lpTotalSupply; } function balanceOf(address account) public view returns(uint256) { return _lpBalances[account]; } function stake(uint amount) public shouldStarted { updateRewards(msg.sender); checkHalving(); require(!address(msg.sender).isContract(), "Please use your individual account."); lpToken.safeTransferFrom(msg.sender, address(this), amount); _lpTotalSupply = _lpTotalSupply.add(amount); _lpBalances[msg.sender] = _lpBalances[msg.sender].add(amount); distributeDevFund(); emit Stake(msg.sender, amount); } function withdraw(uint amount) public shouldStarted { updateRewards(msg.sender); checkHalving(); require(amount <= _lpBalances[msg.sender] && _lpBalances[msg.sender] > 0, "Bad withdraw."); lpToken.safeTransfer(msg.sender, amount); _lpTotalSupply = _lpTotalSupply.sub(amount); _lpBalances[msg.sender] = _lpBalances[msg.sender].sub(amount); distributeDevFund(); emit Withdraw(msg.sender, amount); } function claim(uint amount) public shouldStarted { updateRewards(msg.sender); checkHalving(); require(amount <= rewards[msg.sender] && rewards[msg.sender] > 0, "Bad claim."); rewards[msg.sender] = rewards[msg.sender].sub(amount); doki.safeTransfer(msg.sender, amount); distributeDevFund(); emit Claim(msg.sender, amount); } function checkHalving() internal { if (block.timestamp >= halvingTime) { initReward = initReward.mul(50).div(100); doki.mint(address(this), initReward); rewardRate = initReward.div(DURATION); halvingTime = halvingTime.add(DURATION); updateRewards(msg.sender); emit Halving(initReward); } } modifier shouldStarted() { require(haveStarted == true, "Have not started."); _; } function getRewardsAmount(address account) public view returns(uint256) { return balanceOf(account).mul(rewardPerToken().sub(userRewardPerTokenPaid[account])) .div(1e8) .add(rewards[account]); } function rewardPerToken() public view returns (uint256) { if (_lpTotalSupply == 0) { return rewardPerLPToken; } return rewardPerLPToken .add(Math.min(block.timestamp, halvingTime) .sub(lastUpdateTime) .mul(rewardRate) .mul(1e8) .div(_lpTotalSupply) ); } function updateRewards(address account) internal { rewardPerLPToken = rewardPerToken(); lastUpdateTime = lastRewardTime(); if (account != address(0)) { rewards[account] = getRewardsAmount(account); userRewardPerTokenPaid[account] = rewardPerLPToken; } } function lastRewardTime() public view returns (uint256) { return Math.min(block.timestamp, halvingTime); } function startFarming() external onlyOwner { updateRewards(address(0)); rewardRate = initReward.div(DURATION); uint256 mintAmount = initReward.add(devFundAmount); doki.mint(address(this), mintAmount); devDistributeRate = devFundAmount.div(devDistributeDuration); devFinishTime = block.timestamp.add(devDistributeDuration); lastUpdateTime = block.timestamp; lastDistributeTime = block.timestamp; halvingTime = block.timestamp.add(DURATION); haveStarted = true; emit Start(mintAmount); } function transferDevAddr(address newAddr) public onlyDev { require(newAddr != address(0), "zero addr"); devAddr = newAddr; } function distributeDevFund() internal { uint256 nowTime = Math.min(block.timestamp, devFinishTime); uint256 fundAmount = nowTime.sub(lastDistributeTime).mul(devDistributeRate); doki.safeTransfer(devAddr, fundAmount); lastDistributeTime = nowTime; } modifier onlyDev() { require(msg.sender == devAddr, "This is only for dev."); _; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_doki","type":"address"},{"internalType":"address","name":"_lpToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Halving","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":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Stake","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Start","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devDistributeDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devDistributeRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFinishTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFundAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getRewardsAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"halvingTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"haveStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastDistributeTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastRewardTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPerLPToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startFarming","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAddr","type":"address"}],"name":"transferDevAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052681b1ae4d6e2ef5000006005556000600660006101000a81548160ff0219169083151502179055506000600755600060085560006009556000600a556000600e556000600f5560006010556804e1003b28d928000060115562ed4e006012553480156200007057600080fd5b506040516200268f3803806200268f833981810160405260408110156200009657600080fd5b8101908080519060200190929190805190602001909291905050506000620000c36200023b60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001f36200024360201b60201c565b600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050506200026c565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612413806200027c6000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80638366a205116100de578063c6570d8511610097578063da09c72c11610071578063da09c72c146104a7578063dbe93451146104db578063f2fde38b14610533578063fb0e487a146105775761018e565b8063c6570d851461044d578063c8f33c911461046b578063cd3daf9d146104895761018e565b80638366a205146103875780638da5cb5b146103a55780639231cf74146103d95780639bfffad7146103f7578063a694fc3a14610415578063afbcfea1146104435761018e565b80633cf6bcfe1161014b57806370a082311161012557806370a08231146102e9578063715018a6146103415780637b0a47ee1461034b5780637d8033f5146103695761018e565b80633cf6bcfe146102695780633ef0cc7b146102875780634b438c34146102cb5761018e565b806318160ddd146101935780631be05289146101b157806322eb9363146101cf5780632e1a7d4d146101ed57806335f50ade1461021b578063379607f51461023b575b600080fd5b61019b610595565b6040518082815260200191505060405180910390f35b6101b961059f565b6040518082815260200191505060405180910390f35b6101d76105a6565b6040518082815260200191505060405180910390f35b6102196004803603602081101561020357600080fd5b81019080803590602001909291905050506105ac565b005b61022361089c565b60405180821515815260200191505060405180910390f35b6102676004803603602081101561025157600080fd5b81019080803590602001909291905050506108af565b005b610271610b84565b6040518082815260200191505060405180910390f35b6102c96004803603602081101561029d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b8a565b005b6102d3610d34565b6040518082815260200191505060405180910390f35b61032b600480360360208110156102ff57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d3a565b6040518082815260200191505060405180910390f35b610349610d83565b005b610353610f09565b6040518082815260200191505060405180910390f35b610371610f0f565b6040518082815260200191505060405180910390f35b61038f610f15565b6040518082815260200191505060405180910390f35b6103ad610f1b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103e1610f44565b6040518082815260200191505060405180910390f35b6103ff610f57565b6040518082815260200191505060405180910390f35b6104416004803603602081101561042b57600080fd5b8101908080359060200190929190505050610f5d565b005b61044b6111c4565b005b610455611431565b6040518082815260200191505060405180910390f35b610473611437565b6040518082815260200191505060405180910390f35b61049161143d565b6040518082815260200191505060405180910390f35b6104af6114cb565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61051d600480360360208110156104f157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114f1565b6040518082815260200191505060405180910390f35b6105756004803603602081101561054957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115d4565b005b61057f6117df565b6040518082815260200191505060405180910390f35b6000600454905090565b6212750081565b60075481565b60011515600660009054906101000a900460ff16151514610635576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f48617665206e6f7420737461727465642e00000000000000000000000000000081525060200191505060405180910390fd5b61063e336117e5565b6106466118cb565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481111580156106d457506000600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b610746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f4261642077697468647261772e0000000000000000000000000000000000000081525060200191505060405180910390fd5b6107933382600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611a319092919063ffffffff16565b6107a881600454611ad390919063ffffffff16565b60048190555061080081600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ad390919063ffffffff16565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061084b611b1d565b3373ffffffffffffffffffffffffffffffffffffffff167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364826040518082815260200191505060405180910390a250565b600660009054906101000a900460ff1681565b60011515600660009054906101000a900460ff16151514610938576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f48617665206e6f7420737461727465642e00000000000000000000000000000081525060200191505060405180910390fd5b610941336117e5565b6109496118cb565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481111580156109d757506000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b610a49576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600a8152602001807f42616420636c61696d2e0000000000000000000000000000000000000000000081525060200191505060405180910390fd5b610a9b81600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ad390919063ffffffff16565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610b2b3382600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611a319092919063ffffffff16565b610b33611b1d565b3373ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4826040518082815260200191505060405180910390a250565b600f5481565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c4d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f54686973206973206f6e6c7920666f72206465762e000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cf0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f7a65726f2061646472000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d8b611bd4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e4b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60095481565b600e5481565b60105481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610f5242600754611bdc565b905090565b60055481565b60011515600660009054906101000a900460ff16151514610fe6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f48617665206e6f7420737461727465642e00000000000000000000000000000081525060200191505060405180910390fd5b610fef336117e5565b610ff76118cb565b6110163373ffffffffffffffffffffffffffffffffffffffff16611bf5565b1561106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061234a6023913960400191505060405180910390fd5b6110bb333083600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611c08909392919063ffffffff16565b6110d081600454611cc990919063ffffffff16565b60048190555061112881600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cc990919063ffffffff16565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611173611b1d565b3373ffffffffffffffffffffffffffffffffffffffff167febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a826040518082815260200191505060405180910390a250565b6111cc611bd4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461128c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61129660006117e5565b6112ae62127500600554611d5190919063ffffffff16565b60098190555060006112cd601154600554611cc990919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1930836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561136257600080fd5b505af1158015611376573d6000803e3d6000fd5b50505050611391601254601154611d5190919063ffffffff16565b600e819055506113ac60125442611cc990919063ffffffff16565b6010819055504260088190555042600f819055506113d66212750042611cc990919063ffffffff16565b6007819055506001600660006101000a81548160ff0219169083151502179055507ff06a29c94c6f4edc1085072972d9441f7603e81c8535a308f214285d0653c850816040518082815260200191505060405180910390a150565b600a5481565b60085481565b600080600454141561145357600a5490506114c8565b6114c56114b46004546114a66305f5e10061149860095461148a60085461147c42600754611bdc565b611ad390919063ffffffff16565b611d9b90919063ffffffff16565b611d9b90919063ffffffff16565b611d5190919063ffffffff16565b600a54611cc990919063ffffffff16565b90505b90565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006115cd600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115bf6305f5e1006115b161159a600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461158c61143d565b611ad390919063ffffffff16565b6115a388610d3a565b611d9b90919063ffffffff16565b611d5190919063ffffffff16565b611cc990919063ffffffff16565b9050919050565b6115dc611bd4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461169c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611722576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806123246026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60125481565b6117ed61143d565b600a819055506117fb610f44565b600881905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146118c85761183e816114f1565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a54600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6007544210611a2f576118fd60646118ef6032600554611d9b90919063ffffffff16565b611d5190919063ffffffff16565b600581905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19306005546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561199857600080fd5b505af11580156119ac573d6000803e3d6000fd5b505050506119c862127500600554611d5190919063ffffffff16565b6009819055506119e662127500600754611cc990919063ffffffff16565b6007819055506119f5336117e5565b7ffafb0ec84dbe5a6bf08f4fec2f970b66d402032cdfea2008b11e11eb5c3990f06005546040518082815260200191505060405180910390a15b565b611ace8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611e21565b505050565b6000611b1583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f10565b905092915050565b6000611b2b42601054611bdc565b90506000611b58600e54611b4a600f5485611ad390919063ffffffff16565b611d9b90919063ffffffff16565b9050611bc9600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611a319092919063ffffffff16565b81600f819055505050565b600033905090565b6000818310611beb5781611bed565b825b905092915050565b600080823b905060008111915050919050565b611cc3846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611e21565b50505050565b600080828401905083811015611d47576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000611d9383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611fd0565b905092915050565b600080831415611dae5760009050611e1b565b6000828402905082848281611dbf57fe5b0414611e16576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806123936021913960400191505060405180910390fd5b809150505b92915050565b6060611e83826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166120969092919063ffffffff16565b9050600081511115611f0b57808060200190516020811015611ea457600080fd5b8101908080519060200190929190505050611f0a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806123b4602a913960400191505060405180910390fd5b5b505050565b6000838311158290611fbd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611f82578082015181840152602081019050611f67565b50505050905090810190601f168015611faf5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000808311829061207c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612041578082015181840152602081019050612026565b50505050905090810190601f16801561206e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161208857fe5b049050809150509392505050565b60606120a584846000856120ae565b90509392505050565b606082471015612109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061236d6026913960400191505060405180910390fd5b61211285611bf5565b612184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106121d457805182526020820191506020810190506020830392506121b1565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612236576040519150601f19603f3d011682016040523d82523d6000602084013e61223b565b606091505b509150915061224b828286612257565b92505050949350505050565b606083156122675782905061231c565b60008351111561227a5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122e15780820151818401526020810190506122c6565b50505050905090810190601f16801561230e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b939250505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373506c656173652075736520796f757220696e646976696475616c206163636f756e742e416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212208d64e41466a6f3fcc423940c43da387c6f1fecb1d39ac18198d5074c03c970ec64736f6c634300070200330000000000000000000000009ceb84f92a0561fa3cc4132ab9c0b76a597875440000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80638366a205116100de578063c6570d8511610097578063da09c72c11610071578063da09c72c146104a7578063dbe93451146104db578063f2fde38b14610533578063fb0e487a146105775761018e565b8063c6570d851461044d578063c8f33c911461046b578063cd3daf9d146104895761018e565b80638366a205146103875780638da5cb5b146103a55780639231cf74146103d95780639bfffad7146103f7578063a694fc3a14610415578063afbcfea1146104435761018e565b80633cf6bcfe1161014b57806370a082311161012557806370a08231146102e9578063715018a6146103415780637b0a47ee1461034b5780637d8033f5146103695761018e565b80633cf6bcfe146102695780633ef0cc7b146102875780634b438c34146102cb5761018e565b806318160ddd146101935780631be05289146101b157806322eb9363146101cf5780632e1a7d4d146101ed57806335f50ade1461021b578063379607f51461023b575b600080fd5b61019b610595565b6040518082815260200191505060405180910390f35b6101b961059f565b6040518082815260200191505060405180910390f35b6101d76105a6565b6040518082815260200191505060405180910390f35b6102196004803603602081101561020357600080fd5b81019080803590602001909291905050506105ac565b005b61022361089c565b60405180821515815260200191505060405180910390f35b6102676004803603602081101561025157600080fd5b81019080803590602001909291905050506108af565b005b610271610b84565b6040518082815260200191505060405180910390f35b6102c96004803603602081101561029d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b8a565b005b6102d3610d34565b6040518082815260200191505060405180910390f35b61032b600480360360208110156102ff57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d3a565b6040518082815260200191505060405180910390f35b610349610d83565b005b610353610f09565b6040518082815260200191505060405180910390f35b610371610f0f565b6040518082815260200191505060405180910390f35b61038f610f15565b6040518082815260200191505060405180910390f35b6103ad610f1b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103e1610f44565b6040518082815260200191505060405180910390f35b6103ff610f57565b6040518082815260200191505060405180910390f35b6104416004803603602081101561042b57600080fd5b8101908080359060200190929190505050610f5d565b005b61044b6111c4565b005b610455611431565b6040518082815260200191505060405180910390f35b610473611437565b6040518082815260200191505060405180910390f35b61049161143d565b6040518082815260200191505060405180910390f35b6104af6114cb565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61051d600480360360208110156104f157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114f1565b6040518082815260200191505060405180910390f35b6105756004803603602081101561054957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115d4565b005b61057f6117df565b6040518082815260200191505060405180910390f35b6000600454905090565b6212750081565b60075481565b60011515600660009054906101000a900460ff16151514610635576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f48617665206e6f7420737461727465642e00000000000000000000000000000081525060200191505060405180910390fd5b61063e336117e5565b6106466118cb565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481111580156106d457506000600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b610746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f4261642077697468647261772e0000000000000000000000000000000000000081525060200191505060405180910390fd5b6107933382600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611a319092919063ffffffff16565b6107a881600454611ad390919063ffffffff16565b60048190555061080081600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ad390919063ffffffff16565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061084b611b1d565b3373ffffffffffffffffffffffffffffffffffffffff167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364826040518082815260200191505060405180910390a250565b600660009054906101000a900460ff1681565b60011515600660009054906101000a900460ff16151514610938576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f48617665206e6f7420737461727465642e00000000000000000000000000000081525060200191505060405180910390fd5b610941336117e5565b6109496118cb565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481111580156109d757506000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b610a49576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600a8152602001807f42616420636c61696d2e0000000000000000000000000000000000000000000081525060200191505060405180910390fd5b610a9b81600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ad390919063ffffffff16565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610b2b3382600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611a319092919063ffffffff16565b610b33611b1d565b3373ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4826040518082815260200191505060405180910390a250565b600f5481565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c4d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f54686973206973206f6e6c7920666f72206465762e000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cf0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f7a65726f2061646472000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d8b611bd4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e4b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60095481565b600e5481565b60105481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610f5242600754611bdc565b905090565b60055481565b60011515600660009054906101000a900460ff16151514610fe6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f48617665206e6f7420737461727465642e00000000000000000000000000000081525060200191505060405180910390fd5b610fef336117e5565b610ff76118cb565b6110163373ffffffffffffffffffffffffffffffffffffffff16611bf5565b1561106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061234a6023913960400191505060405180910390fd5b6110bb333083600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611c08909392919063ffffffff16565b6110d081600454611cc990919063ffffffff16565b60048190555061112881600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cc990919063ffffffff16565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611173611b1d565b3373ffffffffffffffffffffffffffffffffffffffff167febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a826040518082815260200191505060405180910390a250565b6111cc611bd4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461128c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61129660006117e5565b6112ae62127500600554611d5190919063ffffffff16565b60098190555060006112cd601154600554611cc990919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1930836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561136257600080fd5b505af1158015611376573d6000803e3d6000fd5b50505050611391601254601154611d5190919063ffffffff16565b600e819055506113ac60125442611cc990919063ffffffff16565b6010819055504260088190555042600f819055506113d66212750042611cc990919063ffffffff16565b6007819055506001600660006101000a81548160ff0219169083151502179055507ff06a29c94c6f4edc1085072972d9441f7603e81c8535a308f214285d0653c850816040518082815260200191505060405180910390a150565b600a5481565b60085481565b600080600454141561145357600a5490506114c8565b6114c56114b46004546114a66305f5e10061149860095461148a60085461147c42600754611bdc565b611ad390919063ffffffff16565b611d9b90919063ffffffff16565b611d9b90919063ffffffff16565b611d5190919063ffffffff16565b600a54611cc990919063ffffffff16565b90505b90565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006115cd600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115bf6305f5e1006115b161159a600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461158c61143d565b611ad390919063ffffffff16565b6115a388610d3a565b611d9b90919063ffffffff16565b611d5190919063ffffffff16565b611cc990919063ffffffff16565b9050919050565b6115dc611bd4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461169c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611722576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806123246026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60125481565b6117ed61143d565b600a819055506117fb610f44565b600881905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146118c85761183e816114f1565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a54600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6007544210611a2f576118fd60646118ef6032600554611d9b90919063ffffffff16565b611d5190919063ffffffff16565b600581905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19306005546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561199857600080fd5b505af11580156119ac573d6000803e3d6000fd5b505050506119c862127500600554611d5190919063ffffffff16565b6009819055506119e662127500600754611cc990919063ffffffff16565b6007819055506119f5336117e5565b7ffafb0ec84dbe5a6bf08f4fec2f970b66d402032cdfea2008b11e11eb5c3990f06005546040518082815260200191505060405180910390a15b565b611ace8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611e21565b505050565b6000611b1583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f10565b905092915050565b6000611b2b42601054611bdc565b90506000611b58600e54611b4a600f5485611ad390919063ffffffff16565b611d9b90919063ffffffff16565b9050611bc9600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611a319092919063ffffffff16565b81600f819055505050565b600033905090565b6000818310611beb5781611bed565b825b905092915050565b600080823b905060008111915050919050565b611cc3846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611e21565b50505050565b600080828401905083811015611d47576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000611d9383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611fd0565b905092915050565b600080831415611dae5760009050611e1b565b6000828402905082848281611dbf57fe5b0414611e16576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806123936021913960400191505060405180910390fd5b809150505b92915050565b6060611e83826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166120969092919063ffffffff16565b9050600081511115611f0b57808060200190516020811015611ea457600080fd5b8101908080519060200190929190505050611f0a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806123b4602a913960400191505060405180910390fd5b5b505050565b6000838311158290611fbd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611f82578082015181840152602081019050611f67565b50505050905090810190601f168015611faf5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000808311829061207c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612041578082015181840152602081019050612026565b50505050905090810190601f16801561206e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161208857fe5b049050809150509392505050565b60606120a584846000856120ae565b90509392505050565b606082471015612109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061236d6026913960400191505060405180910390fd5b61211285611bf5565b612184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106121d457805182526020820191506020810190506020830392506121b1565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612236576040519150601f19603f3d011682016040523d82523d6000602084013e61223b565b606091505b509150915061224b828286612257565b92505050949350505050565b606083156122675782905061231c565b60008351111561227a5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122e15780820151818401526020810190506122c6565b50505050905090810190601f16801561230e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b939250505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373506c656173652075736520796f757220696e646976696475616c206163636f756e742e416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212208d64e41466a6f3fcc423940c43da387c6f1fecb1d39ac18198d5074c03c970ec64736f6c63430007020033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000009ceb84f92a0561fa3cc4132ab9c0b76a597875440000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599
-----Decoded View---------------
Arg [0] : _doki (address): 0x9cEB84f92A0561fa3Cc4132aB9c0b76A59787544
Arg [1] : _lpToken (address): 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000009ceb84f92a0561fa3cc4132ab9c0b76a59787544
Arg [1] : 0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599
Deployed Bytecode Sourcemap
35641:5928:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37185:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36014:42;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36206:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37889:473;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36139:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38370:391;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36616:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41009:147;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36699:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37285:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22154:148;;;:::i;:::-;;36318:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36573:36;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36660:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21512:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;40278:120;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36094:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37404:477;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40406:595;;;:::i;:::-;;36354:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36243:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39534:408;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36544:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39284:242;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22457:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36746:47;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37185:92;37228:7;37255:14;;37248:21;;37185:92;:::o;36014:42::-;36049:7;36014:42;:::o;36206:30::-;;;;:::o;37889:473::-;39230:4;39215:19;;:11;;;;;;;;;;;:19;;;39207:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37952:25:::1;37966:10;37952:13;:25::i;:::-;37988:14;:12;:14::i;:::-;38031:11;:23;38043:10;38031:23;;;;;;;;;;;;;;;;38021:6;:33;;:64;;;;;38084:1;38058:11;:23;38070:10;38058:23;;;;;;;;;;;;;;;;:27;38021:64;38013:90;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;38114:40;38135:10;38147:6;38114:7;;;;;;;;;;;:20;;;;:40;;;;;:::i;:::-;38182:26;38201:6;38182:14;;:18;;:26;;;;:::i;:::-;38165:14;:43;;;;38245:35;38273:6;38245:11;:23;38257:10;38245:23;;;;;;;;;;;;;;;;:27;;:35;;;;:::i;:::-;38219:11;:23;38231:10;38219:23;;;;;;;;;;;;;;;:61;;;;38291:19;:17;:19::i;:::-;38335:10;38326:28;;;38347:6;38326:28;;;;;;;;;;;;;;;;;;37889:473:::0;:::o;36139:31::-;;;;;;;;;;;;;:::o;38370:391::-;39230:4;39215:19;;:11;;;;;;;;;;;:19;;;39207:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38430:25:::1;38444:10;38430:13;:25::i;:::-;38466:14;:12;:14::i;:::-;38509:7;:19;38517:10;38509:19;;;;;;;;;;;;;;;;38499:6;:29;;:56;;;;;38554:1;38532:7;:19;38540:10;38532:19;;;;;;;;;;;;;;;;:23;38499:56;38491:79;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;38603:31;38627:6;38603:7;:19;38611:10;38603:19;;;;;;;;;;;;;;;;:23;;:31;;;;:::i;:::-;38581:7;:19;38589:10;38581:19;;;;;;;;;;;;;;;:53;;;;38645:37;38663:10;38675:6;38645:4;;;;;;;;;;;:17;;;;:37;;;;;:::i;:::-;38693:19;:17;:19::i;:::-;38734:10;38728:25;;;38746:6;38728:25;;;;;;;;;;;;;;;;;;38370:391:::0;:::o;36616:37::-;;;;:::o;41009:147::-;41513:7;;;;;;;;;;;41499:21;;:10;:21;;;41491:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41104:1:::1;41085:21;;:7;:21;;;;41077:43;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;41141:7;41131;;:17;;;;;;;;;;;;;;;;;;41009:147:::0;:::o;36699:40::-;;;;:::o;37285:111::-;37341:7;37368:11;:20;37380:7;37368:20;;;;;;;;;;;;;;;;37361:27;;37285:111;;;:::o;22154:148::-;21734:12;:10;:12::i;:::-;21724:22;;:6;;;;;;;;;;:22;;;21716:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22261:1:::1;22224:40;;22245:6;::::0;::::1;;;;;;;;22224:40;;;;;;;;;;;;22292:1;22275:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;22154:148::o:0;36318:29::-;;;;:::o;36573:36::-;;;;:::o;36660:32::-;;;;:::o;21512:79::-;21550:7;21577:6;;;;;;;;;;;21570:13;;21512:79;:::o;40278:120::-;40325:7;40352:38;40361:15;40378:11;;40352:8;:38::i;:::-;40345:45;;40278:120;:::o;36094:38::-;;;;:::o;37404:477::-;39230:4;39215:19;;:11;;;;;;;;;;;:19;;;39207:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37464:25:::1;37478:10;37464:13;:25::i;:::-;37500:14;:12;:14::i;:::-;37534:32;37542:10;37534:30;;;:32::i;:::-;37533:33;37525:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37617:59;37642:10;37662:4;37669:6;37617:7;;;;;;;;;;;:24;;;;:59;;;;;;:::i;:::-;37704:26;37723:6;37704:14;;:18;;:26;;;;:::i;:::-;37687:14;:43;;;;37767:35;37795:6;37767:11;:23;37779:10;37767:23;;;;;;;;;;;;;;;;:27;;:35;;;;:::i;:::-;37741:11;:23;37753:10;37741:23;;;;;;;;;;;;;;;:61;;;;37813:19;:17;:19::i;:::-;37854:10;37848:25;;;37866:6;37848:25;;;;;;;;;;;;;;;;;;37404:477:::0;:::o;40406:595::-;21734:12;:10;:12::i;:::-;21724:22;;:6;;;;;;;;;;:22;;;21716:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40460:25:::1;40482:1;40460:13;:25::i;:::-;40509:24;36049:7;40509:10;;:14;;:24;;;;:::i;:::-;40496:10;:37;;;;40546:18;40567:29;40582:13;;40567:10;;:14;;:29;;;;:::i;:::-;40546:50;;40607:4;;;;;;;;;;;:9;;;40625:4;40632:10;40607:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40674:40;40692:21;;40674:13;;:17;;:40;;;;:::i;:::-;40654:17;:60;;;;40741:42;40761:21;;40741:15;:19;;:42;;;;:::i;:::-;40725:13;:58;;;;40813:15;40796:14;:32;;;;40860:15;40839:18;:36;;;;40900:29;36049:7;40900:15;:19;;:29;;;;:::i;:::-;40886:11;:43;;;;40956:4;40942:11;;:18;;;;;;;;;;;;;;;;;;40976:17;40982:10;40976:17;;;;;;;;;;;;;;;;;;21794:1;40406:595::o:0;36354:35::-;;;;:::o;36243:33::-;;;;:::o;39534:408::-;39581:7;39623:1;39605:14;;:19;39601:75;;;39648:16;;39641:23;;;;39601:75;39693:241;39728:191;39904:14;;39728:149;39873:3;39728:118;39835:10;;39728:80;39793:14;;39728:38;39737:15;39754:11;;39728:8;:38::i;:::-;:64;;:80;;;;:::i;:::-;:106;;:118;;;;:::i;:::-;:144;;:149;;;;:::i;:::-;:175;;:191;;;;:::i;:::-;39693:16;;:34;;:241;;;;:::i;:::-;39686:248;;39534:408;;:::o;36544:22::-;;;;;;;;;;;;;:::o;39284:242::-;39347:7;39374:144;39501:7;:16;39509:7;39501:16;;;;;;;;;;;;;;;;39374:104;39474:3;39374:77;39397:53;39418:22;:31;39441:7;39418:31;;;;;;;;;;;;;;;;39397:16;:14;:16::i;:::-;:20;;:53;;;;:::i;:::-;39374:18;39384:7;39374:9;:18::i;:::-;:22;;:77;;;;:::i;:::-;:99;;:104;;;;:::i;:::-;:126;;:144;;;;:::i;:::-;39367:151;;39284:242;;;:::o;22457:244::-;21734:12;:10;:12::i;:::-;21724:22;;:6;;;;;;;;;;:22;;;21716:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22566:1:::1;22546:22;;:8;:22;;;;22538:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22656:8;22627:38;;22648:6;::::0;::::1;;;;;;;;22627:38;;;;;;;;;;;;22685:8;22676:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;22457:244:::0;:::o;36746:47::-;;;;:::o;39950:320::-;40029:16;:14;:16::i;:::-;40010;:35;;;;40073:16;:14;:16::i;:::-;40056:14;:33;;;;40123:1;40104:21;;:7;:21;;;40100:163;;40161:25;40178:7;40161:16;:25::i;:::-;40142:7;:16;40150:7;40142:16;;;;;;;;;;;;;;;:44;;;;40235:16;;40201:22;:31;40224:7;40201:31;;;;;;;;;;;;;;;:50;;;;40100:163;39950:320;:::o;38769:394::-;38836:11;;38817:15;:30;38813:343;;38877:27;38900:3;38877:18;38892:2;38877:10;;:14;;:18;;;;:::i;:::-;:22;;:27;;;;:::i;:::-;38864:10;:40;;;;38919:4;;;;;;;;;;;:9;;;38937:4;38944:10;;38919:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38985:24;36049:7;38985:10;;:14;;:24;;;;:::i;:::-;38972:10;:37;;;;39038:25;36049:7;39038:11;;:15;;:25;;;;:::i;:::-;39024:11;:39;;;;39080:25;39094:10;39080:13;:25::i;:::-;39125:19;39133:10;;39125:19;;;;;;;;;;;;;;;;;;38813:343;38769:394::o;12837:177::-;12920:86;12940:5;12970:23;;;12995:2;12999:5;12947:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12920:19;:86::i;:::-;12837:177;;;:::o;16637:136::-;16695:7;16722:43;16726:1;16729;16722:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;16715:50;;16637:136;;;;:::o;41164:289::-;41213:15;41231:40;41240:15;41257:13;;41231:8;:40::i;:::-;41213:58;;41282:18;41303:54;41339:17;;41303:31;41315:18;;41303:7;:11;;:31;;;;:::i;:::-;:35;;:54;;;;:::i;:::-;41282:75;;41368:38;41386:7;;;;;;;;;;;41395:10;41368:4;;;;;;;;;;;:17;;;;:38;;;;;:::i;:::-;41438:7;41417:18;:28;;;;41164:289;;:::o;20666:106::-;20719:15;20754:10;20747:17;;20666:106;:::o;10953:::-;11011:7;11042:1;11038;:5;:13;;11050:1;11038:13;;;11046:1;11038:13;11031:20;;10953:106;;;;:::o;3347:422::-;3407:4;3615:12;3726:7;3714:20;3706:28;;3760:1;3753:4;:8;3746:15;;;3347:422;;;:::o;13022:205::-;13123:96;13143:5;13173:27;;;13202:4;13208:2;13212:5;13150:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13123:19;:96::i;:::-;13022:205;;;;:::o;16173:181::-;16231:7;16251:9;16267:1;16263;:5;16251:17;;16292:1;16287;:6;;16279:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16345:1;16338:8;;;16173:181;;;;:::o;18474:132::-;18532:7;18559:39;18563:1;18566;18559:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18552:46;;18474:132;;;;:::o;17527:471::-;17585:7;17835:1;17830;:6;17826:47;;;17860:1;17853:8;;;;17826:47;17885:9;17901:1;17897;:5;17885:17;;17930:1;17925;17921;:5;;;;;;:10;17913:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17989:1;17982:8;;;17527:471;;;;;:::o;15142:761::-;15566:23;15592:69;15620:4;15592:69;;;;;;;;;;;;;;;;;15600:5;15592:27;;;;:69;;;;;:::i;:::-;15566:95;;15696:1;15676:10;:17;:21;15672:224;;;15818:10;15807:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15799:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15672:224;15142:761;;;:::o;17076:192::-;17162:7;17195:1;17190;:6;;17198:12;17182:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17222:9;17238:1;17234;:5;17222:17;;17259:1;17252:8;;;17076:192;;;;;:::o;19102:278::-;19188:7;19220:1;19216;:5;19223:12;19208:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19247:9;19263:1;19259;:5;;;;;;19247:17;;19371:1;19364:8;;;19102:278;;;;;:::o;6265:195::-;6368:12;6400:52;6422:6;6430:4;6436:1;6439:12;6400:21;:52::i;:::-;6393:59;;6265:195;;;;;:::o;7317:530::-;7444:12;7502:5;7477:21;:30;;7469:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7569:18;7580:6;7569:10;:18::i;:::-;7561:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7695:12;7709:23;7736:6;:11;;7756:5;7764:4;7736:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7694:75;;;;7787:52;7805:7;7814:10;7826:12;7787:17;:52::i;:::-;7780:59;;;;7317:530;;;;;;:::o;9857:742::-;9972:12;10001:7;9997:595;;;10032:10;10025:17;;;;9997:595;10166:1;10146:10;:17;:21;10142:439;;;10409:10;10403:17;10470:15;10457:10;10453:2;10449:19;10442:44;10357:148;10552:12;10545:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9857:742;;;;;;:::o
Swarm Source
ipfs://8d64e41466a6f3fcc423940c43da387c6f1fecb1d39ac18198d5074c03c970ec
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.