Source Code
Overview
ETH Balance
0 ETH
ETH Value
$0.00| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 4731512 | 138 days ago | Contract Creation | 0 ETH |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
AccountantWithRateProviders
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;
import {FixedPointMathLib} from "@solmate/utils/FixedPointMathLib.sol";
import {IRateProvider} from "src/interfaces/IRateProvider.sol";
import {ERC20} from "@solmate/tokens/ERC20.sol";
import {SafeTransferLib} from "@solmate/utils/SafeTransferLib.sol";
import {BoringVault} from "src/base/BoringVault.sol";
import {Auth, Authority} from "@solmate/auth/Auth.sol";
import {IPausable} from "src/interfaces/IPausable.sol";
contract AccountantWithRateProviders is Auth, IRateProvider, IPausable {
using FixedPointMathLib for uint256;
using SafeTransferLib for ERC20;
// ========================================= STRUCTS =========================================
/**
* @param payoutAddress the address `claimFees` sends fees to
* @param highwaterMark the highest value of the BoringVault's share price
* @param feesOwedInBase total pending fees owed in terms of base
* @param totalSharesLastUpdate total amount of shares the last exchange rate update
* @param exchangeRate the current exchange rate in terms of base
* @param allowedExchangeRateChangeUpper the max allowed change to exchange rate from an update
* @param allowedExchangeRateChangeLower the min allowed change to exchange rate from an update
* @param lastUpdateTimestamp the block timestamp of the last exchange rate update
* @param isPaused whether or not this contract is paused
* @param minimumUpdateDelayInSeconds the minimum amount of time that must pass between
* exchange rate updates, such that the update won't trigger the contract to be paused
* @param platformFee the platform fee
* @param performanceFee the performance fee
*/
struct AccountantState {
address payoutAddress;
uint96 highwaterMark;
uint128 feesOwedInBase;
uint128 totalSharesLastUpdate;
uint96 exchangeRate;
uint16 allowedExchangeRateChangeUpper;
uint16 allowedExchangeRateChangeLower;
uint64 lastUpdateTimestamp;
bool isPaused;
uint24 minimumUpdateDelayInSeconds;
uint16 platformFee;
uint16 performanceFee;
}
/**
* @param isPeggedToBase whether or not the asset is 1:1 with the base asset
* @param rateProvider the rate provider for this asset if `isPeggedToBase` is false
*/
struct RateProviderData {
bool isPeggedToBase;
IRateProvider rateProvider;
}
// ========================================= STATE =========================================
/**
* @notice Store the accountant state in 3 packed slots.
*/
AccountantState public accountantState;
/**
* @notice Maps ERC20s to their RateProviderData.
*/
mapping(ERC20 => RateProviderData) public rateProviderData;
//============================== ERRORS ===============================
error AccountantWithRateProviders__UpperBoundTooSmall();
error AccountantWithRateProviders__LowerBoundTooLarge();
error AccountantWithRateProviders__PlatformFeeTooLarge();
error AccountantWithRateProviders__PerformanceFeeTooLarge();
error AccountantWithRateProviders__Paused();
error AccountantWithRateProviders__ZeroFeesOwed();
error AccountantWithRateProviders__OnlyCallableByBoringVault();
error AccountantWithRateProviders__UpdateDelayTooLarge();
error AccountantWithRateProviders__ExchangeRateAboveHighwaterMark();
//============================== EVENTS ===============================
event Paused();
event Unpaused();
event DelayInSecondsUpdated(uint24 oldDelay, uint24 newDelay);
event UpperBoundUpdated(uint16 oldBound, uint16 newBound);
event LowerBoundUpdated(uint16 oldBound, uint16 newBound);
event PlatformFeeUpdated(uint16 oldFee, uint16 newFee);
event PerformanceFeeUpdated(uint16 oldFee, uint16 newFee);
event PayoutAddressUpdated(address oldPayout, address newPayout);
event RateProviderUpdated(address asset, bool isPegged, address rateProvider);
event ExchangeRateUpdated(uint96 oldRate, uint96 newRate, uint64 currentTime);
event FeesClaimed(address indexed feeAsset, uint256 amount);
event HighwaterMarkReset();
//============================== IMMUTABLES ===============================
/**
* @notice The base asset rates are provided in.
*/
ERC20 public immutable base;
/**
* @notice The decimals rates are provided in.
*/
uint8 public immutable decimals;
/**
* @notice The BoringVault this accountant is working with.
* Used to determine share supply for fee calculation.
*/
BoringVault public immutable vault;
/**
* @notice One share of the BoringVault.
*/
uint256 internal immutable ONE_SHARE;
constructor(
address _owner,
address _vault,
address payoutAddress,
uint96 startingExchangeRate,
address _base,
uint16 allowedExchangeRateChangeUpper,
uint16 allowedExchangeRateChangeLower,
uint24 minimumUpdateDelayInSeconds,
uint16 platformFee,
uint16 performanceFee
) Auth(_owner, Authority(address(0))) {
base = ERC20(_base);
decimals = ERC20(_base).decimals();
vault = BoringVault(payable(_vault));
ONE_SHARE = 10 ** vault.decimals();
accountantState = AccountantState({
payoutAddress: payoutAddress,
highwaterMark: startingExchangeRate,
feesOwedInBase: 0,
totalSharesLastUpdate: uint128(vault.totalSupply()),
exchangeRate: startingExchangeRate,
allowedExchangeRateChangeUpper: allowedExchangeRateChangeUpper,
allowedExchangeRateChangeLower: allowedExchangeRateChangeLower,
lastUpdateTimestamp: uint64(block.timestamp),
isPaused: false,
minimumUpdateDelayInSeconds: minimumUpdateDelayInSeconds,
platformFee: platformFee,
performanceFee: performanceFee
});
}
// ========================================= ADMIN FUNCTIONS =========================================
/**
* @notice Pause this contract, which prevents future calls to `updateExchangeRate`, and any safe rate
* calls will revert.
* @dev Callable by MULTISIG_ROLE.
*/
function pause() external requiresAuth {
accountantState.isPaused = true;
emit Paused();
}
/**
* @notice Unpause this contract, which allows future calls to `updateExchangeRate`, and any safe rate
* calls will stop reverting.
* @dev Callable by MULTISIG_ROLE.
*/
function unpause() external requiresAuth {
accountantState.isPaused = false;
emit Unpaused();
}
/**
* @notice Update the minimum time delay between `updateExchangeRate` calls.
* @dev There are no input requirements, as it is possible the admin would want
* the exchange rate updated as frequently as needed.
* @dev Callable by OWNER_ROLE.
*/
function updateDelay(uint24 minimumUpdateDelayInSeconds) external requiresAuth {
if (minimumUpdateDelayInSeconds > 14 days) revert AccountantWithRateProviders__UpdateDelayTooLarge();
uint24 oldDelay = accountantState.minimumUpdateDelayInSeconds;
accountantState.minimumUpdateDelayInSeconds = minimumUpdateDelayInSeconds;
emit DelayInSecondsUpdated(oldDelay, minimumUpdateDelayInSeconds);
}
/**
* @notice Update the allowed upper bound change of exchange rate between `updateExchangeRateCalls`.
* @dev Callable by OWNER_ROLE.
*/
function updateUpper(uint16 allowedExchangeRateChangeUpper) external requiresAuth {
if (allowedExchangeRateChangeUpper < 1e4) revert AccountantWithRateProviders__UpperBoundTooSmall();
uint16 oldBound = accountantState.allowedExchangeRateChangeUpper;
accountantState.allowedExchangeRateChangeUpper = allowedExchangeRateChangeUpper;
emit UpperBoundUpdated(oldBound, allowedExchangeRateChangeUpper);
}
/**
* @notice Update the allowed lower bound change of exchange rate between `updateExchangeRateCalls`.
* @dev Callable by OWNER_ROLE.
*/
function updateLower(uint16 allowedExchangeRateChangeLower) external requiresAuth {
if (allowedExchangeRateChangeLower > 1e4) revert AccountantWithRateProviders__LowerBoundTooLarge();
uint16 oldBound = accountantState.allowedExchangeRateChangeLower;
accountantState.allowedExchangeRateChangeLower = allowedExchangeRateChangeLower;
emit LowerBoundUpdated(oldBound, allowedExchangeRateChangeLower);
}
/**
* @notice Update the platform fee to a new value.
* @dev Callable by OWNER_ROLE.
*/
function updatePlatformFee(uint16 platformFee) external requiresAuth {
if (platformFee > 0.2e4) revert AccountantWithRateProviders__PlatformFeeTooLarge();
uint16 oldFee = accountantState.platformFee;
accountantState.platformFee = platformFee;
emit PlatformFeeUpdated(oldFee, platformFee);
}
/**
* @notice Update the performance fee to a new value.
* @dev Callable by OWNER_ROLE.
*/
function updatePerformanceFee(uint16 performanceFee) external requiresAuth {
if (performanceFee > 0.5e4) revert AccountantWithRateProviders__PerformanceFeeTooLarge();
uint16 oldFee = accountantState.performanceFee;
accountantState.performanceFee = performanceFee;
emit PerformanceFeeUpdated(oldFee, performanceFee);
}
/**
* @notice Update the payout address fees are sent to.
* @dev Callable by OWNER_ROLE.
*/
function updatePayoutAddress(address payoutAddress) external requiresAuth {
address oldPayout = accountantState.payoutAddress;
accountantState.payoutAddress = payoutAddress;
emit PayoutAddressUpdated(oldPayout, payoutAddress);
}
/**
* @notice Update the rate provider data for a specific `asset`.
* @dev Rate providers must return rates in terms of `base` or
* an asset pegged to base and they must use the same decimals
* as `asset`.
* @dev Callable by OWNER_ROLE.
*/
function setRateProviderData(ERC20 asset, bool isPeggedToBase, address rateProvider) external requiresAuth {
rateProviderData[asset] =
RateProviderData({isPeggedToBase: isPeggedToBase, rateProvider: IRateProvider(rateProvider)});
emit RateProviderUpdated(address(asset), isPeggedToBase, rateProvider);
}
/**
* @notice Reset the highwater mark to the current exchange rate.
* @dev Callable by OWNER_ROLE.
*/
function resetHighwaterMark() external virtual requiresAuth {
AccountantState storage state = accountantState;
if (state.exchangeRate > state.highwaterMark) {
revert AccountantWithRateProviders__ExchangeRateAboveHighwaterMark();
}
uint64 currentTime = uint64(block.timestamp);
uint256 currentTotalShares = vault.totalSupply();
_calculateFeesOwed(state, state.exchangeRate, state.exchangeRate, currentTotalShares, currentTime);
state.totalSharesLastUpdate = uint128(currentTotalShares);
state.highwaterMark = accountantState.exchangeRate;
state.lastUpdateTimestamp = currentTime;
emit HighwaterMarkReset();
}
// ========================================= UPDATE EXCHANGE RATE/FEES FUNCTIONS =========================================
/**
* @notice Updates this contract exchangeRate.
* @dev If new exchange rate is outside of accepted bounds, or if not enough time has passed, this
* will pause the contract, and this function will NOT calculate fees owed.
* @dev Callable by UPDATE_EXCHANGE_RATE_ROLE.
*/
function updateExchangeRate(uint96 newExchangeRate) external virtual requiresAuth {
(
bool shouldPause,
AccountantState storage state,
uint64 currentTime,
uint256 currentExchangeRate,
uint256 currentTotalShares
) = _beforeUpdateExchangeRate(newExchangeRate);
if (shouldPause) {
// Instead of reverting, pause the contract. This way the exchange rate updater is able to update the exchange rate
// to a better value, and pause it.
state.isPaused = true;
} else {
_calculateFeesOwed(state, newExchangeRate, currentExchangeRate, currentTotalShares, currentTime);
}
newExchangeRate = _setExchangeRate(newExchangeRate, state);
state.totalSharesLastUpdate = uint128(currentTotalShares);
state.lastUpdateTimestamp = currentTime;
emit ExchangeRateUpdated(uint96(currentExchangeRate), newExchangeRate, currentTime);
}
/**
* @notice Claim pending fees.
* @dev This function must be called by the BoringVault.
* @dev This function will lose precision if the exchange rate
* decimals is greater than the feeAsset's decimals.
*/
function claimFees(ERC20 feeAsset) external {
if (msg.sender != address(vault)) revert AccountantWithRateProviders__OnlyCallableByBoringVault();
AccountantState storage state = accountantState;
if (state.isPaused) revert AccountantWithRateProviders__Paused();
if (state.feesOwedInBase == 0) revert AccountantWithRateProviders__ZeroFeesOwed();
// Determine amount of fees owed in feeAsset.
uint256 feesOwedInFeeAsset;
RateProviderData memory data = rateProviderData[feeAsset];
if (address(feeAsset) == address(base)) {
feesOwedInFeeAsset = state.feesOwedInBase;
} else {
uint8 feeAssetDecimals = ERC20(feeAsset).decimals();
uint256 feesOwedInBaseUsingFeeAssetDecimals =
_changeDecimals(state.feesOwedInBase, decimals, feeAssetDecimals);
if (data.isPeggedToBase) {
feesOwedInFeeAsset = feesOwedInBaseUsingFeeAssetDecimals;
} else {
uint256 rate = data.rateProvider.getRate();
feesOwedInFeeAsset = feesOwedInBaseUsingFeeAssetDecimals.mulDivDown(10 ** feeAssetDecimals, rate);
}
}
// Zero out fees owed.
state.feesOwedInBase = 0;
// Transfer fee asset to payout address.
feeAsset.safeTransferFrom(msg.sender, state.payoutAddress, feesOwedInFeeAsset);
emit FeesClaimed(address(feeAsset), feesOwedInFeeAsset);
}
// ========================================= VIEW FUNCTIONS =========================================
/**
* @notice Get this BoringVault's current rate in the base.
*/
function getRate() public view returns (uint256 rate) {
rate = accountantState.exchangeRate;
}
/**
* @notice Get this BoringVault's current rate in the base.
* @dev Revert if paused.
*/
function getRateSafe() external view returns (uint256 rate) {
if (accountantState.isPaused) revert AccountantWithRateProviders__Paused();
rate = getRate();
}
/**
* @notice Get this BoringVault's current rate in the provided quote.
* @dev `quote` must have its RateProviderData set, else this will revert.
* @dev This function will lose precision if the exchange rate
* decimals is greater than the quote's decimals.
*/
function getRateInQuote(ERC20 quote) public view returns (uint256 rateInQuote) {
if (address(quote) == address(base)) {
rateInQuote = accountantState.exchangeRate;
} else {
RateProviderData memory data = rateProviderData[quote];
uint8 quoteDecimals = ERC20(quote).decimals();
uint256 exchangeRateInQuoteDecimals = _changeDecimals(accountantState.exchangeRate, decimals, quoteDecimals);
if (data.isPeggedToBase) {
rateInQuote = exchangeRateInQuoteDecimals;
} else {
uint256 quoteRate = data.rateProvider.getRate();
uint256 oneQuote = 10 ** quoteDecimals;
rateInQuote = oneQuote.mulDivDown(exchangeRateInQuoteDecimals, quoteRate);
}
}
}
/**
* @notice Get this BoringVault's current rate in the provided quote.
* @dev `quote` must have its RateProviderData set, else this will revert.
* @dev Revert if paused.
*/
function getRateInQuoteSafe(ERC20 quote) external view returns (uint256 rateInQuote) {
if (accountantState.isPaused) revert AccountantWithRateProviders__Paused();
rateInQuote = getRateInQuote(quote);
}
/**
* @notice Preview the result of an update to the exchange rate.
* @return updateWillPause Whether the update will pause the contract.
* @return newFeesOwedInBase The new fees owed in base.
* @return totalFeesOwedInBase The total fees owed in base.
*/
function previewUpdateExchangeRate(uint96 newExchangeRate)
external
view
virtual
returns (bool updateWillPause, uint256 newFeesOwedInBase, uint256 totalFeesOwedInBase)
{
(
bool shouldPause,
AccountantState storage state,
uint64 currentTime,
uint256 currentExchangeRate,
uint256 currentTotalShares
) = _beforeUpdateExchangeRate(newExchangeRate);
updateWillPause = shouldPause;
totalFeesOwedInBase = state.feesOwedInBase;
if (!shouldPause) {
(uint256 platformFeesOwedInBase, uint256 shareSupplyToUse) = _calculatePlatformFee(
state.totalSharesLastUpdate,
state.lastUpdateTimestamp,
state.platformFee,
newExchangeRate,
currentExchangeRate,
currentTotalShares,
currentTime
);
uint256 performanceFeesOwedInBase;
if (newExchangeRate > state.highwaterMark) {
(performanceFeesOwedInBase,) = _calculatePerformanceFee(
newExchangeRate, shareSupplyToUse, state.highwaterMark, state.performanceFee
);
}
newFeesOwedInBase = platformFeesOwedInBase + performanceFeesOwedInBase;
totalFeesOwedInBase += newFeesOwedInBase;
}
}
// ========================================= INTERNAL HELPER FUNCTIONS =========================================
/**
* @notice Used to change the decimals of precision used for an amount.
*/
function _changeDecimals(uint256 amount, uint8 fromDecimals, uint8 toDecimals) internal pure returns (uint256) {
if (fromDecimals == toDecimals) {
return amount;
} else if (fromDecimals < toDecimals) {
return amount * 10 ** (toDecimals - fromDecimals);
} else {
return amount / 10 ** (fromDecimals - toDecimals);
}
}
/**
* @notice Check if the new exchange rate is outside of the allowed bounds or if not enough time has passed.
*/
function _beforeUpdateExchangeRate(uint96 newExchangeRate)
internal
view
returns (
bool shouldPause,
AccountantState storage state,
uint64 currentTime,
uint256 currentExchangeRate,
uint256 currentTotalShares
)
{
state = accountantState;
if (state.isPaused) revert AccountantWithRateProviders__Paused();
currentTime = uint64(block.timestamp);
currentExchangeRate = state.exchangeRate;
currentTotalShares = vault.totalSupply();
shouldPause = currentTime < state.lastUpdateTimestamp + state.minimumUpdateDelayInSeconds
|| newExchangeRate > currentExchangeRate.mulDivDown(state.allowedExchangeRateChangeUpper, 1e4)
|| newExchangeRate < currentExchangeRate.mulDivDown(state.allowedExchangeRateChangeLower, 1e4);
}
/**
* @notice Set the exchange rate.
*/
function _setExchangeRate(uint96 newExchangeRate, AccountantState storage state)
internal
virtual
returns (uint96)
{
state.exchangeRate = newExchangeRate;
return newExchangeRate;
}
/**
* @notice Calculate platform fees.
*/
function _calculatePlatformFee(
uint128 totalSharesLastUpdate,
uint64 lastUpdateTimestamp,
uint16 platformFee,
uint96 newExchangeRate,
uint256 currentExchangeRate,
uint256 currentTotalShares,
uint64 currentTime
) internal view returns (uint256 platformFeesOwedInBase, uint256 shareSupplyToUse) {
shareSupplyToUse = currentTotalShares;
// Use the minimum between current total supply and total supply for last update.
if (totalSharesLastUpdate < shareSupplyToUse) {
shareSupplyToUse = totalSharesLastUpdate;
}
// Determine platform fees owned.
if (platformFee > 0) {
uint256 timeDelta = currentTime - lastUpdateTimestamp;
uint256 minimumAssets = newExchangeRate > currentExchangeRate
? shareSupplyToUse.mulDivDown(currentExchangeRate, ONE_SHARE)
: shareSupplyToUse.mulDivDown(newExchangeRate, ONE_SHARE);
uint256 platformFeesAnnual = minimumAssets.mulDivDown(platformFee, 1e4);
platformFeesOwedInBase = platformFeesAnnual.mulDivDown(timeDelta, 365 days);
}
}
/**
* @notice Calculate performance fees.
*/
function _calculatePerformanceFee(
uint96 newExchangeRate,
uint256 shareSupplyToUse,
uint96 datum,
uint16 performanceFee
) internal view returns (uint256 performanceFeesOwedInBase, uint256 yieldEarned) {
uint256 changeInExchangeRate = newExchangeRate - datum;
yieldEarned = changeInExchangeRate.mulDivDown(shareSupplyToUse, ONE_SHARE);
if (performanceFee > 0) {
performanceFeesOwedInBase = yieldEarned.mulDivDown(performanceFee, 1e4);
}
}
/**
* @notice Calculate fees owed in base.
* @dev This function will update the highwater mark if the new exchange rate is higher.
*/
function _calculateFeesOwed(
AccountantState storage state,
uint96 newExchangeRate,
uint256 currentExchangeRate,
uint256 currentTotalShares,
uint64 currentTime
) internal virtual {
// Only update fees if we are not paused.
// Update fee accounting.
(uint256 newFeesOwedInBase, uint256 shareSupplyToUse) = _calculatePlatformFee(
state.totalSharesLastUpdate,
state.lastUpdateTimestamp,
state.platformFee,
newExchangeRate,
currentExchangeRate,
currentTotalShares,
currentTime
);
// Account for performance fees.
if (newExchangeRate > state.highwaterMark) {
(uint256 performanceFeesOwedInBase,) =
_calculatePerformanceFee(newExchangeRate, shareSupplyToUse, state.highwaterMark, state.performanceFee);
// Add performance fees to fees owed.
newFeesOwedInBase += performanceFeesOwedInBase;
// Always update the highwater mark if the new exchange rate is higher.
// This way if we are not iniitiall taking performance fees, we can start taking them
// without back charging them on past performance.
state.highwaterMark = newExchangeRate;
}
state.feesOwedInBase += uint128(newFeesOwedInBase);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/IERC1155Receiver.sol)
pragma solidity ^0.8.20;
import {IERC165} from "../../utils/introspection/IERC165.sol";
/**
* @dev Interface that must be implemented by smart contracts in order to receive
* ERC-1155 token transfers.
*/
interface IERC1155Receiver is IERC165 {
/**
* @dev Handles the receipt of a single ERC1155 token type. This function is
* called at the end of a `safeTransferFrom` after the balance has been updated.
*
* NOTE: To accept the transfer, this must return
* `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
* (i.e. 0xf23a6e61, or its own function selector).
*
* @param operator The address which initiated the transfer (i.e. msg.sender)
* @param from The address which previously owned the token
* @param id The ID of the token being transferred
* @param value The amount of tokens being transferred
* @param data Additional data with no specified format
* @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
*/
function onERC1155Received(
address operator,
address from,
uint256 id,
uint256 value,
bytes calldata data
) external returns (bytes4);
/**
* @dev Handles the receipt of a multiple ERC1155 token types. This function
* is called at the end of a `safeBatchTransferFrom` after the balances have
* been updated.
*
* NOTE: To accept the transfer(s), this must return
* `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
* (i.e. 0xbc197c81, or its own function selector).
*
* @param operator The address which initiated the batch transfer (i.e. msg.sender)
* @param from The address which previously owned the token
* @param ids An array containing ids of each token being transferred (order and length must match values array)
* @param values An array containing amounts of each token being transferred (order and length must match ids array)
* @param data Additional data with no specified format
* @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
*/
function onERC1155BatchReceived(
address operator,
address from,
uint256[] calldata ids,
uint256[] calldata values,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/utils/ERC1155Holder.sol)
pragma solidity ^0.8.20;
import {IERC165, ERC165} from "../../../utils/introspection/ERC165.sol";
import {IERC1155Receiver} from "../IERC1155Receiver.sol";
/**
* @dev Simple implementation of `IERC1155Receiver` that will allow a contract to hold ERC1155 tokens.
*
* IMPORTANT: When inheriting this contract, you must include a way to use the received tokens, otherwise they will be
* stuck.
*/
abstract contract ERC1155Holder is ERC165, IERC1155Receiver {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return interfaceId == type(IERC1155Receiver).interfaceId || super.supportsInterface(interfaceId);
}
function onERC1155Received(
address,
address,
uint256,
uint256,
bytes memory
) public virtual override returns (bytes4) {
return this.onERC1155Received.selector;
}
function onERC1155BatchReceived(
address,
address,
uint256[] memory,
uint256[] memory,
bytes memory
) public virtual override returns (bytes4) {
return this.onERC1155BatchReceived.selector;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.20;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be
* reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/utils/ERC721Holder.sol)
pragma solidity ^0.8.20;
import {IERC721Receiver} from "../IERC721Receiver.sol";
/**
* @dev Implementation of the {IERC721Receiver} interface.
*
* Accepts all token transfers.
* Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or
* {IERC721-setApprovalForAll}.
*/
abstract contract ERC721Holder is IERC721Receiver {
/**
* @dev See {IERC721Receiver-onERC721Received}.
*
* Always returns `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(address, address, uint256, bytes memory) public virtual returns (bytes4) {
return this.onERC721Received.selector;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)
pragma solidity ^0.8.20;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev The ETH balance of the account is not enough to perform the operation.
*/
error AddressInsufficientBalance(address account);
/**
* @dev There's no code at `target` (it is not a contract).
*/
error AddressEmptyCode(address target);
/**
* @dev A call to an address target failed. The target may have reverted.
*/
error FailedInnerCall();
/**
* @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://consensys.net/diligence/blog/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.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
if (address(this).balance < amount) {
revert AddressInsufficientBalance(address(this));
}
(bool success, ) = recipient.call{value: amount}("");
if (!success) {
revert FailedInnerCall();
}
}
/**
* @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 or custom error, it is bubbled
* up by this function (like regular Solidity function calls). However, if
* the call reverted with no returned reason, this function reverts with a
* {FailedInnerCall} error.
*
* 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.
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0);
}
/**
* @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`.
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
if (address(this).balance < value) {
revert AddressInsufficientBalance(address(this));
}
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
* was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
* unsuccessful call.
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata
) internal view returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
// only check if target is a contract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
if (returndata.length == 0 && target.code.length == 0) {
revert AddressEmptyCode(target);
}
return returndata;
}
}
/**
* @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
* revert reason or with a default {FailedInnerCall} error.
*/
function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
return returndata;
}
}
/**
* @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
*/
function _revert(bytes memory returndata) 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 FailedInnerCall();
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)
pragma solidity ^0.8.20;
import {IERC165} from "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;
/// @notice Provides a flexible and updatable auth pattern which is completely separate from application logic.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/auth/Auth.sol)
/// @author Modified from Dappsys (https://github.com/dapphub/ds-auth/blob/master/src/auth.sol)
abstract contract Auth {
event OwnershipTransferred(address indexed user, address indexed newOwner);
event AuthorityUpdated(address indexed user, Authority indexed newAuthority);
address public owner;
Authority public authority;
constructor(address _owner, Authority _authority) {
owner = _owner;
authority = _authority;
emit OwnershipTransferred(msg.sender, _owner);
emit AuthorityUpdated(msg.sender, _authority);
}
modifier requiresAuth() virtual {
require(isAuthorized(msg.sender, msg.sig), "UNAUTHORIZED");
_;
}
function isAuthorized(address user, bytes4 functionSig) internal view virtual returns (bool) {
Authority auth = authority; // Memoizing authority saves us a warm SLOAD, around 100 gas.
// Checking if the caller is the owner only after calling the authority saves gas in most cases, but be
// aware that this makes protected functions uncallable even to the owner if the authority is out of order.
return (address(auth) != address(0) && auth.canCall(user, address(this), functionSig)) || user == owner;
}
function setAuthority(Authority newAuthority) public virtual {
// We check if the caller is the owner first because we want to ensure they can
// always swap out the authority even if it's reverting or using up a lot of gas.
require(msg.sender == owner || authority.canCall(msg.sender, address(this), msg.sig));
authority = newAuthority;
emit AuthorityUpdated(msg.sender, newAuthority);
}
function transferOwnership(address newOwner) public virtual requiresAuth {
owner = newOwner;
emit OwnershipTransferred(msg.sender, newOwner);
}
}
/// @notice A generic interface for a contract which provides authorization data to an Auth instance.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/auth/Auth.sol)
/// @author Modified from Dappsys (https://github.com/dapphub/ds-auth/blob/master/src/auth.sol)
interface Authority {
function canCall(
address user,
address target,
bytes4 functionSig
) external view returns (bool);
}// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;
/// @notice Modern and gas efficient ERC20 + EIP-2612 implementation.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol)
/// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol)
/// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it.
abstract contract ERC20 {
/*//////////////////////////////////////////////////////////////
EVENTS
//////////////////////////////////////////////////////////////*/
event Transfer(address indexed from, address indexed to, uint256 amount);
event Approval(address indexed owner, address indexed spender, uint256 amount);
/*//////////////////////////////////////////////////////////////
METADATA STORAGE
//////////////////////////////////////////////////////////////*/
string public name;
string public symbol;
uint8 public immutable decimals;
/*//////////////////////////////////////////////////////////////
ERC20 STORAGE
//////////////////////////////////////////////////////////////*/
uint256 public totalSupply;
mapping(address => uint256) public balanceOf;
mapping(address => mapping(address => uint256)) public allowance;
/*//////////////////////////////////////////////////////////////
EIP-2612 STORAGE
//////////////////////////////////////////////////////////////*/
uint256 internal immutable INITIAL_CHAIN_ID;
bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR;
mapping(address => uint256) public nonces;
/*//////////////////////////////////////////////////////////////
CONSTRUCTOR
//////////////////////////////////////////////////////////////*/
constructor(
string memory _name,
string memory _symbol,
uint8 _decimals
) {
name = _name;
symbol = _symbol;
decimals = _decimals;
INITIAL_CHAIN_ID = block.chainid;
INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator();
}
/*//////////////////////////////////////////////////////////////
ERC20 LOGIC
//////////////////////////////////////////////////////////////*/
function approve(address spender, uint256 amount) public virtual returns (bool) {
allowance[msg.sender][spender] = amount;
emit Approval(msg.sender, spender, amount);
return true;
}
function transfer(address to, uint256 amount) public virtual returns (bool) {
balanceOf[msg.sender] -= amount;
// Cannot overflow because the sum of all user
// balances can't exceed the max uint256 value.
unchecked {
balanceOf[to] += amount;
}
emit Transfer(msg.sender, to, amount);
return true;
}
function transferFrom(
address from,
address to,
uint256 amount
) public virtual returns (bool) {
uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals.
if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amount;
balanceOf[from] -= amount;
// Cannot overflow because the sum of all user
// balances can't exceed the max uint256 value.
unchecked {
balanceOf[to] += amount;
}
emit Transfer(from, to, amount);
return true;
}
/*//////////////////////////////////////////////////////////////
EIP-2612 LOGIC
//////////////////////////////////////////////////////////////*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) public virtual {
require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED");
// Unchecked because the only math done is incrementing
// the owner's nonce which cannot realistically overflow.
unchecked {
address recoveredAddress = ecrecover(
keccak256(
abi.encodePacked(
"\x19\x01",
DOMAIN_SEPARATOR(),
keccak256(
abi.encode(
keccak256(
"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"
),
owner,
spender,
value,
nonces[owner]++,
deadline
)
)
)
),
v,
r,
s
);
require(recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER");
allowance[recoveredAddress][spender] = value;
}
emit Approval(owner, spender, value);
}
function DOMAIN_SEPARATOR() public view virtual returns (bytes32) {
return block.chainid == INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : computeDomainSeparator();
}
function computeDomainSeparator() internal view virtual returns (bytes32) {
return
keccak256(
abi.encode(
keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
keccak256(bytes(name)),
keccak256("1"),
block.chainid,
address(this)
)
);
}
/*//////////////////////////////////////////////////////////////
INTERNAL MINT/BURN LOGIC
//////////////////////////////////////////////////////////////*/
function _mint(address to, uint256 amount) internal virtual {
totalSupply += amount;
// Cannot overflow because the sum of all user
// balances can't exceed the max uint256 value.
unchecked {
balanceOf[to] += amount;
}
emit Transfer(address(0), to, amount);
}
function _burn(address from, uint256 amount) internal virtual {
balanceOf[from] -= amount;
// Cannot underflow because a user's balance
// will never be larger than the total supply.
unchecked {
totalSupply -= amount;
}
emit Transfer(from, address(0), amount);
}
}// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;
/// @notice Arithmetic library with operations for fixed-point numbers.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/FixedPointMathLib.sol)
/// @author Inspired by USM (https://github.com/usmfum/USM/blob/master/contracts/WadMath.sol)
library FixedPointMathLib {
/*//////////////////////////////////////////////////////////////
SIMPLIFIED FIXED POINT OPERATIONS
//////////////////////////////////////////////////////////////*/
uint256 internal constant MAX_UINT256 = 2**256 - 1;
uint256 internal constant WAD = 1e18; // The scalar of ETH and most ERC20s.
function mulWadDown(uint256 x, uint256 y) internal pure returns (uint256) {
return mulDivDown(x, y, WAD); // Equivalent to (x * y) / WAD rounded down.
}
function mulWadUp(uint256 x, uint256 y) internal pure returns (uint256) {
return mulDivUp(x, y, WAD); // Equivalent to (x * y) / WAD rounded up.
}
function divWadDown(uint256 x, uint256 y) internal pure returns (uint256) {
return mulDivDown(x, WAD, y); // Equivalent to (x * WAD) / y rounded down.
}
function divWadUp(uint256 x, uint256 y) internal pure returns (uint256) {
return mulDivUp(x, WAD, y); // Equivalent to (x * WAD) / y rounded up.
}
/*//////////////////////////////////////////////////////////////
LOW LEVEL FIXED POINT OPERATIONS
//////////////////////////////////////////////////////////////*/
function mulDivDown(
uint256 x,
uint256 y,
uint256 denominator
) internal pure returns (uint256 z) {
/// @solidity memory-safe-assembly
assembly {
// Equivalent to require(denominator != 0 && (y == 0 || x <= type(uint256).max / y))
if iszero(mul(denominator, iszero(mul(y, gt(x, div(MAX_UINT256, y)))))) {
revert(0, 0)
}
// Divide x * y by the denominator.
z := div(mul(x, y), denominator)
}
}
function mulDivUp(
uint256 x,
uint256 y,
uint256 denominator
) internal pure returns (uint256 z) {
/// @solidity memory-safe-assembly
assembly {
// Equivalent to require(denominator != 0 && (y == 0 || x <= type(uint256).max / y))
if iszero(mul(denominator, iszero(mul(y, gt(x, div(MAX_UINT256, y)))))) {
revert(0, 0)
}
// If x * y modulo the denominator is strictly greater than 0,
// 1 is added to round up the division of x * y by the denominator.
z := add(gt(mod(mul(x, y), denominator), 0), div(mul(x, y), denominator))
}
}
function rpow(
uint256 x,
uint256 n,
uint256 scalar
) internal pure returns (uint256 z) {
/// @solidity memory-safe-assembly
assembly {
switch x
case 0 {
switch n
case 0 {
// 0 ** 0 = 1
z := scalar
}
default {
// 0 ** n = 0
z := 0
}
}
default {
switch mod(n, 2)
case 0 {
// If n is even, store scalar in z for now.
z := scalar
}
default {
// If n is odd, store x in z for now.
z := x
}
// Shifting right by 1 is like dividing by 2.
let half := shr(1, scalar)
for {
// Shift n right by 1 before looping to halve it.
n := shr(1, n)
} n {
// Shift n right by 1 each iteration to halve it.
n := shr(1, n)
} {
// Revert immediately if x ** 2 would overflow.
// Equivalent to iszero(eq(div(xx, x), x)) here.
if shr(128, x) {
revert(0, 0)
}
// Store x squared.
let xx := mul(x, x)
// Round to the nearest number.
let xxRound := add(xx, half)
// Revert if xx + half overflowed.
if lt(xxRound, xx) {
revert(0, 0)
}
// Set x to scaled xxRound.
x := div(xxRound, scalar)
// If n is even:
if mod(n, 2) {
// Compute z * x.
let zx := mul(z, x)
// If z * x overflowed:
if iszero(eq(div(zx, x), z)) {
// Revert if x is non-zero.
if iszero(iszero(x)) {
revert(0, 0)
}
}
// Round to the nearest number.
let zxRound := add(zx, half)
// Revert if zx + half overflowed.
if lt(zxRound, zx) {
revert(0, 0)
}
// Return properly scaled zxRound.
z := div(zxRound, scalar)
}
}
}
}
}
/*//////////////////////////////////////////////////////////////
GENERAL NUMBER UTILITIES
//////////////////////////////////////////////////////////////*/
function sqrt(uint256 x) internal pure returns (uint256 z) {
/// @solidity memory-safe-assembly
assembly {
let y := x // We start y at x, which will help us make our initial estimate.
z := 181 // The "correct" value is 1, but this saves a multiplication later.
// This segment is to get a reasonable initial estimate for the Babylonian method. With a bad
// start, the correct # of bits increases ~linearly each iteration instead of ~quadratically.
// We check y >= 2^(k + 8) but shift right by k bits
// each branch to ensure that if x >= 256, then y >= 256.
if iszero(lt(y, 0x10000000000000000000000000000000000)) {
y := shr(128, y)
z := shl(64, z)
}
if iszero(lt(y, 0x1000000000000000000)) {
y := shr(64, y)
z := shl(32, z)
}
if iszero(lt(y, 0x10000000000)) {
y := shr(32, y)
z := shl(16, z)
}
if iszero(lt(y, 0x1000000)) {
y := shr(16, y)
z := shl(8, z)
}
// Goal was to get z*z*y within a small factor of x. More iterations could
// get y in a tighter range. Currently, we will have y in [256, 256*2^16).
// We ensured y >= 256 so that the relative difference between y and y+1 is small.
// That's not possible if x < 256 but we can just verify those cases exhaustively.
// Now, z*z*y <= x < z*z*(y+1), and y <= 2^(16+8), and either y >= 256, or x < 256.
// Correctness can be checked exhaustively for x < 256, so we assume y >= 256.
// Then z*sqrt(y) is within sqrt(257)/sqrt(256) of sqrt(x), or about 20bps.
// For s in the range [1/256, 256], the estimate f(s) = (181/1024) * (s+1) is in the range
// (1/2.84 * sqrt(s), 2.84 * sqrt(s)), with largest error when s = 1 and when s = 256 or 1/256.
// Since y is in [256, 256*2^16), let a = y/65536, so that a is in [1/256, 256). Then we can estimate
// sqrt(y) using sqrt(65536) * 181/1024 * (a + 1) = 181/4 * (y + 65536)/65536 = 181 * (y + 65536)/2^18.
// There is no overflow risk here since y < 2^136 after the first branch above.
z := shr(18, mul(z, add(y, 65536))) // A mul() is saved from starting z at 181.
// Given the worst case multiplicative error of 2.84 above, 7 iterations should be enough.
z := shr(1, add(z, div(x, z)))
z := shr(1, add(z, div(x, z)))
z := shr(1, add(z, div(x, z)))
z := shr(1, add(z, div(x, z)))
z := shr(1, add(z, div(x, z)))
z := shr(1, add(z, div(x, z)))
z := shr(1, add(z, div(x, z)))
// If x+1 is a perfect square, the Babylonian method cycles between
// floor(sqrt(x)) and ceil(sqrt(x)). This statement ensures we return floor.
// See: https://en.wikipedia.org/wiki/Integer_square_root#Using_only_integer_division
// Since the ceil is rare, we save gas on the assignment and repeat division in the rare case.
// If you don't care whether the floor or ceil square root is returned, you can remove this statement.
z := sub(z, lt(div(x, z), z))
}
}
function unsafeMod(uint256 x, uint256 y) internal pure returns (uint256 z) {
/// @solidity memory-safe-assembly
assembly {
// Mod x by y. Note this will return
// 0 instead of reverting if y is zero.
z := mod(x, y)
}
}
function unsafeDiv(uint256 x, uint256 y) internal pure returns (uint256 r) {
/// @solidity memory-safe-assembly
assembly {
// Divide x by y. Note this will return
// 0 instead of reverting if y is zero.
r := div(x, y)
}
}
function unsafeDivUp(uint256 x, uint256 y) internal pure returns (uint256 z) {
/// @solidity memory-safe-assembly
assembly {
// Add 1 to x * y if x % y > 0. Note this will
// return 0 instead of reverting if y is zero.
z := add(gt(mod(x, y), 0), div(x, y))
}
}
}// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;
import {ERC20} from "../tokens/ERC20.sol";
/// @notice Safe ETH and ERC20 transfer library that gracefully handles missing return values.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/SafeTransferLib.sol)
/// @dev Use with caution! Some functions in this library knowingly create dirty bits at the destination of the free memory pointer.
/// @dev Note that none of the functions in this library check that a token has code at all! That responsibility is delegated to the caller.
library SafeTransferLib {
/*//////////////////////////////////////////////////////////////
ETH OPERATIONS
//////////////////////////////////////////////////////////////*/
function safeTransferETH(address to, uint256 amount) internal {
bool success;
/// @solidity memory-safe-assembly
assembly {
// Transfer the ETH and store if it succeeded or not.
success := call(gas(), to, amount, 0, 0, 0, 0)
}
require(success, "ETH_TRANSFER_FAILED");
}
/*//////////////////////////////////////////////////////////////
ERC20 OPERATIONS
//////////////////////////////////////////////////////////////*/
function safeTransferFrom(
ERC20 token,
address from,
address to,
uint256 amount
) internal {
bool success;
/// @solidity memory-safe-assembly
assembly {
// Get a pointer to some free memory.
let freeMemoryPointer := mload(0x40)
// Write the abi-encoded calldata into memory, beginning with the function selector.
mstore(freeMemoryPointer, 0x23b872dd00000000000000000000000000000000000000000000000000000000)
mstore(add(freeMemoryPointer, 4), and(from, 0xffffffffffffffffffffffffffffffffffffffff)) // Append and mask the "from" argument.
mstore(add(freeMemoryPointer, 36), and(to, 0xffffffffffffffffffffffffffffffffffffffff)) // Append and mask the "to" argument.
mstore(add(freeMemoryPointer, 68), amount) // Append the "amount" argument. Masking not required as it's a full 32 byte type.
success := and(
// Set success to whether the call reverted, if not we check it either
// returned exactly 1 (can't just be non-zero data), or had no return data.
or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())),
// We use 100 because the length of our calldata totals up like so: 4 + 32 * 3.
// We use 0 and 32 to copy up to 32 bytes of return data into the scratch space.
// Counterintuitively, this call must be positioned second to the or() call in the
// surrounding and() call or else returndatasize() will be zero during the computation.
call(gas(), token, 0, freeMemoryPointer, 100, 0, 32)
)
}
require(success, "TRANSFER_FROM_FAILED");
}
function safeTransfer(
ERC20 token,
address to,
uint256 amount
) internal {
bool success;
/// @solidity memory-safe-assembly
assembly {
// Get a pointer to some free memory.
let freeMemoryPointer := mload(0x40)
// Write the abi-encoded calldata into memory, beginning with the function selector.
mstore(freeMemoryPointer, 0xa9059cbb00000000000000000000000000000000000000000000000000000000)
mstore(add(freeMemoryPointer, 4), and(to, 0xffffffffffffffffffffffffffffffffffffffff)) // Append and mask the "to" argument.
mstore(add(freeMemoryPointer, 36), amount) // Append the "amount" argument. Masking not required as it's a full 32 byte type.
success := and(
// Set success to whether the call reverted, if not we check it either
// returned exactly 1 (can't just be non-zero data), or had no return data.
or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())),
// We use 68 because the length of our calldata totals up like so: 4 + 32 * 2.
// We use 0 and 32 to copy up to 32 bytes of return data into the scratch space.
// Counterintuitively, this call must be positioned second to the or() call in the
// surrounding and() call or else returndatasize() will be zero during the computation.
call(gas(), token, 0, freeMemoryPointer, 68, 0, 32)
)
}
require(success, "TRANSFER_FAILED");
}
function safeApprove(
ERC20 token,
address to,
uint256 amount
) internal {
bool success;
/// @solidity memory-safe-assembly
assembly {
// Get a pointer to some free memory.
let freeMemoryPointer := mload(0x40)
// Write the abi-encoded calldata into memory, beginning with the function selector.
mstore(freeMemoryPointer, 0x095ea7b300000000000000000000000000000000000000000000000000000000)
mstore(add(freeMemoryPointer, 4), and(to, 0xffffffffffffffffffffffffffffffffffffffff)) // Append and mask the "to" argument.
mstore(add(freeMemoryPointer, 36), amount) // Append the "amount" argument. Masking not required as it's a full 32 byte type.
success := and(
// Set success to whether the call reverted, if not we check it either
// returned exactly 1 (can't just be non-zero data), or had no return data.
or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())),
// We use 68 because the length of our calldata totals up like so: 4 + 32 * 2.
// We use 0 and 32 to copy up to 32 bytes of return data into the scratch space.
// Counterintuitively, this call must be positioned second to the or() call in the
// surrounding and() call or else returndatasize() will be zero during the computation.
call(gas(), token, 0, freeMemoryPointer, 68, 0, 32)
)
}
require(success, "APPROVE_FAILED");
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;
import {Address} from "@openzeppelin/contracts/utils/Address.sol";
import {ERC721Holder} from "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
import {ERC1155Holder} from "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol";
import {FixedPointMathLib} from "@solmate/utils/FixedPointMathLib.sol";
import {SafeTransferLib} from "@solmate/utils/SafeTransferLib.sol";
import {ERC20} from "@solmate/tokens/ERC20.sol";
import {BeforeTransferHook} from "src/interfaces/BeforeTransferHook.sol";
import {Auth, Authority} from "@solmate/auth/Auth.sol";
contract BoringVault is ERC20, Auth, ERC721Holder, ERC1155Holder {
using Address for address;
using SafeTransferLib for ERC20;
using FixedPointMathLib for uint256;
// ========================================= STATE =========================================
/**
* @notice Contract responsbile for implementing `beforeTransfer`.
*/
BeforeTransferHook public hook;
//============================== EVENTS ===============================
event Enter(address indexed from, address indexed asset, uint256 amount, address indexed to, uint256 shares);
event Exit(address indexed to, address indexed asset, uint256 amount, address indexed from, uint256 shares);
//============================== CONSTRUCTOR ===============================
constructor(address _owner, string memory _name, string memory _symbol, uint8 _decimals)
ERC20(_name, _symbol, _decimals)
Auth(_owner, Authority(address(0)))
{}
//============================== MANAGE ===============================
/**
* @notice Allows manager to make an arbitrary function call from this contract.
* @dev Callable by MANAGER_ROLE.
*/
function manage(address target, bytes calldata data, uint256 value)
external
requiresAuth
returns (bytes memory result)
{
result = target.functionCallWithValue(data, value);
}
/**
* @notice Allows manager to make arbitrary function calls from this contract.
* @dev Callable by MANAGER_ROLE.
*/
function manage(address[] calldata targets, bytes[] calldata data, uint256[] calldata values)
external
requiresAuth
returns (bytes[] memory results)
{
uint256 targetsLength = targets.length;
results = new bytes[](targetsLength);
for (uint256 i; i < targetsLength; ++i) {
results[i] = targets[i].functionCallWithValue(data[i], values[i]);
}
}
//============================== ENTER ===============================
/**
* @notice Allows minter to mint shares, in exchange for assets.
* @dev If assetAmount is zero, no assets are transferred in.
* @dev Callable by MINTER_ROLE.
*/
function enter(address from, ERC20 asset, uint256 assetAmount, address to, uint256 shareAmount)
external
requiresAuth
{
// Transfer assets in
if (assetAmount > 0) asset.safeTransferFrom(from, address(this), assetAmount);
// Mint shares.
_mint(to, shareAmount);
emit Enter(from, address(asset), assetAmount, to, shareAmount);
}
//============================== EXIT ===============================
/**
* @notice Allows burner to burn shares, in exchange for assets.
* @dev If assetAmount is zero, no assets are transferred out.
* @dev Callable by BURNER_ROLE.
*/
function exit(address to, ERC20 asset, uint256 assetAmount, address from, uint256 shareAmount)
external
requiresAuth
{
// Burn shares.
_burn(from, shareAmount);
// Transfer assets out.
if (assetAmount > 0) asset.safeTransfer(to, assetAmount);
emit Exit(to, address(asset), assetAmount, from, shareAmount);
}
//============================== BEFORE TRANSFER HOOK ===============================
/**
* @notice Sets the share locker.
* @notice If set to zero address, the share locker logic is disabled.
* @dev Callable by OWNER_ROLE.
*/
function setBeforeTransferHook(address _hook) external requiresAuth {
hook = BeforeTransferHook(_hook);
}
/**
* @notice Call `beforeTransferHook` passing in `from` `to`, and `msg.sender`.
*/
function _callBeforeTransfer(address from, address to) internal view {
if (address(hook) != address(0)) hook.beforeTransfer(from, to, msg.sender);
}
function transfer(address to, uint256 amount) public override returns (bool) {
_callBeforeTransfer(msg.sender, to);
return super.transfer(to, amount);
}
function transferFrom(address from, address to, uint256 amount) public override returns (bool) {
_callBeforeTransfer(from, to);
return super.transferFrom(from, to, amount);
}
//============================== RECEIVE ===============================
receive() external payable {}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;
interface BeforeTransferHook {
function beforeTransfer(address from, address to, address operator) external view;
}// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;
interface IPausable {
function pause() external;
function unpause() external;
}// SPDX-License-Identifier: UNLICENSED
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
pragma solidity ^0.8.0;
interface IRateProvider {
function getRate() external view returns (uint256);
}{
"evmVersion": "shanghai",
"metadata": {
"appendCBOR": true,
"bytecodeHash": "ipfs",
"useLiteralContent": false
},
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
},
"remappings": [
"@solmate/=lib/solmate/src/",
"@forge-std/=lib/forge-std/src/",
"@ds-test/=lib/forge-std/lib/ds-test/src/",
"ds-test/=lib/forge-std/lib/ds-test/src/",
"@openzeppelin/=lib/openzeppelin-contracts/",
"@ccip/=lib/ccip/",
"@oapp-auth/=lib/OAppAuth/src/",
"@devtools-oapp-evm/=lib/OAppAuth/lib/devtools/packages/oapp-evm/contracts/oapp/",
"@layerzerolabs/lz-evm-messagelib-v2/=lib/OAppAuth/node_modules/@layerzerolabs/lz-evm-messagelib-v2/",
"@layerzerolabs/lz-evm-protocol-v2/=lib/OAppAuth/lib/LayerZero-V2/packages/layerzero-v2/evm/protocol/",
"@layerzerolabs/oapp-evm/=lib/OAppAuth/lib/devtools/packages/oapp-evm/",
"@lz-oapp-evm/=lib/OAppAuth/lib/LayerZero-V2/packages/layerzero-v2/evm/oapp/contracts/oapp/",
"@sbu/=lib/OAppAuth/lib/solidity-bytes-utils/",
"LayerZero-V2/=lib/OAppAuth/lib/",
"OAppAuth/=lib/OAppAuth/",
"ccip/=lib/ccip/contracts/",
"erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
"forge-std/=lib/forge-std/src/",
"halmos-cheatcodes/=lib/OAppAuth/lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/",
"solidity-bytes-utils/=lib/OAppAuth/node_modules/solidity-bytes-utils/",
"solmate/=lib/solmate/src/"
],
"viaIR": false
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_vault","type":"address"},{"internalType":"address","name":"payoutAddress","type":"address"},{"internalType":"uint96","name":"startingExchangeRate","type":"uint96"},{"internalType":"address","name":"_base","type":"address"},{"internalType":"uint16","name":"allowedExchangeRateChangeUpper","type":"uint16"},{"internalType":"uint16","name":"allowedExchangeRateChangeLower","type":"uint16"},{"internalType":"uint24","name":"minimumUpdateDelayInSeconds","type":"uint24"},{"internalType":"uint16","name":"platformFee","type":"uint16"},{"internalType":"uint16","name":"performanceFee","type":"uint16"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccountantWithRateProviders__ExchangeRateAboveHighwaterMark","type":"error"},{"inputs":[],"name":"AccountantWithRateProviders__LowerBoundTooLarge","type":"error"},{"inputs":[],"name":"AccountantWithRateProviders__OnlyCallableByBoringVault","type":"error"},{"inputs":[],"name":"AccountantWithRateProviders__Paused","type":"error"},{"inputs":[],"name":"AccountantWithRateProviders__PerformanceFeeTooLarge","type":"error"},{"inputs":[],"name":"AccountantWithRateProviders__PlatformFeeTooLarge","type":"error"},{"inputs":[],"name":"AccountantWithRateProviders__UpdateDelayTooLarge","type":"error"},{"inputs":[],"name":"AccountantWithRateProviders__UpperBoundTooSmall","type":"error"},{"inputs":[],"name":"AccountantWithRateProviders__ZeroFeesOwed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"contract Authority","name":"newAuthority","type":"address"}],"name":"AuthorityUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint24","name":"oldDelay","type":"uint24"},{"indexed":false,"internalType":"uint24","name":"newDelay","type":"uint24"}],"name":"DelayInSecondsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint96","name":"oldRate","type":"uint96"},{"indexed":false,"internalType":"uint96","name":"newRate","type":"uint96"},{"indexed":false,"internalType":"uint64","name":"currentTime","type":"uint64"}],"name":"ExchangeRateUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"feeAsset","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FeesClaimed","type":"event"},{"anonymous":false,"inputs":[],"name":"HighwaterMarkReset","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"oldBound","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"newBound","type":"uint16"}],"name":"LowerBoundUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldPayout","type":"address"},{"indexed":false,"internalType":"address","name":"newPayout","type":"address"}],"name":"PayoutAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"oldFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"newFee","type":"uint16"}],"name":"PerformanceFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"oldFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"newFee","type":"uint16"}],"name":"PlatformFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"bool","name":"isPegged","type":"bool"},{"indexed":false,"internalType":"address","name":"rateProvider","type":"address"}],"name":"RateProviderUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"oldBound","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"newBound","type":"uint16"}],"name":"UpperBoundUpdated","type":"event"},{"inputs":[],"name":"accountantState","outputs":[{"internalType":"address","name":"payoutAddress","type":"address"},{"internalType":"uint96","name":"highwaterMark","type":"uint96"},{"internalType":"uint128","name":"feesOwedInBase","type":"uint128"},{"internalType":"uint128","name":"totalSharesLastUpdate","type":"uint128"},{"internalType":"uint96","name":"exchangeRate","type":"uint96"},{"internalType":"uint16","name":"allowedExchangeRateChangeUpper","type":"uint16"},{"internalType":"uint16","name":"allowedExchangeRateChangeLower","type":"uint16"},{"internalType":"uint64","name":"lastUpdateTimestamp","type":"uint64"},{"internalType":"bool","name":"isPaused","type":"bool"},{"internalType":"uint24","name":"minimumUpdateDelayInSeconds","type":"uint24"},{"internalType":"uint16","name":"platformFee","type":"uint16"},{"internalType":"uint16","name":"performanceFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"authority","outputs":[{"internalType":"contract Authority","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"base","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"feeAsset","type":"address"}],"name":"claimFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRate","outputs":[{"internalType":"uint256","name":"rate","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"quote","type":"address"}],"name":"getRateInQuote","outputs":[{"internalType":"uint256","name":"rateInQuote","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"quote","type":"address"}],"name":"getRateInQuoteSafe","outputs":[{"internalType":"uint256","name":"rateInQuote","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRateSafe","outputs":[{"internalType":"uint256","name":"rate","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint96","name":"newExchangeRate","type":"uint96"}],"name":"previewUpdateExchangeRate","outputs":[{"internalType":"bool","name":"updateWillPause","type":"bool"},{"internalType":"uint256","name":"newFeesOwedInBase","type":"uint256"},{"internalType":"uint256","name":"totalFeesOwedInBase","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"name":"rateProviderData","outputs":[{"internalType":"bool","name":"isPeggedToBase","type":"bool"},{"internalType":"contract IRateProvider","name":"rateProvider","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"resetHighwaterMark","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Authority","name":"newAuthority","type":"address"}],"name":"setAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"asset","type":"address"},{"internalType":"bool","name":"isPeggedToBase","type":"bool"},{"internalType":"address","name":"rateProvider","type":"address"}],"name":"setRateProviderData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint24","name":"minimumUpdateDelayInSeconds","type":"uint24"}],"name":"updateDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint96","name":"newExchangeRate","type":"uint96"}],"name":"updateExchangeRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"allowedExchangeRateChangeLower","type":"uint16"}],"name":"updateLower","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"payoutAddress","type":"address"}],"name":"updatePayoutAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"performanceFee","type":"uint16"}],"name":"updatePerformanceFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"platformFee","type":"uint16"}],"name":"updatePlatformFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"allowedExchangeRateChangeUpper","type":"uint16"}],"name":"updateUpper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"contract BoringVault","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
61010060405234801562000011575f80fd5b50604051620025c4380380620025c483398101604081905262000034916200043f565b5f80546001600160a01b038c166001600160a01b031991821681178355600180549092169091556040518c92919033907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908490a36040516001600160a01b0382169033907fa3396fd7f6e0a21b50e5089d2da70d5ac0a3bbbd1f617a93f134b76389980198905f90a350506001600160a01b03861660808190526040805163313ce56760e01b8152905163313ce567916004808201926020929091908290030181865afa15801562000109573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200012f91906200051d565b60ff1660a0526001600160a01b03891660c08190526040805163313ce56760e01b8152905163313ce567916004808201926020929091908290030181865afa1580156200017e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001a491906200051d565b620001b190600a62000655565b60e08181525050604051806101800160405280896001600160a01b03168152602001886001600160601b031681526020015f6001600160801b0316815260200160c0516001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000230573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000256919062000665565b6001600160801b0390811682526001600160601b03998a1660208084019190915261ffff9889166040808501919091529789166060808501919091526001600160401b034281166080808701919091525f60a08088019190915262ffffff9a8b1660c080890191909152998d1660e080890191909152988d16610100978801528751948801518f16600160a01b026001600160a01b039095169490941760025599860151918601518416600160801b9081029290941691909117600355978401516004805492860151978601519686015194860151610120870151610140880151610160909801518d16600160f01b026001600160f01b03988e16600160e01b02989098166001600160e01b0391909b16600160c81b0262ffffff60c81b19921515600160c01b029290921663ffffffff60c01b1997909c16909502600160801b600160c01b0319988d16600160701b0298909816600160701b600160c01b031999909c166c01000000000000000000000000026001600160701b031990941692909d169190911791909117959095169790971792909217919091169390931795909517929092169190911717909155506200067d92505050565b80516001600160a01b038116811462000428575f80fd5b919050565b805161ffff8116811462000428575f80fd5b5f805f805f805f805f806101408b8d0312156200045a575f80fd5b620004658b62000411565b99506200047560208c0162000411565b98506200048560408c0162000411565b60608c01519098506001600160601b0381168114620004a2575f80fd5b9650620004b260808c0162000411565b9550620004c260a08c016200042d565b9450620004d260c08c016200042d565b935060e08b015162ffffff81168114620004ea575f80fd5b9250620004fb6101008c016200042d565b91506200050c6101208c016200042d565b90509295989b9194979a5092959850565b5f602082840312156200052e575f80fd5b815160ff811681146200053f575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200059a57815f19048211156200057e576200057e62000546565b808516156200058c57918102915b93841c93908002906200055f565b509250929050565b5f82620005b2575060016200064f565b81620005c057505f6200064f565b8160018114620005d95760028114620005e45762000604565b60019150506200064f565b60ff841115620005f857620005f862000546565b50506001821b6200064f565b5060208310610133831016604e8410600b841016171562000629575081810a6200064f565b6200063583836200055a565b805f19048211156200064b576200064b62000546565b0290505b92915050565b5f6200053f60ff841683620005a2565b5f6020828403121562000676575f80fd5b5051919050565b60805160a05160c05160e051611ed4620006f05f395f8181611a2401528181611a540152611ace01525f818161051801528181610545015281816113aa015261177d01525f8181610237015281816106d5015261090401525f81816103cb0152818161061e01526108120152611ed45ff3fe608060405234801561000f575f80fd5b5060043610610187575f3560e01c8063634da58f116100d95780638456cb5911610093578063bf7e214f1161006e578063bf7e214f146104e5578063e059ac07146104f8578063f2fde38b14610500578063fbfa77cf14610513575f80fd5b80638456cb59146104b85780638da5cb5b146104c0578063afb06952146104d2575f80fd5b8063634da58f14610448578063679aefce1461045b5780636a054dc91461046c578063709ac1c31461047f5780637a9e5e4b14610492578063820973da146104a5575f80fd5b80633458113d116101445780634d8be07e1161011f5780634d8be07e146103b35780635001f3b5146103c657806356200819146104055780636183fb9514610418575f80fd5b80633458113d1461026b5780633f4ba83a1461027e578063433255de14610286575f80fd5b806312e2d8f31461018b57806315a0ea6a146101e15780631dcbb110146101f6578063207ec0e714610217578063282a87001461022a578063313ce56714610232575b5f80fd5b6101bd610199366004611b33565b60056020525f908152604090205460ff81169061010090046001600160a01b031682565b6040805192151583526001600160a01b039091166020830152015b60405180910390f35b6101f46101ef366004611b33565b61053a565b005b610209610204366004611b33565b61080f565b6040519081526020016101d8565b6101f4610225366004611b4e565b6109c8565b610209610a8f565b6102597f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff90911681526020016101d8565b6101f4610279366004611b6f565b610acc565b6101f4610c06565b600254600354600454610321926001600160a01b03811692600160a01b9091046001600160601b03908116926001600160801b0380841693600160801b9081900490911692821691600160601b810461ffff90811692600160701b830482169290810467ffffffffffffffff1691600160c01b820460ff1691600160c81b810462ffffff1691600160e01b8204811691600160f01b9004168c565b604080516001600160a01b03909d168d526001600160601b039b8c1660208e01526001600160801b039a8b16908d01529890971660608b015297909416608089015261ffff92831660a089015290821660c088015267ffffffffffffffff1660e087015290151561010086015262ffffff909316610120850152821661014084015216610160820152610180016101d8565b6101f46103c1366004611ba2565b610c6e565b6103ed7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101d8565b6101f4610413366004611b33565b610d44565b61042b610426366004611b6f565b610dcf565b6040805193151584526020840192909252908201526060016101d8565b6101f4610456366004611b4e565b610ecd565b6004546001600160601b0316610209565b6101f461047a366004611bea565b610f83565b6101f461048d366004611b4e565b61103d565b6101f46104a0366004611b33565b6110f4565b6102096104b3366004611b33565b6111d8565b6101f4611214565b5f546103ed906001600160a01b031681565b6101f46104e0366004611b4e565b611282565b6001546103ed906001600160a01b031681565b6101f4611338565b6101f461050e366004611b33565b6114dd565b6103ed7f000000000000000000000000000000000000000000000000000000000000000081565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461058357604051637e3db46f60e01b815260040160405180910390fd5b600454600290600160c01b900460ff16156105b157604051631d98997b60e11b815260040160405180910390fd5b60018101546001600160801b03165f036105de5760405163115b9d8b60e21b815260040160405180910390fd5b6001600160a01b038083165f81815260056020908152604080832081518083019092525460ff8116151582526101009004851691810191909152909290917f0000000000000000000000000000000000000000000000000000000000000000909116900361065b5760018301546001600160801b03169150610790565b5f846001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610698573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106bc9190611c0c565b60018501549091505f906106fa906001600160801b03167f000000000000000000000000000000000000000000000000000000000000000084611558565b83519091501561070c5780935061078d565b5f83602001516001600160a01b031663679aefce6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561074d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107719190611c2c565b905061078961078184600a611d37565b8390836115c7565b9450505b50505b6001830180546fffffffffffffffffffffffffffffffff1916905582546107c6906001600160a01b0386811691339116856115e2565b836001600160a01b03167f9493e5bbe4e8e0ac67284469a2d677403d0378a85a59e341d3abc433d0d9a2098360405161080191815260200190565b60405180910390a250505050565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03160361085a5750506004546001600160601b031690565b6001600160a01b038083165f81815260056020908152604080832081518083018352905460ff811615158252610100900490951685830152805163313ce56760e01b8152905192939263313ce567926004808401939192918290030181865afa1580156108c9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108ed9190611c0c565b6004549091505f90610929906001600160601b03167f000000000000000000000000000000000000000000000000000000000000000084611558565b83519091501561093b578093506109c0565b5f83602001516001600160a01b031663679aefce6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561097c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109a09190611c2c565b90505f6109ae84600a611d37565b90506109bb8184846115c7565b955050505b505050919050565b6109dd335f356001600160e01b03191661167a565b610a025760405162461bcd60e51b81526004016109f990611d45565b60405180910390fd5b6127108161ffff161115610a2957604051637375d3bf60e01b815260040160405180910390fd5b6004805461ffff838116600160701b81810261ffff60701b1985161790945560408051949093049091168084526020840191909152917f76fe3c3557dd03afa5caf76f66f4019444ef3999e784ba08f47a33428fcc64d591015b60405180910390a15050565b6004545f90600160c01b900460ff1615610abc57604051631d98997b60e11b815260040160405180910390fd5b506004546001600160601b031690565b610ae1335f356001600160e01b03191661167a565b610afd5760405162461bcd60e51b81526004016109f990611d45565b5f805f805f610b0b86611720565b945094509450945094508415610b355760028401805460ff60c01b1916600160c01b179055610b42565b610b4284878484876118aa565b610b6b868560020180546bffffffffffffffffffffffff19166001600160601b03831617905590565b6001850180546001600160801b03908116600160801b91851682021790915560028601805467ffffffffffffffff60801b191667ffffffffffffffff8716928302179055604080516001600160601b03808716825284166020820152908101919091529096507fa95bc6aba40bbc4d95fc35f118c4cd8b53fc5d5b89ed264002af03503a7a94399060600160405180910390a1505050505050565b610c1b335f356001600160e01b03191661167a565b610c375760405162461bcd60e51b81526004016109f990611d45565b6004805460ff60c01b191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d16933905f90a1565b610c83335f356001600160e01b03191661167a565b610c9f5760405162461bcd60e51b81526004016109f990611d45565b6040805180820182528315158082526001600160a01b0384811660208085018281528984165f818152600584528890209651875492516001600160a81b0319909316901515610100600160a81b03191617610100929095169190910293909317909455845191825292810191909152918201527f59f9adfe8cf4c9d4b77fb03aa2ae5f373632c97cb8caf6b61f0643d3d170a8fe9060600160405180910390a1505050565b610d59335f356001600160e01b03191661167a565b610d755760405162461bcd60e51b81526004016109f990611d45565b600280546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527fba2be5e898fed1646bc0814dee1cc9a2aee98f51fced7d5fc4699c47d99077539101610a83565b5f805f805f805f80610de089611720565b6001840154949c506001600160801b0390941699508b985091965094509250905084610ec157600184015460028501545f918291610e4d91600160801b908190046001600160801b03169190810467ffffffffffffffff1690600160e01b900461ffff168e88888b6119c3565b875491935091505f906001600160601b03600160a01b9091048116908d161115610ea55786546002880154610ea1918e918591600160a01b90046001600160601b031690600160f01b900461ffff16611aaf565b5090505b610eaf8184611d6b565b9950610ebb8a8a611d6b565b98505050505b50505050509193909250565b610ee2335f356001600160e01b03191661167a565b610efe5760405162461bcd60e51b81526004016109f990611d45565b6127108161ffff161015610f255760405163a4ec27a960e01b815260040160405180910390fd5b6004805461ffff838116600160601b81810261ffff60601b1985161790945560408051949093049091168084526020840191909152917f67d3a3f6bebb5b894324217d5224ff719d5d95dfc67f1bb2645dddbfcd43cadb9101610a83565b610f98335f356001600160e01b03191661167a565b610fb45760405162461bcd60e51b81526004016109f990611d45565b621275008162ffffff161115610fdd57604051635badbfbb60e01b815260040160405180910390fd5b6004805462ffffff838116600160c81b81810262ffffff60c81b1985161790945560408051949093049091168084526020840191909152917f5f7db254db512f40348d8a7ca15d574c051dfe59c19b47e273d926f2f43186069101610a83565b611052335f356001600160e01b03191661167a565b61106e5760405162461bcd60e51b81526004016109f990611d45565b6113888161ffff1611156110955760405163fdaeddbb60e01b815260040160405180910390fd5b6004805461ffff838116600160f01b8181026001600160f01b0385161790945560408051949093049091168084526020840191909152917fba8506b6cb85330fea21cbca8490aafb6a69b166f06201ef755eb511b2709fc19101610a83565b5f546001600160a01b0316331480611185575060015460405163b700961360e01b81526001600160a01b039091169063b70096139061114690339030906001600160e01b03195f351690600401611d7e565b602060405180830381865afa158015611161573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111859190611dab565b61118d575f80fd5b600180546001600160a01b0319166001600160a01b03831690811790915560405133907fa3396fd7f6e0a21b50e5089d2da70d5ac0a3bbbd1f617a93f134b76389980198905f90a350565b6004545f90600160c01b900460ff161561120557604051631d98997b60e11b815260040160405180910390fd5b61120e8261080f565b92915050565b611229335f356001600160e01b03191661167a565b6112455760405162461bcd60e51b81526004016109f990611d45565b6004805460ff60c01b1916600160c01b1790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e752905f90a1565b611297335f356001600160e01b03191661167a565b6112b35760405162461bcd60e51b81526004016109f990611d45565b6107d08161ffff1611156112da5760405163173aacc160e31b815260040160405180910390fd5b6004805461ffff838116600160e01b81810261ffff60e01b1985161790945560408051949093049091168084526020840191909152917f84e4fe32bf74c4011a7e1fde79c63acdffaf92a0112cde153e7b0abee665bc6b9101610a83565b61134d335f356001600160e01b03191661167a565b6113695760405162461bcd60e51b81526004016109f990611d45565b600280546004546001600160601b03600160a01b9092048216911611156113a357604051638058acff60e01b815260040160405180910390fd5b5f4290505f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611404573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114289190611c2c565b60028401549091506114479084906001600160601b03168084866118aa565b6001830180546001600160801b03908116600160801b91841682021790915560045484546001600160a01b03166001600160601b03909116600160a01b0217845560028401805467ffffffffffffffff60801b191667ffffffffffffffff85169092029190911790556040517f98637d475d52bc596e25457cb3385a05269c42e57d4d9f7561dacbbe8583eb89905f90a1505050565b6114f2335f356001600160e01b03191661167a565b61150e5760405162461bcd60e51b81526004016109f990611d45565b5f80546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b5f8160ff168360ff160361156d5750826115c0565b8160ff168360ff1610156115a1576115858383611dc6565b61159090600a611d37565b61159a9085611ddf565b90506115c0565b6115ab8284611dc6565b6115b690600a611d37565b61159a9085611df6565b9392505050565b5f825f1904841183021582026115db575f80fd5b5091020490565b5f6040516323b872dd60e01b81526001600160a01b03851660048201526001600160a01b038416602482015282604482015260205f6064835f8a5af13d15601f3d1160015f5114161716915050806116735760405162461bcd60e51b81526020600482015260146024820152731514905394d1915497d19493d357d1905253115160621b60448201526064016109f9565b5050505050565b6001545f906001600160a01b03168015801590611701575060405163b700961360e01b81526001600160a01b0382169063b7009613906116c290879030908890600401611d7e565b602060405180830381865afa1580156116dd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117019190611dab565b8061171857505f546001600160a01b038581169116145b949350505050565b6004545f90600290829081908190600160c01b900460ff161561175657604051631d98997b60e11b815260040160405180910390fd5b429250836002015f9054906101000a90046001600160601b03166001600160601b031691507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117fb9190611c2c565b600285015490915061182a90600160c81b810462ffffff1690600160801b900467ffffffffffffffff16611e15565b67ffffffffffffffff168367ffffffffffffffff16108061187057506002840154611864908390600160601b900461ffff166127106115c7565b866001600160601b0316115b806118a057506002840154611894908390600160701b900461ffff166127106115c7565b866001600160601b0316105b9693955091935091565b600185015460028601545f9182916118f191600160801b908190046001600160801b03169190810467ffffffffffffffff1690600160e01b900461ffff16898989896119c3565b885491935091506001600160601b03600160a01b90910481169087161115611977575f61194887838a5f0160149054906101000a90046001600160601b03168b600201601e9054906101000a900461ffff16611aaf565b5090506119558184611d6b565b88546001600160a01b0316600160a01b6001600160601b038a16021789559250505b6001870180548391905f906119969084906001600160801b0316611e3d565b92506101000a8154816001600160801b0302191690836001600160801b0316021790555050505050505050565b5f826001600160801b0389168111156119e257506001600160801b0388165b61ffff871615611aa3575f6119f78985611e5d565b67ffffffffffffffff1690505f86886001600160601b031611611a4d57611a48836001600160601b038a167f00000000000000000000000000000000000000000000000000000000000000006115c7565b611a78565b611a7883887f00000000000000000000000000000000000000000000000000000000000000006115c7565b90505f611a8c8261ffff8c166127106115c7565b9050611a9d81846301e133806115c7565b94505050505b97509795505050505050565b5f8080611abc8588611e7e565b6001600160601b03169050611af281877f00000000000000000000000000000000000000000000000000000000000000006115c7565b915061ffff841615611b1257611b0f8261ffff86166127106115c7565b92505b5094509492505050565b6001600160a01b0381168114611b30575f80fd5b50565b5f60208284031215611b43575f80fd5b81356115c081611b1c565b5f60208284031215611b5e575f80fd5b813561ffff811681146115c0575f80fd5b5f60208284031215611b7f575f80fd5b81356001600160601b03811681146115c0575f80fd5b8015158114611b30575f80fd5b5f805f60608486031215611bb4575f80fd5b8335611bbf81611b1c565b92506020840135611bcf81611b95565b91506040840135611bdf81611b1c565b809150509250925092565b5f60208284031215611bfa575f80fd5b813562ffffff811681146115c0575f80fd5b5f60208284031215611c1c575f80fd5b815160ff811681146115c0575f80fd5b5f60208284031215611c3c575f80fd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115611c9157815f1904821115611c7757611c77611c43565b80851615611c8457918102915b93841c9390800290611c5c565b509250929050565b5f82611ca75750600161120e565b81611cb357505f61120e565b8160018114611cc95760028114611cd357611cef565b600191505061120e565b60ff841115611ce457611ce4611c43565b50506001821b61120e565b5060208310610133831016604e8410600b8410161715611d12575081810a61120e565b611d1c8383611c57565b805f1904821115611d2f57611d2f611c43565b029392505050565b5f6115c060ff841683611c99565b6020808252600c908201526b15539055551213d49256915160a21b604082015260600190565b8082018082111561120e5761120e611c43565b6001600160a01b0393841681529190921660208201526001600160e01b0319909116604082015260600190565b5f60208284031215611dbb575f80fd5b81516115c081611b95565b60ff828116828216039081111561120e5761120e611c43565b808202811582820484141761120e5761120e611c43565b5f82611e1057634e487b7160e01b5f52601260045260245ffd5b500490565b67ffffffffffffffff818116838216019080821115611e3657611e36611c43565b5092915050565b6001600160801b03818116838216019080821115611e3657611e36611c43565b67ffffffffffffffff828116828216039080821115611e3657611e36611c43565b6001600160601b03828116828216039080821115611e3657611e36611c4356fea2646970667358221220eca2b122addd21aec453dda74a9e3794fb3f8be47da796a0041ed0dd95c4c05a64736f6c634300081500330000000000000000000000005f2f11ad8656439d5c14d9b351f8b09cdac2a02d00000000000000000000000000007eda736c6cdf973bdeff2191bbcfe6175db7000000000000000000000000aaaaaadc1a2677c9e9eaff493c16ab32cc92e3000000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000ee7d8bcfb72bc1880d0cf19822eb0a2e6577ab62000000000000000000000000000000000000000000000000000000000000277400000000000000000000000000000000000000000000000000000000000026ac0000000000000000000000000000000000000000000000000000000000005460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610187575f3560e01c8063634da58f116100d95780638456cb5911610093578063bf7e214f1161006e578063bf7e214f146104e5578063e059ac07146104f8578063f2fde38b14610500578063fbfa77cf14610513575f80fd5b80638456cb59146104b85780638da5cb5b146104c0578063afb06952146104d2575f80fd5b8063634da58f14610448578063679aefce1461045b5780636a054dc91461046c578063709ac1c31461047f5780637a9e5e4b14610492578063820973da146104a5575f80fd5b80633458113d116101445780634d8be07e1161011f5780634d8be07e146103b35780635001f3b5146103c657806356200819146104055780636183fb9514610418575f80fd5b80633458113d1461026b5780633f4ba83a1461027e578063433255de14610286575f80fd5b806312e2d8f31461018b57806315a0ea6a146101e15780631dcbb110146101f6578063207ec0e714610217578063282a87001461022a578063313ce56714610232575b5f80fd5b6101bd610199366004611b33565b60056020525f908152604090205460ff81169061010090046001600160a01b031682565b6040805192151583526001600160a01b039091166020830152015b60405180910390f35b6101f46101ef366004611b33565b61053a565b005b610209610204366004611b33565b61080f565b6040519081526020016101d8565b6101f4610225366004611b4e565b6109c8565b610209610a8f565b6102597f000000000000000000000000000000000000000000000000000000000000001281565b60405160ff90911681526020016101d8565b6101f4610279366004611b6f565b610acc565b6101f4610c06565b600254600354600454610321926001600160a01b03811692600160a01b9091046001600160601b03908116926001600160801b0380841693600160801b9081900490911692821691600160601b810461ffff90811692600160701b830482169290810467ffffffffffffffff1691600160c01b820460ff1691600160c81b810462ffffff1691600160e01b8204811691600160f01b9004168c565b604080516001600160a01b03909d168d526001600160601b039b8c1660208e01526001600160801b039a8b16908d01529890971660608b015297909416608089015261ffff92831660a089015290821660c088015267ffffffffffffffff1660e087015290151561010086015262ffffff909316610120850152821661014084015216610160820152610180016101d8565b6101f46103c1366004611ba2565b610c6e565b6103ed7f000000000000000000000000ee7d8bcfb72bc1880d0cf19822eb0a2e6577ab6281565b6040516001600160a01b0390911681526020016101d8565b6101f4610413366004611b33565b610d44565b61042b610426366004611b6f565b610dcf565b6040805193151584526020840192909252908201526060016101d8565b6101f4610456366004611b4e565b610ecd565b6004546001600160601b0316610209565b6101f461047a366004611bea565b610f83565b6101f461048d366004611b4e565b61103d565b6101f46104a0366004611b33565b6110f4565b6102096104b3366004611b33565b6111d8565b6101f4611214565b5f546103ed906001600160a01b031681565b6101f46104e0366004611b4e565b611282565b6001546103ed906001600160a01b031681565b6101f4611338565b6101f461050e366004611b33565b6114dd565b6103ed7f00000000000000000000000000007eda736c6cdf973bdeff2191bbcfe6175db781565b336001600160a01b037f00000000000000000000000000007eda736c6cdf973bdeff2191bbcfe6175db7161461058357604051637e3db46f60e01b815260040160405180910390fd5b600454600290600160c01b900460ff16156105b157604051631d98997b60e11b815260040160405180910390fd5b60018101546001600160801b03165f036105de5760405163115b9d8b60e21b815260040160405180910390fd5b6001600160a01b038083165f81815260056020908152604080832081518083019092525460ff8116151582526101009004851691810191909152909290917f000000000000000000000000ee7d8bcfb72bc1880d0cf19822eb0a2e6577ab62909116900361065b5760018301546001600160801b03169150610790565b5f846001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610698573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106bc9190611c0c565b60018501549091505f906106fa906001600160801b03167f000000000000000000000000000000000000000000000000000000000000001284611558565b83519091501561070c5780935061078d565b5f83602001516001600160a01b031663679aefce6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561074d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107719190611c2c565b905061078961078184600a611d37565b8390836115c7565b9450505b50505b6001830180546fffffffffffffffffffffffffffffffff1916905582546107c6906001600160a01b0386811691339116856115e2565b836001600160a01b03167f9493e5bbe4e8e0ac67284469a2d677403d0378a85a59e341d3abc433d0d9a2098360405161080191815260200190565b60405180910390a250505050565b5f7f000000000000000000000000ee7d8bcfb72bc1880d0cf19822eb0a2e6577ab626001600160a01b0316826001600160a01b03160361085a5750506004546001600160601b031690565b6001600160a01b038083165f81815260056020908152604080832081518083018352905460ff811615158252610100900490951685830152805163313ce56760e01b8152905192939263313ce567926004808401939192918290030181865afa1580156108c9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108ed9190611c0c565b6004549091505f90610929906001600160601b03167f000000000000000000000000000000000000000000000000000000000000001284611558565b83519091501561093b578093506109c0565b5f83602001516001600160a01b031663679aefce6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561097c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109a09190611c2c565b90505f6109ae84600a611d37565b90506109bb8184846115c7565b955050505b505050919050565b6109dd335f356001600160e01b03191661167a565b610a025760405162461bcd60e51b81526004016109f990611d45565b60405180910390fd5b6127108161ffff161115610a2957604051637375d3bf60e01b815260040160405180910390fd5b6004805461ffff838116600160701b81810261ffff60701b1985161790945560408051949093049091168084526020840191909152917f76fe3c3557dd03afa5caf76f66f4019444ef3999e784ba08f47a33428fcc64d591015b60405180910390a15050565b6004545f90600160c01b900460ff1615610abc57604051631d98997b60e11b815260040160405180910390fd5b506004546001600160601b031690565b610ae1335f356001600160e01b03191661167a565b610afd5760405162461bcd60e51b81526004016109f990611d45565b5f805f805f610b0b86611720565b945094509450945094508415610b355760028401805460ff60c01b1916600160c01b179055610b42565b610b4284878484876118aa565b610b6b868560020180546bffffffffffffffffffffffff19166001600160601b03831617905590565b6001850180546001600160801b03908116600160801b91851682021790915560028601805467ffffffffffffffff60801b191667ffffffffffffffff8716928302179055604080516001600160601b03808716825284166020820152908101919091529096507fa95bc6aba40bbc4d95fc35f118c4cd8b53fc5d5b89ed264002af03503a7a94399060600160405180910390a1505050505050565b610c1b335f356001600160e01b03191661167a565b610c375760405162461bcd60e51b81526004016109f990611d45565b6004805460ff60c01b191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d16933905f90a1565b610c83335f356001600160e01b03191661167a565b610c9f5760405162461bcd60e51b81526004016109f990611d45565b6040805180820182528315158082526001600160a01b0384811660208085018281528984165f818152600584528890209651875492516001600160a81b0319909316901515610100600160a81b03191617610100929095169190910293909317909455845191825292810191909152918201527f59f9adfe8cf4c9d4b77fb03aa2ae5f373632c97cb8caf6b61f0643d3d170a8fe9060600160405180910390a1505050565b610d59335f356001600160e01b03191661167a565b610d755760405162461bcd60e51b81526004016109f990611d45565b600280546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527fba2be5e898fed1646bc0814dee1cc9a2aee98f51fced7d5fc4699c47d99077539101610a83565b5f805f805f805f80610de089611720565b6001840154949c506001600160801b0390941699508b985091965094509250905084610ec157600184015460028501545f918291610e4d91600160801b908190046001600160801b03169190810467ffffffffffffffff1690600160e01b900461ffff168e88888b6119c3565b875491935091505f906001600160601b03600160a01b9091048116908d161115610ea55786546002880154610ea1918e918591600160a01b90046001600160601b031690600160f01b900461ffff16611aaf565b5090505b610eaf8184611d6b565b9950610ebb8a8a611d6b565b98505050505b50505050509193909250565b610ee2335f356001600160e01b03191661167a565b610efe5760405162461bcd60e51b81526004016109f990611d45565b6127108161ffff161015610f255760405163a4ec27a960e01b815260040160405180910390fd5b6004805461ffff838116600160601b81810261ffff60601b1985161790945560408051949093049091168084526020840191909152917f67d3a3f6bebb5b894324217d5224ff719d5d95dfc67f1bb2645dddbfcd43cadb9101610a83565b610f98335f356001600160e01b03191661167a565b610fb45760405162461bcd60e51b81526004016109f990611d45565b621275008162ffffff161115610fdd57604051635badbfbb60e01b815260040160405180910390fd5b6004805462ffffff838116600160c81b81810262ffffff60c81b1985161790945560408051949093049091168084526020840191909152917f5f7db254db512f40348d8a7ca15d574c051dfe59c19b47e273d926f2f43186069101610a83565b611052335f356001600160e01b03191661167a565b61106e5760405162461bcd60e51b81526004016109f990611d45565b6113888161ffff1611156110955760405163fdaeddbb60e01b815260040160405180910390fd5b6004805461ffff838116600160f01b8181026001600160f01b0385161790945560408051949093049091168084526020840191909152917fba8506b6cb85330fea21cbca8490aafb6a69b166f06201ef755eb511b2709fc19101610a83565b5f546001600160a01b0316331480611185575060015460405163b700961360e01b81526001600160a01b039091169063b70096139061114690339030906001600160e01b03195f351690600401611d7e565b602060405180830381865afa158015611161573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111859190611dab565b61118d575f80fd5b600180546001600160a01b0319166001600160a01b03831690811790915560405133907fa3396fd7f6e0a21b50e5089d2da70d5ac0a3bbbd1f617a93f134b76389980198905f90a350565b6004545f90600160c01b900460ff161561120557604051631d98997b60e11b815260040160405180910390fd5b61120e8261080f565b92915050565b611229335f356001600160e01b03191661167a565b6112455760405162461bcd60e51b81526004016109f990611d45565b6004805460ff60c01b1916600160c01b1790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e752905f90a1565b611297335f356001600160e01b03191661167a565b6112b35760405162461bcd60e51b81526004016109f990611d45565b6107d08161ffff1611156112da5760405163173aacc160e31b815260040160405180910390fd5b6004805461ffff838116600160e01b81810261ffff60e01b1985161790945560408051949093049091168084526020840191909152917f84e4fe32bf74c4011a7e1fde79c63acdffaf92a0112cde153e7b0abee665bc6b9101610a83565b61134d335f356001600160e01b03191661167a565b6113695760405162461bcd60e51b81526004016109f990611d45565b600280546004546001600160601b03600160a01b9092048216911611156113a357604051638058acff60e01b815260040160405180910390fd5b5f4290505f7f00000000000000000000000000007eda736c6cdf973bdeff2191bbcfe6175db76001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611404573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114289190611c2c565b60028401549091506114479084906001600160601b03168084866118aa565b6001830180546001600160801b03908116600160801b91841682021790915560045484546001600160a01b03166001600160601b03909116600160a01b0217845560028401805467ffffffffffffffff60801b191667ffffffffffffffff85169092029190911790556040517f98637d475d52bc596e25457cb3385a05269c42e57d4d9f7561dacbbe8583eb89905f90a1505050565b6114f2335f356001600160e01b03191661167a565b61150e5760405162461bcd60e51b81526004016109f990611d45565b5f80546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b5f8160ff168360ff160361156d5750826115c0565b8160ff168360ff1610156115a1576115858383611dc6565b61159090600a611d37565b61159a9085611ddf565b90506115c0565b6115ab8284611dc6565b6115b690600a611d37565b61159a9085611df6565b9392505050565b5f825f1904841183021582026115db575f80fd5b5091020490565b5f6040516323b872dd60e01b81526001600160a01b03851660048201526001600160a01b038416602482015282604482015260205f6064835f8a5af13d15601f3d1160015f5114161716915050806116735760405162461bcd60e51b81526020600482015260146024820152731514905394d1915497d19493d357d1905253115160621b60448201526064016109f9565b5050505050565b6001545f906001600160a01b03168015801590611701575060405163b700961360e01b81526001600160a01b0382169063b7009613906116c290879030908890600401611d7e565b602060405180830381865afa1580156116dd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117019190611dab565b8061171857505f546001600160a01b038581169116145b949350505050565b6004545f90600290829081908190600160c01b900460ff161561175657604051631d98997b60e11b815260040160405180910390fd5b429250836002015f9054906101000a90046001600160601b03166001600160601b031691507f00000000000000000000000000007eda736c6cdf973bdeff2191bbcfe6175db76001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117fb9190611c2c565b600285015490915061182a90600160c81b810462ffffff1690600160801b900467ffffffffffffffff16611e15565b67ffffffffffffffff168367ffffffffffffffff16108061187057506002840154611864908390600160601b900461ffff166127106115c7565b866001600160601b0316115b806118a057506002840154611894908390600160701b900461ffff166127106115c7565b866001600160601b0316105b9693955091935091565b600185015460028601545f9182916118f191600160801b908190046001600160801b03169190810467ffffffffffffffff1690600160e01b900461ffff16898989896119c3565b885491935091506001600160601b03600160a01b90910481169087161115611977575f61194887838a5f0160149054906101000a90046001600160601b03168b600201601e9054906101000a900461ffff16611aaf565b5090506119558184611d6b565b88546001600160a01b0316600160a01b6001600160601b038a16021789559250505b6001870180548391905f906119969084906001600160801b0316611e3d565b92506101000a8154816001600160801b0302191690836001600160801b0316021790555050505050505050565b5f826001600160801b0389168111156119e257506001600160801b0388165b61ffff871615611aa3575f6119f78985611e5d565b67ffffffffffffffff1690505f86886001600160601b031611611a4d57611a48836001600160601b038a167f0000000000000000000000000000000000000000000000000de0b6b3a76400006115c7565b611a78565b611a7883887f0000000000000000000000000000000000000000000000000de0b6b3a76400006115c7565b90505f611a8c8261ffff8c166127106115c7565b9050611a9d81846301e133806115c7565b94505050505b97509795505050505050565b5f8080611abc8588611e7e565b6001600160601b03169050611af281877f0000000000000000000000000000000000000000000000000de0b6b3a76400006115c7565b915061ffff841615611b1257611b0f8261ffff86166127106115c7565b92505b5094509492505050565b6001600160a01b0381168114611b30575f80fd5b50565b5f60208284031215611b43575f80fd5b81356115c081611b1c565b5f60208284031215611b5e575f80fd5b813561ffff811681146115c0575f80fd5b5f60208284031215611b7f575f80fd5b81356001600160601b03811681146115c0575f80fd5b8015158114611b30575f80fd5b5f805f60608486031215611bb4575f80fd5b8335611bbf81611b1c565b92506020840135611bcf81611b95565b91506040840135611bdf81611b1c565b809150509250925092565b5f60208284031215611bfa575f80fd5b813562ffffff811681146115c0575f80fd5b5f60208284031215611c1c575f80fd5b815160ff811681146115c0575f80fd5b5f60208284031215611c3c575f80fd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115611c9157815f1904821115611c7757611c77611c43565b80851615611c8457918102915b93841c9390800290611c5c565b509250929050565b5f82611ca75750600161120e565b81611cb357505f61120e565b8160018114611cc95760028114611cd357611cef565b600191505061120e565b60ff841115611ce457611ce4611c43565b50506001821b61120e565b5060208310610133831016604e8410600b8410161715611d12575081810a61120e565b611d1c8383611c57565b805f1904821115611d2f57611d2f611c43565b029392505050565b5f6115c060ff841683611c99565b6020808252600c908201526b15539055551213d49256915160a21b604082015260600190565b8082018082111561120e5761120e611c43565b6001600160a01b0393841681529190921660208201526001600160e01b0319909116604082015260600190565b5f60208284031215611dbb575f80fd5b81516115c081611b95565b60ff828116828216039081111561120e5761120e611c43565b808202811582820484141761120e5761120e611c43565b5f82611e1057634e487b7160e01b5f52601260045260245ffd5b500490565b67ffffffffffffffff818116838216019080821115611e3657611e36611c43565b5092915050565b6001600160801b03818116838216019080821115611e3657611e36611c43565b67ffffffffffffffff828116828216039080821115611e3657611e36611c43565b6001600160601b03828116828216039080821115611e3657611e36611c4356fea2646970667358221220eca2b122addd21aec453dda74a9e3794fb3f8be47da796a0041ed0dd95c4c05a64736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005f2f11ad8656439d5c14d9b351f8b09cdac2a02d00000000000000000000000000007eda736c6cdf973bdeff2191bbcfe6175db7000000000000000000000000aaaaaadc1a2677c9e9eaff493c16ab32cc92e3000000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000ee7d8bcfb72bc1880d0cf19822eb0a2e6577ab62000000000000000000000000000000000000000000000000000000000000277400000000000000000000000000000000000000000000000000000000000026ac0000000000000000000000000000000000000000000000000000000000005460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8
-----Decoded View---------------
Arg [0] : _owner (address): 0x5F2F11ad8656439d5C14d9B351f8b09cDaC2A02d
Arg [1] : _vault (address): 0x00007EDa736C6CdF973BDefF2191bbCfE6175db7
Arg [2] : payoutAddress (address): 0xaAAAAaDc1A2677c9e9eAff493c16AB32Cc92e300
Arg [3] : startingExchangeRate (uint96): 1000000000000000000
Arg [4] : _base (address): 0xEE7D8BCFb72bC1880D0Cf19822eB0A2e6577aB62
Arg [5] : allowedExchangeRateChangeUpper (uint16): 10100
Arg [6] : allowedExchangeRateChangeLower (uint16): 9900
Arg [7] : minimumUpdateDelayInSeconds (uint24): 21600
Arg [8] : platformFee (uint16): 0
Arg [9] : performanceFee (uint16): 1000
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000005f2f11ad8656439d5c14d9b351f8b09cdac2a02d
Arg [1] : 00000000000000000000000000007eda736c6cdf973bdeff2191bbcfe6175db7
Arg [2] : 000000000000000000000000aaaaaadc1a2677c9e9eaff493c16ab32cc92e300
Arg [3] : 0000000000000000000000000000000000000000000000000de0b6b3a7640000
Arg [4] : 000000000000000000000000ee7d8bcfb72bc1880d0cf19822eb0a2e6577ab62
Arg [5] : 0000000000000000000000000000000000000000000000000000000000002774
Arg [6] : 00000000000000000000000000000000000000000000000000000000000026ac
Arg [7] : 0000000000000000000000000000000000000000000000000000000000005460
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 00000000000000000000000000000000000000000000000000000000000003e8
Deployed Bytecode Sourcemap
484:23222:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2792:58;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2792:58:12;;;;;;;741:14:16;;734:22;716:41;;-1:-1:-1;;;;;793:32:16;;;788:2;773:18;;766:60;689:18;2792:58:12;;;;;;;;13142:1468;;;;;;:::i;:::-;;:::i;:::-;;15503:810;;;;;;:::i;:::-;;:::i;:::-;;;983:25:16;;;971:2;956:18;15503:810:12;837:177:16;8297:434:12;;;;;;:::i;:::-;;:::i;15025:177::-;;;:::i;4511:31::-;;;;;;;;1468:4:16;1456:17;;;1438:36;;1426:2;1411:18;4511:31:12;1296:184:16;11901:994:12;;;;;;:::i;:::-;;:::i;6711:115::-;;;:::i;2677:38::-;;;;;;;;;-1:-1:-1;;;;;2677:38:12;;;-1:-1:-1;;;2677:38:12;;;-1:-1:-1;;;;;2677:38:12;;;;-1:-1:-1;;;;;2677:38:12;;;;-1:-1:-1;;;2677:38:12;;;;;;;;;;;-1:-1:-1;;;2677:38:12;;;;;;;-1:-1:-1;;;2677:38:12;;;;;;;;;;;-1:-1:-1;;;2677:38:12;;;;;-1:-1:-1;;;2677:38:12;;;;;-1:-1:-1;;;2677:38:12;;;;;-1:-1:-1;;;2677:38:12;;;;;;;;;-1:-1:-1;;;;;2534:32:16;;;2516:51;;-1:-1:-1;;;;;2648:15:16;;;2643:2;2628:18;;2621:43;-1:-1:-1;;;;;2753:15:16;;;2733:18;;;2726:43;2805:15;;;;2800:2;2785:18;;2778:43;2858:15;;;;2852:3;2837:19;;2830:44;2923:6;2911:19;;;2554:3;2890:19;;2883:48;1847:18;;;2981:3;2966:19;;1835:31;1953:18;1942:30;3036:3;3021:19;;1930:43;500:13;;493:21;3089:3;3074:19;;481:34;2060:8;2049:20;;;3144:3;3129:19;;2037:33;1847:18;;3200:3;3185:19;;1835:31;1847:18;3256:3;3241:19;;1835:31;2503:3;2488:19;2677:38:12;2081:1186:16;10292:335:12;;;;;;:::i;:::-;;:::i;4410:27::-;;;;;;;;-1:-1:-1;;;;;4129:32:16;;;4111:51;;4099:2;4084:18;4410:27:12;3951:217:16;9756:256:12;;;;;;:::i;:::-;;:::i;17029:1405::-;;;;;;:::i;:::-;;:::i;:::-;;;;4653:14:16;;4646:22;4628:41;;4700:2;4685:18;;4678:34;;;;4728:18;;;4721:34;4616:2;4601:18;17029:1405:12;4432:329:16;7700:434:12;;;;;;:::i;:::-;;:::i;14803:106::-;14874:28;;-1:-1:-1;;;;;14874:28:12;14803:106;;7112:425;;;;;;:::i;:::-;;:::i;9286:353::-;;;;;;:::i;:::-;;:::i;1523:434:7:-;;;;;;:::i;:::-;;:::i;16518:221:12:-;;;;;;:::i;:::-;;:::i;6391:110::-;;;:::i;562:20:7:-;;;;;-1:-1:-1;;;;;562:20:7;;;8844:326:12;;;;;;:::i;:::-;;:::i;589:26:7:-;;;;;-1:-1:-1;;;;;589:26:7;;;10755:706:12;;;:::i;1963:164:7:-;;;;;;:::i;:::-;;:::i;4696:34:12:-;;;;;13142:1468;13200:10;-1:-1:-1;;;;;13222:5:12;13200:28;;13196:97;;13237:56;;-1:-1:-1;;;13237:56:12;;;;;;;;;;;13196:97;13365:14;;13336:15;;-1:-1:-1;;;13365:14:12;;;;13361:64;;;13388:37;;-1:-1:-1;;;13388:37:12;;;;;;;;;;;13361:64;13439:20;;;;-1:-1:-1;;;;;13439:20:12;;:25;13435:81;;13473:43;;-1:-1:-1;;;13473:43:12;;;;;;;;;;;13435:81;-1:-1:-1;;;;;13648:26:12;;;13581;13648;;;:16;:26;;;;;;;;13617:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;13581:26;;13617:57;;13717:4;13688:34;;;;;13684:652;;13759:20;;;;-1:-1:-1;;;;;13759:20:12;;-1:-1:-1;13684:652:12;;;13810:22;13841:8;-1:-1:-1;;;;;13835:24:12;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;13953:20;;;;13810:51;;-1:-1:-1;13875:43:12;;13937:65;;-1:-1:-1;;;;;13953:20:12;13975:8;13810:51;13937:15;:65::i;:::-;14020:19;;13875:127;;-1:-1:-1;14016:310:12;;;14080:35;14059:56;;14016:310;;;14154:12;14169:4;:17;;;-1:-1:-1;;;;;14169:25:12;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14154:42;-1:-1:-1;14235:76:12;14282:22;14288:16;14282:2;:22;:::i;:::-;14235:35;;14306:4;14235:46;:76::i;:::-;14214:97;;14136:190;14016:310;13796:540;;13684:652;14376:20;;;:24;;-1:-1:-1;;14376:24:12;;;14497:19;;14459:78;;-1:-1:-1;;;;;14459:25:12;;;;14485:10;;14497:19;14518:18;14459:25;:78::i;:::-;14573:8;-1:-1:-1;;;;;14553:50:12;;14584:18;14553:50;;;;983:25:16;;971:2;956:18;;837:177;14553:50:12;;;;;;;;13186:1424;;;13142:1468;:::o;15503:810::-;15561:19;15622:4;-1:-1:-1;;;;;15596:31:12;15604:5;-1:-1:-1;;;;;15596:31:12;;15592:715;;-1:-1:-1;;15657:28:12;;-1:-1:-1;;;;;15657:28:12;;15503:810::o;15592:715::-;-1:-1:-1;;;;;15747:23:12;;;15716:28;15747:23;;;:16;:23;;;;;;;;15716:54;;;;;;;;;;;;;;;;;;;;;;;;;;15806:23;;-1:-1:-1;;;15806:23:12;;;;15716:28;;15747:23;15806:21;;:23;;;;;15747;;15806;;;;;;15747;15806;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15897:28;;15784:45;;-1:-1:-1;15843:35:12;;15881:70;;-1:-1:-1;;;;;15897:28:12;15927:8;15784:45;15881:15;:70::i;:::-;15969:19;;15843:108;;-1:-1:-1;15965:332:12;;;16022:27;16008:41;;15965:332;;;16088:17;16108:4;:17;;;-1:-1:-1;;;;;16108:25:12;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16088:47;-1:-1:-1;16153:16:12;16172:19;16178:13;16172:2;:19;:::i;:::-;16153:38;-1:-1:-1;16223:59:12;16153:38;16243:27;16272:9;16223:19;:59::i;:::-;16209:73;;16070:227;;15965:332;15702:605;;;15503:810;;;:::o;8297:434::-;902:33:7;915:10;927:7;;-1:-1:-1;;;;;;927:7:7;902:12;:33::i;:::-;894:58;;;;-1:-1:-1;;;894:58:7;;;;;;;:::i;:::-;;;;;;;;;8426:3:12::1;8393:30;:36;;;8389:98;;;8438:49;;-1:-1:-1::0;;;8438:49:12::1;;;;;;;;;;;8389:98;8515:46:::0;;;::::1;8571:79:::0;;::::1;-1:-1:-1::0;;;8571:79:12;;::::1;-1:-1:-1::0;;;;8571:79:12;::::1;;::::0;;;8665:59:::1;::::0;;8515:46;;;::::1;::::0;;::::1;8508:34:16::0;;;8573:2;8558:18;;8551:43;;;;8515:46:12;8665:59:::1;::::0;8456:18:16;8665:59:12::1;;;;;;;;8379:352;8297:434:::0;:::o;15025:177::-;15099:24;;15071:12;;-1:-1:-1;;;15099:24:12;;;;15095:74;;;15132:37;;-1:-1:-1;;;15132:37:12;;;;;;;;;;;15095:74;-1:-1:-1;14874:28:12;;-1:-1:-1;;;;;14874:28:12;;15025:177::o;11901:994::-;902:33:7;915:10;927:7;;-1:-1:-1;;;;;;927:7:7;902:12;:33::i;:::-;894:58;;;;-1:-1:-1;;;894:58:7;;;;;;;:::i;:::-;12007:16:12::1;12037:29:::0;12080:18:::1;12112:27:::0;12153:26:::1;12192:42;12218:15;12192:25;:42::i;:::-;11993:241;;;;;;;;;;12248:11;12244:366;;;12451:14;::::0;::::1;:21:::0;;-1:-1:-1;;;;12451:21:12::1;-1:-1:-1::0;;;12451:21:12::1;::::0;;12244:366:::1;;;12503:96;12522:5;12529:15;12546:19;12567:18;12587:11;12503:18;:96::i;:::-;12638:40;12655:15;12672:5;20265:18:::0;;:36;;-1:-1:-1;;20265:36:12;-1:-1:-1;;;;;20265:36:12;;;;;;20112:228;12638:40:::1;12688:27;::::0;::::1;:57:::0;;-1:-1:-1;;;;;12688:57:12;;::::1;-1:-1:-1::0;;;12688:57:12;;::::1;::::0;::::1;;::::0;;;12755:25:::1;::::0;::::1;:39:::0;;-1:-1:-1;;;;12755:39:12::1;;::::0;::::1;::::0;;::::1;;::::0;;12810:78:::1;::::0;;-1:-1:-1;;;;;8864:15:16;;;8846:34;;8916:15;;8911:2;8896:18;;8889:43;8948:18;;;8941:59;;;;12620:58:12;;-1:-1:-1;12810:78:12::1;::::0;8789:2:16;8774:18;12810:78:12::1;;;;;;;11983:912;;;;;11901:994:::0;:::o;6711:115::-;902:33:7;915:10;927:7;;-1:-1:-1;;;;;;927:7:7;902:12;:33::i;:::-;894:58;;;;-1:-1:-1;;;894:58:7;;;;;;;:::i;:::-;6762:24:12;:32;;-1:-1:-1;;;;6762:32:12::1;::::0;;6809:10:::1;::::0;::::1;::::0;6789:5:::1;::::0;6809:10:::1;6711:115::o:0;10292:335::-;902:33:7;915:10;927:7;;-1:-1:-1;;;;;;927:7:7;902:12;:33::i;:::-;894:58;;;;-1:-1:-1;;;894:58:7;;;;;;;:::i;:::-;10447:93:12::1;::::0;;;;::::1;::::0;;;::::1;;::::0;;;-1:-1:-1;;;;;10447:93:12;;::::1;;::::0;;::::1;::::0;;;10409:23;;::::1;-1:-1:-1::0;10409:23:12;;;:16:::1;:23:::0;;;;;:131;;;;;;-1:-1:-1;;;;;;10409:131:12;;;;::::1;;-1:-1:-1::0;;;;;;10409:131:12;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;10555:65;;9245:34:16;;;9295:18;;;9288:50;;;;9354:18;;;9347:43;10555:65:12::1;::::0;9195:2:16;9180:18;10555:65:12::1;;;;;;;10292:335:::0;;;:::o;9756:256::-;902:33:7;915:10;927:7;;-1:-1:-1;;;;;;927:7:7;902:12;:33::i;:::-;894:58;;;;-1:-1:-1;;;894:58:7;;;;;;;:::i;:::-;9860:15:12::1;:29:::0;;-1:-1:-1;;;;;9899:45:12;;::::1;-1:-1:-1::0;;;;;;9899:45:12;::::1;::::0;::::1;::::0;;;9959:46:::1;::::0;;9860:29;;;::::1;9613:34:16::0;;;9678:2;9663:18;;9656:43;;;;9959:46:12::1;::::0;9548:18:16;9959:46:12::1;9401:304:16::0;17029:1405:12;17151:20;17173:25;17200:27;17257:16;17287:29;17330:18;17362:27;17403:26;17442:42;17468:15;17442:25;:42::i;:::-;17555:20;;;;17243:241;;-1:-1:-1;;;;;;17555:20:12;;;;-1:-1:-1;17243:241:12;;-1:-1:-1;17243:241:12;;-1:-1:-1;17243:241:12;-1:-1:-1;17243:241:12;-1:-1:-1;17243:241:12;-1:-1:-1;17243:241:12;17585:843;;17717:27;;;;17762:25;;;;17618:30;;;;17678:293;;-1:-1:-1;;;17717:27:12;;;;-1:-1:-1;;;;;17717:27:12;;17762:25;;;;;;-1:-1:-1;;;17805:17:12;;;;17840:15;17873:19;17910:18;17946:11;17678:21;:293::i;:::-;18055:19;;17617:354;;-1:-1:-1;17617:354:12;-1:-1:-1;17986:33:12;;-1:-1:-1;;;;;;;;18055:19:12;;;;;18037:37;;;;18033:247;;;18206:19;;18227:20;;;;18125:140;;18171:15;;18188:16;;-1:-1:-1;;;18206:19:12;;-1:-1:-1;;;;;18206:19:12;;-1:-1:-1;;;18227:20:12;;;;18125:24;:140::i;:::-;-1:-1:-1;18094:171:12;-1:-1:-1;18033:247:12;18313:50;18338:25;18313:22;:50;:::i;:::-;18293:70;-1:-1:-1;18377:40:12;18293:70;18377:40;;:::i;:::-;;;17603:825;;;17585:843;17233:1201;;;;;17029:1405;;;;;:::o;7700:434::-;902:33:7;915:10;927:7;;-1:-1:-1;;;;;;927:7:7;902:12;:33::i;:::-;894:58;;;;-1:-1:-1;;;894:58:7;;;;;;;:::i;:::-;7829:3:12::1;7796:30;:36;;;7792:98;;;7841:49;;-1:-1:-1::0;;;7841:49:12::1;;;;;;;;;;;7792:98;7918:46:::0;;;::::1;7974:79:::0;;::::1;-1:-1:-1::0;;;7974:79:12;;::::1;-1:-1:-1::0;;;;7974:79:12;::::1;;::::0;;;8068:59:::1;::::0;;7918:46;;;::::1;::::0;;::::1;8508:34:16::0;;;8573:2;8558:18;;8551:43;;;;7918:46:12;8068:59:::1;::::0;8456:18:16;8068:59:12::1;8313:287:16::0;7112:425:12;902:33:7;915:10;927:7;;-1:-1:-1;;;;;;927:7:7;902:12;:33::i;:::-;894:58;;;;-1:-1:-1;;;894:58:7;;;;;;;:::i;:::-;7235:7:12::1;7205:27;:37;;;7201:100;;;7251:50;;-1:-1:-1::0;;;7251:50:12::1;;;;;;;;;;;7201:100;7329:43:::0;;;::::1;7382:73:::0;;::::1;-1:-1:-1::0;;;7382:73:12;;::::1;-1:-1:-1::0;;;;7382:73:12;::::1;;::::0;;;7470:60:::1;::::0;;7329:43;;;::::1;::::0;;::::1;10037:34:16::0;;;10102:2;10087:18;;10080:43;;;;7329::12;7470:60:::1;::::0;9983:18:16;7470:60:12::1;9840:289:16::0;9286:353:12;902:33:7;915:10;927:7;;-1:-1:-1;;;;;;927:7:7;902:12;:33::i;:::-;894:58;;;;-1:-1:-1;;;894:58:7;;;;;;;:::i;:::-;9392:5:12::1;9375:14;:22;;;9371:88;;;9406:53;;-1:-1:-1::0;;;9406:53:12::1;;;;;;;;;;;9371:88;9485:30:::0;;;::::1;9525:47:::0;;::::1;-1:-1:-1::0;;;9525:47:12;;::::1;-1:-1:-1::0;;;;;9525:47:12;::::1;;::::0;;;9587:45:::1;::::0;;9485:30;;;::::1;::::0;;::::1;8508:34:16::0;;;8573:2;8558:18;;8551:43;;;;9485:30:12;9587:45:::1;::::0;8456:18:16;9587:45:12::1;8313:287:16::0;1523:434:7;1794:5;;-1:-1:-1;;;;;1794:5:7;1780:10;:19;;:76;;-1:-1:-1;1803:9:7;;:53;;-1:-1:-1;;;1803:53:7;;-1:-1:-1;;;;;1803:9:7;;;;:17;;:53;;1821:10;;1841:4;;-1:-1:-1;;;;;;1803:9:7;1848:7;;;1803:53;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1772:85;;;;;;1868:9;:24;;-1:-1:-1;;;;;;1868:24:7;-1:-1:-1;;;;;1868:24:7;;;;;;;;1908:42;;1925:10;;1908:42;;-1:-1:-1;;1908:42:7;1523:434;:::o;16518:221:12:-;16617:24;;16582:19;;-1:-1:-1;;;16617:24:12;;;;16613:74;;;16650:37;;-1:-1:-1;;;16650:37:12;;;;;;;;;;;16613:74;16711:21;16726:5;16711:14;:21::i;:::-;16697:35;16518:221;-1:-1:-1;;16518:221:12:o;6391:110::-;902:33:7;915:10;927:7;;-1:-1:-1;;;;;;927:7:7;902:12;:33::i;:::-;894:58;;;;-1:-1:-1;;;894:58:7;;;;;;;:::i;:::-;6440:24:12;:31;;-1:-1:-1;;;;6440:31:12::1;-1:-1:-1::0;;;6440:31:12::1;::::0;;6486:8:::1;::::0;::::1;::::0;6440:31;;6486:8:::1;6391:110::o:0;8844:326::-;902:33:7;915:10;927:7;;-1:-1:-1;;;;;;927:7:7;902:12;:33::i;:::-;894:58;;;;-1:-1:-1;;;894:58:7;;;;;;;:::i;:::-;8941:5:12::1;8927:11;:19;;;8923:82;;;8955:50;;-1:-1:-1::0;;;8955:50:12::1;;;;;;;;;;;8923:82;9031:27:::0;;;::::1;9068:41:::0;;::::1;-1:-1:-1::0;;;9068:41:12;;::::1;-1:-1:-1::0;;;;9068:41:12;::::1;;::::0;;;9124:39:::1;::::0;;9031:27;;;::::1;::::0;;::::1;8508:34:16::0;;;8573:2;8558:18;;8551:43;;;;9031:27:12;9124:39:::1;::::0;8456:18:16;9124:39:12::1;8313:287:16::0;10755:706:12;902:33:7;915:10;927:7;;-1:-1:-1;;;;;;927:7:7;902:12;:33::i;:::-;894:58;;;;-1:-1:-1;;;894:58:7;;;;;;;:::i;:::-;10857:15:12::1;10908:19:::0;;10887:18;;-1:-1:-1;;;;;;;;10908:19:12;;::::1;::::0;::::1;10887:18:::0;::::1;:40;10883:139;;;10950:61;;-1:-1:-1::0;;;10950:61:12::1;;;;;;;;;;;10883:139;11032:18;11060:15;11032:44;;11086:26;11115:5;-1:-1:-1::0;;;;;11115:17:12::1;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11170:18;::::0;::::1;::::0;11086:48;;-1:-1:-1;11144:98:12::1;::::0;11163:5;;-1:-1:-1;;;;;11170:18:12::1;::::0;11086:48;11230:11;11144:18:::1;:98::i;:::-;11252:27;::::0;::::1;:57:::0;;-1:-1:-1;;;;;11252:57:12;;::::1;-1:-1:-1::0;;;11252:57:12;;::::1;::::0;::::1;;::::0;;;11341:28;;11319:50;;-1:-1:-1;;;;;11319:50:12::1;-1:-1:-1::0;;;;;11341:28:12;;::::1;-1:-1:-1::0;;;11319:50:12::1;;::::0;;11341:15:::1;11379:25:::0;::::1;:39:::0;;-1:-1:-1;;;;11379:39:12::1;;::::0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;11434:20:::1;::::0;::::1;::::0;-1:-1:-1;;11434:20:12::1;10815:646;;;10755:706::o:0;1963:164:7:-;902:33;915:10;927:7;;-1:-1:-1;;;;;;927:7:7;902:12;:33::i;:::-;894:58;;;;-1:-1:-1;;;894:58:7;;;;;;;:::i;:::-;2046:5:::1;:16:::0;;-1:-1:-1;;;;;;2046:16:7::1;-1:-1:-1::0;;;;;2046:16:7;::::1;::::0;;::::1;::::0;;2078:42:::1;::::0;2046:16;;2099:10:::1;::::0;2078:42:::1;::::0;2046:5;2078:42:::1;1963:164:::0;:::o;18649:388:12:-;18751:7;18790:10;18774:26;;:12;:26;;;18770:261;;-1:-1:-1;18823:6:12;18816:13;;18770:261;18865:10;18850:25;;:12;:25;;;18846:185;;;18914:25;18927:12;18914:10;:25;:::i;:::-;18907:33;;:2;:33;:::i;:::-;18898:42;;:6;:42;:::i;:::-;18891:49;;;;18846:185;18994:25;19009:10;18994:12;:25;:::i;:::-;18987:33;;:2;:33;:::i;:::-;18978:42;;:6;:42;:::i;18846:185::-;18649:388;;;;;:::o;1564:526:9:-;1680:9;1928:1;-1:-1:-1;;1911:19:9;1908:1;1905:26;1902:1;1898:34;1891:42;1878:11;1874:60;1864:116;;1964:1;1961;1954:12;1864:116;-1:-1:-1;2051:9:9;;2047:27;;1564:526::o;1328:1782:10:-;1466:12;1636:4;1630:11;-1:-1:-1;;;1759:17:10;1752:93;-1:-1:-1;;;;;1896:4:10;1892:53;1888:1;1869:17;1865:25;1858:88;-1:-1:-1;;;;;2038:2:10;2034:51;2029:2;2010:17;2006:26;1999:87;2172:6;2167:2;2148:17;2144:26;2137:42;3026:2;3023:1;3018:3;2999:17;2996:1;2989:5;2982;2977:52;2545:16;2538:24;2532:2;2514:16;2511:24;2507:1;2503;2497:8;2494:15;2490:46;2487:76;2287:756;2276:767;;;3071:7;3063:40;;;;-1:-1:-1;;;3063:40:10;;11542:2:16;3063:40:10;;;11524:21:16;11581:2;11561:18;;;11554:30;-1:-1:-1;;;11600:18:16;;;11593:50;11660:18;;3063:40:10;11340:344:16;3063:40:10;1456:1654;1328:1782;;;;:::o;977:540:7:-;1097:9;;1064:4;;-1:-1:-1;;;;;1097:9:7;1415:27;;;;;:77;;-1:-1:-1;1446:46:7;;-1:-1:-1;;;1446:46:7;;-1:-1:-1;;;;;1446:12:7;;;;;:46;;1459:4;;1473;;1480:11;;1446:46;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1414:96;;;-1:-1:-1;1505:5:7;;-1:-1:-1;;;;;1497:13:7;;;1505:5;;1497:13;1414:96;1407:103;977:540;-1:-1:-1;;;;977:540:7:o;19172:880:12:-;19525:14;;19291:16;;19496:15;;19291:16;;;;;;-1:-1:-1;;;19525:14:12;;;;19521:64;;;19548:37;;-1:-1:-1;;;19548:37:12;;;;;;;;;;;19521:64;19616:15;19595:37;;19664:5;:18;;;;;;;;;;-1:-1:-1;;;;;19664:18:12;-1:-1:-1;;;;;19642:40:12;;;19713:5;-1:-1:-1;;;;;19713:17:12;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19798:33;;;;19692:40;;-1:-1:-1;19770:61:12;;-1:-1:-1;;;19798:33:12;;;;;-1:-1:-1;;;19770:25:12;;;;:61;:::i;:::-;19756:75;;:11;:75;;;:182;;;-1:-1:-1;19896:36:12;;;;19865:73;;:19;;-1:-1:-1;;;19896:36:12;;;;19934:3;19865:30;:73::i;:::-;19847:15;-1:-1:-1;;;;;19847:91:12;;19756:182;:289;;;-1:-1:-1;20003:36:12;;;;19972:73;;:19;;-1:-1:-1;;;20003:36:12;;;;20041:3;19972:30;:73::i;:::-;19954:15;-1:-1:-1;;;;;19954:91:12;;19756:289;19742:303;19172:880;;-1:-1:-1;19172:880:12;;-1:-1:-1;19172:880:12;:::o;22318:1386::-;22726:27;;;;22767:25;;;;22636;;;;22691:261;;-1:-1:-1;;;22726:27:12;;;;-1:-1:-1;;;;;22726:27:12;;22767:25;;;;;;-1:-1:-1;;;22806:17:12;;;;22837:15;22866:19;22899:18;22931:11;22691:21;:261::i;:::-;23026:19;;22635:317;;-1:-1:-1;22635:317:12;-1:-1:-1;;;;;;;;;23026:19:12;;;;;23008:37;;;;23004:633;;;23062:33;23116:102;23141:15;23158:16;23176:5;:19;;;;;;;;;;-1:-1:-1;;;;;23176:19:12;23197:5;:20;;;;;;;;;;;;23116:24;:102::i;:::-;-1:-1:-1;23061:157:12;-1:-1:-1;23283:46:12;23061:157;23283:46;;:::i;:::-;23589:37;;-1:-1:-1;;;;;23589:37:12;-1:-1:-1;;;;;;;;23589:37:12;;;;;;23283:46;-1:-1:-1;;23004:633:12;23647:20;;;:50;;23679:17;;23647:20;;;:50;;23679:17;;-1:-1:-1;;;;;23647:50:12;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;23647:50:12;;;;;-1:-1:-1;;;;;23647:50:12;;;;;;22541:1163;;22318:1386;;;;;:::o;20402:1170::-;20698:30;20785:18;-1:-1:-1;;;;;20907:40:12;;;-1:-1:-1;20903:111:12;;;-1:-1:-1;;;;;;20963:40:12;;20903:111;21070:15;;;;21066:500;;21101:17;21121:33;21135:19;21121:11;:33;:::i;:::-;21101:53;;;;21168:21;21210:19;21192:15;-1:-1:-1;;;;;21192:37:12;;:189;;21326:55;:16;-1:-1:-1;;;;;21326:55:12;;21371:9;21326:27;:55::i;:::-;21192:189;;;21248:59;:16;21276:19;21297:9;21248:27;:59::i;:::-;21168:213;-1:-1:-1;21395:26:12;21424:42;21168:213;21424:42;;;21462:3;21424:24;:42::i;:::-;21395:71;-1:-1:-1;21505:50:12;21395:71;21535:9;21546:8;21505:29;:50::i;:::-;21480:75;;21087:479;;;21066:500;20402:1170;;;;;;;;;;:::o;21637:522::-;21819:33;;;21916:23;21934:5;21916:15;:23;:::i;:::-;-1:-1:-1;;;;;21885:54:12;;-1:-1:-1;21963:60:12;21885:54;21995:16;22013:9;21963:31;:60::i;:::-;21949:74;-1:-1:-1;22037:18:12;;;;22033:120;;22099:43;:11;:43;;;22138:3;22099:22;:43::i;:::-;22071:71;;22033:120;21875:284;21637:522;;;;;;;:::o;14:138:16:-;-1:-1:-1;;;;;96:31:16;;86:42;;76:70;;142:1;139;132:12;76:70;14:138;:::o;157:268::-;230:6;283:2;271:9;262:7;258:23;254:32;251:52;;;299:1;296;289:12;251:52;338:9;325:23;357:38;389:5;357:38;:::i;1019:272::-;1077:6;1130:2;1118:9;1109:7;1105:23;1101:32;1098:52;;;1146:1;1143;1136:12;1098:52;1185:9;1172:23;1235:6;1228:5;1224:18;1217:5;1214:29;1204:57;;1257:1;1254;1247:12;1485:292;1543:6;1596:2;1584:9;1575:7;1571:23;1567:32;1564:52;;;1612:1;1609;1602:12;1564:52;1651:9;1638:23;-1:-1:-1;;;;;1694:5:16;1690:38;1683:5;1680:49;1670:77;;1743:1;1740;1733:12;3272:118;3358:5;3351:13;3344:21;3337:5;3334:32;3324:60;;3380:1;3377;3370:12;3395:551;3483:6;3491;3499;3552:2;3540:9;3531:7;3527:23;3523:32;3520:52;;;3568:1;3565;3558:12;3520:52;3607:9;3594:23;3626:38;3658:5;3626:38;:::i;:::-;3683:5;-1:-1:-1;3740:2:16;3725:18;;3712:32;3753:30;3712:32;3753:30;:::i;:::-;3802:7;-1:-1:-1;3861:2:16;3846:18;;3833:32;3874:40;3833:32;3874:40;:::i;:::-;3933:7;3923:17;;;3395:551;;;;;:::o;4766:274::-;4824:6;4877:2;4865:9;4856:7;4852:23;4848:32;4845:52;;;4893:1;4890;4883:12;4845:52;4932:9;4919:23;4982:8;4975:5;4971:20;4964:5;4961:31;4951:59;;5006:1;5003;4996:12;5990:273;6058:6;6111:2;6099:9;6090:7;6086:23;6082:32;6079:52;;;6127:1;6124;6117:12;6079:52;6159:9;6153:16;6209:4;6202:5;6198:16;6191:5;6188:27;6178:55;;6229:1;6226;6219:12;6268:184;6338:6;6391:2;6379:9;6370:7;6366:23;6362:32;6359:52;;;6407:1;6404;6397:12;6359:52;-1:-1:-1;6430:16:16;;6268:184;-1:-1:-1;6268:184:16:o;6457:127::-;6518:10;6513:3;6509:20;6506:1;6499:31;6549:4;6546:1;6539:15;6573:4;6570:1;6563:15;6589:422;6678:1;6721:5;6678:1;6735:270;6756:7;6746:8;6743:21;6735:270;;;6815:4;6811:1;6807:6;6803:17;6797:4;6794:27;6791:53;;;6824:18;;:::i;:::-;6874:7;6864:8;6860:22;6857:55;;;6894:16;;;;6857:55;6973:22;;;;6933:15;;;;6735:270;;;6739:3;6589:422;;;;;:::o;7016:806::-;7065:5;7095:8;7085:80;;-1:-1:-1;7136:1:16;7150:5;;7085:80;7184:4;7174:76;;-1:-1:-1;7221:1:16;7235:5;;7174:76;7266:4;7284:1;7279:59;;;;7352:1;7347:130;;;;7259:218;;7279:59;7309:1;7300:10;;7323:5;;;7347:130;7384:3;7374:8;7371:17;7368:43;;;7391:18;;:::i;:::-;-1:-1:-1;;7447:1:16;7433:16;;7462:5;;7259:218;;7561:2;7551:8;7548:16;7542:3;7536:4;7533:13;7529:36;7523:2;7513:8;7510:16;7505:2;7499:4;7496:12;7492:35;7489:77;7486:159;;;-1:-1:-1;7598:19:16;;;7630:5;;7486:159;7677:34;7702:8;7696:4;7677:34;:::i;:::-;7747:6;7743:1;7739:6;7735:19;7726:7;7723:32;7720:58;;;7758:18;;:::i;:::-;7796:20;;7016:806;-1:-1:-1;;;7016:806:16:o;7827:140::-;7885:5;7914:47;7955:4;7945:8;7941:19;7935:4;7914:47;:::i;7972:336::-;8174:2;8156:21;;;8213:2;8193:18;;;8186:30;-1:-1:-1;;;8247:2:16;8232:18;;8225:42;8299:2;8284:18;;7972:336::o;9710:125::-;9775:9;;;9796:10;;;9793:36;;;9809:18;;:::i;10134:400::-;-1:-1:-1;;;;;10390:15:16;;;10372:34;;10442:15;;;;10437:2;10422:18;;10415:43;-1:-1:-1;;;;;;10494:33:16;;;10489:2;10474:18;;10467:61;10322:2;10307:18;;10134:400::o;10539:245::-;10606:6;10659:2;10647:9;10638:7;10634:23;10630:32;10627:52;;;10675:1;10672;10665:12;10627:52;10707:9;10701:16;10726:28;10748:5;10726:28;:::i;10789:151::-;10879:4;10872:12;;;10858;;;10854:31;;10897:14;;10894:40;;;10914:18;;:::i;10945:168::-;11018:9;;;11049;;11066:15;;;11060:22;;11046:37;11036:71;;11087:18;;:::i;11118:217::-;11158:1;11184;11174:132;;11228:10;11223:3;11219:20;11216:1;11209:31;11263:4;11260:1;11253:15;11291:4;11288:1;11281:15;11174:132;-1:-1:-1;11320:9:16;;11118:217::o;11689:180::-;11756:18;11794:10;;;11806;;;11790:27;;11829:11;;;11826:37;;;11843:18;;:::i;:::-;11826:37;11689:180;;;;:::o;11874:197::-;-1:-1:-1;;;;;11996:10:16;;;12008;;;11992:27;;12031:11;;;12028:37;;;12045:18;;:::i;12076:183::-;12144:18;12195:10;;;12183;;;12179:27;;12218:12;;;12215:38;;;12233:18;;:::i;12264:191::-;-1:-1:-1;;;;;12391:10:16;;;12379;;;12375:27;;12414:12;;;12411:38;;;12429:18;;:::i
Swarm Source
ipfs://eca2b122addd21aec453dda74a9e3794fb3f8be47da796a0041ed0dd95c4c05a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.