FTM Price: $1.02 (-1.74%)
Gas: 112 GWei

Contract

0x5063Fc9D759B5b03DD5fBC0B882b5F68CF881C32
 

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Value
Withdraw279277982022-01-14 11:05:16804 days ago1642158316IN
0x5063Fc9D...8CF881C32
0 FTM0.02281793313.1707
Withdraw279277662022-01-14 11:04:43804 days ago1642158283IN
0x5063Fc9D...8CF881C32
0 FTM0.03560913304.9171
Withdraw278894582022-01-14 1:56:02804 days ago1642125362IN
0x5063Fc9D...8CF881C32
0 FTM0.01956208305.8057
Withdraw278893782022-01-14 1:54:56804 days ago1642125296IN
0x5063Fc9D...8CF881C32
0 FTM0.0309016305.7022
Withdraw278884322022-01-14 1:41:33804 days ago1642124493IN
0x5063Fc9D...8CF881C32
0 FTM0.02972101297.5821
Withdraw278662342022-01-13 20:18:22804 days ago1642105102IN
0x5063Fc9D...8CF881C32
0 FTM0.03423266469.8352
Withdraw278661362022-01-13 20:16:41804 days ago1642105001IN
0x5063Fc9D...8CF881C32
0 FTM0.03519724405.5216
Withdraw270535432022-01-05 9:41:33813 days ago1641375693IN
0x5063Fc9D...8CF881C32
0 FTM0.01879349293.7907
Withdraw269953862022-01-04 20:14:51813 days ago1641327291IN
0x5063Fc9D...8CF881C32
0 FTM0.02876537364.2616
Withdraw269953242022-01-04 20:14:06813 days ago1641327246IN
0x5063Fc9D...8CF881C32
0 FTM0.04178613363.7531
Withdraw267967902022-01-02 19:35:23815 days ago1641152123IN
0x5063Fc9D...8CF881C32
0 FTM0.01143285178.792
Withdraw267967692022-01-02 19:35:07815 days ago1641152107IN
0x5063Fc9D...8CF881C32
0 FTM0.02043768177.9124
Withdraw266897262022-01-01 17:13:38816 days ago1641057218IN
0x5063Fc9D...8CF881C32
0 FTM0.0133436131.0986
Withdraw265729372021-12-31 11:32:42818 days ago1640950362IN
0x5063Fc9D...8CF881C32
0 FTM0.01731428219.2542
Withdraw265729152021-12-31 11:32:08818 days ago1640950328IN
0x5063Fc9D...8CF881C32
0 FTM0.01308132179.5381
Deposit265644262021-12-31 9:17:11818 days ago1640942231IN
0x5063Fc9D...8CF881C32
0 FTM0.01362445161.6398
Deposit265634162021-12-31 9:02:16818 days ago1640941336IN
0x5063Fc9D...8CF881C32
0 FTM0.02049736179.3656
Withdraw262010512021-12-27 14:54:22822 days ago1640616862IN
0x5063Fc9D...8CF881C32
0 FTM0.01594968201.688
Deposit262009602021-12-27 14:53:08822 days ago1640616788IN
0x5063Fc9D...8CF881C32
0 FTM0.0214633187.6147
Withdraw260942372021-12-26 12:48:47823 days ago1640522927IN
0x5063Fc9D...8CF881C32
0 FTM0.00998746116.02
Withdraw260942022021-12-26 12:48:20823 days ago1640522900IN
0x5063Fc9D...8CF881C32
0 FTM0.01181681116.1118
Withdraw260843072021-12-26 10:15:44823 days ago1640513744IN
0x5063Fc9D...8CF881C32
0 FTM0.01247574106.8175
Withdraw259640072021-12-25 4:32:19824 days ago1640406739IN
0x5063Fc9D...8CF881C32
0 FTM0.00653661102.2032
Withdraw258425872021-12-23 22:35:42825 days ago1640298942IN
0x5063Fc9D...8CF881C32
0 FTM0.01052589164.5159
Withdraw258425352021-12-23 22:34:57825 days ago1640298897IN
0x5063Fc9D...8CF881C32
0 FTM0.01205825152.6497
View all transactions

Latest 1 internal transaction

Parent Txn Hash Block From To Value
215928922021-11-10 1:29:30869 days ago1636507770  Contract Creation0 FTM
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xe4e36B11...dE2a8DECb
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Circles

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at ftmscan.com on 2021-11-04
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

pragma solidity ^0.8.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/utils/Address.sol

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        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}
     */
    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,
     *
     * 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);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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: contracts/libraries/SafeERC20.sol

pragma solidity ^0.8.0;

