Source Code
Latest 25 from a total of 4,509 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Deposit | 306619836 | 343 days ago | IN | 0 ETH | 0.00000077 | ||||
| Withdraw | 271172936 | 447 days ago | IN | 0 ETH | 0.00000102 | ||||
| Withdraw | 265219954 | 464 days ago | IN | 0 ETH | 0.00000112 | ||||
| Deposit | 265219739 | 464 days ago | IN | 0 ETH | 0.00000123 | ||||
| Deposit | 194380099 | 670 days ago | IN | 0 ETH | 0.00000124 | ||||
| Withdraw | 187746528 | 690 days ago | IN | 0 ETH | 0.00018757 | ||||
| Deposit | 187746431 | 690 days ago | IN | 0 ETH | 0.0001841 | ||||
| Withdraw | 177967144 | 719 days ago | IN | 0 ETH | 0.00011971 | ||||
| Deposit | 177966967 | 719 days ago | IN | 0 ETH | 0.00011633 | ||||
| Withdraw | 173879353 | 732 days ago | IN | 0 ETH | 0.00005115 | ||||
| Deposit | 173877131 | 732 days ago | IN | 0 ETH | 0.0000607 | ||||
| Deposit | 173741355 | 732 days ago | IN | 0 ETH | 0.00004726 | ||||
| Deposit | 169741122 | 744 days ago | IN | 0 ETH | 0.00006788 | ||||
| Withdraw | 169180598 | 746 days ago | IN | 0 ETH | 0.00011769 | ||||
| Deposit | 169180453 | 746 days ago | IN | 0 ETH | 0.0001189 | ||||
| Withdraw | 168334592 | 748 days ago | IN | 0 ETH | 0.00004786 | ||||
| Deposit | 167736210 | 750 days ago | IN | 0 ETH | 0.0000479 | ||||
| Withdraw | 166725998 | 753 days ago | IN | 0 ETH | 0.0000624 | ||||
| Withdraw | 165172902 | 758 days ago | IN | 0 ETH | 0.00003437 | ||||
| Withdraw | 161314572 | 769 days ago | IN | 0 ETH | 0.00010727 | ||||
| Deposit | 158024263 | 779 days ago | IN | 0 ETH | 0.00007736 | ||||
| Withdraw | 151059126 | 801 days ago | IN | 0 ETH | 0.00010501 | ||||
| Deposit | 150069846 | 804 days ago | IN | 0 ETH | 0.00016912 | ||||
| Emergency Withdr... | 149773318 | 805 days ago | IN | 0 ETH | 0.00004337 | ||||
| Deposit | 149437633 | 806 days ago | IN | 0 ETH | 0.00007562 |
Latest 1 internal transaction
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 72505773 | 1040 days ago | Contract Creation | 0 ETH |
Cross-Chain Transactions
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x37745BAB...f49fC9Aa9 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
SmartChefInitializable
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/**
*Submitted for verification at Arbiscan.io on 2023-03-14
*/
// File: @openzeppelin/contracts/utils/Context.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
//import "hardhat/console.sol";
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 Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
/*
* @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 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) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(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");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/utils/ReentrancyGuard.sol
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and make it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
// File: @openzeppelin/contracts/utils/Address.sol
/**
* @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;
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");
(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");
(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");
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(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
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.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 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'
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) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_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
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
// File: contracts/SmartChefInitializable.sol
contract SmartChefInitializable is Ownable, ReentrancyGuard {
using SafeERC20 for IERC20Metadata;
// The address of the smart chef factory
address public immutable SMART_CHEF_FACTORY;
// Whether it is initialized
bool public isInitialized;
// Accrued token per share
uint256 public accTokenPerShare;
// The block number when ARX mining ends.
uint256 public bonusEndBlock;
// The block number when ARX mining starts.
uint256 public startBlock;
// The block number of the last pool update
uint256 public lastRewardBlock;
// ARX tokens created per block.
uint256 public rewardPerBlock;
// The precision factor
uint256 public PRECISION_FACTOR;
// The reward token
IERC20Metadata public rewardToken;
// The staked token
IERC20Metadata public stakedToken;
// The address that should receive deposit/withdrawal fees
address treasury;
// The fee that is associated with a deposit
uint256 depositFee = 100;
// Info of each user that stakes tokens (stakedToken)
mapping(address => UserInfo) public userInfo;
struct UserInfo {
uint256 amount; // How many staked tokens the user has provided
uint256 rewardDebt; // Reward debt
}
event Deposit(address indexed user, uint256 amount);
event EmergencyWithdraw(address indexed user, uint256 amount);
event NewStartAndEndBlocks(uint256 startBlock, uint256 endBlock);
event NewRewardPerBlock(uint256 rewardPerBlock);
event RewardsStop(uint256 blockNumber);
event TokenRecovery(address indexed token, uint256 amount);
event Withdraw(address indexed user, uint256 amount);
constructor() {
SMART_CHEF_FACTORY = msg.sender;
}
/*
* @notice Initialize the contract
* @param _stakedToken: staked token address
* @param _rewardToken: reward token address
* @param _rewardPerBlock: reward per block (in rewardToken)
* @param _startBlock: start block
* @param _bonusEndBlock: end block
* @param _admin: admin address with ownership
*/
function initialize(
IERC20Metadata _stakedToken,
IERC20Metadata _rewardToken,
uint256 _rewardPerBlock,
uint256 _startBlock,
uint256 _bonusEndBlock,
address _admin,
address _treasury
) external {
require(!isInitialized, "Already initialized");
require(msg.sender == SMART_CHEF_FACTORY, "Not factory");
// Make this contract initialized
isInitialized = true;
stakedToken = _stakedToken;
rewardToken = _rewardToken;
rewardPerBlock = _rewardPerBlock;
startBlock = _startBlock;
bonusEndBlock = _bonusEndBlock;
treasury = _treasury;
uint256 decimalsRewardToken = uint256(rewardToken.decimals());
require(decimalsRewardToken < 30, "Must be less than 30");
PRECISION_FACTOR = uint256(10**(uint256(30) - decimalsRewardToken));
// Set the lastRewardBlock as the startBlock
lastRewardBlock = startBlock;
// Transfer ownership to the admin address who becomes owner of the contract
transferOwnership(_admin);
}
/*
* @notice Deposit staked tokens and collect reward tokens (if any)
* @param _amount: amount to withdraw (in rewardToken)
*/
function deposit(uint256 _amount) external nonReentrant {
UserInfo storage user = userInfo[msg.sender];
_updatePool();
if (user.amount > 0) {
uint256 pending = (user.amount * accTokenPerShare) / PRECISION_FACTOR - user.rewardDebt;
if (pending > 0) {
if (pending > rewardToken.balanceOf(address(this)) && rewardToken.balanceOf(address(this)) > 0) {
rewardToken.safeTransfer(address(msg.sender), rewardToken.balanceOf(address(this)));
} else if (pending <= rewardToken.balanceOf(address(this))) {
rewardToken.safeTransfer(address(msg.sender), pending);
}
}
}
if (_amount > 0) {
stakedToken.safeTransferFrom(address(msg.sender), address(this), _amount);
uint256 feeAmount = _amount/depositFee;
_amount = _amount - feeAmount;
user.amount = user.amount + _amount;
stakedToken.safeTransfer(treasury, feeAmount);
}
user.rewardDebt = (user.amount * accTokenPerShare) / PRECISION_FACTOR;
emit Deposit(msg.sender, _amount);
}
/*
* @notice Withdraw staked tokens and collect reward tokens
* @param _amount: amount to withdraw (in rewardToken)
*/
function withdraw(uint256 _amount) external nonReentrant {
UserInfo storage user = userInfo[msg.sender];
require(user.amount >= _amount, "Amount to withdraw too high");
_updatePool();
uint256 pending = (user.amount * accTokenPerShare) / PRECISION_FACTOR - user.rewardDebt;
if (_amount > 0) {
user.amount = user.amount - _amount;
stakedToken.safeTransfer(address(msg.sender), _amount);
}
if (pending > 0) {
if (pending > rewardToken.balanceOf(address(this)) && rewardToken.balanceOf(address(this)) > 0) {
rewardToken.safeTransfer(address(msg.sender), rewardToken.balanceOf(address(this)));
} else if (pending <= rewardToken.balanceOf(address(this))) {
rewardToken.safeTransfer(address(msg.sender), pending);
}
}
user.rewardDebt = (user.amount * accTokenPerShare) / PRECISION_FACTOR;
emit Withdraw(msg.sender, _amount);
}
/*
* @notice Withdraw staked tokens without caring about rewards rewards
* @dev Needs to be for emergency.
*/
function emergencyWithdraw() external nonReentrant {
UserInfo storage user = userInfo[msg.sender];
uint256 amountToTransfer = user.amount;
user.amount = 0;
user.rewardDebt = 0;
if (amountToTransfer > 0) {
stakedToken.safeTransfer(address(msg.sender), amountToTransfer);
}
emit EmergencyWithdraw(msg.sender, user.amount);
}
/*
* @notice Stop rewards
* @dev Only callable by owner. Needs to be for emergency.
*/
function emergencyRewardWithdraw(uint256 _amount) external onlyOwner {
rewardToken.safeTransfer(address(msg.sender), _amount);
}
/**
* @notice Allows the owner to recover tokens sent to the contract by mistake
* @param _token: token address
* @dev Callable by owner
*/
function recoverToken(address _token) external onlyOwner {
require(_token != address(stakedToken), "Operations: Cannot recover staked token");
require(_token != address(rewardToken), "Operations: Cannot recover reward token");
uint256 balance = IERC20Metadata(_token).balanceOf(address(this));
require(balance != 0, "Operations: Cannot recover zero balance");
IERC20Metadata(_token).safeTransfer(address(msg.sender), balance);
emit TokenRecovery(_token, balance);
}
/*
* @notce update the treasury's address
* @param _treasury: New address that should receive treasury fees
*/
function setTreasury(address _treasury) external onlyOwner {
require(_treasury != address(0), "Address cannot be null");
require(_treasury != treasury, "Address provided is the same as current");
treasury = _treasury;
}
/*
* @notice Stop rewards
* @dev Only callable by owner
*/
function stopReward() external onlyOwner {
bonusEndBlock = block.number;
}
/*
* @notice Update reward per block
* @dev Only callable by owner.
* @param _rewardPerBlock: the reward per block
*/
function updateRewardPerBlock(uint256 _rewardPerBlock) external onlyOwner {
rewardPerBlock = _rewardPerBlock;
emit NewRewardPerBlock(_rewardPerBlock);
}
/**
* @notice It allows the admin to update start and end blocks
* @dev This function is only callable by owner.
* @param _startBlock: the new start block
* @param _bonusEndBlock: the new end block
*/
function updateStartAndEndBlocks(uint256 _startBlock, uint256 _bonusEndBlock) external onlyOwner {
require(block.number < startBlock, "Pool has started");
require(_startBlock < _bonusEndBlock, "New startBlock must be lower than new endBlock");
require(block.number < _startBlock, "New startBlock must be higher than current block");
startBlock = _startBlock;
bonusEndBlock = _bonusEndBlock;
// Set the lastRewardBlock as the startBlock
lastRewardBlock = startBlock;
emit NewStartAndEndBlocks(_startBlock, _bonusEndBlock);
}
/*
* @notice View function to see pending reward on frontend.
* @param _user: user address
* @return Pending reward for a given user
*/
function pendingReward(address _user) external view returns (uint256) {
UserInfo storage user = userInfo[_user];
uint256 stakedTokenSupply = stakedToken.balanceOf(address(this));
if (block.timestamp > lastRewardBlock && stakedTokenSupply != 0) {
uint256 multiplier = _getMultiplier(lastRewardBlock, block.timestamp);
uint256 ARXReward = multiplier * rewardPerBlock;
uint256 adjustedTokenPerShare = accTokenPerShare + (ARXReward * PRECISION_FACTOR) / stakedTokenSupply;
return (user.amount * adjustedTokenPerShare) / PRECISION_FACTOR - user.rewardDebt;
} else {
return (user.amount * accTokenPerShare) / PRECISION_FACTOR - user.rewardDebt;
}
}
/*
* @notice Update reward variables of the given pool to be up-to-date.
*/
function _updatePool() internal {
if (block.timestamp <= lastRewardBlock) {
return;
}
uint256 stakedTokenSupply = stakedToken.balanceOf(address(this));
if (stakedTokenSupply == 0) {
lastRewardBlock = block.timestamp;
return;
}
uint256 multiplier = _getMultiplier(lastRewardBlock, block.timestamp);
uint256 ARXReward = multiplier * rewardPerBlock;
accTokenPerShare = accTokenPerShare + (ARXReward * PRECISION_FACTOR) / stakedTokenSupply;
lastRewardBlock = block.timestamp;
}
/*
* @notice Return reward multiplier over the given _from to _to .
* @param _from: time to start
* @param _to: time to finish
*/
function _getMultiplier(uint256 _from, uint256 _to) internal view returns (uint256) {
if (_to <= bonusEndBlock) {
return _to - _from;
} else if (_from >= bonusEndBlock) {
return 0;
} else {
return bonusEndBlock - _from;
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"rewardPerBlock","type":"uint256"}],"name":"NewRewardPerBlock","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"startBlock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endBlock","type":"uint256"}],"name":"NewStartAndEndBlocks","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"RewardsStop","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokenRecovery","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"PRECISION_FACTOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SMART_CHEF_FACTORY","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accTokenPerShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bonusEndBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"emergencyRewardWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20Metadata","name":"_stakedToken","type":"address"},{"internalType":"contract IERC20Metadata","name":"_rewardToken","type":"address"},{"internalType":"uint256","name":"_rewardPerBlock","type":"uint256"},{"internalType":"uint256","name":"_startBlock","type":"uint256"},{"internalType":"uint256","name":"_bonusEndBlock","type":"uint256"},{"internalType":"address","name":"_admin","type":"address"},{"internalType":"address","name":"_treasury","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastRewardBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"pendingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"recoverToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakedToken","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stopReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardPerBlock","type":"uint256"}],"name":"updateRewardPerBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startBlock","type":"uint256"},{"internalType":"uint256","name":"_bonusEndBlock","type":"uint256"}],"name":"updateStartAndEndBlocks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
0x60a06040526064600c5534801561001557600080fd5b50610026610021610036565b61003a565b600180553360601b60805261008a565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60805160601c611ec66100af600039600081816103af0152610f710152611ec66000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80638f662915116100de578063cc7a262e11610097578063f0f4426011610071578063f0f44260146102b8578063f2fde38b146102cb578063f40f0f52146102de578063f7c618c1146102f157610173565b8063cc7a262e146102a0578063ccd34cd5146102a8578063db2e21bc146102b057610173565b80638f6629151461024f5780639513997f146102575780639be65a601461026a578063a9f8d1811461027d578063b6b55f2514610285578063bd6171911461029857610173565b8063392e53cd11610130578063392e53cd1461020557806348cd4cb11461021a578063715018a61461022257806380dc06721461022a5780638ae39cac146102325780638da5cb5b1461023a57610173565b806301f8a976146101785780630729da0b1461018d5780631959a002146101a05780631aed6553146101ca5780632e1a7d4d146101df5780633279beab146101f2575b600080fd5b61018b61018636600461173f565b6102f9565b005b61018b61019b3660046116c5565b610381565b6101b36101ae366004611689565b61050f565b6040516101c1929190611ca9565b60405180910390f35b6101d2610528565b6040516101c19190611ca0565b61018b6101ed36600461173f565b61052e565b61018b61020036600461173f565b6108a2565b61020d6108fb565b6040516101c1919061181e565b6101d2610904565b61018b61090a565b61018b610955565b6101d261099a565b6102426109a0565b6040516101c191906117cd565b6101d26109af565b61018b61026536600461176f565b6109b5565b61018b610278366004611689565b610aa0565b6101d2610c32565b61018b61029336600461173f565b610c38565b610242610f6f565b610242610f93565b6101d2610fa2565b61018b610fa8565b61018b6102c6366004611689565b61103e565b61018b6102d9366004611689565b6110f3565b6101d26102ec366004611689565b611161565b6102426112c8565b6103016112d7565b6001600160a01b03166103126109a0565b6001600160a01b0316146103415760405162461bcd60e51b815260040161033890611a27565b60405180910390fd5b60078190556040517f0c4d677eef92893ac7ec52faf8140fc6c851ab4736302b4f3a89dfb20696a0df90610376908390611ca0565b60405180910390a150565b60025460ff16156103a45760405162461bcd60e51b815260040161033890611b11565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146103ec5760405162461bcd60e51b815260040161033890611c7b565b6002805460ff19166001179055600a80546001600160a01b03808a166001600160a01b031992831617909255600980548984169083161790819055600788905560058790556004868155600b80548686169416939093179092556040805163313ce56760e01b81529051600094929092169263313ce567928282019260209290829003018186803b15801561048057600080fd5b505afa158015610494573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104b89190611790565b60ff169050601e81106104dd5760405162461bcd60e51b815260040161033890611bcc565b6104e881601e611e22565b6104f390600a611d35565b600855600554600655610505836110f3565b5050505050505050565b600d602052600090815260409020805460019091015482565b60045481565b600260015414156105515760405162461bcd60e51b815260040161033890611c44565b6002600155336000908152600d6020526040902080548211156105865760405162461bcd60e51b815260040161033890611aa3565b61058e6112db565b6000816001015460085460035484600001546105aa9190611e03565b6105b49190611ccf565b6105be9190611e22565b905082156105ec5781546105d3908490611e22565b8255600a546105ec906001600160a01b031633856113cf565b801561083e576009546040516370a0823160e01b81526001600160a01b03909116906370a08231906106229030906004016117cd565b60206040518083038186803b15801561063a57600080fd5b505afa15801561064e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106729190611757565b811180156106fe57506009546040516370a0823160e01b81526000916001600160a01b0316906370a08231906106ac9030906004016117cd565b60206040518083038186803b1580156106c457600080fd5b505afa1580156106d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106fc9190611757565b115b156107a1576009546040516370a0823160e01b815261079c9133916001600160a01b03909116906370a08231906107399030906004016117cd565b60206040518083038186803b15801561075157600080fd5b505afa158015610765573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107899190611757565b6009546001600160a01b031691906113cf565b61083e565b6009546040516370a0823160e01b81526001600160a01b03909116906370a08231906107d19030906004016117cd565b60206040518083038186803b1580156107e957600080fd5b505afa1580156107fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108219190611757565b811161083e5760095461083e906001600160a01b031633836113cf565b60085460035483546108509190611e03565b61085a9190611ccf565b600183015560405133907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a942436490610891908690611ca0565b60405180910390a250506001805550565b6108aa6112d7565b6001600160a01b03166108bb6109a0565b6001600160a01b0316146108e15760405162461bcd60e51b815260040161033890611a27565b6009546108f8906001600160a01b031633836113cf565b50565b60025460ff1681565b60055481565b6109126112d7565b6001600160a01b03166109236109a0565b6001600160a01b0316146109495760405162461bcd60e51b815260040161033890611a27565b610953600061142a565b565b61095d6112d7565b6001600160a01b031661096e6109a0565b6001600160a01b0316146109945760405162461bcd60e51b815260040161033890611a27565b43600455565b60075481565b6000546001600160a01b031690565b60035481565b6109bd6112d7565b6001600160a01b03166109ce6109a0565b6001600160a01b0316146109f45760405162461bcd60e51b815260040161033890611a27565b6005544310610a155760405162461bcd60e51b8152600401610338906118e9565b808210610a345760405162461bcd60e51b815260040161033890611943565b814310610a535760405162461bcd60e51b8152600401610338906119d7565b6005829055600481905560068290556040517f7cd0ab87d19036f3dfadadb232c78aa4879dda3f0c994a9d637532410ee2ce0690610a949084908490611ca9565b60405180910390a15050565b610aa86112d7565b6001600160a01b0316610ab96109a0565b6001600160a01b031614610adf5760405162461bcd60e51b815260040161033890611a27565b600a546001600160a01b0382811691161415610b0d5760405162461bcd60e51b815260040161033890611b85565b6009546001600160a01b0382811691161415610b3b5760405162461bcd60e51b815260040161033890611a5c565b6040516370a0823160e01b81526000906001600160a01b038316906370a0823190610b6a9030906004016117cd565b60206040518083038186803b158015610b8257600080fd5b505afa158015610b96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bba9190611757565b905080610bd95760405162461bcd60e51b81526004016103389061185c565b610bed6001600160a01b03831633836113cf565b816001600160a01b03167f14f11966a996e0629572e51064726d2057a80fbd34efc066682c06a71dbb6e9882604051610c269190611ca0565b60405180910390a25050565b60065481565b60026001541415610c5b5760405162461bcd60e51b815260040161033890611c44565b6002600155336000908152600d60205260409020610c776112db565b805415610ea157600081600101546008546003548460000154610c9a9190611e03565b610ca49190611ccf565b610cae9190611e22565b90508015610e9f576009546040516370a0823160e01b81526001600160a01b03909116906370a0823190610ce69030906004016117cd565b60206040518083038186803b158015610cfe57600080fd5b505afa158015610d12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d369190611757565b81118015610dc257506009546040516370a0823160e01b81526000916001600160a01b0316906370a0823190610d709030906004016117cd565b60206040518083038186803b158015610d8857600080fd5b505afa158015610d9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc09190611757565b115b15610e02576009546040516370a0823160e01b8152610dfd9133916001600160a01b03909116906370a08231906107399030906004016117cd565b610e9f565b6009546040516370a0823160e01b81526001600160a01b03909116906370a0823190610e329030906004016117cd565b60206040518083038186803b158015610e4a57600080fd5b505afa158015610e5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e829190611757565b8111610e9f57600954610e9f906001600160a01b031633836113cf565b505b8115610f0c57600a54610ebf906001600160a01b031633308561147a565b6000600c5483610ecf9190611ccf565b9050610edb8184611e22565b8254909350610eeb908490611cb7565b8255600b54600a54610f0a916001600160a01b039182169116836113cf565b505b6008546003548254610f1e9190611e03565b610f289190611ccf565b600182015560405133907fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c90610f5f908590611ca0565b60405180910390a2505060018055565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a546001600160a01b031681565b60085481565b60026001541415610fcb5760405162461bcd60e51b815260040161033890611c44565b60026001908155336000908152600d6020526040812080548282559281019190915590801561100b57600a5461100b906001600160a01b031633836113cf565b815460405133917f5fafa99d0643513820be26656b45130b01e1c03062e1266bf36f88cbd3bd969591610f5f9190611ca0565b6110466112d7565b6001600160a01b03166110576109a0565b6001600160a01b03161461107d5760405162461bcd60e51b815260040161033890611a27565b6001600160a01b0381166110a35760405162461bcd60e51b815260040161033890611913565b600b546001600160a01b03828116911614156110d15760405162461bcd60e51b815260040161033890611b3e565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6110fb6112d7565b6001600160a01b031661110c6109a0565b6001600160a01b0316146111325760405162461bcd60e51b815260040161033890611a27565b6001600160a01b0381166111585760405162461bcd60e51b8152600401610338906118a3565b6108f88161142a565b6001600160a01b038082166000908152600d6020526040808220600a5491516370a0823160e01b8152929390928492909116906370a08231906111a89030906004016117cd565b60206040518083038186803b1580156111c057600080fd5b505afa1580156111d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f89190611757565b90506006544211801561120a57508015155b1561129357600061121d600654426114a1565b905060006007548261122f9190611e03565b9050600083600854836112429190611e03565b61124c9190611ccf565b6003546112599190611cb7565b905084600101546008548287600001546112739190611e03565b61127d9190611ccf565b6112879190611e22565b955050505050506112c3565b600182015460085460035484546112aa9190611e03565b6112b49190611ccf565b6112be9190611e22565b925050505b919050565b6009546001600160a01b031681565b3390565b60065442116112e957610953565b600a546040516370a0823160e01b81526000916001600160a01b0316906370a082319061131a9030906004016117cd565b60206040518083038186803b15801561133257600080fd5b505afa158015611346573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136a9190611757565b90508061137b575042600655610953565b6000611389600654426114a1565b905060006007548261139b9190611e03565b905082600854826113ac9190611e03565b6113b69190611ccf565b6003546113c39190611cb7565b60035550504260065550565b6114258363a9059cbb60e01b84846040516024016113ee929190611805565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526114e2565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61149b846323b872dd60e01b8585856040516024016113ee939291906117e1565b50505050565b600060045482116114bd576114b68383611e22565b90506114dc565b60045483106114ce575060006114dc565b826004546114b69190611e22565b92915050565b6000611537826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166115719092919063ffffffff16565b805190915015611425578080602001905181019061155591906116a5565b6114255760405162461bcd60e51b815260040161033890611bfa565b6060611580848460008561158a565b90505b9392505050565b6060824710156115ac5760405162461bcd60e51b815260040161033890611991565b6115b58561164a565b6115d15760405162461bcd60e51b815260040161033890611ada565b600080866001600160a01b031685876040516115ed91906117b1565b60006040518083038185875af1925050503d806000811461162a576040519150601f19603f3d011682016040523d82523d6000602084013e61162f565b606091505b509150915061163f828286611650565b979650505050505050565b3b151590565b6060831561165f575081611583565b82511561166f5782518084602001fd5b8160405162461bcd60e51b81526004016103389190611829565b60006020828403121561169a578081fd5b813561158381611e7b565b6000602082840312156116b6578081fd5b81518015158114611583578182fd5b600080600080600080600060e0888a0312156116df578283fd5b87356116ea81611e7b565b965060208801356116fa81611e7b565b955060408801359450606088013593506080880135925060a088013561171f81611e7b565b915060c088013561172f81611e7b565b8091505092959891949750929550565b600060208284031215611750578081fd5b5035919050565b600060208284031215611768578081fd5b5051919050565b60008060408385031215611781578182fd5b50508035926020909101359150565b6000602082840312156117a1578081fd5b815160ff81168114611583578182fd5b600082516117c3818460208701611e39565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602082528251806020840152611848816040850160208701611e39565b601f01601f19169190910160400192915050565b60208082526027908201527f4f7065726174696f6e733a2043616e6e6f74207265636f766572207a65726f2060408201526662616c616e636560c81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526010908201526f141bdbdb081a185cc81cdd185c9d195960821b604082015260600190565b6020808252601690820152751059191c995cdcc818d85b9b9bdd081899481b9d5b1b60521b604082015260600190565b6020808252602e908201527f4e6577207374617274426c6f636b206d757374206265206c6f7765722074686160408201526d6e206e657720656e64426c6f636b60901b606082015260800190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b60208082526030908201527f4e6577207374617274426c6f636b206d7573742062652068696768657220746860408201526f616e2063757272656e7420626c6f636b60801b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526027908201527f4f7065726174696f6e733a2043616e6e6f74207265636f76657220726577617260408201526632103a37b5b2b760c91b606082015260800190565b6020808252601b908201527f416d6f756e7420746f20776974686472617720746f6f20686967680000000000604082015260600190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b602080825260139082015272105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b604082015260600190565b60208082526027908201527f416464726573732070726f7669646564206973207468652073616d652061732060408201526618dd5c9c995b9d60ca1b606082015260800190565b60208082526027908201527f4f7065726174696f6e733a2043616e6e6f74207265636f766572207374616b6560408201526632103a37b5b2b760c91b606082015260800190565b60208082526014908201527304d757374206265206c657373207468616e2033360641b604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252600b908201526a4e6f7420666163746f727960a81b604082015260600190565b90815260200190565b918252602082015260400190565b60008219821115611cca57611cca611e65565b500190565b600082611cea57634e487b7160e01b81526012600452602481fd5b500490565b80825b6001808611611d015750611d2c565b818704821115611d1357611d13611e65565b80861615611d2057918102915b9490941c938002611cf2565b94509492505050565b60006115836000198484600082611d4e57506001611583565b81611d5b57506000611583565b8160018114611d715760028114611d7b57611da8565b6001915050611583565b60ff841115611d8c57611d8c611e65565b6001841b915084821115611da257611da2611e65565b50611583565b5060208310610133831016604e8410600b8410161715611ddb575081810a83811115611dd657611dd6611e65565b611583565b611de88484846001611cef565b808604821115611dfa57611dfa611e65565b02949350505050565b6000816000190483118215151615611e1d57611e1d611e65565b500290565b600082821015611e3457611e34611e65565b500390565b60005b83811015611e54578181015183820152602001611e3c565b8381111561149b5750506000910152565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146108f857600080fdfea2646970667358221220d00b99da1de84b195ea8e3c8839772430533324959e700398d0bafc874f9fd3964736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c80638f662915116100de578063cc7a262e11610097578063f0f4426011610071578063f0f44260146102b8578063f2fde38b146102cb578063f40f0f52146102de578063f7c618c1146102f157610173565b8063cc7a262e146102a0578063ccd34cd5146102a8578063db2e21bc146102b057610173565b80638f6629151461024f5780639513997f146102575780639be65a601461026a578063a9f8d1811461027d578063b6b55f2514610285578063bd6171911461029857610173565b8063392e53cd11610130578063392e53cd1461020557806348cd4cb11461021a578063715018a61461022257806380dc06721461022a5780638ae39cac146102325780638da5cb5b1461023a57610173565b806301f8a976146101785780630729da0b1461018d5780631959a002146101a05780631aed6553146101ca5780632e1a7d4d146101df5780633279beab146101f2575b600080fd5b61018b61018636600461173f565b6102f9565b005b61018b61019b3660046116c5565b610381565b6101b36101ae366004611689565b61050f565b6040516101c1929190611ca9565b60405180910390f35b6101d2610528565b6040516101c19190611ca0565b61018b6101ed36600461173f565b61052e565b61018b61020036600461173f565b6108a2565b61020d6108fb565b6040516101c1919061181e565b6101d2610904565b61018b61090a565b61018b610955565b6101d261099a565b6102426109a0565b6040516101c191906117cd565b6101d26109af565b61018b61026536600461176f565b6109b5565b61018b610278366004611689565b610aa0565b6101d2610c32565b61018b61029336600461173f565b610c38565b610242610f6f565b610242610f93565b6101d2610fa2565b61018b610fa8565b61018b6102c6366004611689565b61103e565b61018b6102d9366004611689565b6110f3565b6101d26102ec366004611689565b611161565b6102426112c8565b6103016112d7565b6001600160a01b03166103126109a0565b6001600160a01b0316146103415760405162461bcd60e51b815260040161033890611a27565b60405180910390fd5b60078190556040517f0c4d677eef92893ac7ec52faf8140fc6c851ab4736302b4f3a89dfb20696a0df90610376908390611ca0565b60405180910390a150565b60025460ff16156103a45760405162461bcd60e51b815260040161033890611b11565b336001600160a01b037f000000000000000000000000086cdb9aa631270f4d14e9360735eee86c6505e916146103ec5760405162461bcd60e51b815260040161033890611c7b565b6002805460ff19166001179055600a80546001600160a01b03808a166001600160a01b031992831617909255600980548984169083161790819055600788905560058790556004868155600b80548686169416939093179092556040805163313ce56760e01b81529051600094929092169263313ce567928282019260209290829003018186803b15801561048057600080fd5b505afa158015610494573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104b89190611790565b60ff169050601e81106104dd5760405162461bcd60e51b815260040161033890611bcc565b6104e881601e611e22565b6104f390600a611d35565b600855600554600655610505836110f3565b5050505050505050565b600d602052600090815260409020805460019091015482565b60045481565b600260015414156105515760405162461bcd60e51b815260040161033890611c44565b6002600155336000908152600d6020526040902080548211156105865760405162461bcd60e51b815260040161033890611aa3565b61058e6112db565b6000816001015460085460035484600001546105aa9190611e03565b6105b49190611ccf565b6105be9190611e22565b905082156105ec5781546105d3908490611e22565b8255600a546105ec906001600160a01b031633856113cf565b801561083e576009546040516370a0823160e01b81526001600160a01b03909116906370a08231906106229030906004016117cd565b60206040518083038186803b15801561063a57600080fd5b505afa15801561064e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106729190611757565b811180156106fe57506009546040516370a0823160e01b81526000916001600160a01b0316906370a08231906106ac9030906004016117cd565b60206040518083038186803b1580156106c457600080fd5b505afa1580156106d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106fc9190611757565b115b156107a1576009546040516370a0823160e01b815261079c9133916001600160a01b03909116906370a08231906107399030906004016117cd565b60206040518083038186803b15801561075157600080fd5b505afa158015610765573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107899190611757565b6009546001600160a01b031691906113cf565b61083e565b6009546040516370a0823160e01b81526001600160a01b03909116906370a08231906107d19030906004016117cd565b60206040518083038186803b1580156107e957600080fd5b505afa1580156107fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108219190611757565b811161083e5760095461083e906001600160a01b031633836113cf565b60085460035483546108509190611e03565b61085a9190611ccf565b600183015560405133907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a942436490610891908690611ca0565b60405180910390a250506001805550565b6108aa6112d7565b6001600160a01b03166108bb6109a0565b6001600160a01b0316146108e15760405162461bcd60e51b815260040161033890611a27565b6009546108f8906001600160a01b031633836113cf565b50565b60025460ff1681565b60055481565b6109126112d7565b6001600160a01b03166109236109a0565b6001600160a01b0316146109495760405162461bcd60e51b815260040161033890611a27565b610953600061142a565b565b61095d6112d7565b6001600160a01b031661096e6109a0565b6001600160a01b0316146109945760405162461bcd60e51b815260040161033890611a27565b43600455565b60075481565b6000546001600160a01b031690565b60035481565b6109bd6112d7565b6001600160a01b03166109ce6109a0565b6001600160a01b0316146109f45760405162461bcd60e51b815260040161033890611a27565b6005544310610a155760405162461bcd60e51b8152600401610338906118e9565b808210610a345760405162461bcd60e51b815260040161033890611943565b814310610a535760405162461bcd60e51b8152600401610338906119d7565b6005829055600481905560068290556040517f7cd0ab87d19036f3dfadadb232c78aa4879dda3f0c994a9d637532410ee2ce0690610a949084908490611ca9565b60405180910390a15050565b610aa86112d7565b6001600160a01b0316610ab96109a0565b6001600160a01b031614610adf5760405162461bcd60e51b815260040161033890611a27565b600a546001600160a01b0382811691161415610b0d5760405162461bcd60e51b815260040161033890611b85565b6009546001600160a01b0382811691161415610b3b5760405162461bcd60e51b815260040161033890611a5c565b6040516370a0823160e01b81526000906001600160a01b038316906370a0823190610b6a9030906004016117cd565b60206040518083038186803b158015610b8257600080fd5b505afa158015610b96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bba9190611757565b905080610bd95760405162461bcd60e51b81526004016103389061185c565b610bed6001600160a01b03831633836113cf565b816001600160a01b03167f14f11966a996e0629572e51064726d2057a80fbd34efc066682c06a71dbb6e9882604051610c269190611ca0565b60405180910390a25050565b60065481565b60026001541415610c5b5760405162461bcd60e51b815260040161033890611c44565b6002600155336000908152600d60205260409020610c776112db565b805415610ea157600081600101546008546003548460000154610c9a9190611e03565b610ca49190611ccf565b610cae9190611e22565b90508015610e9f576009546040516370a0823160e01b81526001600160a01b03909116906370a0823190610ce69030906004016117cd565b60206040518083038186803b158015610cfe57600080fd5b505afa158015610d12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d369190611757565b81118015610dc257506009546040516370a0823160e01b81526000916001600160a01b0316906370a0823190610d709030906004016117cd565b60206040518083038186803b158015610d8857600080fd5b505afa158015610d9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc09190611757565b115b15610e02576009546040516370a0823160e01b8152610dfd9133916001600160a01b03909116906370a08231906107399030906004016117cd565b610e9f565b6009546040516370a0823160e01b81526001600160a01b03909116906370a0823190610e329030906004016117cd565b60206040518083038186803b158015610e4a57600080fd5b505afa158015610e5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e829190611757565b8111610e9f57600954610e9f906001600160a01b031633836113cf565b505b8115610f0c57600a54610ebf906001600160a01b031633308561147a565b6000600c5483610ecf9190611ccf565b9050610edb8184611e22565b8254909350610eeb908490611cb7565b8255600b54600a54610f0a916001600160a01b039182169116836113cf565b505b6008546003548254610f1e9190611e03565b610f289190611ccf565b600182015560405133907fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c90610f5f908590611ca0565b60405180910390a2505060018055565b7f000000000000000000000000086cdb9aa631270f4d14e9360735eee86c6505e981565b600a546001600160a01b031681565b60085481565b60026001541415610fcb5760405162461bcd60e51b815260040161033890611c44565b60026001908155336000908152600d6020526040812080548282559281019190915590801561100b57600a5461100b906001600160a01b031633836113cf565b815460405133917f5fafa99d0643513820be26656b45130b01e1c03062e1266bf36f88cbd3bd969591610f5f9190611ca0565b6110466112d7565b6001600160a01b03166110576109a0565b6001600160a01b03161461107d5760405162461bcd60e51b815260040161033890611a27565b6001600160a01b0381166110a35760405162461bcd60e51b815260040161033890611913565b600b546001600160a01b03828116911614156110d15760405162461bcd60e51b815260040161033890611b3e565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6110fb6112d7565b6001600160a01b031661110c6109a0565b6001600160a01b0316146111325760405162461bcd60e51b815260040161033890611a27565b6001600160a01b0381166111585760405162461bcd60e51b8152600401610338906118a3565b6108f88161142a565b6001600160a01b038082166000908152600d6020526040808220600a5491516370a0823160e01b8152929390928492909116906370a08231906111a89030906004016117cd565b60206040518083038186803b1580156111c057600080fd5b505afa1580156111d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f89190611757565b90506006544211801561120a57508015155b1561129357600061121d600654426114a1565b905060006007548261122f9190611e03565b9050600083600854836112429190611e03565b61124c9190611ccf565b6003546112599190611cb7565b905084600101546008548287600001546112739190611e03565b61127d9190611ccf565b6112879190611e22565b955050505050506112c3565b600182015460085460035484546112aa9190611e03565b6112b49190611ccf565b6112be9190611e22565b925050505b919050565b6009546001600160a01b031681565b3390565b60065442116112e957610953565b600a546040516370a0823160e01b81526000916001600160a01b0316906370a082319061131a9030906004016117cd565b60206040518083038186803b15801561133257600080fd5b505afa158015611346573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136a9190611757565b90508061137b575042600655610953565b6000611389600654426114a1565b905060006007548261139b9190611e03565b905082600854826113ac9190611e03565b6113b69190611ccf565b6003546113c39190611cb7565b60035550504260065550565b6114258363a9059cbb60e01b84846040516024016113ee929190611805565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526114e2565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61149b846323b872dd60e01b8585856040516024016113ee939291906117e1565b50505050565b600060045482116114bd576114b68383611e22565b90506114dc565b60045483106114ce575060006114dc565b826004546114b69190611e22565b92915050565b6000611537826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166115719092919063ffffffff16565b805190915015611425578080602001905181019061155591906116a5565b6114255760405162461bcd60e51b815260040161033890611bfa565b6060611580848460008561158a565b90505b9392505050565b6060824710156115ac5760405162461bcd60e51b815260040161033890611991565b6115b58561164a565b6115d15760405162461bcd60e51b815260040161033890611ada565b600080866001600160a01b031685876040516115ed91906117b1565b60006040518083038185875af1925050503d806000811461162a576040519150601f19603f3d011682016040523d82523d6000602084013e61162f565b606091505b509150915061163f828286611650565b979650505050505050565b3b151590565b6060831561165f575081611583565b82511561166f5782518084602001fd5b8160405162461bcd60e51b81526004016103389190611829565b60006020828403121561169a578081fd5b813561158381611e7b565b6000602082840312156116b6578081fd5b81518015158114611583578182fd5b600080600080600080600060e0888a0312156116df578283fd5b87356116ea81611e7b565b965060208801356116fa81611e7b565b955060408801359450606088013593506080880135925060a088013561171f81611e7b565b915060c088013561172f81611e7b565b8091505092959891949750929550565b600060208284031215611750578081fd5b5035919050565b600060208284031215611768578081fd5b5051919050565b60008060408385031215611781578182fd5b50508035926020909101359150565b6000602082840312156117a1578081fd5b815160ff81168114611583578182fd5b600082516117c3818460208701611e39565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602082528251806020840152611848816040850160208701611e39565b601f01601f19169190910160400192915050565b60208082526027908201527f4f7065726174696f6e733a2043616e6e6f74207265636f766572207a65726f2060408201526662616c616e636560c81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526010908201526f141bdbdb081a185cc81cdd185c9d195960821b604082015260600190565b6020808252601690820152751059191c995cdcc818d85b9b9bdd081899481b9d5b1b60521b604082015260600190565b6020808252602e908201527f4e6577207374617274426c6f636b206d757374206265206c6f7765722074686160408201526d6e206e657720656e64426c6f636b60901b606082015260800190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b60208082526030908201527f4e6577207374617274426c6f636b206d7573742062652068696768657220746860408201526f616e2063757272656e7420626c6f636b60801b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526027908201527f4f7065726174696f6e733a2043616e6e6f74207265636f76657220726577617260408201526632103a37b5b2b760c91b606082015260800190565b6020808252601b908201527f416d6f756e7420746f20776974686472617720746f6f20686967680000000000604082015260600190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b602080825260139082015272105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b604082015260600190565b60208082526027908201527f416464726573732070726f7669646564206973207468652073616d652061732060408201526618dd5c9c995b9d60ca1b606082015260800190565b60208082526027908201527f4f7065726174696f6e733a2043616e6e6f74207265636f766572207374616b6560408201526632103a37b5b2b760c91b606082015260800190565b60208082526014908201527304d757374206265206c657373207468616e2033360641b604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252600b908201526a4e6f7420666163746f727960a81b604082015260600190565b90815260200190565b918252602082015260400190565b60008219821115611cca57611cca611e65565b500190565b600082611cea57634e487b7160e01b81526012600452602481fd5b500490565b80825b6001808611611d015750611d2c565b818704821115611d1357611d13611e65565b80861615611d2057918102915b9490941c938002611cf2565b94509492505050565b60006115836000198484600082611d4e57506001611583565b81611d5b57506000611583565b8160018114611d715760028114611d7b57611da8565b6001915050611583565b60ff841115611d8c57611d8c611e65565b6001841b915084821115611da257611da2611e65565b50611583565b5060208310610133831016604e8410600b8410161715611ddb575081810a83811115611dd657611dd6611e65565b611583565b611de88484846001611cef565b808604821115611dfa57611dfa611e65565b02949350505050565b6000816000190483118215151615611e1d57611e1d611e65565b500290565b600082821015611e3457611e34611e65565b500390565b60005b83811015611e54578181015183820152602001611e3c565b8381111561149b5750506000910152565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146108f857600080fdfea2646970667358221220d00b99da1de84b195ea8e3c8839772430533324959e700398d0bafc874f9fd3964736f6c63430008000033
Deployed Bytecode Sourcemap
20284:11207:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28358:175;;;;;;:::i;:::-;;:::i;:::-;;22449:1137;;;;;;:::i;:::-;;:::i;21397:44::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;20679:28;;;:::i;:::-;;;;;;;:::i;25093:1025::-;;;;;;:::i;:::-;;:::i;26784:142::-;;;;;;:::i;:::-;;:::i;20526:25::-;;;:::i;:::-;;;;;;;:::i;20765:::-;;;:::i;5230:94::-;;;:::i;28115:88::-;;;:::i;20925:29::-;;;:::i;4579:87::-;;;:::i;:::-;;;;;;;:::i;20592:31::-;;;:::i;28777:606::-;;;;;;:::i;:::-;;:::i;27103:530::-;;;;;;:::i;:::-;;:::i;20848:30::-;;;:::i;23744:1199::-;;;;;;:::i;:::-;;:::i;20440:43::-;;;:::i;21124:33::-;;;:::i;20992:31::-;;;:::i;26259:407::-;;;:::i;27774:251::-;;;;;;:::i;:::-;;:::i;5479:192::-;;;;;;:::i;:::-;;:::i;29556:757::-;;;;;;:::i;:::-;;:::i;21057:33::-;;;:::i;28358:175::-;4810:12;:10;:12::i;:::-;-1:-1:-1;;;;;4799:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4799:23:0;;4791:68;;;;-1:-1:-1;;;4791:68:0;;;;;;;:::i;:::-;;;;;;;;;28443:14:::1;:32:::0;;;28491:34:::1;::::0;::::1;::::0;::::1;::::0;28460:15;;28491:34:::1;:::i;:::-;;;;;;;;28358:175:::0;:::o;22449:1137::-;22731:13;;;;22730:14;22722:46;;;;-1:-1:-1;;;22722:46:0;;;;;;;:::i;:::-;22787:10;-1:-1:-1;;;;;22801:18:0;22787:32;;22779:56;;;;-1:-1:-1;;;22779:56:0;;;;;;;:::i;:::-;22891:13;:20;;-1:-1:-1;;22891:20:0;22907:4;22891:20;;;22924:11;:26;;-1:-1:-1;;;;;22924:26:0;;;-1:-1:-1;;;;;;22924:26:0;;;;;;;22961:11;:26;;;;;;;;;;;;;22998:14;:32;;;23041:10;:24;;;-1:-1:-1;23076:30:0;;;23117:8;:20;;;;;;;;;;;;;;23188:22;;;-1:-1:-1;;;23188:22:0;;;;22891:13;;23188:11;;;;;:20;;:22;;;;;;;;;;;;:11;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23180:31;;23150:61;;23252:2;23230:19;:24;23222:57;;;;-1:-1:-1;;;23222:57:0;;;;;;;:::i;:::-;23324:33;23338:19;23332:2;23324:33;:::i;:::-;23319:39;;:2;:39;:::i;:::-;23292:16;:67;23444:10;;23426:15;:28;23553:25;23571:6;23553:17;:25::i;:::-;22449:1137;;;;;;;;:::o;21397:44::-;;;;;;;;;;;;;;;;;;;:::o;20679:28::-;;;;:::o;25093:1025::-;7572:1;8168:7;;:19;;8160:63;;;;-1:-1:-1;;;8160:63:0;;;;;;;:::i;:::-;7572:1;8301:7;:18;25194:10:::1;25161:21;25185:20:::0;;;:8:::1;:20;::::0;;;;25224:11;;:22;-1:-1:-1;25224:22:0::1;25216:62;;;;-1:-1:-1::0;;;25216:62:0::1;;;;;;;:::i;:::-;25291:13;:11;:13::i;:::-;25317:15;25389:4;:15;;;25370:16;;25350;;25336:4;:11;;;:30;;;;:::i;:::-;25335:51;;;;:::i;:::-;:69;;;;:::i;:::-;25317:87:::0;-1:-1:-1;25421:11:0;;25417:148:::1;;25463:11:::0;;:21:::1;::::0;25477:7;;25463:21:::1;:::i;:::-;25449:35:::0;;25499:11:::1;::::0;:54:::1;::::0;-1:-1:-1;;;;;25499:11:0::1;25532:10;25545:7:::0;25499:24:::1;:54::i;:::-;25581:11:::0;;25577:405:::1;;25623:11;::::0;:36:::1;::::0;-1:-1:-1;;;25623:36:0;;-1:-1:-1;;;;;25623:11:0;;::::1;::::0;:21:::1;::::0;:36:::1;::::0;25653:4:::1;::::0;25623:36:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25613:7;:46;:90;;;;-1:-1:-1::0;25663:11:0::1;::::0;:36:::1;::::0;-1:-1:-1;;;25663:36:0;;25702:1:::1;::::0;-1:-1:-1;;;;;25663:11:0::1;::::0;:21:::1;::::0;:36:::1;::::0;25693:4:::1;::::0;25663:36:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;25613:90;25609:362;;;25770:11;::::0;:36:::1;::::0;-1:-1:-1;;;25770:36:0;;25724:83:::1;::::0;25757:10:::1;::::0;-1:-1:-1;;;;;25770:11:0;;::::1;::::0;:21:::1;::::0;:36:::1;::::0;25800:4:::1;::::0;25770:36:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25724:11;::::0;-1:-1:-1;;;;;25724:11:0::1;::::0;:83;:24:::1;:83::i;:::-;25609:362;;;25844:11;::::0;:36:::1;::::0;-1:-1:-1;;;25844:36:0;;-1:-1:-1;;;;;25844:11:0;;::::1;::::0;:21:::1;::::0;:36:::1;::::0;25874:4:::1;::::0;25844:36:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25833:7;:47;25829:142;;25901:11;::::0;:54:::1;::::0;-1:-1:-1;;;;;25901:11:0::1;25934:10;25947:7:::0;25901:24:::1;:54::i;:::-;26047:16;::::0;26027::::1;::::0;26013:11;;:30:::1;::::0;26027:16;26013:30:::1;:::i;:::-;26012:51;;;;:::i;:::-;25994:15;::::0;::::1;:69:::0;26081:29:::1;::::0;26090:10:::1;::::0;26081:29:::1;::::0;::::1;::::0;26102:7;;26081:29:::1;:::i;:::-;;;;;;;;-1:-1:-1::0;;7528:1:0;8480:22;;-1:-1:-1;25093:1025:0:o;26784:142::-;4810:12;:10;:12::i;:::-;-1:-1:-1;;;;;4799:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4799:23:0;;4791:68;;;;-1:-1:-1;;;4791:68:0;;;;;;;:::i;:::-;26864:11:::1;::::0;:54:::1;::::0;-1:-1:-1;;;;;26864:11:0::1;26897:10;26910:7:::0;26864:24:::1;:54::i;:::-;26784:142:::0;:::o;20526:25::-;;;;;;:::o;20765:::-;;;;:::o;5230:94::-;4810:12;:10;:12::i;:::-;-1:-1:-1;;;;;4799:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4799:23:0;;4791:68;;;;-1:-1:-1;;;4791:68:0;;;;;;;:::i;:::-;5295:21:::1;5313:1;5295:9;:21::i;:::-;5230:94::o:0;28115:88::-;4810:12;:10;:12::i;:::-;-1:-1:-1;;;;;4799:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4799:23:0;;4791:68;;;;-1:-1:-1;;;4791:68:0;;;;;;;:::i;:::-;28183:12:::1;28167:13;:28:::0;28115:88::o;20925:29::-;;;;:::o;4579:87::-;4625:7;4652:6;-1:-1:-1;;;;;4652:6:0;4579:87;:::o;20592:31::-;;;;:::o;28777:606::-;4810:12;:10;:12::i;:::-;-1:-1:-1;;;;;4799:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4799:23:0;;4791:68;;;;-1:-1:-1;;;4791:68:0;;;;;;;:::i;:::-;28908:10:::1;;28893:12;:25;28885:54;;;;-1:-1:-1::0;;;28885:54:0::1;;;;;;;:::i;:::-;28972:14;28958:11;:28;28950:87;;;;-1:-1:-1::0;;;28950:87:0::1;;;;;;;:::i;:::-;29071:11;29056:12;:26;29048:87;;;;-1:-1:-1::0;;;29048:87:0::1;;;;;;;:::i;:::-;29148:10;:24:::0;;;29183:13:::1;:30:::0;;;29280:15:::1;:28:::0;;;29326:49:::1;::::0;::::1;::::0;::::1;::::0;29161:11;;29199:14;;29326:49:::1;:::i;:::-;;;;;;;;28777:606:::0;;:::o;27103:530::-;4810:12;:10;:12::i;:::-;-1:-1:-1;;;;;4799:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4799:23:0;;4791:68;;;;-1:-1:-1;;;4791:68:0;;;;;;;:::i;:::-;27197:11:::1;::::0;-1:-1:-1;;;;;27179:30:0;;::::1;27197:11:::0;::::1;27179:30;;27171:82;;;;-1:-1:-1::0;;;27171:82:0::1;;;;;;;:::i;:::-;27290:11;::::0;-1:-1:-1;;;;;27272:30:0;;::::1;27290:11:::0;::::1;27272:30;;27264:82;;;;-1:-1:-1::0;;;27264:82:0::1;;;;;;;:::i;:::-;27377:47;::::0;-1:-1:-1;;;27377:47:0;;27359:15:::1;::::0;-1:-1:-1;;;;;27377:32:0;::::1;::::0;::::1;::::0;:47:::1;::::0;27418:4:::1;::::0;27377:47:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27359:65:::0;-1:-1:-1;27443:12:0;27435:64:::1;;;;-1:-1:-1::0;;;27435:64:0::1;;;;;;;:::i;:::-;27512:65;-1:-1:-1::0;;;;;27512:35:0;::::1;27556:10;27569:7:::0;27512:35:::1;:65::i;:::-;27609:6;-1:-1:-1::0;;;;;27595:30:0::1;;27617:7;27595:30;;;;;;:::i;:::-;;;;;;;;4870:1;27103:530:::0;:::o;20848:30::-;;;;:::o;23744:1199::-;7572:1;8168:7;;:19;;8160:63;;;;-1:-1:-1;;;8160:63:0;;;;;;;:::i;:::-;7572:1;8301:7;:18;23844:10:::1;23811:21;23835:20:::0;;;:8:::1;:20;::::0;;;;23868:13:::1;:11;:13::i;:::-;23898:11:::0;;:15;23894:578:::1;;23930:15;24002:4;:15;;;23983:16;;23963;;23949:4;:11;;;:30;;;;:::i;:::-;23948:51;;;;:::i;:::-;:69;;;;:::i;:::-;23930:87:::0;-1:-1:-1;24036:11:0;;24032:429:::1;;24082:11;::::0;:36:::1;::::0;-1:-1:-1;;;24082:36:0;;-1:-1:-1;;;;;24082:11:0;;::::1;::::0;:21:::1;::::0;:36:::1;::::0;24112:4:::1;::::0;24082:36:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24072:7;:46;:90;;;;-1:-1:-1::0;24122:11:0::1;::::0;:36:::1;::::0;-1:-1:-1;;;24122:36:0;;24161:1:::1;::::0;-1:-1:-1;;;;;24122:11:0::1;::::0;:21:::1;::::0;:36:::1;::::0;24152:4:::1;::::0;24122:36:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;24072:90;24068:378;;;24233:11;::::0;:36:::1;::::0;-1:-1:-1;;;24233:36:0;;24187:83:::1;::::0;24220:10:::1;::::0;-1:-1:-1;;;;;24233:11:0;;::::1;::::0;:21:::1;::::0;:36:::1;::::0;24263:4:::1;::::0;24233:36:::1;;;:::i;24187:83::-;24068:378;;;24311:11;::::0;:36:::1;::::0;-1:-1:-1;;;24311:36:0;;-1:-1:-1;;;;;24311:11:0;;::::1;::::0;:21:::1;::::0;:36:::1;::::0;24341:4:::1;::::0;24311:36:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24300:7;:47;24296:150;;24372:11;::::0;:54:::1;::::0;-1:-1:-1;;;;;24372:11:0::1;24405:10;24418:7:::0;24372:24:::1;:54::i;:::-;23894:578;;24488:11:::0;;24484:324:::1;;24516:11;::::0;:73:::1;::::0;-1:-1:-1;;;;;24516:11:0::1;24553:10;24574:4;24581:7:::0;24516:28:::1;:73::i;:::-;24604:17;24632:10;;24624:7;:18;;;;:::i;:::-;24604:38:::0;-1:-1:-1;24667:19:0::1;24604:38:::0;24667:7;:19:::1;:::i;:::-;24715:11:::0;;24657:29;;-1:-1:-1;24715:21:0::1;::::0;24657:29;;24715:21:::1;:::i;:::-;24701:35:::0;;24776:8:::1;::::0;24751:11:::1;::::0;:45:::1;::::0;-1:-1:-1;;;;;24751:11:0;;::::1;::::0;24776:8:::1;24786:9:::0;24751:24:::1;:45::i;:::-;24484:324;;24873:16;::::0;24853::::1;::::0;24839:11;;:30:::1;::::0;24853:16;24839:30:::1;:::i;:::-;24838:51;;;;:::i;:::-;24820:15;::::0;::::1;:69:::0;24907:28:::1;::::0;24915:10:::1;::::0;24907:28:::1;::::0;::::1;::::0;24927:7;;24907:28:::1;:::i;:::-;;;;;;;;-1:-1:-1::0;;7528:1:0;8480:22;;23744:1199::o;20440:43::-;;;:::o;21124:33::-;;;-1:-1:-1;;;;;21124:33:0;;:::o;20992:31::-;;;;:::o;26259:407::-;7572:1;8168:7;;:19;;8160:63;;;;-1:-1:-1;;;8160:63:0;;;;;;;:::i;:::-;7572:1;8301:7;:18;;;26354:10:::1;26321:21;26345:20:::0;;;:8:::1;:20;::::0;;;;26403:11;;26425:15;;;26451;;::::1;:19:::0;;;;26345:20;26487;;26483:116:::1;;26524:11;::::0;:63:::1;::::0;-1:-1:-1;;;;;26524:11:0::1;26557:10;26570:16:::0;26524:24:::1;:63::i;:::-;26646:11:::0;;26616:42:::1;::::0;26634:10:::1;::::0;26616:42:::1;::::0;::::1;::::0;26646:11;26616:42:::1;:::i;27774:251::-:0;4810:12;:10;:12::i;:::-;-1:-1:-1;;;;;4799:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4799:23:0;;4791:68;;;;-1:-1:-1;;;4791:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27852:23:0;::::1;27844:58;;;;-1:-1:-1::0;;;27844:58:0::1;;;;;;;:::i;:::-;27934:8;::::0;-1:-1:-1;;;;;27921:21:0;;::::1;27934:8:::0;::::1;27921:21;;27913:73;;;;-1:-1:-1::0;;;27913:73:0::1;;;;;;;:::i;:::-;27997:8;:20:::0;;-1:-1:-1;;;;;;27997:20:0::1;-1:-1:-1::0;;;;;27997:20:0;;;::::1;::::0;;;::::1;::::0;;27774:251::o;5479:192::-;4810:12;:10;:12::i;:::-;-1:-1:-1;;;;;4799:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4799:23:0;;4791:68;;;;-1:-1:-1;;;4791:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5568:22:0;::::1;5560:73;;;;-1:-1:-1::0;;;5560:73:0::1;;;;;;;:::i;:::-;5644:19;5654:8;5644:9;:19::i;29556:757::-:0;-1:-1:-1;;;;;29661:15:0;;;29617:7;29661:15;;;:8;:15;;;;;;29715:11;;:36;;-1:-1:-1;;;29715:36:0;;29617:7;;29661:15;;29617:7;;29715:11;;;;:21;;:36;;29745:4;;29715:36;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29687:64;;29784:15;;29766;:33;:59;;;;-1:-1:-1;29803:22:0;;;29766:59;29762:544;;;29842:18;29863:48;29878:15;;29895;29863:14;:48::i;:::-;29842:69;;29926:17;29959:14;;29946:10;:27;;;;:::i;:::-;29926:47;;29988:29;30072:17;30052:16;;30040:9;:28;;;;:::i;:::-;30039:50;;;;:::i;:::-;30020:16;;:69;;;;:::i;:::-;29988:101;;30170:4;:15;;;30151:16;;30126:21;30112:4;:11;;;:35;;;;:::i;:::-;30111:56;;;;:::i;:::-;:74;;;;:::i;:::-;30104:81;;;;;;;;;29762:544;30279:15;;;;30260:16;;30240;;30226:11;;:30;;30240:16;30226:30;:::i;:::-;30225:51;;;;:::i;:::-;:69;;;;:::i;:::-;30218:76;;;;29556:757;;;;:::o;21057:33::-;;;-1:-1:-1;;;;;21057:33:0;;:::o;3907:98::-;3987:10;3907:98;:::o;30414:604::-;30480:15;;30461;:34;30457:73;;30512:7;;30457:73;30570:11;;:36;;-1:-1:-1;;;30570:36:0;;30542:25;;-1:-1:-1;;;;;30570:11:0;;:21;;:36;;30600:4;;30570:36;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30542:64;-1:-1:-1;30623:22:0;30619:109;;-1:-1:-1;30680:15:0;30662;:33;30710:7;;30619:109;30740:18;30761:48;30776:15;;30793;30761:14;:48::i;:::-;30740:69;;30820:17;30853:14;;30840:10;:27;;;;:::i;:::-;30820:47;;30949:17;30929:16;;30917:9;:28;;;;:::i;:::-;30916:50;;;;:::i;:::-;30897:16;;:69;;;;:::i;:::-;30878:16;:88;-1:-1:-1;;30995:15:0;30977;:33;-1:-1:-1;30414:604:0:o;16963:211::-;17080:86;17100:5;17130:23;;;17155:2;17159:5;17107:58;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;17107:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;17107:58:0;-1:-1:-1;;;;;;17107:58:0;;;;;;;;;;17080:19;:86::i;:::-;16963:211;;;:::o;5679:173::-;5735:16;5754:6;;-1:-1:-1;;;;;5771:17:0;;;-1:-1:-1;;;;;;5771:17:0;;;;;;5804:40;;5754:6;;;;;;;5804:40;;5735:16;5804:40;5679:173;;:::o;17182:248::-;17326:96;17346:5;17376:27;;;17405:4;17411:2;17415:5;17353:68;;;;;;;;;;:::i;17326:96::-;17182:248;;;;:::o;31185:303::-;31260:7;31291:13;;31284:3;:20;31280:201;;31328:11;31334:5;31328:3;:11;:::i;:::-;31321:18;;;;31280:201;31370:13;;31361:5;:22;31357:124;;-1:-1:-1;31407:1:0;31400:8;;31357:124;31464:5;31448:13;;:21;;;;:::i;31357:124::-;31185:303;;;;:::o;19512:716::-;19936:23;19962:69;19990:4;19962:69;;;;;;;;;;;;;;;;;19970:5;-1:-1:-1;;;;;19962:27:0;;;:69;;;;;:::i;:::-;20046:17;;19936:95;;-1:-1:-1;20046:21:0;20042:179;;20143:10;20132:30;;;;;;;;;;;;:::i;:::-;20124:85;;;;-1:-1:-1;;;20124:85:0;;;;;;;:::i;12058:229::-;12195:12;12227:52;12249:6;12257:4;12263:1;12266:12;12227:21;:52::i;:::-;12220:59;;12058:229;;;;;;:::o;13178:511::-;13348:12;13406:5;13381:21;:30;;13373:81;;;;-1:-1:-1;;;13373:81:0;;;;;;;:::i;:::-;13473:18;13484:6;13473:10;:18::i;:::-;13465:60;;;;-1:-1:-1;;;13465:60:0;;;;;;;:::i;:::-;13539:12;13553:23;13580:6;-1:-1:-1;;;;;13580:11:0;13599:5;13606:4;13580:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13538:73;;;;13629:52;13647:7;13656:10;13668:12;13629:17;:52::i;:::-;13622:59;13178:511;-1:-1:-1;;;;;;;13178:511:0:o;9252:387::-;9575:20;9623:8;;;9252:387::o;15647:712::-;15797:12;15826:7;15822:530;;;-1:-1:-1;15857:10:0;15850:17;;15822:530;15971:17;;:21;15967:374;;16169:10;16163:17;16230:15;16217:10;16213:2;16209:19;16202:44;16117:148;16312:12;16305:20;;-1:-1:-1;;;16305:20:0;;;;;;;;:::i;14:259:1:-;;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:33;237:5;210:33;:::i;278:297::-;;398:2;386:9;377:7;373:23;369:32;366:2;;;419:6;411;404:22;366:2;456:9;450:16;509:5;502:13;495:21;488:5;485:32;475:2;;536:6;528;521:22;580:938;;;;;;;;836:3;824:9;815:7;811:23;807:33;804:2;;;858:6;850;843:22;804:2;902:9;889:23;921:33;948:5;921:33;:::i;:::-;973:5;-1:-1:-1;1030:2:1;1015:18;;1002:32;1043:35;1002:32;1043:35;:::i;:::-;1097:7;-1:-1:-1;1151:2:1;1136:18;;1123:32;;-1:-1:-1;1202:2:1;1187:18;;1174:32;;-1:-1:-1;1253:3:1;1238:19;;1225:33;;-1:-1:-1;1310:3:1;1295:19;;1282:33;1324:35;1282:33;1324:35;:::i;:::-;1378:7;-1:-1:-1;1437:3:1;1422:19;;1409:33;1451:35;1409:33;1451:35;:::i;:::-;1505:7;1495:17;;;794:724;;;;;;;;;;:::o;1523:190::-;;1635:2;1623:9;1614:7;1610:23;1606:32;1603:2;;;1656:6;1648;1641:22;1603:2;-1:-1:-1;1684:23:1;;1593:120;-1:-1:-1;1593:120:1:o;1718:194::-;;1841:2;1829:9;1820:7;1816:23;1812:32;1809:2;;;1862:6;1854;1847:22;1809:2;-1:-1:-1;1890:16:1;;1799:113;-1:-1:-1;1799:113:1:o;1917:258::-;;;2046:2;2034:9;2025:7;2021:23;2017:32;2014:2;;;2067:6;2059;2052:22;2014:2;-1:-1:-1;;2095:23:1;;;2165:2;2150:18;;;2137:32;;-1:-1:-1;2004:171:1:o;2180:293::-;;2301:2;2289:9;2280:7;2276:23;2272:32;2269:2;;;2322:6;2314;2307:22;2269:2;2359:9;2353:16;2409:4;2402:5;2398:16;2391:5;2388:27;2378:2;;2434:6;2426;2419:22;2478:274;;2645:6;2639:13;2661:53;2707:6;2702:3;2695:4;2687:6;2683:17;2661:53;:::i;:::-;2730:16;;;;;2615:137;-1:-1:-1;;2615:137:1:o;2757:203::-;-1:-1:-1;;;;;2921:32:1;;;;2903:51;;2891:2;2876:18;;2858:102::o;2965:375::-;-1:-1:-1;;;;;3223:15:1;;;3205:34;;3275:15;;;;3270:2;3255:18;;3248:43;3322:2;3307:18;;3300:34;;;;3155:2;3140:18;;3122:218::o;3345:274::-;-1:-1:-1;;;;;3537:32:1;;;;3519:51;;3601:2;3586:18;;3579:34;3507:2;3492:18;;3474:145::o;3624:187::-;3789:14;;3782:22;3764:41;;3752:2;3737:18;;3719:92::o;4045:383::-;;4194:2;4183:9;4176:21;4226:6;4220:13;4269:6;4264:2;4253:9;4249:18;4242:34;4285:66;4344:6;4339:2;4328:9;4324:18;4319:2;4311:6;4307:15;4285:66;:::i;:::-;4412:2;4391:15;-1:-1:-1;;4387:29:1;4372:45;;;;4419:2;4368:54;;4166:262;-1:-1:-1;;4166:262:1:o;4433:403::-;4635:2;4617:21;;;4674:2;4654:18;;;4647:30;4713:34;4708:2;4693:18;;4686:62;-1:-1:-1;;;4779:2:1;4764:18;;4757:37;4826:3;4811:19;;4607:229::o;4841:402::-;5043:2;5025:21;;;5082:2;5062:18;;;5055:30;5121:34;5116:2;5101:18;;5094:62;-1:-1:-1;;;5187:2:1;5172:18;;5165:36;5233:3;5218:19;;5015:228::o;5248:340::-;5450:2;5432:21;;;5489:2;5469:18;;;5462:30;-1:-1:-1;;;5523:2:1;5508:18;;5501:46;5579:2;5564:18;;5422:166::o;5593:346::-;5795:2;5777:21;;;5834:2;5814:18;;;5807:30;-1:-1:-1;;;5868:2:1;5853:18;;5846:52;5930:2;5915:18;;5767:172::o;5944:410::-;6146:2;6128:21;;;6185:2;6165:18;;;6158:30;6224:34;6219:2;6204:18;;6197:62;-1:-1:-1;;;6290:2:1;6275:18;;6268:44;6344:3;6329:19;;6118:236::o;6359:402::-;6561:2;6543:21;;;6600:2;6580:18;;;6573:30;6639:34;6634:2;6619:18;;6612:62;-1:-1:-1;;;6705:2:1;6690:18;;6683:36;6751:3;6736:19;;6533:228::o;6766:412::-;6968:2;6950:21;;;7007:2;6987:18;;;6980:30;7046:34;7041:2;7026:18;;7019:62;-1:-1:-1;;;7112:2:1;7097:18;;7090:46;7168:3;7153:19;;6940:238::o;7183:356::-;7385:2;7367:21;;;7404:18;;;7397:30;7463:34;7458:2;7443:18;;7436:62;7530:2;7515:18;;7357:182::o;7544:403::-;7746:2;7728:21;;;7785:2;7765:18;;;7758:30;7824:34;7819:2;7804:18;;7797:62;-1:-1:-1;;;7890:2:1;7875:18;;7868:37;7937:3;7922:19;;7718:229::o;7952:351::-;8154:2;8136:21;;;8193:2;8173:18;;;8166:30;8232:29;8227:2;8212:18;;8205:57;8294:2;8279:18;;8126:177::o;8308:353::-;8510:2;8492:21;;;8549:2;8529:18;;;8522:30;8588:31;8583:2;8568:18;;8561:59;8652:2;8637:18;;8482:179::o;8666:343::-;8868:2;8850:21;;;8907:2;8887:18;;;8880:30;-1:-1:-1;;;8941:2:1;8926:18;;8919:49;9000:2;8985:18;;8840:169::o;9014:403::-;9216:2;9198:21;;;9255:2;9235:18;;;9228:30;9294:34;9289:2;9274:18;;9267:62;-1:-1:-1;;;9360:2:1;9345:18;;9338:37;9407:3;9392:19;;9188:229::o;9422:403::-;9624:2;9606:21;;;9663:2;9643:18;;;9636:30;9702:34;9697:2;9682:18;;9675:62;-1:-1:-1;;;9768:2:1;9753:18;;9746:37;9815:3;9800:19;;9596:229::o;9830:344::-;10032:2;10014:21;;;10071:2;10051:18;;;10044:30;-1:-1:-1;;;10105:2:1;10090:18;;10083:50;10165:2;10150:18;;10004:170::o;10179:406::-;10381:2;10363:21;;;10420:2;10400:18;;;10393:30;10459:34;10454:2;10439:18;;10432:62;-1:-1:-1;;;10525:2:1;10510:18;;10503:40;10575:3;10560:19;;10353:232::o;10590:355::-;10792:2;10774:21;;;10831:2;10811:18;;;10804:30;10870:33;10865:2;10850:18;;10843:61;10936:2;10921:18;;10764:181::o;10950:335::-;11152:2;11134:21;;;11191:2;11171:18;;;11164:30;-1:-1:-1;;;11225:2:1;11210:18;;11203:41;11276:2;11261:18;;11124:161::o;11290:177::-;11436:25;;;11424:2;11409:18;;11391:76::o;11472:248::-;11646:25;;;11702:2;11687:18;;11680:34;11634:2;11619:18;;11601:119::o;11725:128::-;;11796:1;11792:6;11789:1;11786:13;11783:2;;;11802:18;;:::i;:::-;-1:-1:-1;11838:9:1;;11773:80::o;11858:217::-;;11924:1;11914:2;;-1:-1:-1;;;11949:31:1;;12003:4;12000:1;11993:15;12031:4;11956:1;12021:15;11914:2;-1:-1:-1;12060:9:1;;11904:171::o;12080:453::-;12176:6;12199:5;12213:314;12262:1;12299:2;12289:8;12286:16;12276:2;;12306:5;;;12276:2;12347:4;12342:3;12338:14;12332:4;12329:24;12326:2;;;12356:18;;:::i;:::-;12406:2;12396:8;12392:17;12389:2;;;12421:16;;;;12389:2;12500:17;;;;;12460:15;;12213:314;;;12157:376;;;;;;;:::o;12538:139::-;;12627:44;-1:-1:-1;;12654:8:1;12648:4;12682:922;12766:8;12756:2;;-1:-1:-1;12807:1:1;12821:5;;12756:2;12855:4;12845:2;;-1:-1:-1;12892:1:1;12906:5;;12845:2;12937:4;12955:1;12950:59;;;;13023:1;13018:183;;;;12930:271;;12950:59;12980:1;12971:10;;12994:5;;;13018:183;13055:3;13045:8;13042:17;13039:2;;;13062:18;;:::i;:::-;13118:1;13108:8;13104:16;13095:25;;13146:3;13139:5;13136:14;13133:2;;;13153:18;;:::i;:::-;13186:5;;;12930:271;;13285:2;13275:8;13272:16;13266:3;13260:4;13257:13;13253:36;13247:2;13237:8;13234:16;13229:2;13223:4;13220:12;13216:35;13213:77;13210:2;;;-1:-1:-1;13322:19:1;;;13357:14;;;13354:2;;;13374:18;;:::i;:::-;13407:5;;13210:2;13454:42;13492:3;13482:8;13476:4;13473:1;13454:42;:::i;:::-;13529:6;13524:3;13520:16;13511:7;13508:29;13505:2;;;13540:18;;:::i;:::-;13578:20;;12746:858;-1:-1:-1;;;;12746:858:1:o;13609:168::-;;13715:1;13711;13707:6;13703:14;13700:1;13697:21;13692:1;13685:9;13678:17;13674:45;13671:2;;;13722:18;;:::i;:::-;-1:-1:-1;13762:9:1;;13661:116::o;13782:125::-;;13850:1;13847;13844:8;13841:2;;;13855:18;;:::i;:::-;-1:-1:-1;13892:9:1;;13831:76::o;13912:258::-;13984:1;13994:113;14008:6;14005:1;14002:13;13994:113;;;14084:11;;;14078:18;14065:11;;;14058:39;14030:2;14023:10;13994:113;;;14125:6;14122:1;14119:13;14116:2;;;-1:-1:-1;;14160:1:1;14142:16;;14135:27;13965:205::o;14175:127::-;14236:10;14231:3;14227:20;14224:1;14217:31;14267:4;14264:1;14257:15;14291:4;14288:1;14281:15;14307:133;-1:-1:-1;;;;;14384:31:1;;14374:42;;14364:2;;14430:1;14427;14420:12
Swarm Source
ipfs://d00b99da1de84b195ea8e3c8839772430533324959e700398d0bafc874f9fd39
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$1.48
Net Worth in ETH
0.000516
Token Allocations
ARX
100.00%
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ARB | 100.00% | $0.000274 | 5,397.5136 | $1.48 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.