POL Price: $0.63377 (+9.10%)
 

Overview

POL Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 POL

POL Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

Please try again later

Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ERC20CompetitiveRewardModuleFactory

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion
File 1 of 17 : ERC20CompetitiveRewardModuleFactory.sol
/*
ERC20CompetitiveRewardModuleFactory

https://github.com/gysr-io/core

SPDX-License-Identifier: MIT
*/

pragma solidity 0.8.18;

import "./interfaces/IModuleFactory.sol";
import "./ERC20CompetitiveRewardModule.sol";

/**
 * @title ERC20 competitive reward module factory
 *
 * @notice this factory contract handles deployment for the
 * ERC20CompetitiveRewardModule contract
 *
 * @dev it is called by the parent PoolFactory and is responsible
 * for parsing constructor arguments before creating a new contract
 */
contract ERC20CompetitiveRewardModuleFactory is IModuleFactory {
    /**
     * @inheritdoc IModuleFactory
     */
    function createModule(
        address config,
        bytes calldata data
    ) external override returns (address) {
        // validate
        require(data.length == 128, "crmf1");

        // parse constructor arguments
        address token;
        uint256 bonusMin;
        uint256 bonusMax;
        uint256 bonusPeriod;
        assembly {
            token := calldataload(100)
            bonusMin := calldataload(132)
            bonusMax := calldataload(164)
            bonusPeriod := calldataload(196)
        }

        // create module
        ERC20CompetitiveRewardModule module = new ERC20CompetitiveRewardModule(
            token,
            bonusMin,
            bonusMax,
            bonusPeriod,
            config,
            address(this)
        );
        module.transferOwnership(msg.sender);

        // output
        emit ModuleCreated(msg.sender, address(module));
        return address(module);
    }
}

File 2 of 17 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _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 making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 3 of 17 : draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 4 of 17 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 5 of 17 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.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));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @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 6 of 17 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 7 of 17 : ERC20BaseRewardModule.sol
/*
ERC20BaseRewardModule

https://github.com/gysr-io/core

SPDX-License-Identifier: MIT
*/

pragma solidity 0.8.18;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

import "./interfaces/IRewardModule.sol";
import "./OwnerController.sol";
import "./TokenUtils.sol";

/**
 * @title ERC20 base reward module
 *
 * @notice this abstract class implements common ERC20 funding and unlocking
 * logic, which is inherited by other reward modules.
 */
abstract contract ERC20BaseRewardModule is
    IRewardModule,
    ReentrancyGuard,
    OwnerController
{
    using SafeERC20 for IERC20;
    using TokenUtils for IERC20;

    // single funding/reward schedule
    struct Funding {
        uint256 amount;
        uint256 shares;
        uint256 locked;
        uint64 updated;
        uint64 start;
        uint64 duration;
    }

    // constants
    uint256 public constant MAX_ACTIVE_FUNDINGS = 16;

    // funding/reward state fields
    mapping(address => Funding[]) private _fundings;
    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _locked;

    /**
     * @notice getter for total token shares
     */
    function totalShares(address token) public view returns (uint256) {
        return _shares[token];
    }

    /**
     * @notice getter for total locked token shares
     */
    function lockedShares(address token) public view returns (uint256) {
        return _locked[token];
    }

    /**
     * @notice getter for funding schedule struct
     */
    function fundings(
        address token,
        uint256 index
    )
        public
        view
        returns (
            uint256 amount,
            uint256 shares,
            uint256 locked,
            uint256 updated,
            uint256 start,
            uint256 duration
        )
    {
        Funding storage f = _fundings[token][index];
        return (f.amount, f.shares, f.locked, f.updated, f.start, f.duration);
    }

    /**
     * @param token contract address of reward token
     * @return number of active funding schedules
     */
    function fundingCount(address token) public view returns (uint256) {
        return _fundings[token].length;
    }

    /**
     * @notice compute number of unlockable shares for a specific funding schedule
     * @param token contract address of reward token
     * @param idx index of the funding
     * @return the number of unlockable shares
     */
    function unlockable(
        address token,
        uint256 idx
    ) public view returns (uint256) {
        Funding storage funding = _fundings[token][idx];
        return _unlockable(funding);
    }

    /**
     * @notice internal method to compute number of unlockable shares for a specific funding schedule
     * @param funding the funding schedule struct of interest
     * @return the number of unlockable shares
     */
    function _unlockable(
        Funding storage funding
    ) private view returns (uint256) {
        // funding schedule is in future
        if (block.timestamp < funding.start) {
            return 0;
        }
        // empty
        if (funding.locked == 0) {
            return 0;
        }
        // handle zero-duration period or leftover dust from integer division
        if (block.timestamp >= funding.start + funding.duration) {
            return funding.locked;
        }

        return
            ((block.timestamp - funding.updated) * funding.shares) /
            funding.duration;
    }

    /**
     * @notice fund pool by locking up reward tokens for future distribution
     * @param token contract address of reward token
     * @param amount number of reward tokens to lock up as funding
     * @param duration period (seconds) over which funding will be unlocked
     * @param start time (seconds) at which funding begins to unlock
     * @param feeReceiver address to receive funding fee
     * @param feeRate portion of funding amount to take as fee
     */
    function _fund(
        address token,
        uint256 amount,
        uint256 duration,
        uint256 start,
        address feeReceiver,
        uint256 feeRate
    ) internal nonReentrant {
        requireController();
        // validate
        require(token != address(0));
        require(amount > 0, "rm1");
        require(start >= block.timestamp, "rm2");
        require(_fundings[token].length < MAX_ACTIVE_FUNDINGS, "rm3");

        IERC20 rewardToken = IERC20(token);
        uint256 minted = rewardToken.receiveWithFee(
            _shares[token],
            msg.sender,
            amount,
            feeReceiver,
            feeRate
        );

        _locked[token] += minted;
        _shares[token] += minted;

        // create new funding
        _fundings[token].push(
            Funding({
                amount: amount,
                shares: minted,
                locked: minted,
                updated: uint64(start),
                start: uint64(start),
                duration: uint64(duration)
            })
        );

        emit RewardsFunded(token, amount, minted, start);
    }

    /**
     * @dev internal function to clean up stale funding schedules
     * @param token contract address of reward token to clean up
     */
    function _clean(address token) internal {
        // check for stale funding schedules to expire
        uint256 removed = 0;
        uint256 originalSize = _fundings[token].length;
        for (uint256 i; i < originalSize; ) {
            uint256 idx = i - removed;
            Funding storage funding = _fundings[token][idx];
            if (
                _unlockable(funding) == 0 &&
                block.timestamp >= funding.start + funding.duration
            ) {
                emit RewardsExpired(
                    token,
                    funding.amount,
                    funding.shares,
                    funding.start
                );

                // remove at idx by copying last element here, then popping off last
                // (we don't care about order)
                _fundings[token][idx] = _fundings[token][
                    _fundings[token].length - 1
                ];
                _fundings[token].pop();
                removed++;
            }
            unchecked {
                ++i;
            }
        }
    }

    /**
     * @dev unlocks reward tokens based on funding schedules
     * @param token contract addres of reward token
     * @return shares number of shares unlocked
     */
    function _unlockTokens(address token) internal returns (uint256 shares) {
        // get unlockable shares for each funding schedule
        uint256 len = _fundings[token].length;
        for (uint256 i; i < len; ) {
            Funding storage funding = _fundings[token][i];
            uint256 s = _unlockable(funding);
            if (s > 0) {
                funding.locked -= s;
                funding.updated = uint64(block.timestamp);
                shares += s;
            }
            unchecked {
                ++i;
            }
        }

        // do unlocking
        if (shares > 0) {
            _locked[token] -= shares;
        }
    }

    /**
     * @dev distribute reward tokens to user
     * @param user address of user receiving rweard
     * @param token contract address of reward token
     * @param shares number of shares to be distributed
     * @return amount number of reward tokens distributed
     */
    function _distribute(
        address user,
        address token,
        uint256 shares
    ) internal returns (uint256 amount) {
        // compute reward amount in tokens
        IERC20 rewardToken = IERC20(token);
        uint256 total = _shares[token];
        amount = rewardToken.getAmount(total, shares);

        // update overall reward shares
        _shares[token] = total - shares;

        // do reward
        rewardToken.safeTransfer(user, amount);
        emit RewardsDistributed(user, token, amount, shares);
    }
}

File 8 of 17 : ERC20CompetitiveRewardModule.sol
/*
ERC20CompetitiveRewardModule

https://github.com/gysr-io/core

SPDX-License-Identifier: MIT
*/

pragma solidity 0.8.18;

import "./interfaces/IRewardModule.sol";
import "./interfaces/IConfiguration.sol";
import "./ERC20BaseRewardModule.sol";
import "./GysrUtils.sol";
import "./TokenUtils.sol";

/**
 * @title ERC20 competitive reward module
 *
 * @notice this reward module distributes a single ERC20 token as the staking reward.
 * It is designed to offer competitive and engaging reward mechanics.
 *
 * @dev share seconds are the primary unit of accounting in this module. They
 * are accrued over time and burned during reward distribution. Users can
 * earn a time multiplier as an incentive for longer term staking. They can
 * also receive a GYSR multiplier by spending GYSR at the time of unstaking.
 *
 * h/t https://github.com/ampleforth/token-geyser
 */
