BscScan - Sponsored slots available. Book your slot here!
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 4,513 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Get Reward | 15973883 | 1010 days ago | IN | 0 BNB | 0.0003249 | ||||
Withdraw Oxb | 15355622 | 1032 days ago | IN | 0 BNB | 0.00147962 | ||||
Get Reward | 14643900 | 1056 days ago | IN | 0 BNB | 0.00029988 | ||||
Get Reward | 14304125 | 1068 days ago | IN | 0 BNB | 0.0003249 | ||||
Withdraw Oxb | 13909023 | 1082 days ago | IN | 0 BNB | 0.00147962 | ||||
Get Reward | 13909004 | 1082 days ago | IN | 0 BNB | 0.00027473 | ||||
Get Reward | 12584202 | 1129 days ago | IN | 0 BNB | 0.0003249 | ||||
Withdraw Oxb | 12563531 | 1130 days ago | IN | 0 BNB | 0.00142066 | ||||
Get Reward | 12382876 | 1136 days ago | IN | 0 BNB | 0.0003249 | ||||
Get Reward | 12377542 | 1137 days ago | IN | 0 BNB | 0.0003249 | ||||
Withdraw Oxb | 12255108 | 1141 days ago | IN | 0 BNB | 0.0014206 | ||||
Get Reward | 12255100 | 1141 days ago | IN | 0 BNB | 0.00036668 | ||||
Get Reward | 12138428 | 1145 days ago | IN | 0 BNB | 0.0003249 | ||||
Get Reward | 11931382 | 1152 days ago | IN | 0 BNB | 0.0003249 | ||||
Get Reward | 11113460 | 1181 days ago | IN | 0 BNB | 0.0003249 | ||||
Withdraw Oxb | 10942245 | 1187 days ago | IN | 0 BNB | 0.00170479 | ||||
Withdraw Oxb | 10924961 | 1188 days ago | IN | 0 BNB | 0.00142066 | ||||
Get Reward | 10860687 | 1190 days ago | IN | 0 BNB | 0.0002499 | ||||
Withdraw Oxb | 10789527 | 1192 days ago | IN | 0 BNB | 0.00149554 | ||||
Withdraw Oxb | 10499366 | 1203 days ago | IN | 0 BNB | 0.0014206 | ||||
Get Reward | 10499358 | 1203 days ago | IN | 0 BNB | 0.00027473 | ||||
Get Reward | 10311517 | 1209 days ago | IN | 0 BNB | 0.0003249 | ||||
Withdraw Oxb | 10281984 | 1210 days ago | IN | 0 BNB | 0.0014206 | ||||
Withdraw Oxb | 10134941 | 1215 days ago | IN | 0 BNB | 0.00142066 | ||||
Get Reward | 10058407 | 1218 days ago | IN | 0 BNB | 0.00027473 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
5470525 | 1379 days ago | 0 BNB | ||||
5470525 | 1379 days ago | 0 BNB | ||||
5470525 | 1379 days ago | 0 BNB | ||||
5470336 | 1379 days ago | 0 BNB | ||||
5470336 | 1379 days ago | 0 BNB | ||||
5470336 | 1379 days ago | 0 BNB | ||||
5470227 | 1379 days ago | 0 BNB | ||||
5470227 | 1379 days ago | 0 BNB | ||||
5470227 | 1379 days ago | 0 BNB | ||||
5468259 | 1379 days ago | 0 BNB | ||||
5468259 | 1379 days ago | 0 BNB | ||||
5468259 | 1379 days ago | 0 BNB | ||||
5465709 | 1379 days ago | 0 BNB | ||||
5465709 | 1379 days ago | 0 BNB | ||||
5465709 | 1379 days ago | 0 BNB | ||||
5465667 | 1379 days ago | 0 BNB | ||||
5465667 | 1379 days ago | 0 BNB | ||||
5465667 | 1379 days ago | 0 BNB | ||||
5463840 | 1380 days ago | 0 BNB | ||||
5463840 | 1380 days ago | 0 BNB | ||||
5463840 | 1380 days ago | 0 BNB | ||||
5458591 | 1380 days ago | 0 BNB | ||||
5458591 | 1380 days ago | 0 BNB | ||||
5458591 | 1380 days ago | 0 BNB | ||||
5457902 | 1380 days ago | 0 BNB |
Loading...
Loading
Contract Name:
OxbScbFarm
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "SafeERC20.sol"; import "ERC20.sol"; contract OxbScbFarm { struct stakeTracker { uint256 lastBlockChecked; uint256 rewards; uint256 oxbStaked; } address private owner; address private scbPoolAddress; address private scbFundAddress; address private scbAddress; address private oxbPoolAddress; address private oxbAddress; IERC20 private scbToken; IERC20 private oxbToken; uint256 private rewardsVar; uint256 private multiplier; using SafeERC20 for IERC20; using SafeMath for uint256; uint256 private _totalOxbStaked; mapping(address => stakeTracker) private _stakedBalances; constructor() public { owner = msg.sender; rewardsVar = 1; multiplier = 10; } event OxbStaked(address indexed user, uint256 amount, uint256 totalScbStaked); event OxbWithdrawn(address indexed user, uint256 amount); event Rewards(address indexed user, uint256 reward); modifier _onlyOwner() { require(msg.sender == owner); _; } modifier updateStakingReward(address account) { if (block.number > _stakedBalances[account].lastBlockChecked) { uint256 rewardBlocks = block.number .sub(_stakedBalances[account].lastBlockChecked); if (_stakedBalances[account].oxbStaked > 0) { _stakedBalances[account].rewards = _stakedBalances[account].rewards .add( _stakedBalances[account].oxbStaked .mul(rewardBlocks) .mul(multiplier) .div(rewardsVar)); } _stakedBalances[account].lastBlockChecked = block.number; emit Rewards(account, _stakedBalances[account].rewards); } _; } modifier claimRewards() { uint256 reward = _stakedBalances[msg.sender].rewards; if (reward < 10) { _stakedBalances[msg.sender].rewards = 0; scbToken.safeTransferFrom(scbPoolAddress, msg.sender, reward); } else { _stakedBalances[msg.sender].rewards = 0; scbToken.safeTransferFrom(scbPoolAddress, msg.sender, reward.mul(9).div(10)); scbToken.safeTransferFrom(scbPoolAddress, scbFundAddress, reward.mul(1).div(10)); } emit Rewards(msg.sender, reward); _; } function setMultipler(uint256 _multiplier) public _onlyOwner returns (uint256) { multiplier = _multiplier; } function setScbAddress(address _scbAddress) public _onlyOwner returns (uint256) { scbAddress = _scbAddress; scbToken = IERC20(_scbAddress); } function setOxbAddress(address _oxbAddress) public _onlyOwner returns (uint256) { oxbAddress = _oxbAddress; oxbToken = IERC20(_oxbAddress); } function setScbPoolAddress(address _scbPoolAddress) public _onlyOwner returns (uint256) { scbPoolAddress = _scbPoolAddress; } function setOxbPoolAddress(address _oxbPoolAddress) public _onlyOwner returns (uint256) { oxbPoolAddress = _oxbPoolAddress; } function setScbFundAddress(address _scbFundAddress) public _onlyOwner returns (uint256) { scbFundAddress = _scbFundAddress; } function setRewardsVar(uint256 _amount) public _onlyOwner { rewardsVar = _amount; } function getBlockNum() public view returns (uint256) { return block.number; } function getLastBlockCheckedNum(address _account) public view returns (uint256) { return _stakedBalances[_account].lastBlockChecked; } function getAddressOxbStakeAmount(address _account) public view returns (uint256) { return _stakedBalances[_account].oxbStaked; } function totalStakedScb() public view returns (uint256) { return _totalOxbStaked; } function getRewardsBalance(address account) public view returns (uint256) { if (block.number > _stakedBalances[account].lastBlockChecked) { uint256 rewardBlocks = block.number .sub(_stakedBalances[account].lastBlockChecked); uint256 rewards = 0; if (_stakedBalances[account].oxbStaked > 0) { rewards = _stakedBalances[account].rewards .add( _stakedBalances[account].oxbStaked .mul(rewardBlocks) .mul(multiplier) .div(rewardsVar)); } return rewards; } return 0; } function stakeOxb(uint256 amount) public updateStakingReward(msg.sender) { require(oxbToken.balanceOf(msg.sender) > amount, "insufficient balance"); require(oxbToken.allowance(msg.sender, address(this)) >= amount, "insufficient allowances"); _totalOxbStaked = _totalOxbStaked.add(amount.mul(98).div(100)); _stakedBalances[msg.sender].oxbStaked = _stakedBalances[msg.sender].oxbStaked.add(amount.mul(98).div(100)); oxbToken.safeTransferFrom(msg.sender, oxbPoolAddress, amount); emit OxbStaked(msg.sender, amount, _totalOxbStaked); } function withdrawOxb(uint256 amount) public updateStakingReward(msg.sender) claimRewards() { require(amount <= _stakedBalances[msg.sender].oxbStaked, "withdraw amount must not more than staked amount"); _totalOxbStaked = _totalOxbStaked.sub(amount); _stakedBalances[msg.sender].oxbStaked = _stakedBalances[msg.sender].oxbStaked.sub(amount); oxbToken.safeTransferFrom(oxbPoolAddress, msg.sender, amount); emit OxbWithdrawn(msg.sender, amount); } function getReward() public updateStakingReward(msg.sender) { uint256 reward = _stakedBalances[msg.sender].rewards; if (reward < 10) { _stakedBalances[msg.sender].rewards = 0; scbToken.safeTransferFrom(scbPoolAddress, msg.sender, reward); } else { _stakedBalances[msg.sender].rewards = 0; scbToken.safeTransferFrom(scbPoolAddress, msg.sender, reward.mul(9).div(10)); scbToken.safeTransferFrom(scbPoolAddress, scbFundAddress, reward.mul(1).div(10)); } emit Rewards(msg.sender, reward); } }
// File: @openzeppelin/contracts/utils/Address.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; /** * @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 in 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"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); 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: @openzeppelin/contracts/GSN/Context.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.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: @openzeppelin/contracts/token/ERC20/ERC20.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "./IERC20.sol"; import "./Context.sol"; import "./Safemath.sol"; import "./Address.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _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 { } }
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "Safemath.sol"; import "Address.sol"; import "IERC20.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.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, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalScbStaked","type":"uint256"}],"name":"OxbStaked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"OxbWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"Rewards","type":"event"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getAddressOxbStakeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBlockNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getLastBlockCheckedNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getRewardsBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_multiplier","type":"uint256"}],"name":"setMultipler","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_oxbAddress","type":"address"}],"name":"setOxbAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_oxbPoolAddress","type":"address"}],"name":"setOxbPoolAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setRewardsVar","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_scbAddress","type":"address"}],"name":"setScbAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_scbFundAddress","type":"address"}],"name":"setScbFundAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_scbPoolAddress","type":"address"}],"name":"setScbPoolAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stakeOxb","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalStakedScb","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawOxb","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600881905550600a60098190555061287a806100706000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806391542e5911610097578063b1de100d11610066578063b1de100d14610396578063b907ab8f146103ee578063db260b3e14610446578063e60df1b614610474576100f5565b806391542e59146102a057806394ac2f77146102ce578063afc2afa614610326578063b09a02b514610368576100f5565b80635e382971116100d35780635e3829711461017a5780637f6c6f10146101d25780638a67f4bf146101f05780638c9fdaea14610248576100f5565b80630bf4d8dd146100fa5780633a8d72bd146101525780633d18b91214610170575b600080fd5b61013c6004803603602081101561011057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506104cc565b6040518082815260200191505060405180910390f35b61015a6105ae565b6040518082815260200191505060405180910390f35b6101786105b8565b005b6101bc6004803603602081101561019057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b91565b6040518082815260200191505060405180910390f35b6101da610c32565b6040518082815260200191505060405180910390f35b6102326004803603602081101561020657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c3a565b6040518082815260200191505060405180910390f35b61028a6004803603602081101561025e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e13565b6040518082815260200191505060405180910390f35b6102cc600480360360208110156102b657600080fd5b8101908080359060200190929190505050610ef5565b005b610310600480360360208110156102e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116df565b6040518082815260200191505060405180910390f35b6103526004803603602081101561033c57600080fd5b810190808035906020019092919050505061172b565b6040518082815260200191505060405180910390f35b6103946004803603602081101561037e57600080fd5b8101908080359060200190929190505050611792565b005b6103d8600480360360208110156103ac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ed0565b6040518082815260200191505060405180910390f35b6104306004803603602081101561040457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f71565b6040518082815260200191505060405180910390f35b6104726004803603602081101561045c57600080fd5b8101908080359060200190929190505050612012565b005b6104b66004803603602081101561048a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612074565b6040518082815260200191505060405180910390f35b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461052757600080fd5b81600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550919050565b6000600a54905090565b33600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015443111561089857600061065a600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154436120c090919063ffffffff16565b90506000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015411156107bf5761077861072760085461071960095461070b86600b60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015461210a90919063ffffffff16565b61210a90919063ffffffff16565b61219090919063ffffffff16565b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546121da90919063ffffffff16565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055505b43600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055508173ffffffffffffffffffffffffffffffffffffffff167fc083a1647e3ee591bf42b82564ffb4d16fdbb26068f0080da911c8d8300fd84a600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546040518082815260200191505060405180910390a2505b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101549050600a8110156109a6576000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506109a1600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163383600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612262909392919063ffffffff16565b610b3f565b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181905550610a85600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1633610a3c600a610a2e60098761210a90919063ffffffff16565b61219090919063ffffffff16565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612262909392919063ffffffff16565b610b3e600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610af5600a610ae760018761210a90919063ffffffff16565b61219090919063ffffffff16565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612262909392919063ffffffff16565b5b3373ffffffffffffffffffffffffffffffffffffffff167fc083a1647e3ee591bf42b82564ffb4d16fdbb26068f0080da911c8d8300fd84a826040518082815260200191505060405180910390a25050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bec57600080fd5b81600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550919050565b600043905090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154431115610e09576000610cdd600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154436120c090919063ffffffff16565b9050600080600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201541115610dff57610dfc610dab600854610d9d600954610d8f87600b60008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015461210a90919063ffffffff16565b61210a90919063ffffffff16565b61219090919063ffffffff16565b600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546121da90919063ffffffff16565b90505b8092505050610e0e565b600090505b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e6e57600080fd5b81600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550919050565b33600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001544311156111d5576000610f97600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154436120c090919063ffffffff16565b90506000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015411156110fc576110b561106460085461105660095461104886600b60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015461210a90919063ffffffff16565b61210a90919063ffffffff16565b61219090919063ffffffff16565b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546121da90919063ffffffff16565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055505b43600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055508173ffffffffffffffffffffffffffffffffffffffff167fc083a1647e3ee591bf42b82564ffb4d16fdbb26068f0080da911c8d8300fd84a600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546040518082815260200191505060405180910390a2505b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101549050600a8110156112e3576000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506112de600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163383600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612262909392919063ffffffff16565b61147c565b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506113c2600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1633611379600a61136b60098761210a90919063ffffffff16565b61219090919063ffffffff16565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612262909392919063ffffffff16565b61147b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611432600a61142460018761210a90919063ffffffff16565b61219090919063ffffffff16565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612262909392919063ffffffff16565b5b3373ffffffffffffffffffffffffffffffffffffffff167fc083a1647e3ee591bf42b82564ffb4d16fdbb26068f0080da911c8d8300fd84a826040518082815260200191505060405180910390a2600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154831115611565576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806127eb6030913960400191505060405180910390fd5b61157a83600a546120c090919063ffffffff16565b600a819055506115d583600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201546120c090919063ffffffff16565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555061168c600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163385600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612262909392919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f41fc63c6fa869bdf6590d23b200f70c30f5460a4b717252b05f220d91c7e215d846040518082815260200191505060405180910390a2505050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201549050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461178657600080fd5b81600981905550919050565b33600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154431115611a72576000611834600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154436120c090919063ffffffff16565b90506000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201541115611999576119526119016008546118f36009546118e586600b60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015461210a90919063ffffffff16565b61210a90919063ffffffff16565b61219090919063ffffffff16565b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546121da90919063ffffffff16565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055505b43600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055508173ffffffffffffffffffffffffffffffffffffffff167fc083a1647e3ee591bf42b82564ffb4d16fdbb26068f0080da911c8d8300fd84a600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546040518082815260200191505060405180910390a2505b81600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611afc57600080fd5b505afa158015611b10573d6000803e3d6000fd5b505050506040513d6020811015611b2657600080fd5b810190808051906020019092919050505011611baa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f696e73756666696369656e742062616c616e636500000000000000000000000081525060200191505060405180910390fd5b81600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b158015611c5257600080fd5b505afa158015611c66573d6000803e3d6000fd5b505050506040513d6020811015611c7c57600080fd5b81019080805190602001909291905050501015611d01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f696e73756666696369656e7420616c6c6f77616e63657300000000000000000081525060200191505060405180910390fd5b611d3c611d2b6064611d1d60628661210a90919063ffffffff16565b61219090919063ffffffff16565b600a546121da90919063ffffffff16565b600a81905550611dbd611d6c6064611d5e60628661210a90919063ffffffff16565b61219090919063ffffffff16565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201546121da90919063ffffffff16565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020181905550611e7433600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612262909392919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167fc35acd5151e06aaa32df168a1fdd0b5f684afd7763a26404cd36a09cb671d93a83600a54604051808381526020018281526020019250505060405180910390a25050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f2b57600080fd5b81600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611fcc57600080fd5b81600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550919050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461206a57600080fd5b8060088190555050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050919050565b600061210283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612323565b905092915050565b60008083141561211d576000905061218a565b600082840290508284828161212e57fe5b0414612185576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806127ca6021913960400191505060405180910390fd5b809150505b92915050565b60006121d283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506123e3565b905092915050565b600080828401905083811015612258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b61231d846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506124a9565b50505050565b60008383111582906123d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561239557808201518184015260208101905061237a565b50505050905090810190601f1680156123c25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000808311829061248f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612454578082015181840152602081019050612439565b50505050905090810190601f1680156124815780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161249b57fe5b049050809150509392505050565b606061250b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166125989092919063ffffffff16565b90506000815111156125935780806020019051602081101561252c57600080fd5b8101908080519060200190929190505050612592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061281b602a913960400191505060405180910390fd5b5b505050565b60606125a784846000856125b0565b90509392505050565b60606125bb856127b6565b61262d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061267d578051825260208201915060208101905060208303925061265a565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146126df576040519150601f19603f3d011682016040523d82523d6000602084013e6126e4565b606091505b509150915081156126f95780925050506127ae565b60008151111561270c5780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612773578082015181840152602081019050612758565b50505050905090810190601f1680156127a05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b600080823b90506000811191505091905056fe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77776974686472617720616d6f756e74206d757374206e6f74206d6f7265207468616e207374616b656420616d6f756e745361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a264697066735822122048bba4712b9770737641c7d7bab2ca303a027ceda04811ad8cda78116c2bf10264736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806391542e5911610097578063b1de100d11610066578063b1de100d14610396578063b907ab8f146103ee578063db260b3e14610446578063e60df1b614610474576100f5565b806391542e59146102a057806394ac2f77146102ce578063afc2afa614610326578063b09a02b514610368576100f5565b80635e382971116100d35780635e3829711461017a5780637f6c6f10146101d25780638a67f4bf146101f05780638c9fdaea14610248576100f5565b80630bf4d8dd146100fa5780633a8d72bd146101525780633d18b91214610170575b600080fd5b61013c6004803603602081101561011057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506104cc565b6040518082815260200191505060405180910390f35b61015a6105ae565b6040518082815260200191505060405180910390f35b6101786105b8565b005b6101bc6004803603602081101561019057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b91565b6040518082815260200191505060405180910390f35b6101da610c32565b6040518082815260200191505060405180910390f35b6102326004803603602081101561020657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c3a565b6040518082815260200191505060405180910390f35b61028a6004803603602081101561025e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e13565b6040518082815260200191505060405180910390f35b6102cc600480360360208110156102b657600080fd5b8101908080359060200190929190505050610ef5565b005b610310600480360360208110156102e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116df565b6040518082815260200191505060405180910390f35b6103526004803603602081101561033c57600080fd5b810190808035906020019092919050505061172b565b6040518082815260200191505060405180910390f35b6103946004803603602081101561037e57600080fd5b8101908080359060200190929190505050611792565b005b6103d8600480360360208110156103ac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ed0565b6040518082815260200191505060405180910390f35b6104306004803603602081101561040457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f71565b6040518082815260200191505060405180910390f35b6104726004803603602081101561045c57600080fd5b8101908080359060200190929190505050612012565b005b6104b66004803603602081101561048a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612074565b6040518082815260200191505060405180910390f35b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461052757600080fd5b81600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550919050565b6000600a54905090565b33600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015443111561089857600061065a600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154436120c090919063ffffffff16565b90506000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015411156107bf5761077861072760085461071960095461070b86600b60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015461210a90919063ffffffff16565b61210a90919063ffffffff16565b61219090919063ffffffff16565b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546121da90919063ffffffff16565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055505b43600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055508173ffffffffffffffffffffffffffffffffffffffff167fc083a1647e3ee591bf42b82564ffb4d16fdbb26068f0080da911c8d8300fd84a600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546040518082815260200191505060405180910390a2505b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101549050600a8110156109a6576000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506109a1600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163383600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612262909392919063ffffffff16565b610b3f565b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181905550610a85600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1633610a3c600a610a2e60098761210a90919063ffffffff16565b61219090919063ffffffff16565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612262909392919063ffffffff16565b610b3e600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610af5600a610ae760018761210a90919063ffffffff16565b61219090919063ffffffff16565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612262909392919063ffffffff16565b5b3373ffffffffffffffffffffffffffffffffffffffff167fc083a1647e3ee591bf42b82564ffb4d16fdbb26068f0080da911c8d8300fd84a826040518082815260200191505060405180910390a25050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bec57600080fd5b81600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550919050565b600043905090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154431115610e09576000610cdd600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154436120c090919063ffffffff16565b9050600080600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201541115610dff57610dfc610dab600854610d9d600954610d8f87600b60008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015461210a90919063ffffffff16565b61210a90919063ffffffff16565b61219090919063ffffffff16565b600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546121da90919063ffffffff16565b90505b8092505050610e0e565b600090505b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e6e57600080fd5b81600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550919050565b33600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001544311156111d5576000610f97600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154436120c090919063ffffffff16565b90506000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015411156110fc576110b561106460085461105660095461104886600b60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015461210a90919063ffffffff16565b61210a90919063ffffffff16565b61219090919063ffffffff16565b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546121da90919063ffffffff16565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055505b43600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055508173ffffffffffffffffffffffffffffffffffffffff167fc083a1647e3ee591bf42b82564ffb4d16fdbb26068f0080da911c8d8300fd84a600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546040518082815260200191505060405180910390a2505b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101549050600a8110156112e3576000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506112de600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163383600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612262909392919063ffffffff16565b61147c565b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506113c2600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1633611379600a61136b60098761210a90919063ffffffff16565b61219090919063ffffffff16565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612262909392919063ffffffff16565b61147b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611432600a61142460018761210a90919063ffffffff16565b61219090919063ffffffff16565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612262909392919063ffffffff16565b5b3373ffffffffffffffffffffffffffffffffffffffff167fc083a1647e3ee591bf42b82564ffb4d16fdbb26068f0080da911c8d8300fd84a826040518082815260200191505060405180910390a2600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154831115611565576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806127eb6030913960400191505060405180910390fd5b61157a83600a546120c090919063ffffffff16565b600a819055506115d583600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201546120c090919063ffffffff16565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555061168c600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163385600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612262909392919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f41fc63c6fa869bdf6590d23b200f70c30f5460a4b717252b05f220d91c7e215d846040518082815260200191505060405180910390a2505050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201549050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461178657600080fd5b81600981905550919050565b33600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154431115611a72576000611834600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154436120c090919063ffffffff16565b90506000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201541115611999576119526119016008546118f36009546118e586600b60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015461210a90919063ffffffff16565b61210a90919063ffffffff16565b61219090919063ffffffff16565b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546121da90919063ffffffff16565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055505b43600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055508173ffffffffffffffffffffffffffffffffffffffff167fc083a1647e3ee591bf42b82564ffb4d16fdbb26068f0080da911c8d8300fd84a600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546040518082815260200191505060405180910390a2505b81600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611afc57600080fd5b505afa158015611b10573d6000803e3d6000fd5b505050506040513d6020811015611b2657600080fd5b810190808051906020019092919050505011611baa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f696e73756666696369656e742062616c616e636500000000000000000000000081525060200191505060405180910390fd5b81600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b158015611c5257600080fd5b505afa158015611c66573d6000803e3d6000fd5b505050506040513d6020811015611c7c57600080fd5b81019080805190602001909291905050501015611d01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f696e73756666696369656e7420616c6c6f77616e63657300000000000000000081525060200191505060405180910390fd5b611d3c611d2b6064611d1d60628661210a90919063ffffffff16565b61219090919063ffffffff16565b600a546121da90919063ffffffff16565b600a81905550611dbd611d6c6064611d5e60628661210a90919063ffffffff16565b61219090919063ffffffff16565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201546121da90919063ffffffff16565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020181905550611e7433600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612262909392919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167fc35acd5151e06aaa32df168a1fdd0b5f684afd7763a26404cd36a09cb671d93a83600a54604051808381526020018281526020019250505060405180910390a25050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f2b57600080fd5b81600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611fcc57600080fd5b81600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550919050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461206a57600080fd5b8060088190555050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050919050565b600061210283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612323565b905092915050565b60008083141561211d576000905061218a565b600082840290508284828161212e57fe5b0414612185576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806127ca6021913960400191505060405180910390fd5b809150505b92915050565b60006121d283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506123e3565b905092915050565b600080828401905083811015612258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b61231d846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506124a9565b50505050565b60008383111582906123d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561239557808201518184015260208101905061237a565b50505050905090810190601f1680156123c25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000808311829061248f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612454578082015181840152602081019050612439565b50505050905090810190601f1680156124815780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161249b57fe5b049050809150509392505050565b606061250b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166125989092919063ffffffff16565b90506000815111156125935780806020019051602081101561252c57600080fd5b8101908080519060200190929190505050612592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061281b602a913960400191505060405180910390fd5b5b505050565b60606125a784846000856125b0565b90509392505050565b60606125bb856127b6565b61262d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061267d578051825260208201915060208101905060208303925061265a565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146126df576040519150601f19603f3d011682016040523d82523d6000602084013e6126e4565b606091505b509150915081156126f95780925050506127ae565b60008151111561270c5780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612773578082015181840152602081019050612758565b50505050905090810190601f1680156127a05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b600080823b90506000811191505091905056fe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77776974686472617720616d6f756e74206d757374206e6f74206d6f7265207468616e207374616b656420616d6f756e745361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a264697066735822122048bba4712b9770737641c7d7bab2ca303a027ceda04811ad8cda78116c2bf10264736f6c634300060c0033
Deployed Bytecode Sourcemap
103:6225:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2594:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3860:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5727:599;;;:::i;:::-;;3079:137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3466:89;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3961:677;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2765:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5233:488;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;3713:141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2468:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4644:583;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;3222:137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2936;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3365:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;3561:146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2594:161;2665:7;1104:5;;;;;;;;;;;1090:19;;:10;:19;;;1082:28;;;;;;2697:11:::1;2684:10;;:24;;;;;;;;;;;;;;;;;;2736:11;2718:8;;:30;;;;;;;;;;;;;;;;;;2594:161:::0;;;:::o;3860:95::-;3907:7;3933:15;;3926:22;;3860:95;:::o;5727:599::-;5775:10;1209:15;:24;1225:7;1209:24;;;;;;;;;;;;;;;:41;;;1194:12;:56;1190:671;;;1266:20;1289:72;1319:15;:24;1335:7;1319:24;;;;;;;;;;;;;;;:41;;;1289:12;:29;;:72;;;;:::i;:::-;1266:95;;1417:1;1380:15;:24;1396:7;1380:24;;;;;;;;;;;;;;;:34;;;:38;1376:335;;;1473:223;1548:147;1684:10;;1548:110;1647:10;;1548:73;1608:12;1548:15;:24;1564:7;1548:24;;;;;;;;;;;;;;;:34;;;:59;;:73;;;;:::i;:::-;:98;;:110;;;;:::i;:::-;:135;;:147;;;;:::i;:::-;1473:15;:24;1489:7;1473:24;;;;;;;;;;;;;;;:32;;;:53;;:223;;;;:::i;:::-;1438:15;:24;1454:7;1438:24;;;;;;;;;;;;;;;:32;;:258;;;;1376:335;1769:12;1725:15;:24;1741:7;1725:24;;;;;;;;;;;;;;;:41;;:56;;;;1808:7;1800:50;;;1817:15;:24;1833:7;1817:24;;;;;;;;;;;;;;;:32;;;1800:50;;;;;;;;;;;;;;;;;;1190:671;;5797:14:::1;5814:15;:27;5830:10;5814:27;;;;;;;;;;;;;;;:35;;;5797:52;;5872:2;5863:6;:11;5859:410;;;5928:1;5890:15;:27;5906:10;5890:27;;;;;;;;;;;;;;;:35;;:39;;;;5943:61;5969:14;;;;;;;;;;;5985:10;5997:6;5943:8;;;;;;;;;;;:25;;;;:61;;;;;;:::i;:::-;5859:410;;;6073:1;6035:15;:27;6051:10;6035:27;;;;;;;;;;;;;;;:35;;:39;;;;6088:76;6114:14;;;;;;;;;;;6130:10;6142:21;6160:2;6142:13;6153:1;6142:6;:10;;:13;;;;:::i;:::-;:17;;:21;;;;:::i;:::-;6088:8;;;;;;;;;;;:25;;;;:76;;;;;;:::i;:::-;6178:80;6204:14;;;;;;;;;;;6220;;;;;;;;;;;6236:21;6254:2;6236:13;6247:1;6236:6;:10;;:13;;;;:::i;:::-;:17;;:21;;;;:::i;:::-;6178:8;;;;;;;;;;;:25;;;;:80;;;;;;:::i;:::-;5859:410;6300:10;6292:27;;;6312:6;6292:27;;;;;;;;;;;;;;;;;;1870:1;5727:599:::0;:::o;3079:137::-;3158:7;1104:5;;;;;;;;;;;1090:19;;:10;:19;;;1082:28;;;;;;3194:15:::1;3177:14;;:32;;;;;;;;;;;;;;;;;;3079:137:::0;;;:::o;3466:89::-;3510:7;3536:12;3529:19;;3466:89;:::o;3961:677::-;4026:7;4064:15;:24;4080:7;4064:24;;;;;;;;;;;;;;;:41;;;4049:12;:56;4045:568;;;4121:20;4144:72;4174:15;:24;4190:7;4174:24;;;;;;;;;;;;;;;:41;;;4144:12;:29;;:72;;;;:::i;:::-;4121:95;;4231:15;4305:1;4268:15;:24;4284:7;4268:24;;;;;;;;;;;;;;;:34;;;:38;4264:310;;;4336:223;4411:147;4547:10;;4411:110;4510:10;;4411:73;4471:12;4411:15;:24;4427:7;4411:24;;;;;;;;;;;;;;;:34;;;:59;;:73;;;;:::i;:::-;:98;;:110;;;;:::i;:::-;:135;;:147;;;;:::i;:::-;4336:15;:24;4352:7;4336:24;;;;;;;;;;;;;;;:32;;;:53;;:223;;;;:::i;:::-;4326:233;;4264:310;4595:7;4588:14;;;;;;4045:568;4630:1;4623:8;;3961:677;;;;:::o;2765:161::-;2836:7;1104:5;;;;;;;;;;;1090:19;;:10;:19;;;1082:28;;;;;;2868:11:::1;2855:10;;:24;;;;;;;;;;;;;;;;;;2907:11;2889:8;;:30;;;;;;;;;;;;;;;;;;2765:161:::0;;;:::o;5233:488::-;5297:10;1209:15;:24;1225:7;1209:24;;;;;;;;;;;;;;;:41;;;1194:12;:56;1190:671;;;1266:20;1289:72;1319:15;:24;1335:7;1319:24;;;;;;;;;;;;;;;:41;;;1289:12;:29;;:72;;;;:::i;:::-;1266:95;;1417:1;1380:15;:24;1396:7;1380:24;;;;;;;;;;;;;;;:34;;;:38;1376:335;;;1473:223;1548:147;1684:10;;1548:110;1647:10;;1548:73;1608:12;1548:15;:24;1564:7;1548:24;;;;;;;;;;;;;;;:34;;;:59;;:73;;;;:::i;:::-;:98;;:110;;;;:::i;:::-;:135;;:147;;;;:::i;:::-;1473:15;:24;1489:7;1473:24;;;;;;;;;;;;;;;:32;;;:53;;:223;;;;:::i;:::-;1438:15;:24;1454:7;1438:24;;;;;;;;;;;;;;;:32;;:258;;;;1376:335;1769:12;1725:15;:24;1741:7;1725:24;;;;;;;;;;;;;;;:41;;:56;;;;1808:7;1800:50;;;1817:15;:24;1833:7;1817:24;;;;;;;;;;;;;;;:32;;;1800:50;;;;;;;;;;;;;;;;;;1190:671;;1918:14:::1;1935:15;:27;1951:10;1935:27;;;;;;;;;;;;;;;:35;;;1918:52;;1993:2;1984:6;:11;1980:410;;;2049:1;2011:15;:27;2027:10;2011:27;;;;;;;;;;;;;;;:35;;:39;;;;2064:61;2090:14;;;;;;;;;;;2106:10;2118:6;2064:8;;;;;;;;;;;:25;;;;:61;;;;;;:::i;:::-;1980:410;;;2194:1;2156:15;:27;2172:10;2156:27;;;;;;;;;;;;;;;:35;;:39;;;;2209:76;2235:14;;;;;;;;;;;2251:10;2263:21;2281:2;2263:13;2274:1;2263:6;:10;;:13;;;;:::i;:::-;:17;;:21;;;;:::i;:::-;2209:8;;;;;;;;;;;:25;;;;:76;;;;;;:::i;:::-;2299:80;2325:14;;;;;;;;;;;2341;;;;;;;;;;;2357:21;2375:2;2357:13;2368:1;2357:6;:10;;:13;;;;:::i;:::-;:17;;:21;;;;:::i;:::-;2299:8;;;;;;;;;;;:25;;;;:80;;;;;;:::i;:::-;1980:410;2421:10;2413:27;;;2433:6;2413:27;;;;;;;;;;;;;;;;;;5352:15:::2;:27;5368:10;5352:27;;;;;;;;;;;;;;;:37;;;5342:6;:47;;5334:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5470:27;5490:6;5470:15;;:19;;:27;;;;:::i;:::-;5452:15;:45;;;;5547:49;5589:6;5547:15;:27;5563:10;5547:27;;;;;;;;;;;;;;;:37;;;:41;;:49;;;;:::i;:::-;5507:15;:27;5523:10;5507:27;;;;;;;;;;;;;;;:37;;:89;;;;5606:61;5632:14;;;;;;;;;;;5648:10;5660:6;5606:8;;;;;;;;;;;:25;;;;:61;;;;;;:::i;:::-;5695:10;5682:32;;;5707:6;5682:32;;;;;;;;;;;;;;;;;;1870:1:::1;5233:488:::0;;:::o;3713:141::-;3786:7;3812:15;:25;3828:8;3812:25;;;;;;;;;;;;;;;:35;;;3805:42;;3713:141;;;:::o;2468:120::-;2538:7;1104:5;;;;;;;;;;;1090:19;;:10;:19;;;1082:28;;;;;;2570:11:::1;2557:10;:24;;;;2468:120:::0;;;:::o;4644:583::-;4705:10;1209:15;:24;1225:7;1209:24;;;;;;;;;;;;;;;:41;;;1194:12;:56;1190:671;;;1266:20;1289:72;1319:15;:24;1335:7;1319:24;;;;;;;;;;;;;;;:41;;;1289:12;:29;;:72;;;;:::i;:::-;1266:95;;1417:1;1380:15;:24;1396:7;1380:24;;;;;;;;;;;;;;;:34;;;:38;1376:335;;;1473:223;1548:147;1684:10;;1548:110;1647:10;;1548:73;1608:12;1548:15;:24;1564:7;1548:24;;;;;;;;;;;;;;;:34;;;:59;;:73;;;;:::i;:::-;:98;;:110;;;;:::i;:::-;:135;;:147;;;;:::i;:::-;1473:15;:24;1489:7;1473:24;;;;;;;;;;;;;;;:32;;;:53;;:223;;;;:::i;:::-;1438:15;:24;1454:7;1438:24;;;;;;;;;;;;;;;:32;;:258;;;;1376:335;1769:12;1725:15;:24;1741:7;1725:24;;;;;;;;;;;;;;;:41;;:56;;;;1808:7;1800:50;;;1817:15;:24;1833:7;1817:24;;;;;;;;;;;;;;;:32;;;1800:50;;;;;;;;;;;;;;;;;;1190:671;;4768:6:::1;4735:8;;;;;;;;;;;:18;;;4754:10;4735:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;:39;4727:72;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;4866:6;4817:8;;;;;;;;;;;:18;;;4836:10;4856:4;4817:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;:55;;4809:91;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;4928:44;4948:23;4967:3;4948:14;4959:2;4948:6;:10;;:14;;;;:::i;:::-;:18;;:23;;;;:::i;:::-;4928:15;;:19;;:44;;;;:::i;:::-;4910:15;:62;;;;5022:66;5064:23;5083:3;5064:14;5075:2;5064:6;:10;;:14;;;;:::i;:::-;:18;;:23;;;;:::i;:::-;5022:15;:27;5038:10;5022:27;;;;;;;;;;;;;;;:37;;;:41;;:66;;;;:::i;:::-;4982:15;:27;4998:10;4982:27;;;;;;;;;;;;;;;:37;;:106;;;;5098:61;5124:10;5136:14;;;;;;;;;;;5152:6;5098:8;;;;;;;;;;;:25;;;;:61;;;;;;:::i;:::-;5184:10;5174:46;;;5196:6;5204:15;;5174:46;;;;;;;;;;;;;;;;;;;;;;;;4644:583:::0;;:::o;3222:137::-;3301:7;1104:5;;;;;;;;;;;1090:19;;:10;:19;;;1082:28;;;;;;3337:15:::1;3320:14;;:32;;;;;;;;;;;;;;;;;;3222:137:::0;;;:::o;2936:::-;3015:7;1104:5;;;;;;;;;;;1090:19;;:10;:19;;;1082:28;;;;;;3051:15:::1;3034:14;;:32;;;;;;;;;;;;;;;;;;2936:137:::0;;;:::o;3365:95::-;1104:5;;;;;;;;;;1090:19;;:10;:19;;;1082:28;;;;;;3446:7:::1;3433:10;:20;;;;3365:95:::0;:::o;3561:146::-;3632:7;3658:15;:25;3674:8;3658:25;;;;;;;;;;;;;;;:42;;;3651:49;;3561:146;;;:::o;1320:134:6:-;1378:7;1404:43;1408:1;1411;1404:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1397:50;;1320:134;;;;:::o;2179:459::-;2237:7;2483:1;2478;:6;2474:45;;;2507:1;2500:8;;;;2474:45;2529:9;2545:1;2541;:5;2529:17;;2573:1;2568;2564;:5;;;;;;:10;2556:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2630:1;2623:8;;;2179:459;;;;;:::o;3100:130::-;3158:7;3184:39;3188:1;3191;3184:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;3177:46;;3100:130;;;;:::o;873:176::-;931:7;950:9;966:1;962;:5;950:17;;990:1;985;:6;;977:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1041:1;1034:8;;;873:176;;;;:::o;913:203:5:-;1013:96;1033:5;1063:27;;;1092:4;1098:2;1102:5;1040:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1013:19;:96::i;:::-;913:203;;;;:::o;1745:187:6:-;1831:7;1863:1;1858;:6;;1866:12;1850:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1889:9;1905:1;1901;:5;1889:17;;1924:1;1917:8;;;1745:187;;;;;:::o;3712:272::-;3798:7;3829:1;3825;:5;3832:12;3817:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3855:9;3871:1;3867;:5;;;;;;3855:17;;3976:1;3969:8;;;3712:272;;;;;:::o;2995:751:5:-;3414:23;3440:69;3468:4;3440:69;;;;;;;;;;;;;;;;;3448:5;3440:27;;;;:69;;;;;:::i;:::-;3414:95;;3543:1;3523:10;:17;:21;3519:221;;;3663:10;3652:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3644:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3519:221;2995:751;;;:::o;3626:194:0:-;3729:12;3760:53;3783:6;3791:4;3797:1;3800:12;3760:22;:53::i;:::-;3753:60;;3626:194;;;;;:::o;4973:958::-;5103:12;5135:18;5146:6;5135:10;:18::i;:::-;5127:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5258:12;5272:23;5299:6;:11;;5319:8;5330:4;5299:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5257:78;;;;5349:7;5345:580;;;5379:10;5372:17;;;;;;5345:580;5510:1;5490:10;:17;:21;5486:429;;;5748:10;5742:17;5808:15;5795:10;5791:2;5787:19;5780:44;5697:145;5887:12;5880:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4973:958;;;;;;;:::o;771:413::-;831:4;1034:12;1143:7;1131:20;1123:28;;1176:1;1169:4;:8;1162:15;;;771:413;;;:::o
Swarm Source
ipfs://48bba4712b9770737641c7d7bab2ca303a027ceda04811ad8cda78116c2bf102
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ 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.