/**
 * @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 {
            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: @openzeppelin/contracts/utils/Context.sol

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with 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

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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: contracts/Circles.sol

pragma solidity ^0.8.7;

interface IERC20Ext is IERC20 {
    function decimals() external returns (uint);
}

// The goal of this farm is to allow a stake SEANCE earn anything model
// In a flip of a traditional farm, this contract only accepts SEANCE as the staking token
// Each new pool added is a new reward token, each with its own start times
// end times, and rewards per second.
contract Circles is Ownable {
    using SafeERC20 for IERC20;

    // Info of each user.
    struct UserInfo {
        uint256 amount;     // How many tokens the user has provided.
        uint256 rewardDebt; // Reward debt. See explanation below.
    }

    // Info of each pool.
    struct PoolInfo {
        IERC20 RewardToken;       // reward token contract.
        uint256 RewardPerSecond;   // reward token per second for this pool
        uint256 TokenPrecision; // precision factor used for calculations, dependent on a tokens decimals
        uint256 seanceStaked; // # of seance allocated to this pool
        uint256 lastRewardTime;  // most recent time reward distribution time.
        uint256 accRewardPerShare; // reward per share, times the pools token precision.
        uint256 endTime;
        uint256 startTime; 
        uint256 userLimitEndTime;
        address DAO;
    }

    IERC20 public immutable seance;
    uint public baseUserLimitTime = 2 days;
    uint public baseUserLimit = 0;

    // Info of each pool.
    PoolInfo[] public poolInfo;
    // Info of each user that stakes tokens.
    mapping (uint256 => mapping (address => UserInfo)) public userInfo;

    event AdminTokenRecovery(address tokenRecovered, uint256 amount);
    event Deposit(address indexed user, uint256 indexed pid, uint256 amount);
    event Withdraw(address indexed user, uint256 indexed pid, uint256 amount);
    event EmergencyWithdraw(address indexed user, uint256 indexed pid, uint256 amount);
    event SetRewardPerSecond(uint _pid, uint256 _gemsPerSecond);

    constructor(IERC20 _seance) {
        seance = _seance;
    }


    function poolLength() external view returns (uint256) {
        return poolInfo.length;
    }

    // Return reward multiplier over the given _from to _to block.
    function getMultiplier(uint256 _from, uint256 _to, PoolInfo memory pool) internal pure returns (uint256) {
        _from = _from > pool.startTime ? _from : pool.startTime;
        if (_from > pool.endTime || _to < pool.startTime) {
            return 0;
        }
        if (_to > pool.endTime) {
            return pool.endTime - _from;
        }
        return _to - _from;
    }

    // VIEW | PENDING REWARDS
    function pendingReward(uint256 _pid, address _user) external view returns (uint256) {
        PoolInfo memory pool = poolInfo[_pid];
        UserInfo memory user = userInfo[_pid][_user];
        uint256 accRewardPerShare = pool.accRewardPerShare;
        
        if (block.timestamp > pool.lastRewardTime && pool.seanceStaked != 0) {
            uint256 multiplier = getMultiplier(pool.lastRewardTime, block.timestamp, pool);
            uint256 reward = multiplier * pool.RewardPerSecond;
            accRewardPerShare += (reward * pool.TokenPrecision) / pool.seanceStaked;
        }
        return (user.amount * accRewardPerShare / pool.TokenPrecision) - user.rewardDebt;
    }

    // ALLOCATE | ALL POOLS
    function massUpdatePools() public {
        uint256 length = poolInfo.length;
        for (uint256 pid = 0; pid < length; ++pid) {
            updatePool(pid);
        }
    }

    // ALLOCATE | SELECT POOL
    function updatePool(uint256 _pid) internal {
        PoolInfo storage pool = poolInfo[_pid];
        if (block.timestamp <= pool.lastRewardTime) {
            return;
        }

        if (pool.seanceStaked == 0) {
            pool.lastRewardTime = block.timestamp;
            return;
        }
        uint256 multiplier = getMultiplier(pool.lastRewardTime, block.timestamp, pool);
        uint256 reward = multiplier * pool.RewardPerSecond;

        pool.accRewardPerShare += reward * pool.TokenPrecision / pool.seanceStaked;
        pool.lastRewardTime = block.timestamp;
    }

    // DEPOSIT | TOKENS
    function deposit(uint256 _pid, uint256 _amount) external {

        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][msg.sender];

        if(baseUserLimit > 0 && block.timestamp < pool.userLimitEndTime) {
            require(user.amount + _amount <= baseUserLimit, "deposit: user has hit deposit cap");
        }

        updatePool(_pid);

        uint256 pending = (user.amount * pool.accRewardPerShare / pool.TokenPrecision) - user.rewardDebt;

        user.amount += _amount;
        pool.seanceStaked += _amount;
        user.rewardDebt = user.amount * pool.accRewardPerShare / pool.TokenPrecision;

        if(pending > 0) {
            safeTransfer(pool.RewardToken, msg.sender, pending);
        }
        
        seance.safeTransferFrom(address(msg.sender), address(this), _amount);

        emit Deposit(msg.sender, _pid, _amount);
    }

    // WITHDRAW | TOKENS
    function withdraw(uint256 _pid, uint256 _amount) external {  
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][msg.sender];

        require(user.amount >= _amount, "withdraw: not good");

        updatePool(_pid);

        uint256 pending = (user.amount * pool.accRewardPerShare / pool.TokenPrecision) - user.rewardDebt;

        user.amount -= _amount;
        pool.seanceStaked -= _amount;
        user.rewardDebt = user.amount * pool.accRewardPerShare / pool.TokenPrecision;

        if(pending > 0) {
            safeTransfer(pool.RewardToken, msg.sender, pending);
        }

        safeTransfer(seance, address(msg.sender), _amount);
        
        emit Withdraw(msg.sender, _pid, _amount);
    }

    // SAAFETY | PREVENTS ROUNDING ERROR
    function safeTransfer(IERC20 token, address _to, uint256 _amount) internal {
        uint256 bal = token.balanceOf(address(this));
        if (_amount > bal) {
            token.safeTransfer(_to, bal);
        } else {
            token.safeTransfer(_to, _amount);
        }
    }

    // ADMIN FUNCTIONS //

    function changeEndTime(uint _pid, uint32 addSeconds) external onlyOwner {
        poolInfo[_pid].endTime += addSeconds;
    }

    function stopReward(uint _pid) external onlyOwner {
        poolInfo[_pid].endTime = block.number;
    }

    function changePoolUserLimitEndTime(uint _pid, uint _time) external onlyOwner {
        poolInfo[_pid].userLimitEndTime = _time;
    }

    function changeUserLimit(uint _limit) external onlyOwner {
        baseUserLimit = _limit;
    }

    function changeBaseUserLimitTime(uint _time) external onlyOwner {
        baseUserLimitTime = _time;
    }

    function checkForToken(IERC20 _Token) private view {
        uint256 length = poolInfo.length;
        for (uint256 _pid = 0; _pid < length; _pid++) {
            require(poolInfo[_pid].RewardToken != _Token, "checkForToken: reward token provided");
        }
    }

    function recoverWrongTokens(address _tokenAddress) external onlyOwner {
        require(_tokenAddress != address(seance), "recoverWrongTokens: Cannot be seance");
        checkForToken(IERC20(_tokenAddress));
        
        uint bal = IERC20(_tokenAddress).balanceOf(address(this));
        IERC20(_tokenAddress).safeTransfer(address(msg.sender), bal);

        emit AdminTokenRecovery(_tokenAddress, bal);
    }

    function emergencyRewardWithdraw(uint _pid, uint256 _amount) external onlyOwner {
        poolInfo[_pid].RewardToken.safeTransfer(poolInfo[_pid].DAO, _amount);
    }

    // ADD | NEW POOL
    function add(
        uint _rewardPerSecond, 
        IERC20Ext _Token, 
        uint _startTime, 
        uint _endTime, 
        address _DAO) external onlyOwner {

        checkForToken(_Token); // ensure you cannot add duplicate pools

        uint lastRewardTime = block.timestamp > _startTime ? block.timestamp : _startTime;
        uint decimalsRewardToken = _Token.decimals();
        require(decimalsRewardToken < 30, "Token has way too many decimals");
        uint precision = 10**(30 - decimalsRewardToken);

        poolInfo.push(PoolInfo({
            RewardToken: _Token,
            RewardPerSecond: _rewardPerSecond,
            TokenPrecision: precision,
            seanceStaked: 0,
            startTime: _startTime,
            endTime: _endTime,
            lastRewardTime: lastRewardTime,
            accRewardPerShare: 0,
            DAO: _DAO,
            userLimitEndTime: lastRewardTime + baseUserLimitTime
        }));
    }

    // UPDATE | REWARD RATE
    function setRewardPerSecond(uint256 _pid, uint256 _rewardPerSecond) external onlyOwner {
        
        updatePool(_pid);

        poolInfo[_pid].RewardPerSecond = _rewardPerSecond;

        emit SetRewardPerSecond(_pid, _rewardPerSecond);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IERC20","name":"_seance","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tokenRecovered","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AdminTokenRecovery","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_gemsPerSecond","type":"uint256"}],"name":"SetRewardPerSecond","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"uint256","name":"_rewardPerSecond","type":"uint256"},{"internalType":"contract IERC20Ext","name":"_Token","type":"address"},{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"},{"internalType":"address","name":"_DAO","type":"address"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"baseUserLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUserLimitTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"changeBaseUserLimitTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint32","name":"addSeconds","type":"uint32"}],"name":"changeEndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"changePoolUserLimitEndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"changeUserLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"emergencyRewardWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract IERC20","name":"RewardToken","type":"address"},{"internalType":"uint256","name":"RewardPerSecond","type":"uint256"},{"internalType":"uint256","name":"TokenPrecision","type":"uint256"},{"internalType":"uint256","name":"seanceStaked","type":"uint256"},{"internalType":"uint256","name":"lastRewardTime","type":"uint256"},{"internalType":"uint256","name":"accRewardPerShare","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"userLimitEndTime","type":"uint256"},{"internalType":"address","name":"DAO","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"recoverWrongTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"seance","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_rewardPerSecond","type":"uint256"}],"name":"setRewardPerSecond","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"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":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80637ffb25ef116100b8578063a84f27301161007c578063a84f27301461032f578063b5f578fc1461034d578063bebdbc0c14610369578063cc43d9c414610387578063e2bbb158146103a3578063f2fde38b146103bf57610142565b80637ffb25ef146102785780638da5cb5b1461029457806393f1a40b146102b257806398969e82146102e357806399c5ccf41461031357610142565b8063441a3e701161010a578063441a3e70146101f25780634ca01d451461020e578063630b5ba11461022c578063715018a614610236578063746268cc14610240578063773000891461025c57610142565b8063081e3eda14610147578063084f8604146101655780631526fe271461018157806326102c47146101ba5780632c636645146101d6575b600080fd5b61014f6103db565b60405161015c919061276e565b60405180910390f35b61017f600480360381019061017a919061228e565b6103e8565b005b61019b60048036038101906101969190612139565b6104aa565b6040516101b19a99989796959493929190612570565b60405180910390f35b6101d460048036038101906101cf9190612139565b61054e565b005b6101f060048036038101906101eb919061224e565b6105d4565b005b61020c6004803603810190610207919061224e565b610709565b005b610216610924565b6040516102239190612555565b60405180910390f35b610234610948565b005b61023e61097b565b005b61025a600480360381019061025591906120df565b610a03565b005b61027660048036038101906102719190612139565b610c0c565b005b610292600480360381019061028d919061224e565b610cb5565b005b61029c610d5f565b6040516102a991906124da565b60405180910390f35b6102cc60048036038101906102c79190612193565b610d88565b6040516102da929190612789565b60405180910390f35b6102fd60048036038101906102f89190612193565b610db9565b60405161030a919061276e565b60405180910390f35b61032d60048036038101906103289190612139565b611010565b005b610337611096565b604051610344919061276e565b60405180910390f35b6103676004803603810190610362919061224e565b61109c565b005b610371611188565b60405161037e919061276e565b60405180910390f35b6103a1600480360381019061039c91906121d3565b61118e565b005b6103bd60048036038101906103b8919061224e565b6114a2565b005b6103d960048036038101906103d491906120df565b611707565b005b6000600380549050905090565b6103f06117ff565b73ffffffffffffffffffffffffffffffffffffffff1661040e610d5f565b73ffffffffffffffffffffffffffffffffffffffff1614610464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045b906126ce565b60405180910390fd5b8063ffffffff166003838154811061047f5761047e612be4565b5b90600052602060002090600a0201600601600082825461049f91906127e4565b925050819055505050565b600381815481106104ba57600080fd5b90600052602060002090600a02016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030154908060040154908060050154908060060154908060070154908060080154908060090160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508a565b6105566117ff565b73ffffffffffffffffffffffffffffffffffffffff16610574610d5f565b73ffffffffffffffffffffffffffffffffffffffff16146105ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c1906126ce565b60405180910390fd5b8060018190555050565b6105dc6117ff565b73ffffffffffffffffffffffffffffffffffffffff166105fa610d5f565b73ffffffffffffffffffffffffffffffffffffffff1614610650576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610647906126ce565b60405180910390fd5b6107056003838154811061066757610666612be4565b5b90600052602060002090600a020160090160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600385815481106106ae576106ad612be4565b5b90600052602060002090600a020160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166118079092919063ffffffff16565b5050565b60006003838154811061071f5761071e612be4565b5b90600052602060002090600a0201905060006004600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905082816000015410156107ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c19061270e565b60405180910390fd5b6107d38461188d565b600081600101548360020154846005015484600001546107f391906129dc565b6107fd919061283a565b6108079190612a36565b90508382600001600082825461081d9190612a36565b92505081905550838360030160008282546108389190612a36565b9250508190555082600201548360050154836000015461085891906129dc565b610862919061283a565b826001018190555060008111156108a3576108a28360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163383611a58565b5b6108ce7f000000000000000000000000124b06c5ce47de7a6e9efda71a946717130079e63386611a58565b843373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b56886604051610915919061276e565b60405180910390a35050505050565b7f000000000000000000000000124b06c5ce47de7a6e9efda71a946717130079e681565b6000600380549050905060005b81811015610977576109668161188d565b8061097090612b3d565b9050610955565b5050565b6109836117ff565b73ffffffffffffffffffffffffffffffffffffffff166109a1610d5f565b73ffffffffffffffffffffffffffffffffffffffff16146109f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ee906126ce565b60405180910390fd5b610a016000611b4f565b565b610a0b6117ff565b73ffffffffffffffffffffffffffffffffffffffff16610a29610d5f565b73ffffffffffffffffffffffffffffffffffffffff1614610a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a76906126ce565b60405180910390fd5b7f000000000000000000000000124b06c5ce47de7a6e9efda71a946717130079e673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b059061274e565b60405180910390fd5b610b1781611c13565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b5291906124da565b60206040518083038186803b158015610b6a57600080fd5b505afa158015610b7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba29190612166565b9050610bcf33828473ffffffffffffffffffffffffffffffffffffffff166118079092919063ffffffff16565b7f74545154aac348a3eac92596bd1971957ca94795f4e954ec5f613b55fab781298282604051610c0092919061252c565b60405180910390a15050565b610c146117ff565b73ffffffffffffffffffffffffffffffffffffffff16610c32610d5f565b73ffffffffffffffffffffffffffffffffffffffff1614610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f906126ce565b60405180910390fd5b4360038281548110610c9d57610c9c612be4565b5b90600052602060002090600a02016006018190555050565b610cbd6117ff565b73ffffffffffffffffffffffffffffffffffffffff16610cdb610d5f565b73ffffffffffffffffffffffffffffffffffffffff1614610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d28906126ce565b60405180910390fd5b8060038381548110610d4657610d45612be4565b5b90600052602060002090600a0201600801819055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6004602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b60008060038481548110610dd057610dcf612be4565b5b90600052602060002090600a0201604051806101400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160018201548152602001600282015481526020016003820154815260200160048201548152602001600582015481526020016006820154815260200160078201548152602001600882015481526020016009820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681525050905060006004600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405180604001604052908160008201548152602001600182015481525050905060008260a001519050826080015142118015610f7c57506000836060015114155b15610fd7576000610f9284608001514286611cf4565b90506000846020015182610fa691906129dc565b90508460600151856040015182610fbd91906129dc565b610fc7919061283a565b83610fd291906127e4565b925050505b81602001518360400151828460000151610ff191906129dc565b610ffb919061283a565b6110059190612a36565b935050505092915050565b6110186117ff565b73ffffffffffffffffffffffffffffffffffffffff16611036610d5f565b73ffffffffffffffffffffffffffffffffffffffff161461108c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611083906126ce565b60405180910390fd5b8060028190555050565b60015481565b6110a46117ff565b73ffffffffffffffffffffffffffffffffffffffff166110c2610d5f565b73ffffffffffffffffffffffffffffffffffffffff1614611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f906126ce565b60405180910390fd5b6111218261188d565b806003838154811061113657611135612be4565b5b90600052602060002090600a0201600101819055507fcf46b21c204617ffb815b827463db479e0f3cdc9586e33690d10ced9541fcda0828260405161117c929190612789565b60405180910390a15050565b60025481565b6111966117ff565b73ffffffffffffffffffffffffffffffffffffffff166111b4610d5f565b73ffffffffffffffffffffffffffffffffffffffff161461120a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611201906126ce565b60405180910390fd5b61121384611c13565b60008342116112225783611224565b425b905060008573ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561127057600080fd5b505af1158015611284573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a89190612166565b9050601e81106112ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e49061268e565b60405180910390fd5b600081601e6112fc9190612a36565b600a61130891906128be565b905060036040518061014001604052808973ffffffffffffffffffffffffffffffffffffffff1681526020018a815260200183815260200160008152602001858152602001600081526020018781526020018881526020016001548661136e91906127e4565b81526020018673ffffffffffffffffffffffffffffffffffffffff1681525090806001815401808255809150506001900390600052602060002090600a020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e0820151816007015561010082015181600801556101208201518160090160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050505050505050565b6000600383815481106114b8576114b7612be4565b5b90600052602060002090600a0201905060006004600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060006002541180156115315750816008015442105b1561158b5760025483826000015461154991906127e4565b111561158a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115819061264e565b60405180910390fd5b5b6115948461188d565b600081600101548360020154846005015484600001546115b491906129dc565b6115be919061283a565b6115c89190612a36565b9050838260000160008282546115de91906127e4565b92505081905550838360030160008282546115f991906127e4565b9250508190555082600201548360050154836000015461161991906129dc565b611623919061283a565b82600101819055506000811115611664576116638360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163383611a58565b5b6116b13330867f000000000000000000000000124b06c5ce47de7a6e9efda71a946717130079e673ffffffffffffffffffffffffffffffffffffffff16611d6b909392919063ffffffff16565b843373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15866040516116f8919061276e565b60405180910390a35050505050565b61170f6117ff565b73ffffffffffffffffffffffffffffffffffffffff1661172d610d5f565b73ffffffffffffffffffffffffffffffffffffffff1614611783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177a906126ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ea9061262e565b60405180910390fd5b6117fc81611b4f565b50565b600033905090565b6118888363a9059cbb60e01b848460405160240161182692919061252c565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611df4565b505050565b6000600382815481106118a3576118a2612be4565b5b90600052602060002090600a02019050806004015442116118c45750611a55565b6000816003015414156118e05742816004018190555050611a55565b60006119f982600401544284604051806101400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160018201548152602001600282015481526020016003820154815260200160048201548152602001600582015481526020016006820154815260200160078201548152602001600882015481526020016009820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681525050611cf4565b90506000826001015482611a0d91906129dc565b90508260030154836002015482611a2491906129dc565b611a2e919061283a565b836005016000828254611a4191906127e4565b925050819055504283600401819055505050505b50565b60008373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611a9391906124da565b60206040518083038186803b158015611aab57600080fd5b505afa158015611abf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ae39190612166565b905080821115611b1d57611b1883828673ffffffffffffffffffffffffffffffffffffffff166118079092919063ffffffff16565b611b49565b611b4883838673ffffffffffffffffffffffffffffffffffffffff166118079092919063ffffffff16565b5b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600380549050905060005b81811015611cef578273ffffffffffffffffffffffffffffffffffffffff1660038281548110611c5357611c52612be4565b5b90600052602060002090600a020160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd3906126ae565b60405180910390fd5b8080611ce790612b3d565b915050611c20565b505050565b60008160e001518411611d0b578160e00151611d0d565b835b93508160c00151841180611d2457508160e0015183105b15611d325760009050611d64565b8160c00151831115611d5557838260c00151611d4e9190612a36565b9050611d64565b8383611d619190612a36565b90505b9392505050565b611dee846323b872dd60e01b858585604051602401611d8c939291906124f5565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611df4565b50505050565b6000611e56826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611ebb9092919063ffffffff16565b9050600081511115611eb65780806020019051810190611e76919061210c565b611eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eac9061272e565b60405180910390fd5b5b505050565b6060611eca8484600085611ed3565b90509392505050565b606082471015611f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0f9061266e565b60405180910390fd5b611f2185611fe7565b611f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f57906126ee565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051611f8991906124c3565b60006040518083038185875af1925050503d8060008114611fc6576040519150601f19603f3d011682016040523d82523d6000602084013e611fcb565b606091505b5091509150611fdb828286611ffa565b92505050949350505050565b600080823b905060008111915050919050565b6060831561200a5782905061205a565b60008351111561201d5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612051919061260c565b60405180910390fd5b9392505050565b60008135905061207081612eb4565b92915050565b60008151905061208581612ecb565b92915050565b60008135905061209a81612ee2565b92915050565b6000813590506120af81612ef9565b92915050565b6000815190506120c481612ef9565b92915050565b6000813590506120d981612f10565b92915050565b6000602082840312156120f5576120f4612c13565b5b600061210384828501612061565b91505092915050565b60006020828403121561212257612121612c13565b5b600061213084828501612076565b91505092915050565b60006020828403121561214f5761214e612c13565b5b600061215d848285016120a0565b91505092915050565b60006020828403121561217c5761217b612c13565b5b600061218a848285016120b5565b91505092915050565b600080604083850312156121aa576121a9612c13565b5b60006121b8858286016120a0565b92505060206121c985828601612061565b9150509250929050565b600080600080600060a086880312156121ef576121ee612c13565b5b60006121fd888289016120a0565b955050602061220e8882890161208b565b945050604061221f888289016120a0565b9350506060612230888289016120a0565b925050608061224188828901612061565b9150509295509295909350565b6000806040838503121561226557612264612c13565b5b6000612273858286016120a0565b9250506020612284858286016120a0565b9150509250929050565b600080604083850312156122a5576122a4612c13565b5b60006122b3858286016120a0565b92505060206122c4858286016120ca565b9150509250929050565b6122d781612a6a565b82525050565b60006122e8826127b2565b6122f281856127c8565b9350612302818560208601612b0a565b80840191505092915050565b61231781612ad4565b82525050565b6000612328826127bd565b61233281856127d3565b9350612342818560208601612b0a565b61234b81612c18565b840191505092915050565b60006123636026836127d3565b915061236e82612c36565b604082019050919050565b60006123866021836127d3565b915061239182612c85565b604082019050919050565b60006123a96026836127d3565b91506123b482612cd4565b604082019050919050565b60006123cc601f836127d3565b91506123d782612d23565b602082019050919050565b60006123ef6024836127d3565b91506123fa82612d4c565b604082019050919050565b60006124126020836127d3565b915061241d82612d9b565b602082019050919050565b6000612435601d836127d3565b915061244082612dc4565b602082019050919050565b60006124586012836127d3565b915061246382612ded565b602082019050919050565b600061247b602a836127d3565b915061248682612e16565b604082019050919050565b600061249e6024836127d3565b91506124a982612e65565b604082019050919050565b6124bd81612aba565b82525050565b60006124cf82846122dd565b915081905092915050565b60006020820190506124ef60008301846122ce565b92915050565b600060608201905061250a60008301866122ce565b61251760208301856122ce565b61252460408301846124b4565b949350505050565b600060408201905061254160008301856122ce565b61254e60208301846124b4565b9392505050565b600060208201905061256a600083018461230e565b92915050565b600061014082019050612586600083018d61230e565b612593602083018c6124b4565b6125a0604083018b6124b4565b6125ad606083018a6124b4565b6125ba60808301896124b4565b6125c760a08301886124b4565b6125d460c08301876124b4565b6125e160e08301866124b4565b6125ef6101008301856124b4565b6125fd6101208301846122ce565b9b9a5050505050505050505050565b60006020820190508181036000830152612626818461231d565b905092915050565b6000602082019050818103600083015261264781612356565b9050919050565b6000602082019050818103600083015261266781612379565b9050919050565b600060208201905081810360008301526126878161239c565b9050919050565b600060208201905081810360008301526126a7816123bf565b9050919050565b600060208201905081810360008301526126c7816123e2565b9050919050565b600060208201905081810360008301526126e781612405565b9050919050565b6000602082019050818103600083015261270781612428565b9050919050565b600060208201905081810360008301526127278161244b565b9050919050565b600060208201905081810360008301526127478161246e565b9050919050565b6000602082019050818103600083015261276781612491565b9050919050565b600060208201905061278360008301846124b4565b92915050565b600060408201905061279e60008301856124b4565b6127ab60208301846124b4565b9392505050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b60006127ef82612aba565b91506127fa83612aba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561282f5761282e612b86565b5b828201905092915050565b600061284582612aba565b915061285083612aba565b9250826128605761285f612bb5565b5b828204905092915050565b6000808291508390505b60018511156128b55780860481111561289157612890612b86565b5b60018516156128a05780820291505b80810290506128ae85612c29565b9450612875565b94509492505050565b60006128c982612aba565b91506128d483612aba565b92506129017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612909565b905092915050565b60008261291957600190506129d5565b8161292757600090506129d5565b816001811461293d576002811461294757612976565b60019150506129d5565b60ff84111561295957612958612b86565b5b8360020a9150848211156129705761296f612b86565b5b506129d5565b5060208310610133831016604e8410600b84101617156129ab5782820a9050838111156129a6576129a5612b86565b5b6129d5565b6129b8848484600161286b565b925090508184048111156129cf576129ce612b86565b5b81810290505b9392505050565b60006129e782612aba565b91506129f283612aba565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a2b57612a2a612b86565b5b828202905092915050565b6000612a4182612aba565b9150612a4c83612aba565b925082821015612a5f57612a5e612b86565b5b828203905092915050565b6000612a7582612a9a565b9050919050565b60008115159050919050565b6000612a9382612a6a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b6000612adf82612ae6565b9050919050565b6000612af182612af8565b9050919050565b6000612b0382612a9a565b9050919050565b60005b83811015612b28578082015181840152602081019050612b0d565b83811115612b37576000848401525b50505050565b6000612b4882612aba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b7b57612b7a612b86565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6465706f7369743a20757365722068617320686974206465706f73697420636160008201527f7000000000000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e206861732077617920746f6f206d616e7920646563696d616c7300600082015250565b7f636865636b466f72546f6b656e3a2072657761726420746f6b656e2070726f7660008201527f6964656400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f77697468647261773a206e6f7420676f6f640000000000000000000000000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f7265636f76657257726f6e67546f6b656e733a2043616e6e6f7420626520736560008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b612ebd81612a6a565b8114612ec857600080fd5b50565b612ed481612a7c565b8114612edf57600080fd5b50565b612eeb81612a88565b8114612ef657600080fd5b50565b612f0281612aba565b8114612f0d57600080fd5b50565b612f1981612ac4565b8114612f2457600080fd5b5056fea264697066735822122082032c61df4b87aaf6172ea83f06732045a3be727ad1d11791fb2ca4efe4ceb964736f6c63430008070033

Deployed Bytecode Sourcemap

18034:8750:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19718:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23989:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19104:26;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;24488:108;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25312:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22842:773;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18957:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21048:180;;;:::i;:::-;;16975:94;;;:::i;:::-;;24882:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24124:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24238:136;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16324:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19183:66;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;20319:692;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24382:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18994:38;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26525:254;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19039:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25510:978;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21897:911;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17224:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19718:95;19763:7;19790:8;:15;;;;19783:22;;19718:95;:::o;23989:127::-;16555:12;:10;:12::i;:::-;16544:23;;:7;:5;:7::i;:::-;:23;;;16536:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24098:10:::1;24072:36;;:8;24081:4;24072:14;;;;;;;;:::i;:::-;;;;;;;;;;;;:22;;;:36;;;;;;;:::i;:::-;;;;;;;;23989:127:::0;;:::o;19104:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24488:108::-;16555:12;:10;:12::i;:::-;16544:23;;:7;:5;:7::i;:::-;:23;;;16536:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24583:5:::1;24563:17;:25;;;;24488:108:::0;:::o;25312:167::-;16555:12;:10;:12::i;:::-;16544:23;;:7;:5;:7::i;:::-;:23;;;16536:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25403::::1;25443:8;25452:4;25443:14;;;;;;;;:::i;:::-;;;;;;;;;;;;:18;;;;;;;;;;;;25463:7;25403:8;25412:4;25403:14;;;;;;;;:::i;:::-;;;;;;;;;;;;:26;;;;;;;;;;;;:39;;;;:68;;;;;:::i;:::-;25312:167:::0;;:::o;22842:773::-;22913:21;22937:8;22946:4;22937:14;;;;;;;;:::i;:::-;;;;;;;;;;;;22913:38;;22962:21;22986:8;:14;22995:4;22986:14;;;;;;;;;;;:26;23001:10;22986:26;;;;;;;;;;;;;;;22962:50;;23048:7;23033:4;:11;;;:22;;23025:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;23091:16;23102:4;23091:10;:16::i;:::-;23120:15;23201:4;:15;;;23178:4;:19;;;23153:4;:22;;;23139:4;:11;;;:36;;;;:::i;:::-;:58;;;;:::i;:::-;23138:78;;;;:::i;:::-;23120:96;;23244:7;23229:4;:11;;;:22;;;;;;;:::i;:::-;;;;;;;;23283:7;23262:4;:17;;;:28;;;;;;;:::i;:::-;;;;;;;;23358:4;:19;;;23333:4;:22;;;23319:4;:11;;;:36;;;;:::i;:::-;:58;;;;:::i;:::-;23301:4;:15;;:76;;;;23403:1;23393:7;:11;23390:94;;;23421:51;23434:4;:16;;;;;;;;;;;;23452:10;23464:7;23421:12;:51::i;:::-;23390:94;23496:50;23509:6;23525:10;23538:7;23496:12;:50::i;:::-;23593:4;23581:10;23572:35;;;23599:7;23572:35;;;;;;:::i;:::-;;;;;;;;22900:715;;;22842:773;;:::o;18957:30::-;;;:::o;21048:180::-;21093:14;21110:8;:15;;;;21093:32;;21141:11;21136:85;21164:6;21158:3;:12;21136:85;;;21194:15;21205:3;21194:10;:15::i;:::-;21172:5;;;;:::i;:::-;;;21136:85;;;;21082:146;21048:180::o;16975:94::-;16555:12;:10;:12::i;:::-;16544:23;;:7;:5;:7::i;:::-;:23;;;16536:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17040:21:::1;17058:1;17040:9;:21::i;:::-;16975:94::o:0;24882:422::-;16555:12;:10;:12::i;:::-;16544:23;;:7;:5;:7::i;:::-;:23;;;16536:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24996:6:::1;24971:32;;:13;:32;;;;24963:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;25055:36;25076:13;25055;:36::i;:::-;25112:8;25130:13;25123:31;;;25163:4;25123:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25112:57;;25180:60;25223:10;25236:3;25187:13;25180:34;;;;:60;;;;;:::i;:::-;25258:38;25277:13;25292:3;25258:38;;;;;;;:::i;:::-;;;;;;;;24952:352;24882:422:::0;:::o;24124:106::-;16555:12;:10;:12::i;:::-;16544:23;;:7;:5;:7::i;:::-;:23;;;16536:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24210:12:::1;24185:8;24194:4;24185:14;;;;;;;;:::i;:::-;;;;;;;;;;;;:22;;:37;;;;24124:106:::0;:::o;24238:136::-;16555:12;:10;:12::i;:::-;16544:23;;:7;:5;:7::i;:::-;:23;;;16536:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24361:5:::1;24327:8;24336:4;24327:14;;;;;;;;:::i;:::-;;;;;;;;;;;;:31;;:39;;;;24238:136:::0;;:::o;16324:87::-;16370:7;16397:6;;;;;;;;;;;16390:13;;16324:87;:::o;19183:66::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20319:692::-;20394:7;20414:20;20437:8;20446:4;20437:14;;;;;;;;:::i;:::-;;;;;;;;;;;;20414:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20462:20;20485:8;:14;20494:4;20485:14;;;;;;;;;;;:21;20500:5;20485:21;;;;;;;;;;;;;;;20462:44;;;;;;;;;;;;;;;;;;;;;;;;;;;20517:25;20545:4;:22;;;20517:50;;20610:4;:19;;;20592:15;:37;:63;;;;;20654:1;20633:4;:17;;;:22;;20592:63;20588:325;;;20672:18;20693:57;20707:4;:19;;;20728:15;20745:4;20693:13;:57::i;:::-;20672:78;;20765:14;20795:4;:20;;;20782:10;:33;;;;:::i;:::-;20765:50;;20884:4;:17;;;20861:4;:19;;;20852:6;:28;;;;:::i;:::-;20851:50;;;;:::i;:::-;20830:71;;;;;:::i;:::-;;;20657:256;;20588:325;20988:4;:15;;;20965:4;:19;;;20945:17;20931:4;:11;;;:31;;;;:::i;:::-;:53;;;;:::i;:::-;20930:73;;;;:::i;:::-;20923:80;;;;;20319:692;;;;:::o;24382:98::-;16555:12;:10;:12::i;:::-;16544:23;;:7;:5;:7::i;:::-;:23;;;16536:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24466:6:::1;24450:13;:22;;;;24382:98:::0;:::o;18994:38::-;;;;:::o;26525:254::-;16555:12;:10;:12::i;:::-;16544:23;;:7;:5;:7::i;:::-;:23;;;16536:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26633:16:::1;26644:4;26633:10;:16::i;:::-;26695;26662:8;26671:4;26662:14;;;;;;;;:::i;:::-;;;;;;;;;;;;:30;;:49;;;;26729:42;26748:4;26754:16;26729:42;;;;;;;:::i;:::-;;;;;;;;26525:254:::0;;:::o;19039:29::-;;;;:::o;25510:978::-;16555:12;:10;:12::i;:::-;16544:23;;:7;:5;:7::i;:::-;:23;;;16536:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25692:21:::1;25706:6;25692:13;:21::i;:::-;25767:19;25807:10;25789:15;:28;:59;;25838:10;25789:59;;;25820:15;25789:59;25767:81;;25859:24;25886:6;:15;;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25859:44;;25944:2;25922:19;:24;25914:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25993:14;26020:19;26015:2;:24;;;;:::i;:::-;26010:2;:30;;;;:::i;:::-;25993:47;;26053:8;26067:412;;;;;;;;26104:6;26067:412;;;;;;26142:16;26067:412;;;;26189:9;26067:412;;;;26227:1;26067:412;;;;26327:14;26067:412;;;;26375:1;26067:412;;;;26288:8;26067:412;;;;26254:10;26067:412;;;;26450:17;;26433:14;:34;;;;:::i;:::-;26067:412;;;;26396:4;26067:412;;;;::::0;26053:427:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25679:809;;;25510:978:::0;;;;;:::o;21897:911::-;21967:21;21991:8;22000:4;21991:14;;;;;;;;:::i;:::-;;;;;;;;;;;;21967:38;;22016:21;22040:8;:14;22049:4;22040:14;;;;;;;;;;;:26;22055:10;22040:26;;;;;;;;;;;;;;;22016:50;;22098:1;22082:13;;:17;:60;;;;;22121:4;:21;;;22103:15;:39;22082:60;22079:176;;;22192:13;;22181:7;22167:4;:11;;;:21;;;;:::i;:::-;:38;;22159:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;22079:176;22267:16;22278:4;22267:10;:16::i;:::-;22296:15;22377:4;:15;;;22354:4;:19;;;22329:4;:22;;;22315:4;:11;;;:36;;;;:::i;:::-;:58;;;;:::i;:::-;22314:78;;;;:::i;:::-;22296:96;;22420:7;22405:4;:11;;;:22;;;;;;;:::i;:::-;;;;;;;;22459:7;22438:4;:17;;;:28;;;;;;;:::i;:::-;;;;;;;;22534:4;:19;;;22509:4;:22;;;22495:4;:11;;;:36;;;;:::i;:::-;:58;;;;:::i;:::-;22477:4;:15;;:76;;;;22579:1;22569:7;:11;22566:94;;;22597:51;22610:4;:16;;;;;;;;;;;;22628:10;22640:7;22597:12;:51::i;:::-;22566:94;22680:68;22712:10;22733:4;22740:7;22680:6;:23;;;;:68;;;;;;:::i;:::-;22786:4;22774:10;22766:34;;;22792:7;22766:34;;;;;;:::i;:::-;;;;;;;;21954:854;;;21897:911;;:::o;17224:192::-;16555:12;:10;:12::i;:::-;16544:23;;:7;:5;:7::i;:::-;:23;;;16536:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17333:1:::1;17313:22;;:8;:22;;;;17305:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17389:19;17399:8;17389:9;:19::i;:::-;17224:192:::0;:::o;15118:98::-;15171:7;15198:10;15191:17;;15118:98;:::o;11233:211::-;11350:86;11370:5;11400:23;;;11425:2;11429:5;11377:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11350:19;:86::i;:::-;11233:211;;;:::o;21267:597::-;21321:21;21345:8;21354:4;21345:14;;;;;;;;:::i;:::-;;;;;;;;;;;;21321:38;;21393:4;:19;;;21374:15;:38;21370:77;;21429:7;;;21370:77;21484:1;21463:4;:17;;;:22;21459:113;;;21524:15;21502:4;:19;;:37;;;;21554:7;;;21459:113;21582:18;21603:57;21617:4;:19;;;21638:15;21655:4;21603:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:13;:57::i;:::-;21582:78;;21671:14;21701:4;:20;;;21688:10;:33;;;;:::i;:::-;21671:50;;21791:4;:17;;;21769:4;:19;;;21760:6;:28;;;;:::i;:::-;:48;;;;:::i;:::-;21734:4;:22;;;:74;;;;;;;:::i;:::-;;;;;;;;21841:15;21819:4;:19;;:37;;;;21310:554;;;21267:597;;:::o;23665:287::-;23751:11;23765:5;:15;;;23789:4;23765:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23751:44;;23820:3;23810:7;:13;23806:139;;;23840:28;23859:3;23864;23840:5;:18;;;;:28;;;;;:::i;:::-;23806:139;;;23901:32;23920:3;23925:7;23901:5;:18;;;;:32;;;;;:::i;:::-;23806:139;23740:212;23665:287;;;:::o;17424:173::-;17480:16;17499:6;;;;;;;;;;;17480:25;;17525:8;17516:6;;:17;;;;;;;;;;;;;;;;;;17580:8;17549:40;;17570:8;17549:40;;;;;;;;;;;;17469:128;17424:173;:::o;24604:270::-;24666:14;24683:8;:15;;;;24666:32;;24714:12;24709:158;24739:6;24732:4;:13;24709:158;;;24808:6;24778:36;;:8;24787:4;24778:14;;;;;;;;:::i;:::-;;;;;;;;;;;;:26;;;;;;;;;;;;:36;;;;24770:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;24747:6;;;;;:::i;:::-;;;;24709:158;;;;24655:219;24604:270;:::o;19889:391::-;19985:7;20021:4;:14;;;20013:5;:22;:47;;20046:4;:14;;;20013:47;;;20038:5;20013:47;20005:55;;20083:4;:12;;;20075:5;:20;:44;;;;20105:4;:14;;;20099:3;:20;20075:44;20071:85;;;20143:1;20136:8;;;;20071:85;20176:4;:12;;;20170:3;:18;20166:78;;;20227:5;20212:4;:12;;;:20;;;;:::i;:::-;20205:27;;;;20166:78;20267:5;20261:3;:11;;;;:::i;:::-;20254:18;;19889:391;;;;;;:::o;11452:248::-;11596:96;11616:5;11646:27;;;11675:4;11681:2;11685:5;11623:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11596:19;:96::i;:::-;11452:248;;;;:::o;13774:716::-;14198:23;14224:69;14252:4;14224:69;;;;;;;;;;;;;;;;;14232:5;14224:27;;;;:69;;;;;:::i;:::-;14198:95;;14328:1;14308:10;:17;:21;14304:179;;;14405:10;14394:30;;;;;;;;;;;;:::i;:::-;14386:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14304:179;13844:646;13774:716;;:::o;6109:229::-;6246:12;6278:52;6300:6;6308:4;6314:1;6317:12;6278:21;:52::i;:::-;6271:59;;6109:229;;;;;:::o;7229:510::-;7399:12;7457:5;7432:21;:30;;7424:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;7524:18;7535:6;7524:10;:18::i;:::-;7516:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;7590:12;7604:23;7631:6;:11;;7650:5;7657:4;7631:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7589:73;;;;7680:51;7697:7;7706:10;7718:12;7680:16;:51::i;:::-;7673:58;;;;7229:510;;;;;;:::o;3630:387::-;3690:4;3898:12;3965:7;3953:20;3945:28;;4008:1;4001:4;:8;3994:15;;;3630:387;;;:::o;9915:712::-;10065:12;10094:7;10090:530;;;10125:10;10118:17;;;;10090:530;10259:1;10239:10;:17;:21;10235:374;;;10437:10;10431:17;10498:15;10485:10;10481:2;10477:19;10470:44;10235:374;10580:12;10573:20;;;;;;;;;;;:::i;:::-;;;;;;;;9915:712;;;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:137::-;206:5;237:6;231:13;222:22;;253:30;277:5;253:30;:::i;:::-;152:137;;;;:::o;295:173::-;358:5;396:6;383:20;374:29;;412:50;456:5;412:50;:::i;:::-;295:173;;;;:::o;474:139::-;520:5;558:6;545:20;536:29;;574:33;601:5;574:33;:::i;:::-;474:139;;;;:::o;619:143::-;676:5;707:6;701:13;692:22;;723:33;750:5;723:33;:::i;:::-;619:143;;;;:::o;768:137::-;813:5;851:6;838:20;829:29;;867:32;893:5;867:32;:::i;:::-;768:137;;;;:::o;911:329::-;970:6;1019:2;1007:9;998:7;994:23;990:32;987:119;;;1025:79;;:::i;:::-;987:119;1145:1;1170:53;1215:7;1206:6;1195:9;1191:22;1170:53;:::i;:::-;1160:63;;1116:117;911:329;;;;:::o;1246:345::-;1313:6;1362:2;1350:9;1341:7;1337:23;1333:32;1330:119;;;1368:79;;:::i;:::-;1330:119;1488:1;1513:61;1566:7;1557:6;1546:9;1542:22;1513:61;:::i;:::-;1503:71;;1459:125;1246:345;;;;:::o;1597:329::-;1656:6;1705:2;1693:9;1684:7;1680:23;1676:32;1673:119;;;1711:79;;:::i;:::-;1673:119;1831:1;1856:53;1901:7;1892:6;1881:9;1877:22;1856:53;:::i;:::-;1846:63;;1802:117;1597:329;;;;:::o;1932:351::-;2002:6;2051:2;2039:9;2030:7;2026:23;2022:32;2019:119;;;2057:79;;:::i;:::-;2019:119;2177:1;2202:64;2258:7;2249:6;2238:9;2234:22;2202:64;:::i;:::-;2192:74;;2148:128;1932:351;;;;:::o;2289:474::-;2357:6;2365;2414:2;2402:9;2393:7;2389:23;2385:32;2382:119;;;2420:79;;:::i;:::-;2382:119;2540:1;2565:53;2610:7;2601:6;2590:9;2586:22;2565:53;:::i;:::-;2555:63;;2511:117;2667:2;2693:53;2738:7;2729:6;2718:9;2714:22;2693:53;:::i;:::-;2683:63;;2638:118;2289:474;;;;;:::o;2769:945::-;2881:6;2889;2897;2905;2913;2962:3;2950:9;2941:7;2937:23;2933:33;2930:120;;;2969:79;;:::i;:::-;2930:120;3089:1;3114:53;3159:7;3150:6;3139:9;3135:22;3114:53;:::i;:::-;3104:63;;3060:117;3216:2;3242:70;3304:7;3295:6;3284:9;3280:22;3242:70;:::i;:::-;3232:80;;3187:135;3361:2;3387:53;3432:7;3423:6;3412:9;3408:22;3387:53;:::i;:::-;3377:63;;3332:118;3489:2;3515:53;3560:7;3551:6;3540:9;3536:22;3515:53;:::i;:::-;3505:63;;3460:118;3617:3;3644:53;3689:7;3680:6;3669:9;3665:22;3644:53;:::i;:::-;3634:63;;3588:119;2769:945;;;;;;;;:::o;3720:474::-;3788:6;3796;3845:2;3833:9;3824:7;3820:23;3816:32;3813:119;;;3851:79;;:::i;:::-;3813:119;3971:1;3996:53;4041:7;4032:6;4021:9;4017:22;3996:53;:::i;:::-;3986:63;;3942:117;4098:2;4124:53;4169:7;4160:6;4149:9;4145:22;4124:53;:::i;:::-;4114:63;;4069:118;3720:474;;;;;:::o;4200:472::-;4267:6;4275;4324:2;4312:9;4303:7;4299:23;4295:32;4292:119;;;4330:79;;:::i;:::-;4292:119;4450:1;4475:53;4520:7;4511:6;4500:9;4496:22;4475:53;:::i;:::-;4465:63;;4421:117;4577:2;4603:52;4647:7;4638:6;4627:9;4623:22;4603:52;:::i;:::-;4593:62;;4548:117;4200:472;;;;;:::o;4678:118::-;4765:24;4783:5;4765:24;:::i;:::-;4760:3;4753:37;4678:118;;:::o;4802:373::-;4906:3;4934:38;4966:5;4934:38;:::i;:::-;4988:88;5069:6;5064:3;4988:88;:::i;:::-;4981:95;;5085:52;5130:6;5125:3;5118:4;5111:5;5107:16;5085:52;:::i;:::-;5162:6;5157:3;5153:16;5146:23;;4910:265;4802:373;;;;:::o;5181:157::-;5281:50;5325:5;5281:50;:::i;:::-;5276:3;5269:63;5181:157;;:::o;5344:364::-;5432:3;5460:39;5493:5;5460:39;:::i;:::-;5515:71;5579:6;5574:3;5515:71;:::i;:::-;5508:78;;5595:52;5640:6;5635:3;5628:4;5621:5;5617:16;5595:52;:::i;:::-;5672:29;5694:6;5672:29;:::i;:::-;5667:3;5663:39;5656:46;;5436:272;5344:364;;;;:::o;5714:366::-;5856:3;5877:67;5941:2;5936:3;5877:67;:::i;:::-;5870:74;;5953:93;6042:3;5953:93;:::i;:::-;6071:2;6066:3;6062:12;6055:19;;5714:366;;;:::o;6086:::-;6228:3;6249:67;6313:2;6308:3;6249:67;:::i;:::-;6242:74;;6325:93;6414:3;6325:93;:::i;:::-;6443:2;6438:3;6434:12;6427:19;;6086:366;;;:::o;6458:::-;6600:3;6621:67;6685:2;6680:3;6621:67;:::i;:::-;6614:74;;6697:93;6786:3;6697:93;:::i;:::-;6815:2;6810:3;6806:12;6799:19;;6458:366;;;:::o;6830:::-;6972:3;6993:67;7057:2;7052:3;6993:67;:::i;:::-;6986:74;;7069:93;7158:3;7069:93;:::i;:::-;7187:2;7182:3;7178:12;7171:19;;6830:366;;;:::o;7202:::-;7344:3;7365:67;7429:2;7424:3;7365:67;:::i;:::-;7358:74;;7441:93;7530:3;7441:93;:::i;:::-;7559:2;7554:3;7550:12;7543:19;;7202:366;;;:::o;7574:::-;7716:3;7737:67;7801:2;7796:3;7737:67;:::i;:::-;7730:74;;7813:93;7902:3;7813:93;:::i;:::-;7931:2;7926:3;7922:12;7915:19;;7574:366;;;:::o;7946:::-;8088:3;8109:67;8173:2;8168:3;8109:67;:::i;:::-;8102:74;;8185:93;8274:3;8185:93;:::i;:::-;8303:2;8298:3;8294:12;8287:19;;7946:366;;;:::o;8318:::-;8460:3;8481:67;8545:2;8540:3;8481:67;:::i;:::-;8474:74;;8557:93;8646:3;8557:93;:::i;:::-;8675:2;8670:3;8666:12;8659:19;;8318:366;;;:::o;8690:::-;8832:3;8853:67;8917:2;8912:3;8853:67;:::i;:::-;8846:74;;8929:93;9018:3;8929:93;:::i;:::-;9047:2;9042:3;9038:12;9031:19;;8690:366;;;:::o;9062:::-;9204:3;9225:67;9289:2;9284:3;9225:67;:::i;:::-;9218:74;;9301:93;9390:3;9301:93;:::i;:::-;9419:2;9414:3;9410:12;9403:19;;9062:366;;;:::o;9434:118::-;9521:24;9539:5;9521:24;:::i;:::-;9516:3;9509:37;9434:118;;:::o;9558:271::-;9688:3;9710:93;9799:3;9790:6;9710:93;:::i;:::-;9703:100;;9820:3;9813:10;;9558:271;;;;:::o;9835:222::-;9928:4;9966:2;9955:9;9951:18;9943:26;;9979:71;10047:1;10036:9;10032:17;10023:6;9979:71;:::i;:::-;9835:222;;;;:::o;10063:442::-;10212:4;10250:2;10239:9;10235:18;10227:26;;10263:71;10331:1;10320:9;10316:17;10307:6;10263:71;:::i;:::-;10344:72;10412:2;10401:9;10397:18;10388:6;10344:72;:::i;:::-;10426;10494:2;10483:9;10479:18;10470:6;10426:72;:::i;:::-;10063:442;;;;;;:::o;10511:332::-;10632:4;10670:2;10659:9;10655:18;10647:26;;10683:71;10751:1;10740:9;10736:17;10727:6;10683:71;:::i;:::-;10764:72;10832:2;10821:9;10817:18;10808:6;10764:72;:::i;:::-;10511:332;;;;;:::o;10849:248::-;10955:4;10993:2;10982:9;10978:18;10970:26;;11006:84;11087:1;11076:9;11072:17;11063:6;11006:84;:::i;:::-;10849:248;;;;:::o;11103:1245::-;11461:4;11499:3;11488:9;11484:19;11476:27;;11513:84;11594:1;11583:9;11579:17;11570:6;11513:84;:::i;:::-;11607:72;11675:2;11664:9;11660:18;11651:6;11607:72;:::i;:::-;11689;11757:2;11746:9;11742:18;11733:6;11689:72;:::i;:::-;11771;11839:2;11828:9;11824:18;11815:6;11771:72;:::i;:::-;11853:73;11921:3;11910:9;11906:19;11897:6;11853:73;:::i;:::-;11936;12004:3;11993:9;11989:19;11980:6;11936:73;:::i;:::-;12019;12087:3;12076:9;12072:19;12063:6;12019:73;:::i;:::-;12102;12170:3;12159:9;12155:19;12146:6;12102:73;:::i;:::-;12185;12253:3;12242:9;12238:19;12229:6;12185:73;:::i;:::-;12268;12336:3;12325:9;12321:19;12312:6;12268:73;:::i;:::-;11103:1245;;;;;;;;;;;;;:::o;12354:313::-;12467:4;12505:2;12494:9;12490:18;12482:26;;12554:9;12548:4;12544:20;12540:1;12529:9;12525:17;12518:47;12582:78;12655:4;12646:6;12582:78;:::i;:::-;12574:86;;12354:313;;;;:::o;12673:419::-;12839:4;12877:2;12866:9;12862:18;12854:26;;12926:9;12920:4;12916:20;12912:1;12901:9;12897:17;12890:47;12954:131;13080:4;12954:131;:::i;:::-;12946:139;;12673:419;;;:::o;13098:::-;13264:4;13302:2;13291:9;13287:18;13279:26;;13351:9;13345:4;13341:20;13337:1;13326:9;13322:17;13315:47;13379:131;13505:4;13379:131;:::i;:::-;13371:139;;13098:419;;;:::o;13523:::-;13689:4;13727:2;13716:9;13712:18;13704:26;;13776:9;13770:4;13766:20;13762:1;13751:9;13747:17;13740:47;13804:131;13930:4;13804:131;:::i;:::-;13796:139;;13523:419;;;:::o;13948:::-;14114:4;14152:2;14141:9;14137:18;14129:26;;14201:9;14195:4;14191:20;14187:1;14176:9;14172:17;14165:47;14229:131;14355:4;14229:131;:::i;:::-;14221:139;;13948:419;;;:::o;14373:::-;14539:4;14577:2;14566:9;14562:18;14554:26;;14626:9;14620:4;14616:20;14612:1;14601:9;14597:17;14590:47;14654:131;14780:4;14654:131;:::i;:::-;14646:139;;14373:419;;;:::o;14798:::-;14964:4;15002:2;14991:9;14987:18;14979:26;;15051:9;15045:4;15041:20;15037:1;15026:9;15022:17;15015:47;15079:131;15205:4;15079:131;:::i;:::-;15071:139;;14798:419;;;:::o;15223:::-;15389:4;15427:2;15416:9;15412:18;15404:26;;15476:9;15470:4;15466:20;15462:1;15451:9;15447:17;15440:47;15504:131;15630:4;15504:131;:::i;:::-;15496:139;;15223:419;;;:::o;15648:::-;15814:4;15852:2;15841:9;15837:18;15829:26;;15901:9;15895:4;15891:20;15887:1;15876:9;15872:17;15865:47;15929:131;16055:4;15929:131;:::i;:::-;15921:139;;15648:419;;;:::o;16073:::-;16239:4;16277:2;16266:9;16262:18;16254:26;;16326:9;16320:4;16316:20;16312:1;16301:9;16297:17;16290:47;16354:131;16480:4;16354:131;:::i;:::-;16346:139;;16073:419;;;:::o;16498:::-;16664:4;16702:2;16691:9;16687:18;16679:26;;16751:9;16745:4;16741:20;16737:1;16726:9;16722:17;16715:47;16779:131;16905:4;16779:131;:::i;:::-;16771:139;;16498:419;;;:::o;16923:222::-;17016:4;17054:2;17043:9;17039:18;17031:26;;17067:71;17135:1;17124:9;17120:17;17111:6;17067:71;:::i;:::-;16923:222;;;;:::o;17151:332::-;17272:4;17310:2;17299:9;17295:18;17287:26;;17323:71;17391:1;17380:9;17376:17;17367:6;17323:71;:::i;:::-;17404:72;17472:2;17461:9;17457:18;17448:6;17404:72;:::i;:::-;17151:332;;;;;:::o;17570:98::-;17621:6;17655:5;17649:12;17639:22;;17570:98;;;:::o;17674:99::-;17726:6;17760:5;17754:12;17744:22;;17674:99;;;:::o;17779:147::-;17880:11;17917:3;17902:18;;17779:147;;;;:::o;17932:169::-;18016:11;18050:6;18045:3;18038:19;18090:4;18085:3;18081:14;18066:29;;17932:169;;;;:::o;18107:305::-;18147:3;18166:20;18184:1;18166:20;:::i;:::-;18161:25;;18200:20;18218:1;18200:20;:::i;:::-;18195:25;;18354:1;18286:66;18282:74;18279:1;18276:81;18273:107;;;18360:18;;:::i;:::-;18273:107;18404:1;18401;18397:9;18390:16;;18107:305;;;;:::o;18418:185::-;18458:1;18475:20;18493:1;18475:20;:::i;:::-;18470:25;;18509:20;18527:1;18509:20;:::i;:::-;18504:25;;18548:1;18538:35;;18553:18;;:::i;:::-;18538:35;18595:1;18592;18588:9;18583:14;;18418:185;;;;:::o;18609:848::-;18670:5;18677:4;18701:6;18692:15;;18725:5;18716:14;;18739:712;18760:1;18750:8;18747:15;18739:712;;;18855:4;18850:3;18846:14;18840:4;18837:24;18834:50;;;18864:18;;:::i;:::-;18834:50;18914:1;18904:8;18900:16;18897:451;;;19329:4;19322:5;19318:16;19309:25;;18897:451;19379:4;19373;19369:15;19361:23;;19409:32;19432:8;19409:32;:::i;:::-;19397:44;;18739:712;;;18609:848;;;;;;;:::o;19463:285::-;19523:5;19547:23;19565:4;19547:23;:::i;:::-;19539:31;;19591:27;19609:8;19591:27;:::i;:::-;19579:39;;19637:104;19674:66;19664:8;19658:4;19637:104;:::i;:::-;19628:113;;19463:285;;;;:::o;19754:1073::-;19808:5;19999:8;19989:40;;20020:1;20011:10;;20022:5;;19989:40;20048:4;20038:36;;20065:1;20056:10;;20067:5;;20038:36;20134:4;20182:1;20177:27;;;;20218:1;20213:191;;;;20127:277;;20177:27;20195:1;20186:10;;20197:5;;;20213:191;20258:3;20248:8;20245:17;20242:43;;;20265:18;;:::i;:::-;20242:43;20314:8;20311:1;20307:16;20298:25;;20349:3;20342:5;20339:14;20336:40;;;20356:18;;:::i;:::-;20336:40;20389:5;;;20127:277;;20513:2;20503:8;20500:16;20494:3;20488:4;20485:13;20481:36;20463:2;20453:8;20450:16;20445:2;20439:4;20436:12;20432:35;20416:111;20413:246;;;20569:8;20563:4;20559:19;20550:28;;20604:3;20597:5;20594:14;20591:40;;;20611:18;;:::i;:::-;20591:40;20644:5;;20413:246;20684:42;20722:3;20712:8;20706:4;20703:1;20684:42;:::i;:::-;20669:57;;;;20758:4;20753:3;20749:14;20742:5;20739:25;20736:51;;;20767:18;;:::i;:::-;20736:51;20816:4;20809:5;20805:16;20796:25;;19754:1073;;;;;;:::o;20833:348::-;20873:7;20896:20;20914:1;20896:20;:::i;:::-;20891:25;;20930:20;20948:1;20930:20;:::i;:::-;20925:25;;21118:1;21050:66;21046:74;21043:1;21040:81;21035:1;21028:9;21021:17;21017:105;21014:131;;;21125:18;;:::i;:::-;21014:131;21173:1;21170;21166:9;21155:20;;20833:348;;;;:::o;21187:191::-;21227:4;21247:20;21265:1;21247:20;:::i;:::-;21242:25;;21281:20;21299:1;21281:20;:::i;:::-;21276:25;;21320:1;21317;21314:8;21311:34;;;21325:18;;:::i;:::-;21311:34;21370:1;21367;21363:9;21355:17;;21187:191;;;;:::o;21384:96::-;21421:7;21450:24;21468:5;21450:24;:::i;:::-;21439:35;;21384:96;;;:::o;21486:90::-;21520:7;21563:5;21556:13;21549:21;21538:32;;21486:90;;;:::o;21582:113::-;21636:7;21665:24;21683:5;21665:24;:::i;:::-;21654:35;;21582:113;;;:::o;21701:126::-;21738:7;21778:42;21771:5;21767:54;21756:65;;21701:126;;;:::o;21833:77::-;21870:7;21899:5;21888:16;;21833:77;;;:::o;21916:93::-;21952:7;21992:10;21985:5;21981:22;21970:33;;21916:93;;;:::o;22015:139::-;22078:9;22111:37;22142:5;22111:37;:::i;:::-;22098:50;;22015:139;;;:::o;22160:126::-;22210:9;22243:37;22274:5;22243:37;:::i;:::-;22230:50;;22160:126;;;:::o;22292:113::-;22342:9;22375:24;22393:5;22375:24;:::i;:::-;22362:37;;22292:113;;;:::o;22411:307::-;22479:1;22489:113;22503:6;22500:1;22497:13;22489:113;;;22588:1;22583:3;22579:11;22573:18;22569:1;22564:3;22560:11;22553:39;22525:2;22522:1;22518:10;22513:15;;22489:113;;;22620:6;22617:1;22614:13;22611:101;;;22700:1;22691:6;22686:3;22682:16;22675:27;22611:101;22460:258;22411:307;;;:::o;22724:233::-;22763:3;22786:24;22804:5;22786:24;:::i;:::-;22777:33;;22832:66;22825:5;22822:77;22819:103;;;22902:18;;:::i;:::-;22819:103;22949:1;22942:5;22938:13;22931:20;;22724:233;;;:::o;22963:180::-;23011:77;23008:1;23001:88;23108:4;23105:1;23098:15;23132:4;23129:1;23122:15;23149:180;23197:77;23194:1;23187:88;23294:4;23291:1;23284:15;23318:4;23315:1;23308:15;23335:180;23383:77;23380:1;23373:88;23480:4;23477:1;23470:15;23504:4;23501:1;23494:15;23644:117;23753:1;23750;23743:12;23767:102;23808:6;23859:2;23855:7;23850:2;23843:5;23839:14;23835:28;23825:38;;23767:102;;;:::o;23875:::-;23917:8;23964:5;23961:1;23957:13;23936:34;;23875:102;;;:::o;23983:225::-;24123:34;24119:1;24111:6;24107:14;24100:58;24192:8;24187:2;24179:6;24175:15;24168:33;23983:225;:::o;24214:220::-;24354:34;24350:1;24342:6;24338:14;24331:58;24423:3;24418:2;24410:6;24406:15;24399:28;24214:220;:::o;24440:225::-;24580:34;24576:1;24568:6;24564:14;24557:58;24649:8;24644:2;24636:6;24632:15;24625:33;24440:225;:::o;24671:181::-;24811:33;24807:1;24799:6;24795:14;24788:57;24671:181;:::o;24858:223::-;24998:34;24994:1;24986:6;24982:14;24975:58;25067:6;25062:2;25054:6;25050:15;25043:31;24858:223;:::o;25087:182::-;25227:34;25223:1;25215:6;25211:14;25204:58;25087:182;:::o;25275:179::-;25415:31;25411:1;25403:6;25399:14;25392:55;25275:179;:::o;25460:168::-;25600:20;25596:1;25588:6;25584:14;25577:44;25460:168;:::o;25634:229::-;25774:34;25770:1;25762:6;25758:14;25751:58;25843:12;25838:2;25830:6;25826:15;25819:37;25634:229;:::o;25869:223::-;26009:34;26005:1;25997:6;25993:14;25986:58;26078:6;26073:2;26065:6;26061:15;26054:31;25869:223;:::o;26098:122::-;26171:24;26189:5;26171:24;:::i;:::-;26164:5;26161:35;26151:63;;26210:1;26207;26200:12;26151:63;26098:122;:::o;26226:116::-;26296:21;26311:5;26296:21;:::i;:::-;26289:5;26286:32;26276:60;;26332:1;26329;26322:12;26276:60;26226:116;:::o;26348:156::-;26438:41;26473:5;26438:41;:::i;:::-;26431:5;26428:52;26418:80;;26494:1;26491;26484:12;26418:80;26348:156;:::o;26510:122::-;26583:24;26601:5;26583:24;:::i;:::-;26576:5;26573:35;26563:63;;26622:1;26619;26612:12;26563:63;26510:122;:::o;26638:120::-;26710:23;26727:5;26710:23;:::i;:::-;26703:5;26700:34;26690:62;;26748:1;26745;26738:12;26690:62;26638:120;:::o

Swarm Source

ipfs://82032c61df4b87aaf6172ea83f06732045a3be727ad1d11791fb2ca4efe4ceb9

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ 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.