contract ERC20CompetitiveRewardModule is ERC20BaseRewardModule {
    using TokenUtils for IERC20;
    using GysrUtils for uint256;

    // single stake by user
    struct Stake {
        uint256 shares;
        uint256 timestamp;
    }

    mapping(bytes32 => Stake[]) public stakes;

    // configuration fields
    uint256 public immutable bonusMin;
    uint256 public immutable bonusMax;
    uint256 public immutable bonusPeriod;
    IERC20 private immutable _token;
    address private immutable _factory;
    IConfiguration private immutable _config;

    // global state fields
    uint256 public totalStakingShares;
    uint256 public totalStakingShareSeconds;
    uint256 public lastUpdated;
    uint256 private _usage;

    /**
     * @param token_ the token that will be rewarded
     * @param bonusMin_ initial time bonus
     * @param bonusMax_ maximum time bonus
     * @param bonusPeriod_ period (in seconds) over which time bonus grows to max
     * @param config_ address for configuration contract
     * @param factory_ address of module factory
     */
    constructor(
        address token_,
        uint256 bonusMin_,
        uint256 bonusMax_,
        uint256 bonusPeriod_,
        address config_,
        address factory_
    ) {
        require(token_ != address(0));
        require(bonusMin_ <= bonusMax_, "crm1");

        _token = IERC20(token_);
        _config = IConfiguration(config_);
        _factory = factory_;

        bonusMin = bonusMin_;
        bonusMax = bonusMax_;
        bonusPeriod = bonusPeriod_;

        lastUpdated = block.timestamp;
    }

    // -- IRewardModule -------------------------------------------------------

    /**
     * @inheritdoc IRewardModule
     */
    function tokens()
        external
        view
        override
        returns (address[] memory tokens_)
    {
        tokens_ = new address[](1);
        tokens_[0] = address(_token);
    }

    /**
     * @inheritdoc IRewardModule
     */
    function balances()
        external
        view
        override
        returns (uint256[] memory balances_)
    {
        balances_ = new uint256[](1);
        balances_[0] = totalLocked();
    }

    /**
     * @inheritdoc IRewardModule
     */
    function usage() external view override returns (uint256) {
        return _usage;
    }

    /**
     * @inheritdoc IRewardModule
     */
    function factory() external view override returns (address) {
        return _factory;
    }

    /**
     * @inheritdoc IRewardModule
     */
    function stake(
        bytes32 account,
        address,
        uint256 shares,
        bytes calldata
    ) external override onlyOwner returns (uint256, uint256) {
        _update();
        _stake(account, shares);
        return (0, 0);
    }

    /**
     * @inheritdoc IRewardModule
     */
    function unstake(
        bytes32 account,
        address sender,
        address receiver,
        uint256 shares,
        bytes calldata data
    ) external override onlyOwner returns (uint256, uint256) {
        _update();
        return _unstake(account, sender, receiver, shares, data);
    }

    /**
     * @inheritdoc IRewardModule
     */
    function claim(
        bytes32 account,
        address sender,
        address receiver,
        uint256 shares,
        bytes calldata data
    ) external override onlyOwner returns (uint256 spent, uint256 vested) {
        _update();
        (spent, vested) = _unstake(account, sender, receiver, shares, data);
        _stake(account, shares);
    }

    /**
     * @inheritdoc IRewardModule
     */
    function update(bytes32, address, bytes calldata) external override {
        requireOwner();
        _update();
    }

    /**
     * @inheritdoc IRewardModule
     */
    function clean(bytes calldata) external override {
        requireOwner();
        _update();
        _clean(address(_token));
    }

    // -- ERC20CompetitiveRewardModule ----------------------------------------

    /**
     * @notice fund module by locking up reward tokens for distribution
     * @param amount number of reward tokens to lock up as funding
     * @param duration period (seconds) over which funding will be unlocked
     */
    function fund(uint256 amount, uint256 duration) external {
        _fund(address(_token), amount, duration, block.timestamp);
    }

    /**
     * @notice fund module by locking up reward tokens for distribution
     * @param amount number of reward tokens to lock up as funding
     * @param duration period (seconds) over which funding will be unlocked
     * @param start time (seconds) at which funding begins to unlock
     */
    function fund(uint256 amount, uint256 duration, uint256 start) external {
        _fund(address(_token), amount, duration, start);
    }

    /**
     * @notice compute time bonus earned as a function of staking time
     * @param time length of time for which the tokens have been staked
     * @return bonus multiplier for time
     */
    function timeBonus(uint256 time) public view returns (uint256) {
        if (time >= bonusPeriod) {
            return 1e18 + bonusMax;
        }

        // linearly interpolate between bonus min and bonus max
        uint256 bonus = bonusMin + ((bonusMax - bonusMin) * time) / bonusPeriod;
        return 1e18 + bonus;
    }

    /**
     * @return total number of locked reward tokens
     */
    function totalLocked() public view returns (uint256) {
        return
            _token.getAmount(
                totalShares(address(_token)),
                lockedShares(address(_token))
            );
    }

    /**
     * @return total number of unlocked reward tokens
     */
    function totalUnlocked() public view returns (uint256) {
        uint256 total = totalShares(address(_token));
        uint256 locked = lockedShares(address(_token));
        return _token.getAmount(total, total - locked);
    }

    /**
     * @param account bytes32 account of interest
     * @return number of active stakes for user
     */
    function stakeCount(bytes32 account) public view returns (uint256) {
        return stakes[account].length;
    }

    // -- ERC20CompetitiveRewardModule internal -------------------------------

    /**
     * @dev internal implementation of stake method
     * @param account bytes32 id of staking account
     * @param shares number of shares burned
     */
    function _stake(bytes32 account, uint256 shares) private {
        // update user staking info
        stakes[account].push(Stake(shares, block.timestamp));

        // add newly minted shares to global total
        totalStakingShares += shares;
    }

    /**
     * @dev internal implementation of unstake method
     * @param account bytes32 id of staking account
     * @param sender address of sender
     * @param receiver address of receiver
     * @param shares number of shares burned
     * @param data additional data
     * @return spent amount of gysr spent
     * @return vested amount of gysr vested
     */
    function _unstake(
        bytes32 account,
        address sender,
        address receiver,
        uint256 shares,
        bytes calldata data
    ) private returns (uint256 spent, uint256 vested) {
        // validate
        // note: we assume shares has been validated upstream
        require(data.length == 0 || data.length == 32, "crm2");

        // parse GYSR amount from data
        if (data.length == 32) {
            assembly {
                spent := calldataload(196)
            }
        }

        uint256 bonus = spent.gysrBonus(shares, totalStakingShares, _usage);

        // do unstaking, first-in last-out, respecting time bonus
        uint256 shareSeconds;
        uint256 timeWeightedShareSeconds;
        (shareSeconds, timeWeightedShareSeconds) = _unstakeFirstInLastOut(
            account,
            shares
        );

        // compute and apply GYSR token bonus
        uint256 gysrWeightedShareSeconds = (bonus * timeWeightedShareSeconds) /
            1e18;

        // get reward in shares
        uint256 unlockedShares = totalShares(address(_token)) -
            lockedShares(address(_token));

        uint256 rewardShares = (unlockedShares * gysrWeightedShareSeconds) /
            (totalStakingShareSeconds + gysrWeightedShareSeconds);

        if (rewardShares == 0) {
            return (0, 0);
        }

        // reward
        _distribute(receiver, address(_token), rewardShares);

        // update usage
        uint256 ratio;
        if (spent > 0) {
            vested = spent;
            emit GysrSpent(sender, spent);
            emit GysrVested(sender, vested);
            ratio = ((bonus - 1e18) * 1e18) / bonus;
        }
        uint256 weight = (shareSeconds * 1e18) /
            (totalStakingShareSeconds + shareSeconds);
        _usage = _usage - (weight * _usage) / 1e18 + (weight * ratio) / 1e18;
    }

    /**
     * @dev internal implementation of update method to
     * unlock tokens and do global accounting
     */
    function _update() private {
        _unlockTokens(address(_token));

        // global accounting
        totalStakingShareSeconds +=
            (block.timestamp - lastUpdated) *
            totalStakingShares;
        lastUpdated = block.timestamp;
    }

    /**
     * @dev helper function to actually execute unstaking, first-in last-out, 
     while computing and applying time bonus. This function also updates
     user and global totals for shares and share-seconds.
     * @param account address of user
     * @param shares number of staking shares to burn
     * @return rawShareSeconds raw share seconds burned
     * @return bonusShareSeconds time bonus weighted share seconds
     */
    function _unstakeFirstInLastOut(
        bytes32 account,
        uint256 shares
    ) private returns (uint256 rawShareSeconds, uint256 bonusShareSeconds) {
        // redeem first-in-last-out
        uint256 sharesLeftToBurn = shares;
        Stake[] storage userStakes = stakes[account];
        while (sharesLeftToBurn > 0) {
            Stake storage lastStake = userStakes[userStakes.length - 1];
            uint256 stakeTime = block.timestamp - lastStake.timestamp;
            require(stakeTime > 0, "crm3");

            uint256 bonus = timeBonus(stakeTime);

            if (lastStake.shares <= sharesLeftToBurn) {
                // fully redeem a past stake
                bonusShareSeconds +=
                    (lastStake.shares * stakeTime * bonus) /
                    1e18;
                rawShareSeconds += lastStake.shares * stakeTime;
                sharesLeftToBurn -= lastStake.shares;
                userStakes.pop();
            } else {
                // partially redeem a past stake
                bonusShareSeconds +=
                    (sharesLeftToBurn * stakeTime * bonus) /
                    1e18;
                rawShareSeconds += sharesLeftToBurn * stakeTime;
                lastStake.shares -= sharesLeftToBurn;
                sharesLeftToBurn = 0;
            }
        }

        // update global totals
        totalStakingShareSeconds -= rawShareSeconds;
        totalStakingShares -= shares;
    }

    /**
     * @dev private helper method for funding with fee processing
     */
    function _fund(
        address token,
        uint256 amount,
        uint256 duration,
        uint256 start
    ) private {
        _update();

        // get fees
        (address receiver, uint256 rate) = _config.getAddressUint96(
            keccak256("gysr.core.competitive.fund.fee")
        );

        // do funding
        _fund(token, amount, duration, start, receiver, rate);
    }
}

File 9 of 17 : GysrUtils.sol
/*
GysrUtils

https://github.com/gysr-io/core

SPDX-License-Identifier: MIT
*/

pragma solidity 0.8.18;

import "./MathUtils.sol";

/**
 * @title GYSR utilities
 *
 * @notice this library implements utility methods for the GYSR multiplier
 * and spending mechanics
 */
library GysrUtils {
    using MathUtils for int128;

    // constants
    uint256 public constant GYSR_PROPORTION = 1e16; // 1%

    /**
     * @notice compute GYSR bonus as a function of usage ratio, stake amount,
     * and GYSR spent
     * @param gysr number of GYSR token applied to bonus
     * @param amount number of tokens or shares to unstake
     * @param total number of tokens or shares in overall pool
     * @param ratio usage ratio from 0 to 1
     * @return multiplier value
     */
    function gysrBonus(
        uint256 gysr,
        uint256 amount,
        uint256 total,
        uint256 ratio
    ) internal pure returns (uint256) {
        if (amount == 0) {
            return 0;
        }
        if (total == 0) {
            return 0;
        }
        if (gysr == 0) {
            return 1e18;
        }

        // scale GYSR amount with respect to proportion
        uint256 portion = (GYSR_PROPORTION * total) / 1e18;
        if (amount > portion) {
            gysr = (gysr * portion) / amount;
        }

        // 1 + gysr / (0.01 + ratio)
        uint256 x = 2 ** 64 + (2 ** 64 * gysr) / (1e16 + ratio);

        return
            1e18 +
            (uint256(int256(int128(uint128(x)).logbase10())) * 1e18) /
            2 ** 64;
    }
}

File 10 of 17 : IConfiguration.sol
/*
IConfiguration

https://github.com/gysr-io/core

SPDX-License-Identifier: MIT
*/

pragma solidity 0.8.18;

/**
 * @title Configuration interface
 *
 * @notice this defines the protocol configuration interface
 */
interface IConfiguration {
    // events
    event ParameterUpdated(bytes32 indexed key, address value);
    event ParameterUpdated(bytes32 indexed key, uint256 value);
    event ParameterUpdated(bytes32 indexed key, address value0, uint96 value1);
    event ParameterOverridden(
        address indexed caller,
        bytes32 indexed key,
        address value
    );
    event ParameterOverridden(
        address indexed caller,
        bytes32 indexed key,
        uint256 value
    );
    event ParameterOverridden(
        address indexed caller,
        bytes32 indexed key,
        address value0,
        uint96 value1
    );

    /**
     * @notice set or update uint256 parameter
     * @param key keccak256 hash of parameter key
     * @param value uint256 parameter value
     */
    function setUint256(bytes32 key, uint256 value) external;

    /**
     * @notice set or update address parameter
     * @param key keccak256 hash of parameter key
     * @param value address parameter value
     */
    function setAddress(bytes32 key, address value) external;

    /**
     * @notice set or update packed address + uint96 pair
     * @param key keccak256 hash of parameter key
     * @param value0 address parameter value
     * @param value1 uint96 parameter value
     */
    function setAddressUint96(
        bytes32 key,
        address value0,
        uint96 value1
    ) external;

    /**
     * @notice get uint256 parameter
     * @param key keccak256 hash of parameter key
     * @return uint256 parameter value
     */
    function getUint256(bytes32 key) external view returns (uint256);

    /**
     * @notice get address parameter
     * @param key keccak256 hash of parameter key
     * @return uint256 parameter value
     */
    function getAddress(bytes32 key) external view returns (address);

    /**
     * @notice get packed address + uint96 pair
     * @param key keccak256 hash of parameter key
     * @return address parameter value
     * @return uint96 parameter value
     */
    function getAddressUint96(
        bytes32 key
    ) external view returns (address, uint96);

    /**
     * @notice override uint256 parameter for specific caller
     * @param caller address of caller
     * @param key keccak256 hash of parameter key
     * @param value uint256 parameter value
     */
    function overrideUint256(
        address caller,
        bytes32 key,
        uint256 value
    ) external;

    /**
     * @notice override address parameter for specific caller
     * @param caller address of caller
     * @param key keccak256 hash of parameter key
     * @param value address parameter value
     */
    function overrideAddress(
        address caller,
        bytes32 key,
        address value
    ) external;

    /**
     * @notice override address parameter for specific caller
     * @param caller address of caller
     * @param key keccak256 hash of parameter key
     * @param value0 address parameter value
     * @param value1 uint96 parameter value
     */
    function overrideAddressUint96(
        address caller,
        bytes32 key,
        address value0,
        uint96 value1
    ) external;
}

File 11 of 17 : IEvents.sol
/*
IEvents

https://github.com/gysr-io/core

SPDX-License-Identifier: MIT
 */

pragma solidity 0.8.18;

/**
 * @title GYSR event system
 *
 * @notice common interface to define GYSR event system
 */
interface IEvents {
    // staking
    event Staked(
        bytes32 indexed account,
        address indexed user,
        address indexed token,
        uint256 amount,
        uint256 shares
    );
    event Unstaked(
        bytes32 indexed account,
        address indexed user,
        address indexed token,
        uint256 amount,
        uint256 shares
    );
    event Claimed(
        bytes32 indexed account,
        address indexed user,
        address indexed token,
        uint256 amount,
        uint256 shares
    );
    event Updated(bytes32 indexed account, address indexed user);

    // rewards
    event RewardsDistributed(
        address indexed user,
        address indexed token,
        uint256 amount,
        uint256 shares
    );
    event RewardsFunded(
        address indexed token,
        uint256 amount,
        uint256 shares,
        uint256 timestamp
    );
    event RewardsExpired(
        address indexed token,
        uint256 amount,
        uint256 shares,
        uint256 timestamp
    );
    event RewardsWithdrawn(
        address indexed token,
        uint256 amount,
        uint256 shares,
        uint256 timestamp
    );
    event RewardsUpdated(bytes32 indexed account);

    // gysr
    event GysrSpent(address indexed user, uint256 amount);
    event GysrVested(address indexed user, uint256 amount);
    event GysrWithdrawn(uint256 amount);
    event Fee(address indexed receiver, address indexed token, uint256 amount);
}

File 12 of 17 : IModuleFactory.sol
/*
IModuleFactory

https://github.com/gysr-io/core

SPDX-License-Identifier: MIT
*/

pragma solidity 0.8.18;

/**
 * @title Module factory interface
 *
 * @notice this defines the common module factory interface used by the
 * main factory to create the staking and reward modules for a new Pool.
 */
interface IModuleFactory {
    // events
    event ModuleCreated(address indexed user, address module);

    /**
     * @notice create a new Pool module
     * @param config address for configuration contract
     * @param data binary encoded construction parameters
     * @return address of newly created module
     */
    function createModule(address config, bytes calldata data)
        external
        returns (address);
}

File 13 of 17 : IOwnerController.sol
/*
IOwnerController

https://github.com/gysr-io/core

SPDX-License-Identifier: MIT
*/

pragma solidity 0.8.18;

/**
 * @title Owner controller interface
 *
 * @notice this defines the interface for any contracts that use the
 * owner controller access pattern
 */
interface IOwnerController {
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() external view returns (address);

    /**
     * @dev Returns the address of the current controller.
     */
    function controller() external view returns (address);

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`). This can
     * include renouncing ownership by transferring to the zero address.
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) external;

    /**
     * @dev Transfers control of the contract to a new account (`newController`).
     * Can only be called by the owner.
     */
    function transferControl(address newController) external;
}

File 14 of 17 : IRewardModule.sol
/*
IRewardModule

https://github.com/gysr-io/core

SPDX-License-Identifier: MIT
*/

pragma solidity 0.8.18;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

import "./IEvents.sol";
import "./IOwnerController.sol";

/**
 * @title Reward module interface
 *
 * @notice this contract defines the common interface that any reward module
 * must implement to be compatible with the modular Pool architecture.
 */
interface IRewardModule is IOwnerController, IEvents {
    /**
     * @return array of reward tokens
     */
    function tokens() external view returns (address[] memory);

    /**
     * @return array of reward token balances
     */
    function balances() external view returns (uint256[] memory);

    /**
     * @return GYSR usage ratio for reward module
     */
    function usage() external view returns (uint256);

    /**
     * @return address of module factory
     */
    function factory() external view returns (address);

    /**
     * @notice perform any necessary accounting for new stake
     * @param account bytes32 id of staking account
     * @param sender address of sender
     * @param shares number of new shares minted
     * @param data addtional data
     * @return amount of gysr spent
     * @return amount of gysr vested
     */
    function stake(
        bytes32 account,
        address sender,
        uint256 shares,
        bytes calldata data
    ) external returns (uint256, uint256);

    /**
     * @notice reward user and perform any necessary accounting for unstake
     * @param account bytes32 id of staking account
     * @param sender address of sender
     * @param receiver address of reward receiver
     * @param shares number of shares burned
     * @param data additional data
     * @return amount of gysr spent
     * @return amount of gysr vested
     */
    function unstake(
        bytes32 account,
        address sender,
        address receiver,
        uint256 shares,
        bytes calldata data
    ) external returns (uint256, uint256);

    /**
     * @notice reward user and perform and necessary accounting for existing stake
     * @param account bytes32 id of staking account
     * @param sender address of sender
     * @param receiver address of reward receiver
     * @param shares number of shares being claimed against
     * @param data additional data
     * @return amount of gysr spent
     * @return amount of gysr vested
     */
    function claim(
        bytes32 account,
        address sender,
        address receiver,
        uint256 shares,
        bytes calldata data
    ) external returns (uint256, uint256);

    /**
     * @notice method called by anyone to update accounting
     * @dev will only be called ad hoc and should not contain essential logic
     * @param account bytes32 id of staking account for update
     * @param sender address of sender
     * @param data additional data
     */
    function update(
        bytes32 account,
        address sender,
        bytes calldata data
    ) external;

    /**
     * @notice method called by owner to clean up and perform additional accounting
     * @dev will only be called ad hoc and should not contain any essential logic
     * @param data additional data
     */
    function clean(bytes calldata data) external;
}

File 15 of 17 : MathUtils.sol
/*
MathUtils

https://github.com/gysr-io/core

SPDX-License-Identifier: BSD-4-Clause
*/

pragma solidity 0.8.18;

/**
 * @title Math utilities
 *
 * @notice this library implements various logarithmic math utilies which support
 * other contracts and specifically the GYSR multiplier calculation
 *
 * @dev h/t https://github.com/abdk-consulting/abdk-libraries-solidity
 */
library MathUtils {
    /**
     * @notice calculate binary logarithm of x
     *
     * @param x signed 64.64-bit fixed point number, require x > 0
     * @return signed 64.64-bit fixed point number
     */
    function logbase2(int128 x) internal pure returns (int128) {
        unchecked {
            require(x > 0);

            int256 msb = 0;
            int256 xc = x;
            if (xc >= 0x10000000000000000) {
                xc >>= 64;
                msb += 64;
            }
            if (xc >= 0x100000000) {
                xc >>= 32;
                msb += 32;
            }
            if (xc >= 0x10000) {
                xc >>= 16;
                msb += 16;
            }
            if (xc >= 0x100) {
                xc >>= 8;
                msb += 8;
            }
            if (xc >= 0x10) {
                xc >>= 4;
                msb += 4;
            }
            if (xc >= 0x4) {
                xc >>= 2;
                msb += 2;
            }
            if (xc >= 0x2) msb += 1; // No need to shift xc anymore

            int256 result = (msb - 64) << 64;
            uint256 ux = uint256(int256(x)) << uint256(127 - msb);
            for (int256 bit = 0x8000000000000000; bit > 0; bit >>= 1) {
                ux *= ux;
                uint256 b = ux >> 255;
                ux >>= 127 + b;
                result += bit * int256(b);
            }

            return int128(result);
        }
    }

    /**
     * @notice calculate natural logarithm of x
     * @dev magic constant comes from ln(2) * 2^128 -> hex
     * @param x signed 64.64-bit fixed point number, require x > 0
     * @return signed 64.64-bit fixed point number
     */
    function ln(int128 x) internal pure returns (int128) {
        unchecked {
            require(x > 0);

            return
                int128(
                    int256(
                        (uint256(int256(logbase2(x))) *
                            0xB17217F7D1CF79ABC9E3B39803F2F6AF) >> 128
                    )
                );
        }
    }

    /**
     * @notice calculate logarithm base 10 of x
     * @dev magic constant comes from log10(2) * 2^128 -> hex
     * @param x signed 64.64-bit fixed point number, require x > 0
     * @return signed 64.64-bit fixed point number
     */
    function logbase10(int128 x) internal pure returns (int128) {
        require(x > 0);

        return
            int128(
                int256(
                    (uint256(int256(logbase2(x))) *
                        0x4d104d427de7fce20a6e420e02236748) >> 128
                )
            );
    }

    // wrapper functions to allow testing
    function testlogbase2(int128 x) public pure returns (int128) {
        return logbase2(x);
    }

    function testlogbase10(int128 x) public pure returns (int128) {
        return logbase10(x);
    }
}

File 16 of 17 : OwnerController.sol
/*
OwnerController

https://github.com/gysr-io/core

SPDX-License-Identifier: MIT
*/

pragma solidity 0.8.18;

import "./interfaces/IOwnerController.sol";

/**
 * @title Owner controller
 *
 * @notice this base contract implements an owner-controller access model.
 *
 * @dev the contract is an adapted version of the OpenZeppelin Ownable contract.
 * It allows the owner to designate an additional account as the controller to
 * perform restricted operations.
 *
 * Other changes include supporting role verification with a require method
 * in addition to the modifier option, and removing some unneeded functionality.
 *
 * Original contract here:
 * https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol
 */
contract OwnerController is IOwnerController {
    address private _owner;
    address private _controller;

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

    event ControlTransferred(
        address indexed previousController,
        address indexed newController
    );

    constructor() {
        _owner = msg.sender;
        _controller = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
        emit ControlTransferred(address(0), _owner);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view override returns (address) {
        return _owner;
    }

    /**
     * @dev Returns the address of the current controller.
     */
    function controller() public view override returns (address) {
        return _controller;
    }

    /**
     * @dev Modifier that throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == msg.sender, "oc1");
        _;
    }

    /**
     * @dev Modifier that throws if called by any account other than the controller.
     */
    modifier onlyController() {
        require(_controller == msg.sender, "oc2");
        _;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    function requireOwner() internal view {
        require(_owner == msg.sender, "oc1");
    }

    /**
     * @dev Throws if called by any account other than the controller.
     */
    function requireController() internal view {
        require(_controller == msg.sender, "oc2");
    }

    /**
     * @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 override {
        requireOwner();
        require(newOwner != address(0), "oc3");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

    /**
     * @dev Transfers control of the contract to a new account (`newController`).
     * Can only be called by the owner.
     */
    function transferControl(address newController) public virtual override {
        requireOwner();
        require(newController != address(0), "oc4");
        emit ControlTransferred(_controller, newController);
        _controller = newController;
    }
}

File 17 of 17 : TokenUtils.sol
/*
TokenUtils

https://github.com/gysr-io/core

SPDX-License-Identifier: MIT
*/

pragma solidity 0.8.18;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";

/**
 * @title Token utilities
 *
 * @notice this library implements utility methods for token handling,
 * dynamic balance accounting, and fee processing
 */
library TokenUtils {
    using SafeERC20 for IERC20;

    event Fee(address indexed receiver, address indexed token, uint256 amount); // redefinition

    uint256 constant INITIAL_SHARES_PER_TOKEN = 1e6;
    uint256 constant FLOOR_SHARES_PER_TOKEN = 1e3;

    /**
     * @notice get token shares from amount
     * @param token erc20 token interface
     * @param total current total shares
     * @param amount balance of tokens
     */
    function getShares(
        IERC20 token,
        uint256 total,
        uint256 amount
    ) internal view returns (uint256) {
        if (total == 0) return 0;
        uint256 balance = token.balanceOf(address(this));
        if (total < balance * FLOOR_SHARES_PER_TOKEN)
            return amount * FLOOR_SHARES_PER_TOKEN;
        return (total * amount) / balance;
    }

    /**
     * @notice get token amount from shares
     * @param token erc20 token interface
     * @param total current total shares
     * @param shares balance of shares
     */
    function getAmount(
        IERC20 token,
        uint256 total,
        uint256 shares
    ) internal view returns (uint256) {
        if (total == 0) return 0;
        uint256 balance = token.balanceOf(address(this));
        if (total < balance * FLOOR_SHARES_PER_TOKEN)
            return shares / FLOOR_SHARES_PER_TOKEN;
        return (balance * shares) / total;
    }

    /**
     * @notice transfer tokens from sender into contract and convert to shares
     * for internal accounting
     * @param token erc20 token interface
     * @param total current total shares
     * @param sender token sender
     * @param amount number of tokens to be sent
     */
    function receiveAmount(
        IERC20 token,
        uint256 total,
        address sender,
        uint256 amount
    ) internal returns (uint256) {
        // note: we assume amount > 0 has already been validated

        //  transfer
        uint256 balance = token.balanceOf(address(this));
        token.safeTransferFrom(sender, address(this), amount);
        uint256 actual = token.balanceOf(address(this)) - balance;
        require(amount >= actual);

        // mint shares at current rate
        uint256 minted;
        if (total == 0) {
            minted = actual * INITIAL_SHARES_PER_TOKEN;
        } else if (total < balance * FLOOR_SHARES_PER_TOKEN) {
            minted = actual * FLOOR_SHARES_PER_TOKEN;
        } else {
            minted = (total * actual) / balance;
        }
        require(minted > 0);
        return minted;
    }

    /**
     * @notice transfer tokens from sender into contract, process protocol fee,
     * and convert to shares for internal accounting
     * @param token erc20 token interface
     * @param total current total shares
     * @param sender token sender
     * @param amount number of tokens to be sent
     * @param feeReceiver address to receive fee
     * @param feeRate portion of amount to take as fee in 18 decimals
     */
    function receiveWithFee(
        IERC20 token,
        uint256 total,
        address sender,
        uint256 amount,
        address feeReceiver,
        uint256 feeRate
    ) internal returns (uint256) {
        // note: we assume amount > 0 has already been validated

        // check initial token balance
        uint256 balance = token.balanceOf(address(this));

        // process fee
        uint256 fee;
        if (feeReceiver != address(0) && feeRate > 0 && feeRate < 1e18) {
            fee = (amount * feeRate) / 1e18;
            token.safeTransferFrom(sender, feeReceiver, fee);
            emit Fee(feeReceiver, address(token), fee);
        }

        // do transfer
        token.safeTransferFrom(sender, address(this), amount - fee);
        uint256 actual = token.balanceOf(address(this)) - balance;
        require(amount >= actual);

        // mint shares at current rate
        uint256 minted;
        if (total == 0) {
            minted = actual * INITIAL_SHARES_PER_TOKEN;
        } else if (total < balance * FLOOR_SHARES_PER_TOKEN) {
            minted = actual * FLOOR_SHARES_PER_TOKEN;
        } else {
            minted = (total * actual) / balance;
        }
        require(minted > 0);
        return minted;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 10000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"address","name":"module","type":"address"}],"name":"ModuleCreated","type":"event"},{"inputs":[{"internalType":"address","name":"config","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"createModule","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b5061325c806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c806320868d1814610030575b600080fd5b61004361003e36600461024e565b61006c565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b6000608082146100dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600560248201527f63726d6631000000000000000000000000000000000000000000000000000000604482015260640160405180910390fd5b604051606435906084359060a4359060c4359060009085908590859085908d90309061010790610241565b73ffffffffffffffffffffffffffffffffffffffff96871681526020810195909552604085019390935260608401919091528316608083015290911660a082015260c001604051809103906000f080158015610167573d6000803e3d6000fd5b506040517ff2fde38b00000000000000000000000000000000000000000000000000000000815233600482015290915073ffffffffffffffffffffffffffffffffffffffff82169063f2fde38b90602401600060405180830381600087803b1580156101d257600080fd5b505af11580156101e6573d6000803e3d6000fd5b505060405173ffffffffffffffffffffffffffffffffffffffff841681523392507ff708942ec477396a151a5285651961dcab8e8a82ea4f5b31a5236f92f6c92710915060200160405180910390a298975050505050505050565b612f3a806102ed83390190565b60008060006040848603121561026357600080fd5b833573ffffffffffffffffffffffffffffffffffffffff8116811461028757600080fd5b9250602084013567ffffffffffffffff808211156102a457600080fd5b818601915086601f8301126102b857600080fd5b8135818111156102c757600080fd5b8760208285010111156102d957600080fd5b602083019450809350505050925092509256fe6101406040523480156200001257600080fd5b5060405162002f3a38038062002f3a833981016040819052620000359162000164565b600160008181558154336001600160a01b0319918216811790935560028054909116831790556040517f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36001546040516001600160a01b03909116906000907fa06677f7b64342b4bcbde423684dbdb5356acfe41ad0285b6ecbe6dc4bf427f2908290a36001600160a01b038616620000d157600080fd5b83851115620001155760405162461bcd60e51b81526004016200010c9060208082526004908201526363726d3160e01b604082015260600190565b60405180910390fd5b6001600160a01b0395861660e052908516610120529093166101005260809190915260a05260c05242600955620001ca565b80516001600160a01b03811681146200015f57600080fd5b919050565b60008060008060008060c087890312156200017e57600080fd5b620001898762000147565b9550602087015194506040870151935060608701519250620001ae6080880162000147565b9150620001be60a0880162000147565b90509295509295509295565b60805160a05160c05160e0516101005161012051612cb06200028a6000396000610d4d0152600061049a01526000818161051901528181610621015281816106730152818161082e01528181610a0601528181610b8201528181610bab01528181610de401528181610efe01528181610f420152610fc30152600081816102ad01528181610a5f0152610aba01526000818161035b01528181610a890152610b0001526000818161027301528181610adf0152610b3e0152612cb06000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c8063837115531161010f578063b31f4170116100a2578063d0b06f5d11610071578063d0b06f5d146104be578063e336ac44146104c7578063f2fde38b146104f0578063f77c47911461050357600080fd5b8063b31f41701461043c578063bf6b874e1461044f578063c104b00114610478578063c45a01551461049857600080fd5b80639e57e491116100de5780639e57e49114610405578063a5be655c14610418578063a65e2cfd14610421578063a779d0801461043457600080fd5b806383711553146103a55780638da5cb5b146103b857806397c83844146103dd5780639d63848a146103f057600080fd5b80635f5319931161018757806370c6a17e1161015657806370c6a17e1461034d5780637aba86d2146103565780637bb98a681461037d5780637dbe07dc1461039257600080fd5b80635f531993146102df5780636d16fa411461031f5780636d811e71146103325780636fd366b81461033a57600080fd5b80633f265ddb116101c35780633f265ddb146102955780634af4a127146102a85780634b8456b8146102cf57806356891412146102d757600080fd5b806304003d5b146101f5578063111d7d5014610231578063185bad3f146102465780631b87d58a1461026e575b600080fd5b61021e6102033660046126fc565b6001600160a01b031660009081526003602052604090205490565b6040519081526020015b60405180910390f35b61024461023f366004612719565b610514565b005b61025961025436600461278e565b610545565b60408051928352602083019190915201610228565b61021e7f000000000000000000000000000000000000000000000000000000000000000081565b61021e6102a336600461280a565b6105cf565b61021e7f000000000000000000000000000000000000000000000000000000000000000081565b61021e601081565b61021e61061f565b6102f26102ed36600461280a565b61069f565b604080519687526020870195909552938501929092526060840152608083015260a082015260c001610228565b61024461032d3660046126fc565b610747565b600a5461021e565b610244610348366004612836565b610819565b61021e60075481565b61021e7f000000000000000000000000000000000000000000000000000000000000000081565b610385610856565b6040516102289190612878565b6102596103a03660046128bc565b6108a2565b6102596103b33660046128de565b6108de565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610228565b6102596103eb36600461278e565b61095e565b6103f86109e2565b6040516102289190612948565b61021e610413366004612989565b610a5b565b61021e60085481565b61024461042f3660046128bc565b610b7d565b61021e610ba9565b61024461044a3660046129a2565b610c02565b61021e61045d3660046126fc565b6001600160a01b031660009081526004602052604090205490565b61021e610486366004612989565b60009081526006602052604090205490565b7f00000000000000000000000000000000000000000000000000000000000000006103c5565b61021e60095481565b61021e6104d53660046126fc565b6001600160a01b031660009081526005602052604090205490565b6102446104fe3660046126fc565b610c18565b6002546001600160a01b03166103c5565b6105407f0000000000000000000000000000000000000000000000000000000000000000848484610cea565b505050565b60015460009081906001600160a01b031633146105a95760405162461bcd60e51b815260206004820152600360248201527f6f6331000000000000000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b6105b1610ddf565b6105bf888888888888610e3f565b915091505b965096945050505050565b6001600160a01b03821660009081526003602052604081208054829190849081106105fc576105fc6129fe565b9060005260206000209060040201905061061581611145565b9150505b92915050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316600090815260046020908152604080832054600590925282205461069a91905b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169190611222565b905090565b6000806000806000806000600360008a6001600160a01b03166001600160a01b0316815260200190815260200160002088815481106106e0576106e06129fe565b60009182526020909120600490910201805460018201546002830154600390930154919c909b5091995067ffffffffffffffff8082169950680100000000000000008204811698507001000000000000000000000000000000009091041695509350505050565b61074f6112ff565b6001600160a01b0381166107a55760405162461bcd60e51b815260206004820152600360248201527f6f6334000000000000000000000000000000000000000000000000000000000060448201526064016105a0565b6002546040516001600160a01b038084169216907fa06677f7b64342b4bcbde423684dbdb5356acfe41ad0285b6ecbe6dc4bf427f290600090a3600280547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6108216112ff565b610829610ddf565b6108527f000000000000000000000000000000000000000000000000000000000000000061135b565b5050565b6040805160018082528183019092526060916020808301908036833701905050905061088061061f565b81600081518110610893576108936129fe565b60200260200101818152505090565b600660205281600052604060002081815481106108be57600080fd5b600091825260209091206002909102018054600190910154909250905082565b60015460009081906001600160a01b0316331461093d5760405162461bcd60e51b815260206004820152600360248201527f6f6331000000000000000000000000000000000000000000000000000000000060448201526064016105a0565b610945610ddf565b61094f87866116a5565b50600096879650945050505050565b60015460009081906001600160a01b031633146109bd5760405162461bcd60e51b815260206004820152600360248201527f6f6331000000000000000000000000000000000000000000000000000000000060448201526064016105a0565b6109c5610ddf565b6109d3888888888888610e3f565b90925090506105c488866116a5565b604080516001808252818301909252606091602080830190803683370190505090507f000000000000000000000000000000000000000000000000000000000000000081600081518110610a3857610a386129fe565b60200260200101906001600160a01b031690816001600160a01b03168152505090565b60007f00000000000000000000000000000000000000000000000000000000000000008210610ab6576106197f0000000000000000000000000000000000000000000000000000000000000000670de0b6b3a7640000612a5c565b60007f000000000000000000000000000000000000000000000000000000000000000083610b247f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000612a6f565b610b2e9190612a82565b610b389190612a99565b610b62907f0000000000000000000000000000000000000000000000000000000000000000612a5c565b9050610b7681670de0b6b3a7640000612a5c565b9392505050565b6108527f0000000000000000000000000000000000000000000000000000000000000000838342610cea565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166000908152600460209081526040808320546005909252822054610bfb826106698382612a6f565b9250505090565b610c0a6112ff565b610c12610ddf565b50505050565b610c206112ff565b6001600160a01b038116610c765760405162461bcd60e51b815260206004820152600360248201527f6f6333000000000000000000000000000000000000000000000000000000000060448201526064016105a0565b6001546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b610cf2610ddf565b6040517f575313cd0000000000000000000000000000000000000000000000000000000081527f1040a1d5deeea658ae2f795ac5a237d339aef084f4f2c2c3bbe6954a70687b00600482015260009081906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063575313cd906024016040805180830381865afa158015610d93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db79190612ad4565b6bffffffffffffffffffffffff1691509150610dd7868686868686611704565b505050505050565b610e087f0000000000000000000000000000000000000000000000000000000000000000611a60565b50600754600954610e199042612a6f565b610e239190612a82565b60086000828254610e349190612a5c565b909155505042600955565b600080821580610e4f5750602083145b610e9d5760405162461bcd60e51b81526004016105a09060208082526004908201527f63726d3200000000000000000000000000000000000000000000000000000000604082015260600190565b6020839003610eac5760c43591505b600754600a54600091610ec29185918991611b71565b9050600080610ed18b89611c8b565b90925090506000670de0b6b3a7640000610eeb8386612a82565b610ef59190612a99565b90506000610f387f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031660009081526005602052604090205490565b6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600090815260046020526040902054610f7b9190612a6f565b9050600082600854610f8d9190612a5c565b610f978484612a82565b610fa19190612a99565b905080600003610fbd57600080975097505050505050506105c4565b610fe88c7f000000000000000000000000000000000000000000000000000000000000000083611eb4565b50600088156110ac578897508d6001600160a01b03167fc16aaa1ae5a136c89a5275f4f29944ca4f17d3815f9122eae9455ae495b4c76f8a60405161102f91815260200190565b60405180910390a28d6001600160a01b03167f18fe0f7ac77be33dd859236b08864eee2e81199a12f1ac17e688517ddc47ea808960405161107291815260200190565b60405180910390a28661108d670de0b6b3a764000082612a6f565b61109f90670de0b6b3a7640000612a82565b6110a99190612a99565b90505b6000866008546110bc9190612a5c565b6110ce88670de0b6b3a7640000612a82565b6110d89190612a99565b9050670de0b6b3a76400006110ed8383612a82565b6110f79190612a99565b670de0b6b3a7640000600a548361110e9190612a82565b6111189190612a99565b600a546111259190612a6f565b61112f9190612a5c565b600a555050505050505050965096945050505050565b600381015460009068010000000000000000900467ffffffffffffffff1642101561117257506000919050565b816002015460000361118657506000919050565b60038201546111c19067ffffffffffffffff700100000000000000000000000000000000820481169168010000000000000000900416612b1f565b67ffffffffffffffff1642106111d957506002015490565b6003820154600183015467ffffffffffffffff700100000000000000000000000000000000830481169261120e911642612a6f565b6112189190612a82565b6106199190612a99565b60008260000361123457506000610b76565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000906001600160a01b038616906370a0823190602401602060405180830381865afa158015611294573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b89190612b47565b90506112c66103e882612a82565b8410156112e1576112d96103e884612a99565b915050610b76565b836112ec8483612a82565b6112f69190612a99565b95945050505050565b6001546001600160a01b031633146113595760405162461bcd60e51b815260206004820152600360248201527f6f6331000000000000000000000000000000000000000000000000000000000060448201526064016105a0565b565b6001600160a01b038116600090815260036020526040812054815b81811015610c1257600061138a8483612a6f565b6001600160a01b038616600090815260036020526040812080549293509091839081106113b9576113b96129fe565b906000526020600020906004020190506113d281611145565b158015611423575060038101546114159067ffffffffffffffff700100000000000000000000000000000000820481169168010000000000000000900416612b1f565b67ffffffffffffffff164210155b1561169b5780546001820154600383015460408051938452602084019290925268010000000000000000900467ffffffffffffffff16908201526001600160a01b038716907fda2a262bf91f4f5d64d1083fcf0438477235659afee73ec3ead834792dd2fc3e9060600160405180910390a26001600160a01b038616600090815260036020526040902080546114bb90600190612a6f565b815481106114cb576114cb6129fe565b906000526020600020906004020160036000886001600160a01b03166001600160a01b03168152602001908152602001600020838154811061150f5761150f6129fe565b60009182526020808320845460049093020191825560018085015490830155600280850154908301556003938401805492850180547fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000811667ffffffffffffffff9586169081178355835468010000000000000000908190048716027fffffffffffffffffffffffffffffffff0000000000000000000000000000000090921617178082559154700100000000000000000000000000000000908190049094169093027fffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff909116179091556001600160a01b0389168252919091526040902080548061161d5761161d612b60565b60008281526020812060047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9093019283020181815560018101829055600281019190915560030180547fffffffffffffffff00000000000000000000000000000000000000000000000016905590558461169781612b8f565b9550505b5050600101611376565b6000828152600660209081526040808320815180830190925284825242828401908152815460018181018455928652938520925160029094029092019283559051910155600780548392906116fb908490612a5c565b90915550505050565b61170c611f72565b611714611fcb565b6001600160a01b03861661172757600080fd5b600085116117775760405162461bcd60e51b815260206004820152600360248201527f726d31000000000000000000000000000000000000000000000000000000000060448201526064016105a0565b428310156117c75760405162461bcd60e51b815260206004820152600360248201527f726d32000000000000000000000000000000000000000000000000000000000060448201526064016105a0565b6001600160a01b03861660009081526003602052604090205460101161182f5760405162461bcd60e51b815260206004820152600360248201527f726d33000000000000000000000000000000000000000000000000000000000060448201526064016105a0565b6001600160a01b038616600081815260046020526040812054889261185791338a8888612025565b6001600160a01b038916600090815260056020526040812080549293508392909190611884908490612a5c565b90915550506001600160a01b038816600090815260046020526040812080548392906118b1908490612a5c565b9250508190555060036000896001600160a01b03166001600160a01b031681526020019081526020016000206040518060c001604052808981526020018381526020018381526020018767ffffffffffffffff1681526020018767ffffffffffffffff1681526020018867ffffffffffffffff16815250908060018154018082558091505060019003906000526020600020906004020160009091909190915060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060808201518160030160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060a08201518160030160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050876001600160a01b03167f0d2eac201c6bd25b979f0d9ebcf8ff27a476edde7006f42e843dc70727dbf90b888388604051611a4c939291909283526020830191909152604082015260600190565b60405180910390a25050610dd76001600055565b6001600160a01b038116600090815260036020526040812054815b81811015611b36576001600160a01b0384166000908152600360205260408120805483908110611aad57611aad6129fe565b906000526020600020906004020190506000611ac882611145565b90508015611b2c5780826002016000828254611ae49190612a6f565b90915550506003820180547fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000164267ffffffffffffffff16179055611b298186612a5c565b94505b5050600101611a7b565b508115611b6b576001600160a01b03831660009081526005602052604081208054849290611b65908490612a6f565b90915550505b50919050565b600083600003611b8357506000611c83565b82600003611b9357506000611c83565b84600003611baa5750670de0b6b3a7640000611c83565b6000670de0b6b3a7640000611bc685662386f26fc10000612a82565b611bd09190612a99565b905080851115611bf25784611be58288612a82565b611bef9190612a99565b95505b6000611c0584662386f26fc10000612a5c565b611c188868010000000000000000612a82565b611c229190612a99565b611c359068010000000000000000612a5c565b905068010000000000000000611c4d82600f0b612291565b611c6290600f0b670de0b6b3a7640000612a82565b611c6c9190612a99565b611c7e90670de0b6b3a7640000612a5c565b925050505b949350505050565b6000828152600660205260408120819083905b8115611e795780546000908290611cb790600190612a6f565b81548110611cc757611cc76129fe565b906000526020600020906002020190506000816001015442611ce99190612a6f565b905060008111611d3d5760405162461bcd60e51b81526004016105a09060208082526004908201527f63726d3300000000000000000000000000000000000000000000000000000000604082015260600190565b6000611d4882610a5b565b905084836000015411611e0957670de0b6b3a764000081838560000154611d6f9190612a82565b611d799190612a82565b611d839190612a99565b611d8d9087612a5c565b8354909650611d9d908390612a82565b611da79088612a5c565b8354909750611db69086612a6f565b945083805480611dc857611dc8612b60565b60008281526020812060027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90930192830201818155600101559055611e71565b670de0b6b3a764000081611e1d8488612a82565b611e279190612a82565b611e319190612a99565b611e3b9087612a5c565b9550611e478286612a82565b611e519088612a5c565b965084836000016000828254611e679190612a6f565b9091555060009550505b505050611c9e565b8360086000828254611e8b9190612a6f565b925050819055508460076000828254611ea49190612a6f565b9250508190555050509250929050565b6001600160a01b0382166000818152600460205260408120549091849190611edd908286611222565b9250611ee98482612a6f565b6001600160a01b03808716600090815260046020526040902091909155611f1390831687856122d2565b846001600160a01b0316866001600160a01b03167f1a4dfb075362880d700ede1cc31d284b1c3b2811e9f0b2ddde7bdb270042c13f8587604051611f61929190918252602082015260400190565b60405180910390a350509392505050565b600260005403611fc45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105a0565b6002600055565b6002546001600160a01b031633146113595760405162461bcd60e51b815260206004820152600360248201527f6f6332000000000000000000000000000000000000000000000000000000000060448201526064016105a0565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009081906001600160a01b038916906370a0823190602401602060405180830381865afa158015612087573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120ab9190612b47565b905060006001600160a01b038516158015906120c75750600084115b80156120da5750670de0b6b3a764000084105b1561216157670de0b6b3a76400006120f28588612a82565b6120fc9190612a99565b90506121136001600160a01b038a16888784612399565b886001600160a01b0316856001600160a01b03167f6ded982279c8387ad8a63e73385031a3807c1862e633f06e09d11bcb6e282f608360405161215891815260200190565b60405180910390a35b6121828730612170848a612a6f565b6001600160a01b038d16929190612399565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009083906001600160a01b038c16906370a0823190602401602060405180830381865afa1580156121e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122089190612b47565b6122129190612a6f565b90508087101561222157600080fd5b60008960000361223f57612238620f424083612a82565b9050612276565b61224b6103e885612a82565b8a101561225e576122386103e883612a82565b83612269838c612a82565b6122739190612a99565b90505b6000811161228357600080fd5b9a9950505050505050505050565b60008082600f0b136122a257600080fd5b60806122ad836123ea565b6122ca90600f0b6f4d104d427de7fce20a6e420e02236748612a82565b901c92915050565b6040516001600160a01b0383166024820152604481018290526105409084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909316929092179091526124ec565b6040516001600160a01b0380851660248301528316604482015260648101829052610c129085907f23b872dd0000000000000000000000000000000000000000000000000000000090608401612317565b60008082600f0b136123fb57600080fd5b6000600f83900b68010000000000000000811261241a576040918201911d5b640100000000811261242e576020918201911d5b620100008112612440576010918201911d5b6101008112612451576008918201911d5b60108112612461576004918201911d5b60048112612471576002918201911d5b60028112612480576001820191505b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0820160401b600f85900b607f8490031b6780000000000000005b60008113156124e15790800260ff81901c8281029390930192607f011c9060011d6124bb565b509095945050505050565b6000612541826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166125d19092919063ffffffff16565b805190915015610540578080602001905181019061255f9190612bc7565b6105405760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016105a0565b6060611c83848460008585600080866001600160a01b031685876040516125f89190612c0d565b60006040518083038185875af1925050503d8060008114612635576040519150601f19603f3d011682016040523d82523d6000602084013e61263a565b606091505b5091509150611c7e87838387606083156126b55782516000036126ae576001600160a01b0385163b6126ae5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016105a0565b5081611c83565b611c8383838151156126ca5781518083602001fd5b8060405162461bcd60e51b81526004016105a09190612c29565b6001600160a01b03811681146126f957600080fd5b50565b60006020828403121561270e57600080fd5b8135610b76816126e4565b60008060006060848603121561272e57600080fd5b505081359360208301359350604090920135919050565b60008083601f84011261275757600080fd5b50813567ffffffffffffffff81111561276f57600080fd5b60208301915083602082850101111561278757600080fd5b9250929050565b60008060008060008060a087890312156127a757600080fd5b8635955060208701356127b9816126e4565b945060408701356127c9816126e4565b935060608701359250608087013567ffffffffffffffff8111156127ec57600080fd5b6127f889828a01612745565b979a9699509497509295939492505050565b6000806040838503121561281d57600080fd5b8235612828816126e4565b946020939093013593505050565b6000806020838503121561284957600080fd5b823567ffffffffffffffff81111561286057600080fd5b61286c85828601612745565b90969095509350505050565b6020808252825182820181905260009190848201906040850190845b818110156128b057835183529284019291840191600101612894565b50909695505050505050565b600080604083850312156128cf57600080fd5b50508035926020909101359150565b6000806000806000608086880312156128f657600080fd5b853594506020860135612908816126e4565b935060408601359250606086013567ffffffffffffffff81111561292b57600080fd5b61293788828901612745565b969995985093965092949392505050565b6020808252825182820181905260009190848201906040850190845b818110156128b05783516001600160a01b031683529284019291840191600101612964565b60006020828403121561299b57600080fd5b5035919050565b600080600080606085870312156129b857600080fd5b8435935060208501356129ca816126e4565b9250604085013567ffffffffffffffff8111156129e657600080fd5b6129f287828801612745565b95989497509550505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561061957610619612a2d565b8181038181111561061957610619612a2d565b808202811582820484141761061957610619612a2d565b600082612acf577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60008060408385031215612ae757600080fd5b8251612af2816126e4565b60208401519092506bffffffffffffffffffffffff81168114612b1457600080fd5b809150509250929050565b67ffffffffffffffff818116838216019080821115612b4057612b40612a2d565b5092915050565b600060208284031215612b5957600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612bc057612bc0612a2d565b5060010190565b600060208284031215612bd957600080fd5b81518015158114610b7657600080fd5b60005b83811015612c04578181015183820152602001612bec565b50506000910152565b60008251612c1f818460208701612be9565b9190910192915050565b6020815260008251806020840152612c48816040850160208701612be9565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea2646970667358221220625aa28bde503ec2e67081b529b997853ac3dd91e343934caa577843500f35e864736f6c63430008120033a26469706673582212207acf3d4d3c982bd20152f1037690c3eb3865b556a01a538e3b2e69fdec81416164736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061002b5760003560e01c806320868d1814610030575b600080fd5b61004361003e36600461024e565b61006c565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b6000608082146100dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600560248201527f63726d6631000000000000000000000000000000000000000000000000000000604482015260640160405180910390fd5b604051606435906084359060a4359060c4359060009085908590859085908d90309061010790610241565b73ffffffffffffffffffffffffffffffffffffffff96871681526020810195909552604085019390935260608401919091528316608083015290911660a082015260c001604051809103906000f080158015610167573d6000803e3d6000fd5b506040517ff2fde38b00000000000000000000000000000000000000000000000000000000815233600482015290915073ffffffffffffffffffffffffffffffffffffffff82169063f2fde38b90602401600060405180830381600087803b1580156101d257600080fd5b505af11580156101e6573d6000803e3d6000fd5b505060405173ffffffffffffffffffffffffffffffffffffffff841681523392507ff708942ec477396a151a5285651961dcab8e8a82ea4f5b31a5236f92f6c92710915060200160405180910390a298975050505050505050565b612f3a806102ed83390190565b60008060006040848603121561026357600080fd5b833573ffffffffffffffffffffffffffffffffffffffff8116811461028757600080fd5b9250602084013567ffffffffffffffff808211156102a457600080fd5b818601915086601f8301126102b857600080fd5b8135818111156102c757600080fd5b8760208285010111156102d957600080fd5b602083019450809350505050925092509256fe6101406040523480156200001257600080fd5b5060405162002f3a38038062002f3a833981016040819052620000359162000164565b600160008181558154336001600160a01b0319918216811790935560028054909116831790556040517f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36001546040516001600160a01b03909116906000907fa06677f7b64342b4bcbde423684dbdb5356acfe41ad0285b6ecbe6dc4bf427f2908290a36001600160a01b038616620000d157600080fd5b83851115620001155760405162461bcd60e51b81526004016200010c9060208082526004908201526363726d3160e01b604082015260600190565b60405180910390fd5b6001600160a01b0395861660e052908516610120529093166101005260809190915260a05260c05242600955620001ca565b80516001600160a01b03811681146200015f57600080fd5b919050565b60008060008060008060c087890312156200017e57600080fd5b620001898762000147565b9550602087015194506040870151935060608701519250620001ae6080880162000147565b9150620001be60a0880162000147565b90509295509295509295565b60805160a05160c05160e0516101005161012051612cb06200028a6000396000610d4d0152600061049a01526000818161051901528181610621015281816106730152818161082e01528181610a0601528181610b8201528181610bab01528181610de401528181610efe01528181610f420152610fc30152600081816102ad01528181610a5f0152610aba01526000818161035b01528181610a890152610b0001526000818161027301528181610adf0152610b3e0152612cb06000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c8063837115531161010f578063b31f4170116100a2578063d0b06f5d11610071578063d0b06f5d146104be578063e336ac44146104c7578063f2fde38b146104f0578063f77c47911461050357600080fd5b8063b31f41701461043c578063bf6b874e1461044f578063c104b00114610478578063c45a01551461049857600080fd5b80639e57e491116100de5780639e57e49114610405578063a5be655c14610418578063a65e2cfd14610421578063a779d0801461043457600080fd5b806383711553146103a55780638da5cb5b146103b857806397c83844146103dd5780639d63848a146103f057600080fd5b80635f5319931161018757806370c6a17e1161015657806370c6a17e1461034d5780637aba86d2146103565780637bb98a681461037d5780637dbe07dc1461039257600080fd5b80635f531993146102df5780636d16fa411461031f5780636d811e71146103325780636fd366b81461033a57600080fd5b80633f265ddb116101c35780633f265ddb146102955780634af4a127146102a85780634b8456b8146102cf57806356891412146102d757600080fd5b806304003d5b146101f5578063111d7d5014610231578063185bad3f146102465780631b87d58a1461026e575b600080fd5b61021e6102033660046126fc565b6001600160a01b031660009081526003602052604090205490565b6040519081526020015b60405180910390f35b61024461023f366004612719565b610514565b005b61025961025436600461278e565b610545565b60408051928352602083019190915201610228565b61021e7f000000000000000000000000000000000000000000000000000000000000000081565b61021e6102a336600461280a565b6105cf565b61021e7f000000000000000000000000000000000000000000000000000000000000000081565b61021e601081565b61021e61061f565b6102f26102ed36600461280a565b61069f565b604080519687526020870195909552938501929092526060840152608083015260a082015260c001610228565b61024461032d3660046126fc565b610747565b600a5461021e565b610244610348366004612836565b610819565b61021e60075481565b61021e7f000000000000000000000000000000000000000000000000000000000000000081565b610385610856565b6040516102289190612878565b6102596103a03660046128bc565b6108a2565b6102596103b33660046128de565b6108de565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610228565b6102596103eb36600461278e565b61095e565b6103f86109e2565b6040516102289190612948565b61021e610413366004612989565b610a5b565b61021e60085481565b61024461042f3660046128bc565b610b7d565b61021e610ba9565b61024461044a3660046129a2565b610c02565b61021e61045d3660046126fc565b6001600160a01b031660009081526004602052604090205490565b61021e610486366004612989565b60009081526006602052604090205490565b7f00000000000000000000000000000000000000000000000000000000000000006103c5565b61021e60095481565b61021e6104d53660046126fc565b6001600160a01b031660009081526005602052604090205490565b6102446104fe3660046126fc565b610c18565b6002546001600160a01b03166103c5565b6105407f0000000000000000000000000000000000000000000000000000000000000000848484610cea565b505050565b60015460009081906001600160a01b031633146105a95760405162461bcd60e51b815260206004820152600360248201527f6f6331000000000000000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b6105b1610ddf565b6105bf888888888888610e3f565b915091505b965096945050505050565b6001600160a01b03821660009081526003602052604081208054829190849081106105fc576105fc6129fe565b9060005260206000209060040201905061061581611145565b9150505b92915050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316600090815260046020908152604080832054600590925282205461069a91905b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169190611222565b905090565b6000806000806000806000600360008a6001600160a01b03166001600160a01b0316815260200190815260200160002088815481106106e0576106e06129fe565b60009182526020909120600490910201805460018201546002830154600390930154919c909b5091995067ffffffffffffffff8082169950680100000000000000008204811698507001000000000000000000000000000000009091041695509350505050565b61074f6112ff565b6001600160a01b0381166107a55760405162461bcd60e51b815260206004820152600360248201527f6f6334000000000000000000000000000000000000000000000000000000000060448201526064016105a0565b6002546040516001600160a01b038084169216907fa06677f7b64342b4bcbde423684dbdb5356acfe41ad0285b6ecbe6dc4bf427f290600090a3600280547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6108216112ff565b610829610ddf565b6108527f000000000000000000000000000000000000000000000000000000000000000061135b565b5050565b6040805160018082528183019092526060916020808301908036833701905050905061088061061f565b81600081518110610893576108936129fe565b60200260200101818152505090565b600660205281600052604060002081815481106108be57600080fd5b600091825260209091206002909102018054600190910154909250905082565b60015460009081906001600160a01b0316331461093d5760405162461bcd60e51b815260206004820152600360248201527f6f6331000000000000000000000000000000000000000000000000000000000060448201526064016105a0565b610945610ddf565b61094f87866116a5565b50600096879650945050505050565b60015460009081906001600160a01b031633146109bd5760405162461bcd60e51b815260206004820152600360248201527f6f6331000000000000000000000000000000000000000000000000000000000060448201526064016105a0565b6109c5610ddf565b6109d3888888888888610e3f565b90925090506105c488866116a5565b604080516001808252818301909252606091602080830190803683370190505090507f000000000000000000000000000000000000000000000000000000000000000081600081518110610a3857610a386129fe565b60200260200101906001600160a01b031690816001600160a01b03168152505090565b60007f00000000000000000000000000000000000000000000000000000000000000008210610ab6576106197f0000000000000000000000000000000000000000000000000000000000000000670de0b6b3a7640000612a5c565b60007f000000000000000000000000000000000000000000000000000000000000000083610b247f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000612a6f565b610b2e9190612a82565b610b389190612a99565b610b62907f0000000000000000000000000000000000000000000000000000000000000000612a5c565b9050610b7681670de0b6b3a7640000612a5c565b9392505050565b6108527f0000000000000000000000000000000000000000000000000000000000000000838342610cea565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166000908152600460209081526040808320546005909252822054610bfb826106698382612a6f565b9250505090565b610c0a6112ff565b610c12610ddf565b50505050565b610c206112ff565b6001600160a01b038116610c765760405162461bcd60e51b815260206004820152600360248201527f6f6333000000000000000000000000000000000000000000000000000000000060448201526064016105a0565b6001546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b610cf2610ddf565b6040517f575313cd0000000000000000000000000000000000000000000000000000000081527f1040a1d5deeea658ae2f795ac5a237d339aef084f4f2c2c3bbe6954a70687b00600482015260009081906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063575313cd906024016040805180830381865afa158015610d93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db79190612ad4565b6bffffffffffffffffffffffff1691509150610dd7868686868686611704565b505050505050565b610e087f0000000000000000000000000000000000000000000000000000000000000000611a60565b50600754600954610e199042612a6f565b610e239190612a82565b60086000828254610e349190612a5c565b909155505042600955565b600080821580610e4f5750602083145b610e9d5760405162461bcd60e51b81526004016105a09060208082526004908201527f63726d3200000000000000000000000000000000000000000000000000000000604082015260600190565b6020839003610eac5760c43591505b600754600a54600091610ec29185918991611b71565b9050600080610ed18b89611c8b565b90925090506000670de0b6b3a7640000610eeb8386612a82565b610ef59190612a99565b90506000610f387f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031660009081526005602052604090205490565b6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600090815260046020526040902054610f7b9190612a6f565b9050600082600854610f8d9190612a5c565b610f978484612a82565b610fa19190612a99565b905080600003610fbd57600080975097505050505050506105c4565b610fe88c7f000000000000000000000000000000000000000000000000000000000000000083611eb4565b50600088156110ac578897508d6001600160a01b03167fc16aaa1ae5a136c89a5275f4f29944ca4f17d3815f9122eae9455ae495b4c76f8a60405161102f91815260200190565b60405180910390a28d6001600160a01b03167f18fe0f7ac77be33dd859236b08864eee2e81199a12f1ac17e688517ddc47ea808960405161107291815260200190565b60405180910390a28661108d670de0b6b3a764000082612a6f565b61109f90670de0b6b3a7640000612a82565b6110a99190612a99565b90505b6000866008546110bc9190612a5c565b6110ce88670de0b6b3a7640000612a82565b6110d89190612a99565b9050670de0b6b3a76400006110ed8383612a82565b6110f79190612a99565b670de0b6b3a7640000600a548361110e9190612a82565b6111189190612a99565b600a546111259190612a6f565b61112f9190612a5c565b600a555050505050505050965096945050505050565b600381015460009068010000000000000000900467ffffffffffffffff1642101561117257506000919050565b816002015460000361118657506000919050565b60038201546111c19067ffffffffffffffff700100000000000000000000000000000000820481169168010000000000000000900416612b1f565b67ffffffffffffffff1642106111d957506002015490565b6003820154600183015467ffffffffffffffff700100000000000000000000000000000000830481169261120e911642612a6f565b6112189190612a82565b6106199190612a99565b60008260000361123457506000610b76565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000906001600160a01b038616906370a0823190602401602060405180830381865afa158015611294573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b89190612b47565b90506112c66103e882612a82565b8410156112e1576112d96103e884612a99565b915050610b76565b836112ec8483612a82565b6112f69190612a99565b95945050505050565b6001546001600160a01b031633146113595760405162461bcd60e51b815260206004820152600360248201527f6f6331000000000000000000000000000000000000000000000000000000000060448201526064016105a0565b565b6001600160a01b038116600090815260036020526040812054815b81811015610c1257600061138a8483612a6f565b6001600160a01b038616600090815260036020526040812080549293509091839081106113b9576113b96129fe565b906000526020600020906004020190506113d281611145565b158015611423575060038101546114159067ffffffffffffffff700100000000000000000000000000000000820481169168010000000000000000900416612b1f565b67ffffffffffffffff164210155b1561169b5780546001820154600383015460408051938452602084019290925268010000000000000000900467ffffffffffffffff16908201526001600160a01b038716907fda2a262bf91f4f5d64d1083fcf0438477235659afee73ec3ead834792dd2fc3e9060600160405180910390a26001600160a01b038616600090815260036020526040902080546114bb90600190612a6f565b815481106114cb576114cb6129fe565b906000526020600020906004020160036000886001600160a01b03166001600160a01b03168152602001908152602001600020838154811061150f5761150f6129fe565b60009182526020808320845460049093020191825560018085015490830155600280850154908301556003938401805492850180547fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000811667ffffffffffffffff9586169081178355835468010000000000000000908190048716027fffffffffffffffffffffffffffffffff0000000000000000000000000000000090921617178082559154700100000000000000000000000000000000908190049094169093027fffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff909116179091556001600160a01b0389168252919091526040902080548061161d5761161d612b60565b60008281526020812060047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9093019283020181815560018101829055600281019190915560030180547fffffffffffffffff00000000000000000000000000000000000000000000000016905590558461169781612b8f565b9550505b5050600101611376565b6000828152600660209081526040808320815180830190925284825242828401908152815460018181018455928652938520925160029094029092019283559051910155600780548392906116fb908490612a5c565b90915550505050565b61170c611f72565b611714611fcb565b6001600160a01b03861661172757600080fd5b600085116117775760405162461bcd60e51b815260206004820152600360248201527f726d31000000000000000000000000000000000000000000000000000000000060448201526064016105a0565b428310156117c75760405162461bcd60e51b815260206004820152600360248201527f726d32000000000000000000000000000000000000000000000000000000000060448201526064016105a0565b6001600160a01b03861660009081526003602052604090205460101161182f5760405162461bcd60e51b815260206004820152600360248201527f726d33000000000000000000000000000000000000000000000000000000000060448201526064016105a0565b6001600160a01b038616600081815260046020526040812054889261185791338a8888612025565b6001600160a01b038916600090815260056020526040812080549293508392909190611884908490612a5c565b90915550506001600160a01b038816600090815260046020526040812080548392906118b1908490612a5c565b9250508190555060036000896001600160a01b03166001600160a01b031681526020019081526020016000206040518060c001604052808981526020018381526020018381526020018767ffffffffffffffff1681526020018767ffffffffffffffff1681526020018867ffffffffffffffff16815250908060018154018082558091505060019003906000526020600020906004020160009091909190915060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060808201518160030160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060a08201518160030160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050876001600160a01b03167f0d2eac201c6bd25b979f0d9ebcf8ff27a476edde7006f42e843dc70727dbf90b888388604051611a4c939291909283526020830191909152604082015260600190565b60405180910390a25050610dd76001600055565b6001600160a01b038116600090815260036020526040812054815b81811015611b36576001600160a01b0384166000908152600360205260408120805483908110611aad57611aad6129fe565b906000526020600020906004020190506000611ac882611145565b90508015611b2c5780826002016000828254611ae49190612a6f565b90915550506003820180547fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000164267ffffffffffffffff16179055611b298186612a5c565b94505b5050600101611a7b565b508115611b6b576001600160a01b03831660009081526005602052604081208054849290611b65908490612a6f565b90915550505b50919050565b600083600003611b8357506000611c83565b82600003611b9357506000611c83565b84600003611baa5750670de0b6b3a7640000611c83565b6000670de0b6b3a7640000611bc685662386f26fc10000612a82565b611bd09190612a99565b905080851115611bf25784611be58288612a82565b611bef9190612a99565b95505b6000611c0584662386f26fc10000612a5c565b611c188868010000000000000000612a82565b611c229190612a99565b611c359068010000000000000000612a5c565b905068010000000000000000611c4d82600f0b612291565b611c6290600f0b670de0b6b3a7640000612a82565b611c6c9190612a99565b611c7e90670de0b6b3a7640000612a5c565b925050505b949350505050565b6000828152600660205260408120819083905b8115611e795780546000908290611cb790600190612a6f565b81548110611cc757611cc76129fe565b906000526020600020906002020190506000816001015442611ce99190612a6f565b905060008111611d3d5760405162461bcd60e51b81526004016105a09060208082526004908201527f63726d3300000000000000000000000000000000000000000000000000000000604082015260600190565b6000611d4882610a5b565b905084836000015411611e0957670de0b6b3a764000081838560000154611d6f9190612a82565b611d799190612a82565b611d839190612a99565b611d8d9087612a5c565b8354909650611d9d908390612a82565b611da79088612a5c565b8354909750611db69086612a6f565b945083805480611dc857611dc8612b60565b60008281526020812060027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90930192830201818155600101559055611e71565b670de0b6b3a764000081611e1d8488612a82565b611e279190612a82565b611e319190612a99565b611e3b9087612a5c565b9550611e478286612a82565b611e519088612a5c565b965084836000016000828254611e679190612a6f565b9091555060009550505b505050611c9e565b8360086000828254611e8b9190612a6f565b925050819055508460076000828254611ea49190612a6f565b9250508190555050509250929050565b6001600160a01b0382166000818152600460205260408120549091849190611edd908286611222565b9250611ee98482612a6f565b6001600160a01b03808716600090815260046020526040902091909155611f1390831687856122d2565b846001600160a01b0316866001600160a01b03167f1a4dfb075362880d700ede1cc31d284b1c3b2811e9f0b2ddde7bdb270042c13f8587604051611f61929190918252602082015260400190565b60405180910390a350509392505050565b600260005403611fc45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105a0565b6002600055565b6002546001600160a01b031633146113595760405162461bcd60e51b815260206004820152600360248201527f6f6332000000000000000000000000000000000000000000000000000000000060448201526064016105a0565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009081906001600160a01b038916906370a0823190602401602060405180830381865afa158015612087573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120ab9190612b47565b905060006001600160a01b038516158015906120c75750600084115b80156120da5750670de0b6b3a764000084105b1561216157670de0b6b3a76400006120f28588612a82565b6120fc9190612a99565b90506121136001600160a01b038a16888784612399565b886001600160a01b0316856001600160a01b03167f6ded982279c8387ad8a63e73385031a3807c1862e633f06e09d11bcb6e282f608360405161215891815260200190565b60405180910390a35b6121828730612170848a612a6f565b6001600160a01b038d16929190612399565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009083906001600160a01b038c16906370a0823190602401602060405180830381865afa1580156121e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122089190612b47565b6122129190612a6f565b90508087101561222157600080fd5b60008960000361223f57612238620f424083612a82565b9050612276565b61224b6103e885612a82565b8a101561225e576122386103e883612a82565b83612269838c612a82565b6122739190612a99565b90505b6000811161228357600080fd5b9a9950505050505050505050565b60008082600f0b136122a257600080fd5b60806122ad836123ea565b6122ca90600f0b6f4d104d427de7fce20a6e420e02236748612a82565b901c92915050565b6040516001600160a01b0383166024820152604481018290526105409084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909316929092179091526124ec565b6040516001600160a01b0380851660248301528316604482015260648101829052610c129085907f23b872dd0000000000000000000000000000000000000000000000000000000090608401612317565b60008082600f0b136123fb57600080fd5b6000600f83900b68010000000000000000811261241a576040918201911d5b640100000000811261242e576020918201911d5b620100008112612440576010918201911d5b6101008112612451576008918201911d5b60108112612461576004918201911d5b60048112612471576002918201911d5b60028112612480576001820191505b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0820160401b600f85900b607f8490031b6780000000000000005b60008113156124e15790800260ff81901c8281029390930192607f011c9060011d6124bb565b509095945050505050565b6000612541826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166125d19092919063ffffffff16565b805190915015610540578080602001905181019061255f9190612bc7565b6105405760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016105a0565b6060611c83848460008585600080866001600160a01b031685876040516125f89190612c0d565b60006040518083038185875af1925050503d8060008114612635576040519150601f19603f3d011682016040523d82523d6000602084013e61263a565b606091505b5091509150611c7e87838387606083156126b55782516000036126ae576001600160a01b0385163b6126ae5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016105a0565b5081611c83565b611c8383838151156126ca5781518083602001fd5b8060405162461bcd60e51b81526004016105a09190612c29565b6001600160a01b03811681146126f957600080fd5b50565b60006020828403121561270e57600080fd5b8135610b76816126e4565b60008060006060848603121561272e57600080fd5b505081359360208301359350604090920135919050565b60008083601f84011261275757600080fd5b50813567ffffffffffffffff81111561276f57600080fd5b60208301915083602082850101111561278757600080fd5b9250929050565b60008060008060008060a087890312156127a757600080fd5b8635955060208701356127b9816126e4565b945060408701356127c9816126e4565b935060608701359250608087013567ffffffffffffffff8111156127ec57600080fd5b6127f889828a01612745565b979a9699509497509295939492505050565b6000806040838503121561281d57600080fd5b8235612828816126e4565b946020939093013593505050565b6000806020838503121561284957600080fd5b823567ffffffffffffffff81111561286057600080fd5b61286c85828601612745565b90969095509350505050565b6020808252825182820181905260009190848201906040850190845b818110156128b057835183529284019291840191600101612894565b50909695505050505050565b600080604083850312156128cf57600080fd5b50508035926020909101359150565b6000806000806000608086880312156128f657600080fd5b853594506020860135612908816126e4565b935060408601359250606086013567ffffffffffffffff81111561292b57600080fd5b61293788828901612745565b969995985093965092949392505050565b6020808252825182820181905260009190848201906040850190845b818110156128b05783516001600160a01b031683529284019291840191600101612964565b60006020828403121561299b57600080fd5b5035919050565b600080600080606085870312156129b857600080fd5b8435935060208501356129ca816126e4565b9250604085013567ffffffffffffffff8111156129e657600080fd5b6129f287828801612745565b95989497509550505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561061957610619612a2d565b8181038181111561061957610619612a2d565b808202811582820484141761061957610619612a2d565b600082612acf577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60008060408385031215612ae757600080fd5b8251612af2816126e4565b60208401519092506bffffffffffffffffffffffff81168114612b1457600080fd5b809150509250929050565b67ffffffffffffffff818116838216019080821115612b4057612b40612a2d565b5092915050565b600060208284031215612b5957600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612bc057612bc0612a2d565b5060010190565b600060208284031215612bd957600080fd5b81518015158114610b7657600080fd5b60005b83811015612c04578181015183820152602001612bec565b50506000910152565b60008251612c1f818460208701612be9565b9190910192915050565b6020815260008251806020840152612c48816040850160208701612be9565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea2646970667358221220625aa28bde503ec2e67081b529b997853ac3dd91e343934caa577843500f35e864736f6c63430008120033a26469706673582212207acf3d4d3c982bd20152f1037690c3eb3865b556a01a538e3b2e69fdec81416164736f6c63430008120033

Block Transaction 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

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits

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.