Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 2,403 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Deposit | 21249445 | 1 min ago | IN | 0 ETH | 0.00126093 | ||||
Deposit | 21249238 | 42 mins ago | IN | 0 ETH | 0.00180536 | ||||
Deposit | 21249206 | 49 mins ago | IN | 0 ETH | 0.00178318 | ||||
Deposit | 21249194 | 51 mins ago | IN | 0 ETH | 0.00184964 | ||||
Deposit | 21249170 | 56 mins ago | IN | 0 ETH | 0.00169925 | ||||
Deposit | 21249146 | 1 hr ago | IN | 0 ETH | 0.00176599 | ||||
Deposit | 21249111 | 1 hr ago | IN | 0 ETH | 0.00169521 | ||||
Deposit | 21249110 | 1 hr ago | IN | 0 ETH | 0.00156742 | ||||
Deposit | 21249081 | 1 hr ago | IN | 0 ETH | 0.00160773 | ||||
Deposit | 21248886 | 1 hr ago | IN | 0 ETH | 0.00146704 | ||||
Deposit | 21248631 | 2 hrs ago | IN | 0 ETH | 0.00140884 | ||||
Deposit | 21248628 | 2 hrs ago | IN | 0 ETH | 0.00157224 | ||||
Deposit | 21248628 | 2 hrs ago | IN | 0 ETH | 0.00157224 | ||||
Deposit | 21248628 | 2 hrs ago | IN | 0 ETH | 0.00157224 | ||||
Deposit | 21248615 | 2 hrs ago | IN | 0 ETH | 0.00142849 | ||||
Deposit | 21248326 | 3 hrs ago | IN | 0 ETH | 0.00190663 | ||||
Deposit | 21247894 | 5 hrs ago | IN | 0 ETH | 0.00147177 | ||||
Deposit | 21247885 | 5 hrs ago | IN | 0 ETH | 0.00126073 | ||||
Deposit | 21247789 | 5 hrs ago | IN | 0 ETH | 0.001462 | ||||
Deposit | 21247766 | 5 hrs ago | IN | 0 ETH | 0.00180627 | ||||
Deposit | 21247694 | 5 hrs ago | IN | 0 ETH | 0.0016261 | ||||
Deposit | 21247680 | 5 hrs ago | IN | 0 ETH | 0.00213787 | ||||
Deposit | 21247375 | 6 hrs ago | IN | 0 ETH | 0.00156011 | ||||
Deposit | 21247169 | 7 hrs ago | IN | 0 ETH | 0.0019129 | ||||
Deposit | 21247152 | 7 hrs ago | IN | 0 ETH | 0.00197991 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
20921838 | 45 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Name:
TellerWithMultiAssetSupport
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 {ERC20} from "@solmate/tokens/ERC20.sol"; import {WETH} from "@solmate/tokens/WETH.sol"; import {BoringVault} from "src/base/BoringVault.sol"; import {AccountantWithRateProviders} from "src/base/Roles/AccountantWithRateProviders.sol"; import {FixedPointMathLib} from "@solmate/utils/FixedPointMathLib.sol"; import {SafeTransferLib} from "@solmate/utils/SafeTransferLib.sol"; import {BeforeTransferHook} from "src/interfaces/BeforeTransferHook.sol"; import {Auth, Authority} from "@solmate/auth/Auth.sol"; import {ReentrancyGuard} from "@solmate/utils/ReentrancyGuard.sol"; import {IPausable} from "src/interfaces/IPausable.sol"; contract TellerWithMultiAssetSupport is Auth, BeforeTransferHook, ReentrancyGuard, IPausable { using FixedPointMathLib for uint256; using SafeTransferLib for ERC20; using SafeTransferLib for WETH; // ========================================= STRUCTS ========================================= /** * @param allowDeposits bool indicating whether or not deposits are allowed for this asset. * @param allowWithdraws bool indicating whether or not withdraws are allowed for this asset. * @param sharePremium uint16 indicating the premium to apply to the shares minted. * where 40 represents a 40bps reduction in shares minted using this asset. */ struct Asset { bool allowDeposits; bool allowWithdraws; uint16 sharePremium; } // ========================================= CONSTANTS ========================================= /** * @notice Native address used to tell the contract to handle native asset deposits. */ address internal constant NATIVE = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; /** * @notice The maximum possible share lock period. */ uint256 internal constant MAX_SHARE_LOCK_PERIOD = 3 days; /** * @notice The maximum possible share premium that can be set using `updateAssetData`. * @dev 1,000 or 10% */ uint16 internal constant MAX_SHARE_PREMIUM = 1_000; // ========================================= STATE ========================================= /** * @notice Mapping ERC20s to their assetData. */ mapping(ERC20 => Asset) public assetData; /** * @notice The deposit nonce used to map to a deposit hash. */ uint96 public depositNonce = 1; /** * @notice After deposits, shares are locked to the msg.sender's address * for `shareLockPeriod`. * @dev During this time all trasnfers from msg.sender will revert, and * deposits are refundable. */ uint64 public shareLockPeriod; /** * @notice Used to pause calls to `deposit` and `depositWithPermit`. */ bool public isPaused; /** * @dev Maps deposit nonce to keccak256(address receiver, address depositAsset, uint256 depositAmount, uint256 shareAmount, uint256 timestamp, uint256 shareLockPeriod). */ mapping(uint256 => bytes32) public publicDepositHistory; /** * @notice Maps user address to the time their shares will be unlocked. */ mapping(address => uint256) public shareUnlockTime; /** * @notice Mapping `from` address to a bool to deny them from transferring shares. */ mapping(address => bool) public fromDenyList; /** * @notice Mapping `to` address to a bool to deny them from receiving shares. */ mapping(address => bool) public toDenyList; /** * @notice Mapping `opeartor` address to a bool to deny them from calling `transfer` or `transferFrom`. */ mapping(address => bool) public operatorDenyList; //============================== ERRORS =============================== error TellerWithMultiAssetSupport__ShareLockPeriodTooLong(); error TellerWithMultiAssetSupport__SharesAreLocked(); error TellerWithMultiAssetSupport__SharesAreUnLocked(); error TellerWithMultiAssetSupport__BadDepositHash(); error TellerWithMultiAssetSupport__AssetNotSupported(); error TellerWithMultiAssetSupport__ZeroAssets(); error TellerWithMultiAssetSupport__MinimumMintNotMet(); error TellerWithMultiAssetSupport__MinimumAssetsNotMet(); error TellerWithMultiAssetSupport__PermitFailedAndAllowanceTooLow(); error TellerWithMultiAssetSupport__ZeroShares(); error TellerWithMultiAssetSupport__DualDeposit(); error TellerWithMultiAssetSupport__Paused(); error TellerWithMultiAssetSupport__TransferDenied(address from, address to, address operator); error TellerWithMultiAssetSupport__SharePremiumTooLarge(); //============================== EVENTS =============================== event Paused(); event Unpaused(); event AssetDataUpdated(address indexed asset, bool allowDeposits, bool allowWithdraws, uint16 sharePremium); event Deposit( uint256 indexed nonce, address indexed receiver, address indexed depositAsset, uint256 depositAmount, uint256 shareAmount, uint256 depositTimestamp, uint256 shareLockPeriodAtTimeOfDeposit ); event BulkDeposit(address indexed asset, uint256 depositAmount); event BulkWithdraw(address indexed asset, uint256 shareAmount); event DepositRefunded(uint256 indexed nonce, bytes32 depositHash, address indexed user); event DenyFrom(address indexed user); event DenyTo(address indexed user); event DenyOperator(address indexed user); event AllowFrom(address indexed user); event AllowTo(address indexed user); event AllowOperator(address indexed user); //============================== IMMUTABLES =============================== /** * @notice The BoringVault this contract is working with. */ BoringVault public immutable vault; /** * @notice The AccountantWithRateProviders this contract is working with. */ AccountantWithRateProviders public immutable accountant; /** * @notice One share of the BoringVault. */ uint256 internal immutable ONE_SHARE; /** * @notice The native wrapper contract. */ WETH public immutable nativeWrapper; constructor(address _owner, address _vault, address _accountant, address _weth) Auth(_owner, Authority(address(0))) { vault = BoringVault(payable(_vault)); ONE_SHARE = 10 ** vault.decimals(); accountant = AccountantWithRateProviders(_accountant); nativeWrapper = WETH(payable(_weth)); } // ========================================= ADMIN FUNCTIONS ========================================= /** * @notice Pause this contract, which prevents future calls to `deposit` and `depositWithPermit`. * @dev Callable by MULTISIG_ROLE. */ function pause() external requiresAuth { isPaused = true; emit Paused(); } /** * @notice Unpause this contract, which allows future calls to `deposit` and `depositWithPermit`. * @dev Callable by MULTISIG_ROLE. */ function unpause() external requiresAuth { isPaused = false; emit Unpaused(); } /** * @notice Updates the asset data for a given asset. * @dev The accountant must also support pricing this asset, else the `deposit` call will revert. * @dev Callable by OWNER_ROLE. */ function updateAssetData(ERC20 asset, bool allowDeposits, bool allowWithdraws, uint16 sharePremium) external requiresAuth { if (sharePremium > MAX_SHARE_PREMIUM) revert TellerWithMultiAssetSupport__SharePremiumTooLarge(); assetData[asset] = Asset(allowDeposits, allowWithdraws, sharePremium); emit AssetDataUpdated(address(asset), allowDeposits, allowWithdraws, sharePremium); } /** * @notice Sets the share lock period. * @dev This not only locks shares to the user address, but also serves as the pending deposit period, where deposits can be reverted. * @dev If a new shorter share lock period is set, users with pending share locks could make a new deposit to receive 1 wei shares, * and have their shares unlock sooner than their original deposit allows. This state would allow for the user deposit to be refunded, * but only if they have not transferred their shares out of there wallet. This is an accepted limitation, and should be known when decreasing * the share lock period. * @dev Callable by OWNER_ROLE. */ function setShareLockPeriod(uint64 _shareLockPeriod) external requiresAuth { if (_shareLockPeriod > MAX_SHARE_LOCK_PERIOD) revert TellerWithMultiAssetSupport__ShareLockPeriodTooLong(); shareLockPeriod = _shareLockPeriod; } /** * @notice Deny a user from transferring or receiving shares. * @dev Callable by OWNER_ROLE, and DENIER_ROLE. */ function denyAll(address user) external requiresAuth { fromDenyList[user] = true; toDenyList[user] = true; operatorDenyList[user] = true; emit DenyFrom(user); emit DenyTo(user); emit DenyOperator(user); } /** * @notice Allow a user to transfer or receive shares. * @dev Callable by OWNER_ROLE, and DENIER_ROLE. */ function allowAll(address user) external requiresAuth { fromDenyList[user] = false; toDenyList[user] = false; operatorDenyList[user] = false; emit AllowFrom(user); emit AllowTo(user); emit AllowOperator(user); } /** * @notice Deny a user from transferring shares. * @dev Callable by OWNER_ROLE, and DENIER_ROLE. */ function denyFrom(address user) external requiresAuth { fromDenyList[user] = true; emit DenyFrom(user); } /** * @notice Allow a user to transfer shares. * @dev Callable by OWNER_ROLE, and DENIER_ROLE. */ function allowFrom(address user) external requiresAuth { fromDenyList[user] = false; emit AllowFrom(user); } /** * @notice Deny a user from receiving shares. * @dev Callable by OWNER_ROLE, and DENIER_ROLE. */ function denyTo(address user) external requiresAuth { toDenyList[user] = true; emit DenyTo(user); } /** * @notice Allow a user to receive shares. * @dev Callable by OWNER_ROLE, and DENIER_ROLE. */ function allowTo(address user) external requiresAuth { toDenyList[user] = false; emit AllowTo(user); } /** * @notice Deny an operator from transferring shares. * @dev Callable by OWNER_ROLE, and DENIER_ROLE. */ function denyOperator(address user) external requiresAuth { operatorDenyList[user] = true; emit DenyOperator(user); } /** * @notice Allow an operator to transfer shares. * @dev Callable by OWNER_ROLE, and DENIER_ROLE. */ function allowOperator(address user) external requiresAuth { operatorDenyList[user] = false; emit AllowOperator(user); } // ========================================= BeforeTransferHook FUNCTIONS ========================================= /** * @notice Implement beforeTransfer hook to check if shares are locked, or if `from`, `to`, or `operator` are on the deny list. * @notice If share lock period is set to zero, then users will be able to mint and transfer in the same tx. * if this behavior is not desired then a share lock period of >=1 should be used. */ function beforeTransfer(address from, address to, address operator) public view virtual { if (fromDenyList[from] || toDenyList[to] || operatorDenyList[operator]) { revert TellerWithMultiAssetSupport__TransferDenied(from, to, operator); } if (shareUnlockTime[from] > block.timestamp) revert TellerWithMultiAssetSupport__SharesAreLocked(); } // ========================================= REVERT DEPOSIT FUNCTIONS ========================================= /** * @notice Allows DEPOSIT_REFUNDER_ROLE to revert a pending deposit. * @dev Once a deposit share lock period has passed, it can no longer be reverted. * @dev It is possible the admin does not setup the BoringVault to call the transfer hook, * but this contract can still be saving share lock state. In the event this happens * deposits are still refundable if the user has not transferred their shares. * But there is no guarantee that the user has not transferred their shares. * @dev Callable by STRATEGIST_MULTISIG_ROLE. */ function refundDeposit( uint256 nonce, address receiver, address depositAsset, uint256 depositAmount, uint256 shareAmount, uint256 depositTimestamp, uint256 shareLockUpPeriodAtTimeOfDeposit ) external requiresAuth { if ((block.timestamp - depositTimestamp) >= shareLockUpPeriodAtTimeOfDeposit) { // Shares are already unlocked, so we can not revert deposit. revert TellerWithMultiAssetSupport__SharesAreUnLocked(); } bytes32 depositHash = keccak256( abi.encode( receiver, depositAsset, depositAmount, shareAmount, depositTimestamp, shareLockUpPeriodAtTimeOfDeposit ) ); if (publicDepositHistory[nonce] != depositHash) revert TellerWithMultiAssetSupport__BadDepositHash(); // Delete hash to prevent refund gas. delete publicDepositHistory[nonce]; // If deposit used native asset, send user back wrapped native asset. depositAsset = depositAsset == NATIVE ? address(nativeWrapper) : depositAsset; // Burn shares and refund assets to receiver. vault.exit(receiver, ERC20(depositAsset), depositAmount, receiver, shareAmount); emit DepositRefunded(nonce, depositHash, receiver); } // ========================================= USER FUNCTIONS ========================================= /** * @notice Allows users to deposit into the BoringVault, if this contract is not paused. * @dev Publicly callable. */ function deposit(ERC20 depositAsset, uint256 depositAmount, uint256 minimumMint) public payable requiresAuth nonReentrant returns (uint256 shares) { if (isPaused) revert TellerWithMultiAssetSupport__Paused(); Asset memory asset = assetData[depositAsset]; if (!asset.allowDeposits) revert TellerWithMultiAssetSupport__AssetNotSupported(); if (address(depositAsset) == NATIVE) { if (msg.value == 0) revert TellerWithMultiAssetSupport__ZeroAssets(); nativeWrapper.deposit{value: msg.value}(); depositAmount = msg.value; shares = depositAmount.mulDivDown(ONE_SHARE, accountant.getRateInQuoteSafe(nativeWrapper)); shares = asset.sharePremium > 0 ? shares.mulDivDown(1e4 - asset.sharePremium, 1e4) : shares; if (shares < minimumMint) revert TellerWithMultiAssetSupport__MinimumMintNotMet(); // `from` is address(this) since user already sent value. nativeWrapper.safeApprove(address(vault), depositAmount); vault.enter(address(this), nativeWrapper, depositAmount, msg.sender, shares); } else { if (msg.value > 0) revert TellerWithMultiAssetSupport__DualDeposit(); shares = _erc20Deposit(depositAsset, depositAmount, minimumMint, msg.sender, asset); } _afterPublicDeposit(msg.sender, depositAsset, depositAmount, shares, shareLockPeriod); } /** * @notice Allows users to deposit into BoringVault using permit. * @dev Publicly callable. */ function depositWithPermit( ERC20 depositAsset, uint256 depositAmount, uint256 minimumMint, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public requiresAuth nonReentrant returns (uint256 shares) { if (isPaused) revert TellerWithMultiAssetSupport__Paused(); Asset memory asset = assetData[depositAsset]; if (!asset.allowDeposits) revert TellerWithMultiAssetSupport__AssetNotSupported(); try depositAsset.permit(msg.sender, address(vault), depositAmount, deadline, v, r, s) {} catch { if (depositAsset.allowance(msg.sender, address(vault)) < depositAmount) { revert TellerWithMultiAssetSupport__PermitFailedAndAllowanceTooLow(); } } shares = _erc20Deposit(depositAsset, depositAmount, minimumMint, msg.sender, asset); _afterPublicDeposit(msg.sender, depositAsset, depositAmount, shares, shareLockPeriod); } /** * @notice Allows on ramp role to deposit into this contract. * @dev Does NOT support native deposits. * @dev Callable by SOLVER_ROLE. */ function bulkDeposit(ERC20 depositAsset, uint256 depositAmount, uint256 minimumMint, address to) external requiresAuth nonReentrant returns (uint256 shares) { if (isPaused) revert TellerWithMultiAssetSupport__Paused(); Asset memory asset = assetData[depositAsset]; if (!asset.allowDeposits) revert TellerWithMultiAssetSupport__AssetNotSupported(); shares = _erc20Deposit(depositAsset, depositAmount, minimumMint, to, asset); emit BulkDeposit(address(depositAsset), depositAmount); } /** * @notice Allows off ramp role to withdraw from this contract. * @dev Callable by SOLVER_ROLE. */ function bulkWithdraw(ERC20 withdrawAsset, uint256 shareAmount, uint256 minimumAssets, address to) external requiresAuth returns (uint256 assetsOut) { if (isPaused) revert TellerWithMultiAssetSupport__Paused(); Asset memory asset = assetData[withdrawAsset]; if (!asset.allowWithdraws) revert TellerWithMultiAssetSupport__AssetNotSupported(); if (shareAmount == 0) revert TellerWithMultiAssetSupport__ZeroShares(); assetsOut = shareAmount.mulDivDown(accountant.getRateInQuoteSafe(withdrawAsset), ONE_SHARE); if (assetsOut < minimumAssets) revert TellerWithMultiAssetSupport__MinimumAssetsNotMet(); vault.exit(to, withdrawAsset, assetsOut, msg.sender, shareAmount); emit BulkWithdraw(address(withdrawAsset), shareAmount); } // ========================================= INTERNAL HELPER FUNCTIONS ========================================= /** * @notice Implements a common ERC20 deposit into BoringVault. */ function _erc20Deposit( ERC20 depositAsset, uint256 depositAmount, uint256 minimumMint, address to, Asset memory asset ) internal returns (uint256 shares) { if (depositAmount == 0) revert TellerWithMultiAssetSupport__ZeroAssets(); shares = depositAmount.mulDivDown(ONE_SHARE, accountant.getRateInQuoteSafe(depositAsset)); shares = asset.sharePremium > 0 ? shares.mulDivDown(1e4 - asset.sharePremium, 1e4) : shares; if (shares < minimumMint) revert TellerWithMultiAssetSupport__MinimumMintNotMet(); vault.enter(msg.sender, depositAsset, depositAmount, to, shares); } /** * @notice Handle share lock logic, and event. */ function _afterPublicDeposit( address user, ERC20 depositAsset, uint256 depositAmount, uint256 shares, uint256 currentShareLockPeriod ) internal { shareUnlockTime[user] = block.timestamp + currentShareLockPeriod; uint256 nonce = depositNonce; publicDepositHistory[nonce] = keccak256(abi.encode(user, depositAsset, depositAmount, shares, block.timestamp, currentShareLockPeriod)); depositNonce++; emit Deposit(nonce, user, address(depositAsset), depositAmount, shares, block.timestamp, currentShareLockPeriod); } }
// 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; import {ERC20} from "./ERC20.sol"; import {SafeTransferLib} from "../utils/SafeTransferLib.sol"; /// @notice Minimalist and modern Wrapped Ether implementation. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/WETH.sol) /// @author Inspired by WETH9 (https://github.com/dapphub/ds-weth/blob/master/src/weth9.sol) contract WETH is ERC20("Wrapped Ether", "WETH", 18) { using SafeTransferLib for address; event Deposit(address indexed from, uint256 amount); event Withdrawal(address indexed to, uint256 amount); function deposit() public payable virtual { _mint(msg.sender, msg.value); emit Deposit(msg.sender, msg.value); } function withdraw(uint256 amount) public virtual { _burn(msg.sender, amount); emit Withdrawal(msg.sender, amount); msg.sender.safeTransferETH(amount); } receive() external payable virtual { deposit(); } }
// 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; 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 managementFee the management 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 managementFee; 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__ManagementFeeTooLarge(); 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 ManagementFeeUpdated(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 managementFee, 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, managementFee: managementFee, 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 management fee to a new value. * @dev Callable by OWNER_ROLE. */ function updateManagementFee(uint16 managementFee) external requiresAuth { if (managementFee > 0.2e4) revert AccountantWithRateProviders__ManagementFeeTooLarge(); uint16 oldFee = accountantState.managementFee; accountantState.managementFee = managementFee; emit ManagementFeeUpdated(oldFee, managementFee); } /** * @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 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 requiresAuth { AccountantState storage state = accountantState; if (state.isPaused) revert AccountantWithRateProviders__Paused(); uint64 currentTime = uint64(block.timestamp); uint256 currentExchangeRate = state.exchangeRate; uint256 currentTotalShares = vault.totalSupply(); if ( currentTime < state.lastUpdateTimestamp + state.minimumUpdateDelayInSeconds || newExchangeRate > currentExchangeRate.mulDivDown(state.allowedExchangeRateChangeUpper, 1e4) || newExchangeRate < currentExchangeRate.mulDivDown(state.allowedExchangeRateChangeLower, 1e4) ) { // 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); } state.exchangeRate = newExchangeRate; 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); } // ========================================= RATE 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); } // ========================================= 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 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 { // Only update fees if we are not paused. // Update fee accounting. uint256 shareSupplyToUse = currentTotalShares; // Use the minimum between current total supply and total supply for last update. if (state.totalSharesLastUpdate < shareSupplyToUse) { shareSupplyToUse = state.totalSharesLastUpdate; } // Determine management fees owned. uint256 timeDelta = currentTime - state.lastUpdateTimestamp; uint256 minimumAssets = newExchangeRate > currentExchangeRate ? shareSupplyToUse.mulDivDown(currentExchangeRate, ONE_SHARE) : shareSupplyToUse.mulDivDown(newExchangeRate, ONE_SHARE); uint256 managementFeesAnnual = minimumAssets.mulDivDown(state.managementFee, 1e4); uint256 newFeesOwedInBase = managementFeesAnnual.mulDivDown(timeDelta, 365 days); // Account for performance fees. if (newExchangeRate > state.highwaterMark) { if (state.performanceFee > 0) { uint256 changeInExchangeRate = newExchangeRate - state.highwaterMark; uint256 yieldEarned = changeInExchangeRate.mulDivDown(shareSupplyToUse, ONE_SHARE); uint256 performanceFeesOwedInBase = yieldEarned.mulDivDown(state.performanceFee, 1e4); 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: 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; interface BeforeTransferHook { function beforeTransfer(address from, address to, address operator) external view; }
// 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 Gas optimized reentrancy protection for smart contracts. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/ReentrancyGuard.sol) /// @author Modified from OpenZeppelin (https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/ReentrancyGuard.sol) abstract contract ReentrancyGuard { uint256 private locked = 1; modifier nonReentrant() virtual { require(locked == 1, "REENTRANCY"); locked = 2; _; locked = 1; } }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.21; interface IPausable { function pause() external; function unpause() external; }
// 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) (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) (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: 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); }
// 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) (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) (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) (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); }
{ "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/", "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/", "LayerZero-v2/=lib/LayerZero-v2/", "ccip/=lib/ccip/contracts/", "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", "forge-std/=lib/forge-std/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "solmate/=lib/solmate/src/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "evmVersion": "shanghai", "viaIR": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_vault","type":"address"},{"internalType":"address","name":"_accountant","type":"address"},{"internalType":"address","name":"_weth","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"TellerWithMultiAssetSupport__AssetNotSupported","type":"error"},{"inputs":[],"name":"TellerWithMultiAssetSupport__BadDepositHash","type":"error"},{"inputs":[],"name":"TellerWithMultiAssetSupport__DualDeposit","type":"error"},{"inputs":[],"name":"TellerWithMultiAssetSupport__MinimumAssetsNotMet","type":"error"},{"inputs":[],"name":"TellerWithMultiAssetSupport__MinimumMintNotMet","type":"error"},{"inputs":[],"name":"TellerWithMultiAssetSupport__Paused","type":"error"},{"inputs":[],"name":"TellerWithMultiAssetSupport__PermitFailedAndAllowanceTooLow","type":"error"},{"inputs":[],"name":"TellerWithMultiAssetSupport__ShareLockPeriodTooLong","type":"error"},{"inputs":[],"name":"TellerWithMultiAssetSupport__SharePremiumTooLarge","type":"error"},{"inputs":[],"name":"TellerWithMultiAssetSupport__SharesAreLocked","type":"error"},{"inputs":[],"name":"TellerWithMultiAssetSupport__SharesAreUnLocked","type":"error"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"TellerWithMultiAssetSupport__TransferDenied","type":"error"},{"inputs":[],"name":"TellerWithMultiAssetSupport__ZeroAssets","type":"error"},{"inputs":[],"name":"TellerWithMultiAssetSupport__ZeroShares","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"}],"name":"AllowFrom","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"}],"name":"AllowOperator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"}],"name":"AllowTo","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"bool","name":"allowDeposits","type":"bool"},{"indexed":false,"internalType":"bool","name":"allowWithdraws","type":"bool"},{"indexed":false,"internalType":"uint16","name":"sharePremium","type":"uint16"}],"name":"AssetDataUpdated","type":"event"},{"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":true,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"uint256","name":"depositAmount","type":"uint256"}],"name":"BulkDeposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"uint256","name":"shareAmount","type":"uint256"}],"name":"BulkWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"}],"name":"DenyFrom","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"}],"name":"DenyOperator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"}],"name":"DenyTo","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"depositAsset","type":"address"},{"indexed":false,"internalType":"uint256","name":"depositAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shareAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"depositTimestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shareLockPeriodAtTimeOfDeposit","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"depositHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"user","type":"address"}],"name":"DepositRefunded","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":[],"name":"Unpaused","type":"event"},{"inputs":[],"name":"accountant","outputs":[{"internalType":"contract AccountantWithRateProviders","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"allowAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"allowFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"allowOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"allowTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"name":"assetData","outputs":[{"internalType":"bool","name":"allowDeposits","type":"bool"},{"internalType":"bool","name":"allowWithdraws","type":"bool"},{"internalType":"uint16","name":"sharePremium","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"authority","outputs":[{"internalType":"contract Authority","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"beforeTransfer","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"depositAsset","type":"address"},{"internalType":"uint256","name":"depositAmount","type":"uint256"},{"internalType":"uint256","name":"minimumMint","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"bulkDeposit","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"withdrawAsset","type":"address"},{"internalType":"uint256","name":"shareAmount","type":"uint256"},{"internalType":"uint256","name":"minimumAssets","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"bulkWithdraw","outputs":[{"internalType":"uint256","name":"assetsOut","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"denyAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"denyFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"denyOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"denyTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"depositAsset","type":"address"},{"internalType":"uint256","name":"depositAmount","type":"uint256"},{"internalType":"uint256","name":"minimumMint","type":"uint256"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"depositNonce","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"depositAsset","type":"address"},{"internalType":"uint256","name":"depositAmount","type":"uint256"},{"internalType":"uint256","name":"minimumMint","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"depositWithPermit","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"fromDenyList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nativeWrapper","outputs":[{"internalType":"contract WETH","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"operatorDenyList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"","type":"uint256"}],"name":"publicDepositHistory","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"depositAsset","type":"address"},{"internalType":"uint256","name":"depositAmount","type":"uint256"},{"internalType":"uint256","name":"shareAmount","type":"uint256"},{"internalType":"uint256","name":"depositTimestamp","type":"uint256"},{"internalType":"uint256","name":"shareLockUpPeriodAtTimeOfDeposit","type":"uint256"}],"name":"refundDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Authority","name":"newAuthority","type":"address"}],"name":"setAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_shareLockPeriod","type":"uint64"}],"name":"setShareLockPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shareLockPeriod","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"shareUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"toDenyList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"contract ERC20","name":"asset","type":"address"},{"internalType":"bool","name":"allowDeposits","type":"bool"},{"internalType":"bool","name":"allowWithdraws","type":"bool"},{"internalType":"uint16","name":"sharePremium","type":"uint16"}],"name":"updateAssetData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"contract BoringVault","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
61010060405260016002819055600480546001600160601b03191690911790553480156200002b575f80fd5b5060405162002991380380620029918339810160408190526200004e9162000190565b5f80546001600160a01b0386166001600160a01b031991821681178355600180549092169091556040518692919033907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908490a36040516001600160a01b0382169033907fa3396fd7f6e0a21b50e5089d2da70d5ac0a3bbbd1f617a93f134b76389980198905f90a350506001600160a01b03831660808190526040805163313ce56760e01b8152905163313ce567916004808201926020929091908290030181865afa15801562000123573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001499190620001ea565b6200015690600a62000322565b60c0526001600160a01b0391821660a0521660e05250620003329050565b80516001600160a01b03811681146200018b575f80fd5b919050565b5f805f8060808587031215620001a4575f80fd5b620001af8562000174565b9350620001bf6020860162000174565b9250620001cf6040860162000174565b9150620001df6060860162000174565b905092959194509250565b5f60208284031215620001fb575f80fd5b815160ff811681146200020c575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200026757815f19048211156200024b576200024b62000213565b808516156200025957918102915b93841c93908002906200022c565b509250929050565b5f826200027f575060016200031c565b816200028d57505f6200031c565b8160018114620002a65760028114620002b157620002d1565b60019150506200031c565b60ff841115620002c557620002c562000213565b50506001821b6200031c565b5060208310610133831016604e8410600b8410161715620002f6575081810a6200031c565b62000302838362000227565b805f190482111562000318576200031862000213565b0290505b92915050565b5f6200020c60ff8416836200026f565b60805160a05160c05160e0516125b4620003dd5f395f81816102490152818161086f015281816108f101528181610a2001528181610aad015261159301525f8181610921015281816112ff0152611f0d01525f81816104a001528181610944015281816112900152611f2f01525f818161070c01528181610a4201528181610a7e01528181611006015281816110a60152818161135d015281816115cd015261201401526125b45ff3fe6080604052600436106101f1575f3560e01c80635f45bac811610108578063a924bf611161009d578063c29d2f101161006d578063c29d2f1014610658578063de35f5cb14610677578063f07f287d146106ae578063f2fde38b146106dc578063fbfa77cf146106fb575f80fd5b8063a924bf61146105db578063abd626b0146105fa578063b187bd2614610619578063bf7e214f14610639575f80fd5b80638dfd8ba1116100d85780638dfd8ba1146105325780639a94d3d0146105515780639d5744201461057c5780639fdb11b61461059b575f80fd5b80635f45bac8146104c25780637a9e5e4b146104e15780638456cb59146105005780638da5cb5b14610514575f80fd5b806326a64b40116101895780633e64ce99116101595780633e64ce99146103d85780633f4ba83a146103f757806341fee44a1461040b57806346b563f4146104705780634fb3ccc51461048f575f80fd5b806326a64b401461034d5780632c524c421461037b5780633b5754071461039a5780633d935d9e146103b9575f80fd5b80631899ea81116101c45780631899ea81146102c557806318aed921146102f05780631b62636c1461030f5780631ba9a4581461032e575f80fd5b806304ded84a146101f55780630b48a8b8146102385780630efe6a8b1461028357806312056e2d146102a4575b5f80fd5b348015610200575f80fd5b5061022361020f3660046121d7565b60086020525f908152604090205460ff1681565b60405190151581526020015b60405180910390f35b348015610243575f80fd5b5061026b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161022f565b6102966102913660046121f9565b61072e565b60405190815260200161022f565b3480156102af575f80fd5b506102c36102be36600461222b565b610b76565b005b3480156102d0575f80fd5b506102966102df3660046121d7565b60066020525f908152604090205481565b3480156102fb575f80fd5b506102c361030a3660046121d7565b610c03565b34801561031a575f80fd5b506102c36103293660046121d7565b610d0b565b348015610339575f80fd5b506102c36103483660046121d7565b610d87565b348015610358575f80fd5b506102236103673660046121d7565b60076020525f908152604090205460ff1681565b348015610386575f80fd5b506102c36103953660046121d7565b610e00565b3480156103a5575f80fd5b506102c36103b43660046121d7565b610e7c565b3480156103c4575f80fd5b506102966103d3366004612252565b610ef8565b3480156103e3575f80fd5b506102966103f23660046122ba565b611186565b348015610402575f80fd5b506102c3611413565b348015610416575f80fd5b5061044f6104253660046121d7565b60036020525f908152604090205460ff8082169161010081049091169062010000900461ffff1683565b604080519315158452911515602084015261ffff169082015260600161022f565b34801561047b575f80fd5b506102c361048a366004612301565b61147b565b34801561049a575f80fd5b5061026b7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104cd575f80fd5b506102c36104dc3660046121d7565b611685565b3480156104ec575f80fd5b506102c36104fb3660046121d7565b6116fe565b34801561050b575f80fd5b506102c36117e2565b34801561051f575f80fd5b505f5461026b906001600160a01b031681565b34801561053d575f80fd5b506102c361054c36600461236e565b611850565b34801561055c575f80fd5b5061029661056b3660046123c2565b60056020525f908152604090205481565b348015610587575f80fd5b506102966105963660046122ba565b611969565b3480156105a6575f80fd5b506004546105c290600160601b900467ffffffffffffffff1681565b60405167ffffffffffffffff909116815260200161022f565b3480156105e6575f80fd5b506102c36105f53660046121d7565b611aba565b348015610605575f80fd5b506102c36106143660046123d9565b611b33565b348015610624575f80fd5b5060045461022390600160a01b900460ff1681565b348015610644575f80fd5b5060015461026b906001600160a01b031681565b348015610663575f80fd5b506102c36106723660046121d7565b611c08565b348015610682575f80fd5b50600454610696906001600160601b031681565b6040516001600160601b03909116815260200161022f565b3480156106b9575f80fd5b506102236106c83660046121d7565b60096020525f908152604090205460ff1681565b3480156106e7575f80fd5b506102c36106f63660046121d7565b611d09565b348015610706575f80fd5b5061026b7f000000000000000000000000000000000000000000000000000000000000000081565b5f610744335f356001600160e01b031916611d84565b6107695760405162461bcd60e51b815260040161076090612421565b60405180910390fd5b60025460011461078b5760405162461bcd60e51b815260040161076090612447565b60028055600454600160a01b900460ff16156107ba5760405163e0f9e71d60e01b815260040160405180910390fd5b6001600160a01b0384165f908152600360209081526040918290208251606081018452905460ff8082161515808452610100830490911615159383019390935262010000900461ffff16928101929092526108285760405163645fd19f60e11b815260040160405180910390fd5b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeed196001600160a01b03861601610b0d57345f0361086d5760405163259be69560e11b815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004015f604051808303818588803b1580156108c6575f80fd5b505af11580156108d8573d5f803e3d5ffd5b5050604051634104b9ed60e11b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301523498506109b694507f000000000000000000000000000000000000000000000000000000000000000093507f000000000000000000000000000000000000000000000000000000000000000016915063820973da90602401602060405180830381865afa15801561098a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109ae919061246b565b869190611e2c565b91505f816040015161ffff16116109cd57816109f0565b6109f081604001516127106109e29190612496565b839061ffff16612710611e2c565b915082821015610a135760405163097b2ad560e31b815260040160405180910390fd5b610a676001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000167f000000000000000000000000000000000000000000000000000000000000000086611e47565b604051631ceb5d1960e11b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906339d6ba3290610adb9030907f0000000000000000000000000000000000000000000000000000000000000000908990339089906004016124b8565b5f604051808303815f87803b158015610af2575f80fd5b505af1158015610b04573d5f803e3d5ffd5b50505050610b3c565b3415610b2c57604051631cf02cf960e21b815260040160405180910390fd5b610b398585853385611ec9565b91505b610b69338686856004600c9054906101000a900467ffffffffffffffff1667ffffffffffffffff16612087565b5060016002559392505050565b610b8b335f356001600160e01b031916611d84565b610ba75760405162461bcd60e51b815260040161076090612421565b6203f4808167ffffffffffffffff161115610bd557604051631fac010160e21b815260040160405180910390fd5b6004805467ffffffffffffffff909216600160601b0267ffffffffffffffff60601b19909216919091179055565b610c18335f356001600160e01b031916611d84565b610c345760405162461bcd60e51b815260040161076090612421565b6001600160a01b0381165f8181526007602090815260408083208054600160ff1991821681179092556008845282852080548216831790556009909352818420805490931617909155517fd658022b1a3aaf6ad3b3c615253712807f21a8f7bc3e4996e10618175d4afb2b9190a26040516001600160a01b038216907f79fc685a7dbabb75a67df5e69a90602cef1f19bc465b060eab1ac56685e04a13905f90a26040516001600160a01b038216907f3afb02134e37f7205acf470adc2fc4ebb70614b1599a602d069790915380e2aa905f90a250565b610d20335f356001600160e01b031916611d84565b610d3c5760405162461bcd60e51b815260040161076090612421565b6001600160a01b0381165f81815260096020526040808220805460ff19166001179055517f3afb02134e37f7205acf470adc2fc4ebb70614b1599a602d069790915380e2aa9190a250565b610d9c335f356001600160e01b031916611d84565b610db85760405162461bcd60e51b815260040161076090612421565b6001600160a01b0381165f81815260096020526040808220805460ff19169055517f77cb944c14da76928795279d1519ce9150085a06e0a53c61d5a86fc4e0fd57c69190a250565b610e15335f356001600160e01b031916611d84565b610e315760405162461bcd60e51b815260040161076090612421565b6001600160a01b0381165f81815260076020526040808220805460ff19166001179055517fd658022b1a3aaf6ad3b3c615253712807f21a8f7bc3e4996e10618175d4afb2b9190a250565b610e91335f356001600160e01b031916611d84565b610ead5760405162461bcd60e51b815260040161076090612421565b6001600160a01b0381165f81815260086020526040808220805460ff19166001179055517f79fc685a7dbabb75a67df5e69a90602cef1f19bc465b060eab1ac56685e04a139190a250565b5f610f0e335f356001600160e01b031916611d84565b610f2a5760405162461bcd60e51b815260040161076090612421565b600254600114610f4c5760405162461bcd60e51b815260040161076090612447565b60028055600454600160a01b900460ff1615610f7b5760405163e0f9e71d60e01b815260040160405180910390fd5b6001600160a01b0388165f908152600360209081526040918290208251606081018452905460ff8082161515808452610100830490911615159383019390935262010000900461ffff1692810192909252610fe95760405163645fd19f60e11b815260040160405180910390fd5b60405163d505accf60e01b81523360048201526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166024830152604482018a90526064820188905260ff8716608483015260a4820186905260c482018590528a169063d505accf9060e4015f604051808303815f87803b158015611074575f80fd5b505af1925050508015611085575060015b61113957604051636eb1769f60e11b81523360048201526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660248301528991908b169063dd62ed3e90604401602060405180830381865afa1580156110f6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061111a919061246b565b1015611139576040516301b8851f60e41b815260040160405180910390fd5b6111468989893385611ec9565b9150611175338a8a856004600c9054906101000a900467ffffffffffffffff1667ffffffffffffffff16612087565b506001600255979650505050505050565b5f61119c335f356001600160e01b031916611d84565b6111b85760405162461bcd60e51b815260040161076090612421565b600454600160a01b900460ff16156111e35760405163e0f9e71d60e01b815260040160405180910390fd5b6001600160a01b0385165f908152600360209081526040918290208251606081018452905460ff80821615158352610100820416151592820183905262010000900461ffff169281019290925261124d5760405163645fd19f60e11b815260040160405180910390fd5b845f0361126d57604051630ea3153160e21b815260040160405180910390fd5b604051634104b9ed60e11b81526001600160a01b038781166004830152611323917f00000000000000000000000000000000000000000000000000000000000000009091169063820973da90602401602060405180830381865afa1580156112d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112fb919061246b565b86907f0000000000000000000000000000000000000000000000000000000000000000611e2c565b915083821015611346576040516302620f6160e61b815260040160405180910390fd5b6040516318457e6160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906318457e619061139a9086908a90879033908c906004016124b8565b5f604051808303815f87803b1580156113b1575f80fd5b505af11580156113c3573d5f803e3d5ffd5b50505050856001600160a01b03167fdcc60b41ff1c604459e6aa4a7299817416b19fc586a392f111646e26597c4af98660405161140291815260200190565b60405180910390a250949350505050565b611428335f356001600160e01b031916611d84565b6114445760405162461bcd60e51b815260040161076090612421565b6004805460ff60a01b191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d16933905f90a1565b611490335f356001600160e01b031916611d84565b6114ac5760405162461bcd60e51b815260040161076090612421565b806114b783426124eb565b106114d557604051634c1eef1760e11b815260040160405180910390fd5b604080516001600160a01b038089166020830152871691810191909152606081018590526080810184905260a0810183905260c081018290525f9060e00160408051601f1981840301815291815281516020928301205f8b8152600590935291205490915081146115595760405163fa174ecb60e01b815260040160405180910390fd5b5f888152600560205260408120556001600160a01b03861673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1461159157856115b3565b7f00000000000000000000000000000000000000000000000000000000000000005b6040516318457e6160e01b81529096506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906318457e619061160a908a908a908a9083908b906004016124b8565b5f604051808303815f87803b158015611621575f80fd5b505af1158015611633573d5f803e3d5ffd5b50505050866001600160a01b0316887faf98ea774275cadfa3e477a7b52cba03e01197445a76bd5d0d561608708c36248360405161167391815260200190565b60405180910390a35050505050505050565b61169a335f356001600160e01b031916611d84565b6116b65760405162461bcd60e51b815260040161076090612421565b6001600160a01b0381165f81815260086020526040808220805460ff19169055517f039bcf51833310242b8b7c6aa0fbabf1bf2b5e5270807ee020f1920ef200666b9190a250565b5f546001600160a01b031633148061178f575060015460405163b700961360e01b81526001600160a01b039091169063b70096139061175090339030906001600160e01b03195f3516906004016124fe565b602060405180830381865afa15801561176b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061178f919061252b565b611797575f80fd5b600180546001600160a01b0319166001600160a01b03831690811790915560405133907fa3396fd7f6e0a21b50e5089d2da70d5ac0a3bbbd1f617a93f134b76389980198905f90a350565b6117f7335f356001600160e01b031916611d84565b6118135760405162461bcd60e51b815260040161076090612421565b6004805460ff60a01b1916600160a01b1790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e752905f90a1565b611865335f356001600160e01b031916611d84565b6118815760405162461bcd60e51b815260040161076090612421565b6103e861ffff821611156118a857604051636c5cde8760e01b815260040160405180910390fd5b6040805160608082018352851515808352851515602080850182815261ffff8881168789018181526001600160a01b038e165f818152600387528b902099518a549551925161ffff1990961690151561ff00191617610100921515929092029190911763ffff0000191662010000949093169390930291909117909655865193845290830191909152938101929092527fe08301321781ac43935a2099b2c3fd42de0a0ee87a519cac00e8c9cecd26ff12910160405180910390a250505050565b5f61197f335f356001600160e01b031916611d84565b61199b5760405162461bcd60e51b815260040161076090612421565b6002546001146119bd5760405162461bcd60e51b815260040161076090612447565b60028055600454600160a01b900460ff16156119ec5760405163e0f9e71d60e01b815260040160405180910390fd5b6001600160a01b0385165f908152600360209081526040918290208251606081018452905460ff8082161515808452610100830490911615159383019390935262010000900461ffff1692810192909252611a5a5760405163645fd19f60e11b815260040160405180910390fd5b611a678686868685611ec9565b9150856001600160a01b03167f6f9b974223f85a1ae805c33b8b519039e2435481d949db1110de151a94d587af86604051611aa491815260200190565b60405180910390a2506001600255949350505050565b611acf335f356001600160e01b031916611d84565b611aeb5760405162461bcd60e51b815260040161076090612421565b6001600160a01b0381165f81815260076020526040808220805460ff19169055517fae893dda71e2eee548f8291f458cceae4bd22b56a79906928591e4420444c0e99190a250565b6001600160a01b0383165f9081526007602052604090205460ff1680611b7057506001600160a01b0382165f9081526008602052604090205460ff165b80611b9257506001600160a01b0381165f9081526009602052604090205460ff165b15611bcb57604051632821264f60e01b81526001600160a01b038085166004830152808416602483015282166044820152606401610760565b6001600160a01b0383165f90815260066020526040902054421015611c035760405163f64059db60e01b815260040160405180910390fd5b505050565b611c1d335f356001600160e01b031916611d84565b611c395760405162461bcd60e51b815260040161076090612421565b6001600160a01b0381165f818152600760209081526040808320805460ff199081169091556008835281842080548216905560099092528083208054909216909155517fae893dda71e2eee548f8291f458cceae4bd22b56a79906928591e4420444c0e99190a26040516001600160a01b038216907f039bcf51833310242b8b7c6aa0fbabf1bf2b5e5270807ee020f1920ef200666b905f90a26040516001600160a01b038216907f77cb944c14da76928795279d1519ce9150085a06e0a53c61d5a86fc4e0fd57c6905f90a250565b611d1e335f356001600160e01b031916611d84565b611d3a5760405162461bcd60e51b815260040161076090612421565b5f80546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b6001545f906001600160a01b03168015801590611e0b575060405163b700961360e01b81526001600160a01b0382169063b700961390611dcc908790309088906004016124fe565b602060405180830381865afa158015611de7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e0b919061252b565b80611e2257505f546001600160a01b038581169116145b9150505b92915050565b5f825f190484118302158202611e40575f80fd5b5091020490565b5f60405163095ea7b360e01b81526001600160a01b038416600482015282602482015260205f6044835f895af13d15601f3d1160015f511416171691505080611ec35760405162461bcd60e51b815260206004820152600e60248201526d1054141493d59157d1905253115160921b6044820152606401610760565b50505050565b5f845f03611eea5760405163259be69560e11b815260040160405180910390fd5b604051634104b9ed60e11b81526001600160a01b038781166004830152611fa0917f0000000000000000000000000000000000000000000000000000000000000000917f0000000000000000000000000000000000000000000000000000000000000000169063820973da90602401602060405180830381865afa158015611f74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f98919061246b565b879190611e2c565b90505f826040015161ffff1611611fb75780611fda565b611fda8260400151612710611fcc9190612496565b829061ffff16612710611e2c565b905083811015611ffd5760405163097b2ad560e31b815260040160405180910390fd5b604051631ceb5d1960e11b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906339d6ba32906120519033908a908a90899088906004016124b8565b5f604051808303815f87803b158015612068575f80fd5b505af115801561207a573d5f803e3d5ffd5b5050505095945050505050565b6120918142612546565b6001600160a01b038681165f81815260066020908152604091829020949094556004548151948501929092529187169183019190915260608201859052608082018490524260a083015260c082018390526001600160601b03169060e00160408051601f1981840301815291815281516020928301205f848152600590935290822055600480546001600160601b03169161212b83612559565b91906101000a8154816001600160601b0302191690836001600160601b0316021790555050846001600160a01b0316866001600160a01b0316827fe96d7872363f475d18b2f5390caaa5eaa96b2d38e42c62afe4ac08ebd2b13c3a878742886040516121b0949392919093845260208401929092526040830152606082015260800190565b60405180910390a4505050505050565b6001600160a01b03811681146121d4575f80fd5b50565b5f602082840312156121e7575f80fd5b81356121f2816121c0565b9392505050565b5f805f6060848603121561220b575f80fd5b8335612216816121c0565b95602085013595506040909401359392505050565b5f6020828403121561223b575f80fd5b813567ffffffffffffffff811681146121f2575f80fd5b5f805f805f805f60e0888a031215612268575f80fd5b8735612273816121c0565b9650602088013595506040880135945060608801359350608088013560ff8116811461229d575f80fd5b9699959850939692959460a0840135945060c09093013592915050565b5f805f80608085870312156122cd575f80fd5b84356122d8816121c0565b9350602085013592506040850135915060608501356122f6816121c0565b939692955090935050565b5f805f805f805f60e0888a031215612317575f80fd5b873596506020880135612329816121c0565b95506040880135612339816121c0565b969995985095966060810135965060808101359560a0820135955060c0909101359350915050565b80151581146121d4575f80fd5b5f805f8060808587031215612381575f80fd5b843561238c816121c0565b9350602085013561239c81612361565b925060408501356123ac81612361565b9150606085013561ffff811681146122f6575f80fd5b5f602082840312156123d2575f80fd5b5035919050565b5f805f606084860312156123eb575f80fd5b83356123f6816121c0565b92506020840135612406816121c0565b91506040840135612416816121c0565b809150509250925092565b6020808252600c908201526b15539055551213d49256915160a21b604082015260600190565b6020808252600a90820152695245454e5452414e435960b01b604082015260600190565b5f6020828403121561247b575f80fd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b61ffff8281168282160390808211156124b1576124b1612482565b5092915050565b6001600160a01b039586168152938516602085015260408401929092529092166060820152608081019190915260a00190565b81810381811115611e2657611e26612482565b6001600160a01b0393841681529190921660208201526001600160e01b0319909116604082015260600190565b5f6020828403121561253b575f80fd5b81516121f281612361565b80820180821115611e2657611e26612482565b5f6001600160601b0380831681810361257457612574612482565b600101939250505056fea2646970667358221220af918269a8fdf3f4c1d5cfc3d24ad0aaf22546ce1a97e3f1d6992f37a58e659364736f6c634300081500330000000000000000000000000463e60c7ce10e57911ab7bd1667eaa21de3e79b000000000000000000000000657e8c867d8b37dcc18fa4caead9c45eb088c6420000000000000000000000001b293dc39f94157fa0d1d36d7e0090c8b8b8c13f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Deployed Bytecode
0x6080604052600436106101f1575f3560e01c80635f45bac811610108578063a924bf611161009d578063c29d2f101161006d578063c29d2f1014610658578063de35f5cb14610677578063f07f287d146106ae578063f2fde38b146106dc578063fbfa77cf146106fb575f80fd5b8063a924bf61146105db578063abd626b0146105fa578063b187bd2614610619578063bf7e214f14610639575f80fd5b80638dfd8ba1116100d85780638dfd8ba1146105325780639a94d3d0146105515780639d5744201461057c5780639fdb11b61461059b575f80fd5b80635f45bac8146104c25780637a9e5e4b146104e15780638456cb59146105005780638da5cb5b14610514575f80fd5b806326a64b40116101895780633e64ce99116101595780633e64ce99146103d85780633f4ba83a146103f757806341fee44a1461040b57806346b563f4146104705780634fb3ccc51461048f575f80fd5b806326a64b401461034d5780632c524c421461037b5780633b5754071461039a5780633d935d9e146103b9575f80fd5b80631899ea81116101c45780631899ea81146102c557806318aed921146102f05780631b62636c1461030f5780631ba9a4581461032e575f80fd5b806304ded84a146101f55780630b48a8b8146102385780630efe6a8b1461028357806312056e2d146102a4575b5f80fd5b348015610200575f80fd5b5061022361020f3660046121d7565b60086020525f908152604090205460ff1681565b60405190151581526020015b60405180910390f35b348015610243575f80fd5b5061026b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6040516001600160a01b03909116815260200161022f565b6102966102913660046121f9565b61072e565b60405190815260200161022f565b3480156102af575f80fd5b506102c36102be36600461222b565b610b76565b005b3480156102d0575f80fd5b506102966102df3660046121d7565b60066020525f908152604090205481565b3480156102fb575f80fd5b506102c361030a3660046121d7565b610c03565b34801561031a575f80fd5b506102c36103293660046121d7565b610d0b565b348015610339575f80fd5b506102c36103483660046121d7565b610d87565b348015610358575f80fd5b506102236103673660046121d7565b60076020525f908152604090205460ff1681565b348015610386575f80fd5b506102c36103953660046121d7565b610e00565b3480156103a5575f80fd5b506102c36103b43660046121d7565b610e7c565b3480156103c4575f80fd5b506102966103d3366004612252565b610ef8565b3480156103e3575f80fd5b506102966103f23660046122ba565b611186565b348015610402575f80fd5b506102c3611413565b348015610416575f80fd5b5061044f6104253660046121d7565b60036020525f908152604090205460ff8082169161010081049091169062010000900461ffff1683565b604080519315158452911515602084015261ffff169082015260600161022f565b34801561047b575f80fd5b506102c361048a366004612301565b61147b565b34801561049a575f80fd5b5061026b7f0000000000000000000000001b293dc39f94157fa0d1d36d7e0090c8b8b8c13f81565b3480156104cd575f80fd5b506102c36104dc3660046121d7565b611685565b3480156104ec575f80fd5b506102c36104fb3660046121d7565b6116fe565b34801561050b575f80fd5b506102c36117e2565b34801561051f575f80fd5b505f5461026b906001600160a01b031681565b34801561053d575f80fd5b506102c361054c36600461236e565b611850565b34801561055c575f80fd5b5061029661056b3660046123c2565b60056020525f908152604090205481565b348015610587575f80fd5b506102966105963660046122ba565b611969565b3480156105a6575f80fd5b506004546105c290600160601b900467ffffffffffffffff1681565b60405167ffffffffffffffff909116815260200161022f565b3480156105e6575f80fd5b506102c36105f53660046121d7565b611aba565b348015610605575f80fd5b506102c36106143660046123d9565b611b33565b348015610624575f80fd5b5060045461022390600160a01b900460ff1681565b348015610644575f80fd5b5060015461026b906001600160a01b031681565b348015610663575f80fd5b506102c36106723660046121d7565b611c08565b348015610682575f80fd5b50600454610696906001600160601b031681565b6040516001600160601b03909116815260200161022f565b3480156106b9575f80fd5b506102236106c83660046121d7565b60096020525f908152604090205460ff1681565b3480156106e7575f80fd5b506102c36106f63660046121d7565b611d09565b348015610706575f80fd5b5061026b7f000000000000000000000000657e8c867d8b37dcc18fa4caead9c45eb088c64281565b5f610744335f356001600160e01b031916611d84565b6107695760405162461bcd60e51b815260040161076090612421565b60405180910390fd5b60025460011461078b5760405162461bcd60e51b815260040161076090612447565b60028055600454600160a01b900460ff16156107ba5760405163e0f9e71d60e01b815260040160405180910390fd5b6001600160a01b0384165f908152600360209081526040918290208251606081018452905460ff8082161515808452610100830490911615159383019390935262010000900461ffff16928101929092526108285760405163645fd19f60e11b815260040160405180910390fd5b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeed196001600160a01b03861601610b0d57345f0361086d5760405163259be69560e11b815260040160405180910390fd5b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004015f604051808303818588803b1580156108c6575f80fd5b505af11580156108d8573d5f803e3d5ffd5b5050604051634104b9ed60e11b81526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2811660048301523498506109b694507f0000000000000000000000000000000000000000000000000000000005f5e10093507f0000000000000000000000001b293dc39f94157fa0d1d36d7e0090c8b8b8c13f16915063820973da90602401602060405180830381865afa15801561098a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109ae919061246b565b869190611e2c565b91505f816040015161ffff16116109cd57816109f0565b6109f081604001516127106109e29190612496565b839061ffff16612710611e2c565b915082821015610a135760405163097b2ad560e31b815260040160405180910390fd5b610a676001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2167f000000000000000000000000657e8c867d8b37dcc18fa4caead9c45eb088c64286611e47565b604051631ceb5d1960e11b81526001600160a01b037f000000000000000000000000657e8c867d8b37dcc18fa4caead9c45eb088c64216906339d6ba3290610adb9030907f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2908990339089906004016124b8565b5f604051808303815f87803b158015610af2575f80fd5b505af1158015610b04573d5f803e3d5ffd5b50505050610b3c565b3415610b2c57604051631cf02cf960e21b815260040160405180910390fd5b610b398585853385611ec9565b91505b610b69338686856004600c9054906101000a900467ffffffffffffffff1667ffffffffffffffff16612087565b5060016002559392505050565b610b8b335f356001600160e01b031916611d84565b610ba75760405162461bcd60e51b815260040161076090612421565b6203f4808167ffffffffffffffff161115610bd557604051631fac010160e21b815260040160405180910390fd5b6004805467ffffffffffffffff909216600160601b0267ffffffffffffffff60601b19909216919091179055565b610c18335f356001600160e01b031916611d84565b610c345760405162461bcd60e51b815260040161076090612421565b6001600160a01b0381165f8181526007602090815260408083208054600160ff1991821681179092556008845282852080548216831790556009909352818420805490931617909155517fd658022b1a3aaf6ad3b3c615253712807f21a8f7bc3e4996e10618175d4afb2b9190a26040516001600160a01b038216907f79fc685a7dbabb75a67df5e69a90602cef1f19bc465b060eab1ac56685e04a13905f90a26040516001600160a01b038216907f3afb02134e37f7205acf470adc2fc4ebb70614b1599a602d069790915380e2aa905f90a250565b610d20335f356001600160e01b031916611d84565b610d3c5760405162461bcd60e51b815260040161076090612421565b6001600160a01b0381165f81815260096020526040808220805460ff19166001179055517f3afb02134e37f7205acf470adc2fc4ebb70614b1599a602d069790915380e2aa9190a250565b610d9c335f356001600160e01b031916611d84565b610db85760405162461bcd60e51b815260040161076090612421565b6001600160a01b0381165f81815260096020526040808220805460ff19169055517f77cb944c14da76928795279d1519ce9150085a06e0a53c61d5a86fc4e0fd57c69190a250565b610e15335f356001600160e01b031916611d84565b610e315760405162461bcd60e51b815260040161076090612421565b6001600160a01b0381165f81815260076020526040808220805460ff19166001179055517fd658022b1a3aaf6ad3b3c615253712807f21a8f7bc3e4996e10618175d4afb2b9190a250565b610e91335f356001600160e01b031916611d84565b610ead5760405162461bcd60e51b815260040161076090612421565b6001600160a01b0381165f81815260086020526040808220805460ff19166001179055517f79fc685a7dbabb75a67df5e69a90602cef1f19bc465b060eab1ac56685e04a139190a250565b5f610f0e335f356001600160e01b031916611d84565b610f2a5760405162461bcd60e51b815260040161076090612421565b600254600114610f4c5760405162461bcd60e51b815260040161076090612447565b60028055600454600160a01b900460ff1615610f7b5760405163e0f9e71d60e01b815260040160405180910390fd5b6001600160a01b0388165f908152600360209081526040918290208251606081018452905460ff8082161515808452610100830490911615159383019390935262010000900461ffff1692810192909252610fe95760405163645fd19f60e11b815260040160405180910390fd5b60405163d505accf60e01b81523360048201526001600160a01b037f000000000000000000000000657e8c867d8b37dcc18fa4caead9c45eb088c64281166024830152604482018a90526064820188905260ff8716608483015260a4820186905260c482018590528a169063d505accf9060e4015f604051808303815f87803b158015611074575f80fd5b505af1925050508015611085575060015b61113957604051636eb1769f60e11b81523360048201526001600160a01b037f000000000000000000000000657e8c867d8b37dcc18fa4caead9c45eb088c642811660248301528991908b169063dd62ed3e90604401602060405180830381865afa1580156110f6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061111a919061246b565b1015611139576040516301b8851f60e41b815260040160405180910390fd5b6111468989893385611ec9565b9150611175338a8a856004600c9054906101000a900467ffffffffffffffff1667ffffffffffffffff16612087565b506001600255979650505050505050565b5f61119c335f356001600160e01b031916611d84565b6111b85760405162461bcd60e51b815260040161076090612421565b600454600160a01b900460ff16156111e35760405163e0f9e71d60e01b815260040160405180910390fd5b6001600160a01b0385165f908152600360209081526040918290208251606081018452905460ff80821615158352610100820416151592820183905262010000900461ffff169281019290925261124d5760405163645fd19f60e11b815260040160405180910390fd5b845f0361126d57604051630ea3153160e21b815260040160405180910390fd5b604051634104b9ed60e11b81526001600160a01b038781166004830152611323917f0000000000000000000000001b293dc39f94157fa0d1d36d7e0090c8b8b8c13f9091169063820973da90602401602060405180830381865afa1580156112d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112fb919061246b565b86907f0000000000000000000000000000000000000000000000000000000005f5e100611e2c565b915083821015611346576040516302620f6160e61b815260040160405180910390fd5b6040516318457e6160e01b81526001600160a01b037f000000000000000000000000657e8c867d8b37dcc18fa4caead9c45eb088c64216906318457e619061139a9086908a90879033908c906004016124b8565b5f604051808303815f87803b1580156113b1575f80fd5b505af11580156113c3573d5f803e3d5ffd5b50505050856001600160a01b03167fdcc60b41ff1c604459e6aa4a7299817416b19fc586a392f111646e26597c4af98660405161140291815260200190565b60405180910390a250949350505050565b611428335f356001600160e01b031916611d84565b6114445760405162461bcd60e51b815260040161076090612421565b6004805460ff60a01b191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d16933905f90a1565b611490335f356001600160e01b031916611d84565b6114ac5760405162461bcd60e51b815260040161076090612421565b806114b783426124eb565b106114d557604051634c1eef1760e11b815260040160405180910390fd5b604080516001600160a01b038089166020830152871691810191909152606081018590526080810184905260a0810183905260c081018290525f9060e00160408051601f1981840301815291815281516020928301205f8b8152600590935291205490915081146115595760405163fa174ecb60e01b815260040160405180910390fd5b5f888152600560205260408120556001600160a01b03861673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1461159157856115b3565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc25b6040516318457e6160e01b81529096506001600160a01b037f000000000000000000000000657e8c867d8b37dcc18fa4caead9c45eb088c64216906318457e619061160a908a908a908a9083908b906004016124b8565b5f604051808303815f87803b158015611621575f80fd5b505af1158015611633573d5f803e3d5ffd5b50505050866001600160a01b0316887faf98ea774275cadfa3e477a7b52cba03e01197445a76bd5d0d561608708c36248360405161167391815260200190565b60405180910390a35050505050505050565b61169a335f356001600160e01b031916611d84565b6116b65760405162461bcd60e51b815260040161076090612421565b6001600160a01b0381165f81815260086020526040808220805460ff19169055517f039bcf51833310242b8b7c6aa0fbabf1bf2b5e5270807ee020f1920ef200666b9190a250565b5f546001600160a01b031633148061178f575060015460405163b700961360e01b81526001600160a01b039091169063b70096139061175090339030906001600160e01b03195f3516906004016124fe565b602060405180830381865afa15801561176b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061178f919061252b565b611797575f80fd5b600180546001600160a01b0319166001600160a01b03831690811790915560405133907fa3396fd7f6e0a21b50e5089d2da70d5ac0a3bbbd1f617a93f134b76389980198905f90a350565b6117f7335f356001600160e01b031916611d84565b6118135760405162461bcd60e51b815260040161076090612421565b6004805460ff60a01b1916600160a01b1790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e752905f90a1565b611865335f356001600160e01b031916611d84565b6118815760405162461bcd60e51b815260040161076090612421565b6103e861ffff821611156118a857604051636c5cde8760e01b815260040160405180910390fd5b6040805160608082018352851515808352851515602080850182815261ffff8881168789018181526001600160a01b038e165f818152600387528b902099518a549551925161ffff1990961690151561ff00191617610100921515929092029190911763ffff0000191662010000949093169390930291909117909655865193845290830191909152938101929092527fe08301321781ac43935a2099b2c3fd42de0a0ee87a519cac00e8c9cecd26ff12910160405180910390a250505050565b5f61197f335f356001600160e01b031916611d84565b61199b5760405162461bcd60e51b815260040161076090612421565b6002546001146119bd5760405162461bcd60e51b815260040161076090612447565b60028055600454600160a01b900460ff16156119ec5760405163e0f9e71d60e01b815260040160405180910390fd5b6001600160a01b0385165f908152600360209081526040918290208251606081018452905460ff8082161515808452610100830490911615159383019390935262010000900461ffff1692810192909252611a5a5760405163645fd19f60e11b815260040160405180910390fd5b611a678686868685611ec9565b9150856001600160a01b03167f6f9b974223f85a1ae805c33b8b519039e2435481d949db1110de151a94d587af86604051611aa491815260200190565b60405180910390a2506001600255949350505050565b611acf335f356001600160e01b031916611d84565b611aeb5760405162461bcd60e51b815260040161076090612421565b6001600160a01b0381165f81815260076020526040808220805460ff19169055517fae893dda71e2eee548f8291f458cceae4bd22b56a79906928591e4420444c0e99190a250565b6001600160a01b0383165f9081526007602052604090205460ff1680611b7057506001600160a01b0382165f9081526008602052604090205460ff165b80611b9257506001600160a01b0381165f9081526009602052604090205460ff165b15611bcb57604051632821264f60e01b81526001600160a01b038085166004830152808416602483015282166044820152606401610760565b6001600160a01b0383165f90815260066020526040902054421015611c035760405163f64059db60e01b815260040160405180910390fd5b505050565b611c1d335f356001600160e01b031916611d84565b611c395760405162461bcd60e51b815260040161076090612421565b6001600160a01b0381165f818152600760209081526040808320805460ff199081169091556008835281842080548216905560099092528083208054909216909155517fae893dda71e2eee548f8291f458cceae4bd22b56a79906928591e4420444c0e99190a26040516001600160a01b038216907f039bcf51833310242b8b7c6aa0fbabf1bf2b5e5270807ee020f1920ef200666b905f90a26040516001600160a01b038216907f77cb944c14da76928795279d1519ce9150085a06e0a53c61d5a86fc4e0fd57c6905f90a250565b611d1e335f356001600160e01b031916611d84565b611d3a5760405162461bcd60e51b815260040161076090612421565b5f80546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b6001545f906001600160a01b03168015801590611e0b575060405163b700961360e01b81526001600160a01b0382169063b700961390611dcc908790309088906004016124fe565b602060405180830381865afa158015611de7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e0b919061252b565b80611e2257505f546001600160a01b038581169116145b9150505b92915050565b5f825f190484118302158202611e40575f80fd5b5091020490565b5f60405163095ea7b360e01b81526001600160a01b038416600482015282602482015260205f6044835f895af13d15601f3d1160015f511416171691505080611ec35760405162461bcd60e51b815260206004820152600e60248201526d1054141493d59157d1905253115160921b6044820152606401610760565b50505050565b5f845f03611eea5760405163259be69560e11b815260040160405180910390fd5b604051634104b9ed60e11b81526001600160a01b038781166004830152611fa0917f0000000000000000000000000000000000000000000000000000000005f5e100917f0000000000000000000000001b293dc39f94157fa0d1d36d7e0090c8b8b8c13f169063820973da90602401602060405180830381865afa158015611f74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f98919061246b565b879190611e2c565b90505f826040015161ffff1611611fb75780611fda565b611fda8260400151612710611fcc9190612496565b829061ffff16612710611e2c565b905083811015611ffd5760405163097b2ad560e31b815260040160405180910390fd5b604051631ceb5d1960e11b81526001600160a01b037f000000000000000000000000657e8c867d8b37dcc18fa4caead9c45eb088c64216906339d6ba32906120519033908a908a90899088906004016124b8565b5f604051808303815f87803b158015612068575f80fd5b505af115801561207a573d5f803e3d5ffd5b5050505095945050505050565b6120918142612546565b6001600160a01b038681165f81815260066020908152604091829020949094556004548151948501929092529187169183019190915260608201859052608082018490524260a083015260c082018390526001600160601b03169060e00160408051601f1981840301815291815281516020928301205f848152600590935290822055600480546001600160601b03169161212b83612559565b91906101000a8154816001600160601b0302191690836001600160601b0316021790555050846001600160a01b0316866001600160a01b0316827fe96d7872363f475d18b2f5390caaa5eaa96b2d38e42c62afe4ac08ebd2b13c3a878742886040516121b0949392919093845260208401929092526040830152606082015260800190565b60405180910390a4505050505050565b6001600160a01b03811681146121d4575f80fd5b50565b5f602082840312156121e7575f80fd5b81356121f2816121c0565b9392505050565b5f805f6060848603121561220b575f80fd5b8335612216816121c0565b95602085013595506040909401359392505050565b5f6020828403121561223b575f80fd5b813567ffffffffffffffff811681146121f2575f80fd5b5f805f805f805f60e0888a031215612268575f80fd5b8735612273816121c0565b9650602088013595506040880135945060608801359350608088013560ff8116811461229d575f80fd5b9699959850939692959460a0840135945060c09093013592915050565b5f805f80608085870312156122cd575f80fd5b84356122d8816121c0565b9350602085013592506040850135915060608501356122f6816121c0565b939692955090935050565b5f805f805f805f60e0888a031215612317575f80fd5b873596506020880135612329816121c0565b95506040880135612339816121c0565b969995985095966060810135965060808101359560a0820135955060c0909101359350915050565b80151581146121d4575f80fd5b5f805f8060808587031215612381575f80fd5b843561238c816121c0565b9350602085013561239c81612361565b925060408501356123ac81612361565b9150606085013561ffff811681146122f6575f80fd5b5f602082840312156123d2575f80fd5b5035919050565b5f805f606084860312156123eb575f80fd5b83356123f6816121c0565b92506020840135612406816121c0565b91506040840135612416816121c0565b809150509250925092565b6020808252600c908201526b15539055551213d49256915160a21b604082015260600190565b6020808252600a90820152695245454e5452414e435960b01b604082015260600190565b5f6020828403121561247b575f80fd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b61ffff8281168282160390808211156124b1576124b1612482565b5092915050565b6001600160a01b039586168152938516602085015260408401929092529092166060820152608081019190915260a00190565b81810381811115611e2657611e26612482565b6001600160a01b0393841681529190921660208201526001600160e01b0319909116604082015260600190565b5f6020828403121561253b575f80fd5b81516121f281612361565b80820180821115611e2657611e26612482565b5f6001600160601b0380831681810361257457612574612482565b600101939250505056fea2646970667358221220af918269a8fdf3f4c1d5cfc3d24ad0aaf22546ce1a97e3f1d6992f37a58e659364736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000463e60c7ce10e57911ab7bd1667eaa21de3e79b000000000000000000000000657e8c867d8b37dcc18fa4caead9c45eb088c6420000000000000000000000001b293dc39f94157fa0d1d36d7e0090c8b8b8c13f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
-----Decoded View---------------
Arg [0] : _owner (address): 0x0463E60C7cE10e57911AB7bD1667eaa21de3e79b
Arg [1] : _vault (address): 0x657e8C867D8B37dCC18fA4Caead9C45EB088C642
Arg [2] : _accountant (address): 0x1b293DC39F94157fA0D1D36d7e0090C8B8B8c13F
Arg [3] : _weth (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000463e60c7ce10e57911ab7bd1667eaa21de3e79b
Arg [1] : 000000000000000000000000657e8c867d8b37dcc18fa4caead9c45eb088c642
Arg [2] : 0000000000000000000000001b293dc39f94157fa0d1d36d7e0090c8b8b8c13f
Arg [3] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Deployed Bytecode Sourcemap
701:19331:15:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3501:42;;;;;;;;;;-1:-1:-1;3501:42:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;567:14:19;;560:22;542:41;;530:2;515:18;3501:42:15;;;;;;;;6185:35;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;779:32:19;;;761:51;;749:2;734:18;6185:35:15;594:224:19;14233:1471:15;;;;;;:::i;:::-;;:::i;:::-;;;1371:25:19;;;1359:2;1344:18;14233:1471:15;1225:177:19;8538:242:15;;;;;;;;;;-1:-1:-1;8538:242:15;;;;;:::i;:::-;;:::i;:::-;;3192:50;;;;;;;;;;-1:-1:-1;3192:50:15;;;;;:::i;:::-;;;;;;;;;;;;;;8921:256;;;;;;;;;;-1:-1:-1;8921:256:15;;;;;:::i;:::-;;:::i;10699:137::-;;;;;;;;;;-1:-1:-1;10699:137:15;;;;;:::i;:::-;;:::i;10964:140::-;;;;;;;;;;-1:-1:-1;10964:140:15;;;;;:::i;:::-;;:::i;3352:44::-;;;;;;;;;;-1:-1:-1;3352:44:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;9702:125;;;;;;;;;;-1:-1:-1;9702:125:15;;;;;:::i;:::-;;:::i;10203:119::-;;;;;;;;;;-1:-1:-1;10203:119:15;;;;;:::i;:::-;;:::i;15827:979::-;;;;;;;;;;-1:-1:-1;15827:979:15;;;;;:::i;:::-;;:::i;17667:818::-;;;;;;;;;;-1:-1:-1;17667:818:15;;;;;:::i;:::-;;:::i;7089:99::-;;;;;;;;;;;;;:::i;2289:40::-;;;;;;;;;;-1:-1:-1;2289:40:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3494:14:19;;3487:22;3469:41;;3553:14;;3546:22;3541:2;3526:18;;3519:50;3617:6;3605:19;3585:18;;;3578:47;3457:2;3442:18;2289:40:15;3281:350:19;12678:1302:15;;;;;;;;;;-1:-1:-1;12678:1302:15;;;;;:::i;:::-;;:::i;5959:55::-;;;;;;;;;;;;;;;10444:122;;;;;;;;;;-1:-1:-1;10444:122:15;;;;;:::i;:::-;;:::i;1523:434:7:-;;;;;;;;;;-1:-1:-1;1523:434:7;;;;;:::i;:::-;;:::i;6832:94:15:-;;;;;;;;;;;;;:::i;562:20:7:-;;;;;;;;;;-1:-1:-1;562:20:7;;;;-1:-1:-1;;;;;562:20:7;;;7405:426:15;;;;;;;;;;-1:-1:-1;7405:426:15;;;;;:::i;:::-;;:::i;3038:55::-;;;;;;;;;;-1:-1:-1;3038:55:15;;;;;:::i;:::-;;;;;;;;;;;;;;16977:563;;;;;;;;;;-1:-1:-1;16977:563:15;;;;;:::i;:::-;;:::i;2697:29::-;;;;;;;;;;-1:-1:-1;2697:29:15;;;;-1:-1:-1;;;2697:29:15;;;;;;;;;6463:18:19;6451:31;;;6433:50;;6421:2;6406:18;2697:29:15;6289:200:19;9950:128:15;;;;;;;;;;-1:-1:-1;9950:128:15;;;;;:::i;:::-;;:::i;11587:379::-;;;;;;;;;;-1:-1:-1;11587:379:15;;;;;:::i;:::-;;:::i;2822:20::-;;;;;;;;;;-1:-1:-1;2822:20:15;;;;-1:-1:-1;;;2822:20:15;;;;;;589:26:7;;;;;;;;;;-1:-1:-1;589:26:7;;;;-1:-1:-1;;;;;589:26:7;;;9311:263:15;;;;;;;;;;-1:-1:-1;9311:263:15;;;;;:::i;:::-;;:::i;2416:30::-;;;;;;;;;;-1:-1:-1;2416:30:15;;;;-1:-1:-1;;;;;2416:30:15;;;;;;-1:-1:-1;;;;;7415:39:19;;;7397:58;;7385:2;7370:18;2416:30:15;7253:208:19;3674:48:15;;;;;;;;;;-1:-1:-1;3674:48:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;1963:164:7;;;;;;;;;;-1:-1:-1;1963:164:7;;;;;:::i;:::-;;:::i;5824:34:15:-;;;;;;;;;;;;;;;14233:1471;14404:14;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;:::-;;;;;;;;;512:6:11::1;;522:1;512:11;504:34;;;;-1:-1:-1::0;;;504:34:11::1;;;;;;;:::i;:::-;558:1;549:10:::0;;14438:8:15::2;::::0;-1:-1:-1;;;14438:8:15;::::2;;;14434:58;;;14455:37;;-1:-1:-1::0;;;14455:37:15::2;;;;;;;;;;;14434:58;-1:-1:-1::0;;;;;14523:23:15;::::2;14502:18;14523:23:::0;;;:9:::2;:23;::::0;;;;;;;;14502:44;;::::2;::::0;::::2;::::0;;;;::::2;::::0;;::::2;;;::::0;;;::::2;::::0;::::2;::::0;;::::2;;;::::0;;::::2;::::0;;;;;;::::2;;;::::0;;;;;;;14556:81:::2;;14589:48;;-1:-1:-1::0;;;14589:48:15::2;;;;;;;;;;;14556:81;-1:-1:-1::0;;;;;;;14652:31:15;::::2;::::0;14648:954:::2;;14703:9;14716:1;14703:14:::0;14699:68:::2;;14726:41;;-1:-1:-1::0;;;14726:41:15::2;;;;;;;;;;;14699:68;14781:13;-1:-1:-1::0;;;;;14781:21:15::2;;14810:9;14781:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;14920:44:15::2;::::0;-1:-1:-1;;;14920:44:15;;-1:-1:-1;;;;;14950:13:15::2;779:32:19::0;;14920:44:15::2;::::0;::::2;761:51:19::0;14852:9:15::2;::::0;-1:-1:-1;14884:81:15::2;::::0;-1:-1:-1;14909:9:15::2;::::0;-1:-1:-1;14920:10:15::2;:29;::::0;-1:-1:-1;14920:29:15::2;::::0;734:18:19;;14920:44:15::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14884:13:::0;;:81;:24:::2;:81::i;:::-;14875:90;;15009:1;14988:5;:18;;;:22;;;:82;;15064:6;14988:82;;;15013:48;15037:5;:18;;;15031:3;:24;;;;:::i;:::-;15013:6:::0;;:48:::2;;15057:3;15013:17;:48::i;:::-;14979:91;;15097:11;15088:6;:20;15084:81;;;15117:48;;-1:-1:-1::0;;;15117:48:15::2;;;;;;;;;;;15084:81;15249:56;-1:-1:-1::0;;;;;15249:13:15::2;:25;15283:5;15291:13:::0;15249:25:::2;:56::i;:::-;15319:76;::::0;-1:-1:-1;;;15319:76:15;;-1:-1:-1;;;;;15319:5:15::2;:11;::::0;::::2;::::0;:76:::2;::::0;15339:4:::2;::::0;15346:13:::2;::::0;15361;;15376:10:::2;::::0;15388:6;;15319:76:::2;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;14648:954;;;15430:9;:13:::0;15426:68:::2;;15452:42;;-1:-1:-1::0;;;15452:42:15::2;;;;;;;;;;;15426:68;15517:74;15531:12;15545:13;15560:11;15573:10;15585:5;15517:13;:74::i;:::-;15508:83;;14648:954;15612:85;15632:10;15644:12;15658:13;15673:6;15681:15;;;;;;;;;;;15612:85;;:19;:85::i;:::-;-1:-1:-1::0;591:1:11::1;582:6;:10:::0;14233:1471:15;;-1:-1:-1;;;14233:1471:15:o;8538:242::-;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;:::-;1923:6:15::1;8627:16;:40;;;8623:106;;;8676:53;;-1:-1:-1::0;;;8676:53:15::1;;;;;;;;;;;8623:106;8739:15;:34:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;8739:34:15::1;-1:-1:-1::0;;;;8739:34:15;;::::1;::::0;;;::::1;::::0;;8538:242::o;8921: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;:::-;-1:-1:-1;;;;;8984:18:15;::::1;;::::0;;;:12:::1;:18;::::0;;;;;;;:25;;9005:4:::1;-1:-1:-1::0;;8984:25:15;;::::1;::::0;::::1;::::0;;;9019:10:::1;:16:::0;;;;;:23;;;::::1;::::0;::::1;::::0;;9052:16:::1;:22:::0;;;;;;:29;;;;::::1;;::::0;;;9096:14;::::1;::::0;8984:18;9096:14:::1;9125:12;::::0;-1:-1:-1;;;;;9125:12:15;::::1;::::0;::::1;::::0;;;::::1;9152:18;::::0;-1:-1:-1;;;;;9152:18:15;::::1;::::0;::::1;::::0;;;::::1;8921:256:::0;:::o;10699:137::-;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;:::-;-1:-1:-1;;;;;10767:22:15;::::1;;::::0;;;:16:::1;:22;::::0;;;;;:29;;-1:-1:-1;;10767:29:15::1;10792:4;10767:29;::::0;;10811:18;::::1;::::0;10767:22;10811:18:::1;10699:137:::0;:::o;10964:140::-;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;:::-;-1:-1:-1;;;;;11033:22:15;::::1;11058:5;11033:22:::0;;;:16:::1;:22;::::0;;;;;:30;;-1:-1:-1;;11033:30:15::1;::::0;;11078:19;::::1;::::0;11058:5;11078:19:::1;10964:140:::0;:::o;9702:125::-;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;:::-;-1:-1:-1;;;;;9766:18:15;::::1;;::::0;;;:12:::1;:18;::::0;;;;;:25;;-1:-1:-1;;9766:25:15::1;9787:4;9766:25;::::0;;9806:14;::::1;::::0;9766:18;9806:14:::1;9702:125:::0;:::o;10203:119::-;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;:::-;-1:-1:-1;;;;;10265:16:15;::::1;;::::0;;;:10:::1;:16;::::0;;;;;:23;;-1:-1:-1;;10265:23:15::1;10284:4;10265:23;::::0;;10303:12;::::1;::::0;10265:16;10303:12:::1;10203:119:::0;:::o;15827:979::-;16071:14;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;:::-;512:6:11::1;;522:1;512:11;504:34;;;;-1:-1:-1::0;;;504:34:11::1;;;;;;;:::i;:::-;558:1;549:10:::0;;16101:8:15::2;::::0;-1:-1:-1;;;16101:8:15;::::2;;;16097:58;;;16118:37;;-1:-1:-1::0;;;16118:37:15::2;;;;;;;;;;;16097:58;-1:-1:-1::0;;;;;16186:23:15;::::2;16165:18;16186:23:::0;;;:9:::2;:23;::::0;;;;;;;;16165:44;;::::2;::::0;::::2;::::0;;;;::::2;::::0;;::::2;;;::::0;;;::::2;::::0;::::2;::::0;;::::2;;;::::0;;::::2;::::0;;;;;;::::2;;;::::0;;;;;;;16219:81:::2;;16252:48;;-1:-1:-1::0;;;16252:48:15::2;;;;;;;;;;;16219:81;16315;::::0;-1:-1:-1;;;16315:81:15;;16335:10:::2;16315:81;::::0;::::2;9995:34:19::0;-1:-1:-1;;;;;16355:5:15::2;10065:15:19::0;;10045:18;;;10038:43;10097:18;;;10090:34;;;10140:18;;;10133:34;;;10216:4;10204:17;;10183:19;;;10176:46;10238:19;;;10231:35;;;10282:19;;;10275:35;;;16315:19:15;::::2;::::0;::::2;::::0;9929::19;;16315:81:15::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;16311:300;;16432:50;::::0;-1:-1:-1;;;16432:50:15;;16455:10:::2;16432:50;::::0;::::2;10533:34:19::0;-1:-1:-1;;;;;16475:5:15::2;10603:15:19::0;;10583:18;;;10576:43;16485:13:15;;16432:22;;::::2;::::0;::::2;::::0;10468:18:19;;16432:50:15::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:66;16428:173;;;16525:61;;-1:-1:-1::0;;;16525:61:15::2;;;;;;;;;;;16428:173;16629:74;16643:12;16657:13;16672:11;16685:10;16697:5;16629:13;:74::i;:::-;16620:83;;16714:85;16734:10;16746:12;16760:13;16775:6;16783:15;;;;;;;;;;;16714:85;;:19;:85::i;:::-;-1:-1:-1::0;591:1:11::1;582:6;:10:::0;15827:979:15;;-1:-1:-1;;;;;;;15827:979:15:o;17667:818::-;17821:17;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;:::-;17858:8:15::1;::::0;-1:-1:-1;;;17858:8:15;::::1;;;17854:58;;;17875:37;;-1:-1:-1::0;;;17875:37:15::1;;;;;;;;;;;17854:58;-1:-1:-1::0;;;;;17943:24:15;::::1;17922:18;17943:24:::0;;;:9:::1;:24;::::0;;;;;;;;17922:45;;::::1;::::0;::::1;::::0;;;;::::1;::::0;;::::1;;;::::0;;::::1;::::0;::::1;;;;::::0;;::::1;::::0;;;;;::::1;;;::::0;;;;;;;17977:82:::1;;18011:48;;-1:-1:-1::0;;;18011:48:15::1;;;;;;;;;;;17977:82;18074:11;18089:1;18074:16:::0;18070:70:::1;;18099:41;;-1:-1:-1::0;;;18099:41:15::1;;;;;;;;;;;18070:70;18185:44;::::0;-1:-1:-1;;;18185:44:15;;-1:-1:-1;;;;;779:32:19;;;18185:44:15::1;::::0;::::1;761:51:19::0;18162:79:15::1;::::0;18185:10:::1;:29:::0;;::::1;::::0;::::1;::::0;734:18:19;;18185:44:15::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18162:11:::0;;18231:9:::1;18162:22;:79::i;:::-;18150:91;;18267:13;18255:9;:25;18251:88;;;18289:50;;-1:-1:-1::0;;;18289:50:15::1;;;;;;;;;;;18251:88;18349:65;::::0;-1:-1:-1;;;18349:65:15;;-1:-1:-1;;;;;18349:5:15::1;:10;::::0;::::1;::::0;:65:::1;::::0;18360:2;;18364:13;;18379:9;;18390:10:::1;::::0;18402:11;;18349:65:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;18450:13;-1:-1:-1::0;;;;;18429:49:15::1;;18466:11;18429:49;;;;1371:25:19::0;;1359:2;1344:18;;1225:177;18429:49:15::1;;;;;;;;17844:641;17667:818:::0;;;;;;:::o;7089:99::-;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;:::-;7140:8:15::1;:16:::0;;-1:-1:-1;;;;7140:16:15::1;::::0;;7171:10:::1;::::0;::::1;::::0;7151:5:::1;::::0;7171:10:::1;7089:99::o:0;12678:1302::-;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;:::-;13006:32:15;12967:34:::1;12985:16:::0;12967:15:::1;:34;:::i;:::-;12966:72;12962:232;;13135:48;;-1:-1:-1::0;;;13135:48:15::1;;;;;;;;;;;12962:232;13248:144;::::0;;-1:-1:-1;;;;;11875:15:19;;;13248:144:15::1;::::0;::::1;11857:34:19::0;11927:15;;11907:18;;;11900:43;;;;11959:18;;;11952:34;;;12002:18;;;11995:34;;;12045:19;;;12038:35;;;12089:19;;;12082:35;;;13203:19:15::1;::::0;11791::19;;13248:144:15::1;::::0;;-1:-1:-1;;13248:144:15;;::::1;::::0;;;;;;13225:177;;13248:144:::1;13225:177:::0;;::::1;::::0;13416:27:::1;::::0;;;:20:::1;:27:::0;;;;;;13225:177;;-1:-1:-1;13416:42:15;::::1;13412:100;;13467:45;;-1:-1:-1::0;;;13467:45:15::1;;;;;;;;;;;13412:100;13576:27;::::0;;;:20:::1;:27;::::0;;;;13569:34;-1:-1:-1;;;;;13707:22:15;::::1;1753:42;13707:22;:62;;13757:12;13707:62;;;13740:13;13707:62;13833:79;::::0;-1:-1:-1;;;13833:79:15;;13692:77;;-1:-1:-1;;;;;;13833:5:15::1;:10;::::0;::::1;::::0;:79:::1;::::0;13844:8;;13692:77;;13875:13;;13844:8;;13900:11;;13833:79:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;13964:8;-1:-1:-1::0;;;;;13928:45:15::1;13944:5;13928:45;13951:11;13928:45;;;;1371:25:19::0;;1359:2;1344:18;;1225:177;13928:45:15::1;;;;;;;;12952:1028;12678:1302:::0;;;;;;;:::o;10444:122::-;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;:::-;-1:-1:-1;;;;;10507:16:15;::::1;10526:5;10507:16:::0;;;:10:::1;:16;::::0;;;;;:24;;-1:-1:-1;;10507:24:15::1;::::0;;10546:13;::::1;::::0;10526:5;10546:13:::1;10444:122:::0;:::o;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;6832:94:15:-;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;:::-;6881:8:15::1;:15:::0;;-1:-1:-1;;;;6881:15:15::1;-1:-1:-1::0;;;6881:15:15::1;::::0;;6911:8:::1;::::0;::::1;::::0;6881:15;;6911:8:::1;6832:94::o:0;7405:426::-;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;:::-;2113:5:15::1;7561:32;::::0;::::1;;7557:96;;;7602:51;;-1:-1:-1::0;;;7602:51:15::1;;;;;;;;;;;7557:96;7682:50;::::0;;::::1;::::0;;::::1;::::0;;;::::1;;::::0;;;;::::1;;;::::0;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;7663:16:15;::::1;-1:-1:-1::0;7663:16:15;;;:9:::1;:16:::0;;;;;:69;;;;;;;;-1:-1:-1;;7663:69:15;;;;::::1;;-1:-1:-1::0;;7663:69:15;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;7663:69:15::1;::::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;7747:77;;3469:41:19;;;3526:18;;;3519:50;;;;3585:18;;;3578:47;;;;7747:77:15::1;::::0;3442:18:19;7747:77:15::1;;;;;;;7405:426:::0;;;;:::o;16977:563::-;17150:14;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;:::-;512:6:11::1;;522:1;512:11;504:34;;;;-1:-1:-1::0;;;504:34:11::1;;;;;;;:::i;:::-;558:1;549:10:::0;;17184:8:15::2;::::0;-1:-1:-1;;;17184:8:15;::::2;;;17180:58;;;17201:37;;-1:-1:-1::0;;;17201:37:15::2;;;;;;;;;;;17180:58;-1:-1:-1::0;;;;;17269:23:15;::::2;17248:18;17269:23:::0;;;:9:::2;:23;::::0;;;;;;;;17248:44;;::::2;::::0;::::2;::::0;;;;::::2;::::0;;::::2;;;::::0;;;::::2;::::0;::::2;::::0;;::::2;;;::::0;;::::2;::::0;;;;;;::::2;;;::::0;;;;;;;17302:81:::2;;17335:48;;-1:-1:-1::0;;;17335:48:15::2;;;;;;;;;;;17302:81;17403:66;17417:12;17431:13;17446:11;17459:2;17463:5;17403:13;:66::i;:::-;17394:75;;17504:12;-1:-1:-1::0;;;;;17484:49:15::2;;17519:13;17484:49;;;;1371:25:19::0;;1359:2;1344:18;;1225:177;17484:49:15::2;;;;;;;;-1:-1:-1::0;591:1:11::1;582:6;:10:::0;16977:563:15;;-1:-1:-1;;;;16977:563:15:o;9950:128::-;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;:::-;-1:-1:-1;;;;;10015:18:15;::::1;10036:5;10015:18:::0;;;:12:::1;:18;::::0;;;;;:26;;-1:-1:-1;;10015:26:15::1;::::0;;10056:15;::::1;::::0;10036:5;10056:15:::1;9950:128:::0;:::o;11587:379::-;-1:-1:-1;;;;;11689:18:15;;;;;;:12;:18;;;;;;;;;:36;;-1:-1:-1;;;;;;11711:14:15;;;;;;:10;:14;;;;;;;;11689:36;:66;;;-1:-1:-1;;;;;;11729:26:15;;;;;;:16;:26;;;;;;;;11689:66;11685:167;;;11778:63;;-1:-1:-1;;;11778:63:15;;-1:-1:-1;;;;;13041:15:19;;;11778:63:15;;;13023:34:19;13093:15;;;13073:18;;;13066:43;13145:15;;13125:18;;;13118:43;12958:18;;11778:63:15;12783:384:19;11685:167:15;-1:-1:-1;;;;;11865:21:15;;;;;;:15;:21;;;;;;11889:15;-1:-1:-1;11861:98:15;;;11913:46;;-1:-1:-1;;;11913:46:15;;;;;;;;;;;11861:98;11587:379;;;:::o;9311:263::-;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;:::-;-1:-1:-1;;;;;9375:18:15;::::1;9396:5;9375:18:::0;;;:12:::1;:18;::::0;;;;;;;:26;;-1:-1:-1;;9375:26:15;;::::1;::::0;;;9411:10:::1;:16:::0;;;;;:24;;;::::1;::::0;;9445:16:::1;:22:::0;;;;;;:30;;;;::::1;::::0;;;9490:15;::::1;::::0;9396:5;9490:15:::1;9520:13;::::0;-1:-1:-1;;;;;9520:13:15;::::1;::::0;::::1;::::0;;;::::1;9548:19;::::0;-1:-1:-1;;;;;9548:19:15;::::1;::::0;::::1;::::0;;;::::1;9311:263:::0;:::o;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;977:540::-;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;;;;;:::o;1564:526:10:-;1680:9;1928:1;-1:-1:-1;;1911:19:10;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:10;;2047:27;;1564:526::o;4729:1605:12:-;4840:12;5010:4;5004:11;-1:-1:-1;;;5133:17:12;5126:93;-1:-1:-1;;;;;5270:2:12;5266:51;5262:1;5243:17;5239:25;5232:86;5404:6;5399:2;5380:17;5376:26;5369:42;6256:2;6253:1;6249:2;6230:17;6227:1;6220:5;6213;6208:51;5777:16;5770:24;5764:2;5746:16;5743:24;5739:1;5735;5729:8;5726:15;5722:46;5719:76;5519:754;5508:765;;;6301:7;6293:34;;;;-1:-1:-1;;;6293:34:12;;13374:2:19;6293:34:12;;;13356:21:19;13413:2;13393:18;;;13386:30;-1:-1:-1;;;13432:18:19;;;13425:44;13486:18;;6293:34:12;13172:338:19;6293:34:12;4830:1504;4729:1605;;;:::o;18692:653:15:-;18875:14;18905:13;18922:1;18905:18;18901:72;;18932:41;;-1:-1:-1;;;18932:41:15;;;;;;;;;;;18901:72;19028:43;;-1:-1:-1;;;19028:43:15;;-1:-1:-1;;;;;779:32:19;;;19028:43:15;;;761:51:19;18992:80:15;;19017:9;;19028:10;:29;;;;734:18:19;;19028:43:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18992:13;;:80;:24;:80::i;:::-;18983:89;;19112:1;19091:5;:18;;;:22;;;:82;;19167:6;19091:82;;;19116:48;19140:5;:18;;;19134:3;:24;;;;:::i;:::-;19116:6;;:48;;19160:3;19116:17;:48::i;:::-;19082:91;;19196:11;19187:6;:20;19183:81;;;19216:48;;-1:-1:-1;;;19216:48:15;;;;;;;;;;;19183:81;19274:64;;-1:-1:-1;;;19274:64:15;;-1:-1:-1;;;;;19274:5:15;:11;;;;:64;;19286:10;;19298:12;;19312:13;;19327:2;;19331:6;;19274:64;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18692:653;;;;;;;:::o;19418:612::-;19641:40;19659:22;19641:15;:40;:::i;:::-;-1:-1:-1;;;;;19617:21:15;;;;;;;:15;:21;;;;;;;;;:64;;;;19708:12;;19782:94;;;;;11857:34:19;;;;11927:15;;;11907:18;;;11900:43;;;;11959:18;;;11952:34;;;12002:18;;;11995:34;;;19836:15:15;12045:19:19;;;12038:35;12089:19;;;12082:35;;;-1:-1:-1;;;;;19708:12:15;;11791:19:19;;19782:94:15;;;-1:-1:-1;;19782:94:15;;;;;;;;;19772:105;;19782:94;19772:105;;;;19730:27;;;;:20;:27;;;;;;:147;19887:12;:14;;-1:-1:-1;;;;;19887:14:15;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;19887:14:15;;;;;-1:-1:-1;;;;;19887:14:15;;;;;;;19945:12;-1:-1:-1;;;;;19916:107:15;19931:4;-1:-1:-1;;;;;19916:107:15;19924:5;19916:107;19960:13;19975:6;19983:15;20000:22;19916:107;;;;;;;;14708:25:19;;;14764:2;14749:18;;14742:34;;;;14807:2;14792:18;;14785:34;14850:2;14835:18;;14828:34;14695:3;14680:19;;14477:391;19916:107:15;;;;;;;;19607:423;19418:612;;;;;:::o;14:131:19:-;-1:-1:-1;;;;;89:31:19;;79:42;;69:70;;135:1;132;125:12;69:70;14:131;:::o;150:247::-;209:6;262:2;250:9;241:7;237:23;233:32;230:52;;;278:1;275;268:12;230:52;317:9;304:23;336:31;361:5;336:31;:::i;:::-;386:5;150:247;-1:-1:-1;;;150:247:19:o;823:397::-;914:6;922;930;983:2;971:9;962:7;958:23;954:32;951:52;;;999:1;996;989:12;951:52;1038:9;1025:23;1057:31;1082:5;1057:31;:::i;:::-;1107:5;1159:2;1144:18;;1131:32;;-1:-1:-1;1210:2:19;1195:18;;;1182:32;;823:397;-1:-1:-1;;;823:397:19:o;1407:284::-;1465:6;1518:2;1506:9;1497:7;1493:23;1489:32;1486:52;;;1534:1;1531;1524:12;1486:52;1573:9;1560:23;1623:18;1616:5;1612:30;1605:5;1602:41;1592:69;;1657:1;1654;1647:12;1696:770;1821:6;1829;1837;1845;1853;1861;1869;1922:3;1910:9;1901:7;1897:23;1893:33;1890:53;;;1939:1;1936;1929:12;1890:53;1978:9;1965:23;1997:31;2022:5;1997:31;:::i;:::-;2047:5;-1:-1:-1;2099:2:19;2084:18;;2071:32;;-1:-1:-1;2150:2:19;2135:18;;2122:32;;-1:-1:-1;2201:2:19;2186:18;;2173:32;;-1:-1:-1;2257:3:19;2242:19;;2229:33;2306:4;2293:18;;2281:31;;2271:59;;2326:1;2323;2316:12;2271:59;1696:770;;;;-1:-1:-1;1696:770:19;;;;2349:7;2403:3;2388:19;;2375:33;;-1:-1:-1;2455:3:19;2440:19;;;2427:33;;1696:770;-1:-1:-1;;1696:770:19:o;2471:539::-;2571:6;2579;2587;2595;2648:3;2636:9;2627:7;2623:23;2619:33;2616:53;;;2665:1;2662;2655:12;2616:53;2704:9;2691:23;2723:31;2748:5;2723:31;:::i;:::-;2773:5;-1:-1:-1;2825:2:19;2810:18;;2797:32;;-1:-1:-1;2876:2:19;2861:18;;2848:32;;-1:-1:-1;2932:2:19;2917:18;;2904:32;2945:33;2904:32;2945:33;:::i;:::-;2471:539;;;;-1:-1:-1;2471:539:19;;-1:-1:-1;;2471:539:19:o;3636:732::-;3749:6;3757;3765;3773;3781;3789;3797;3850:3;3838:9;3829:7;3825:23;3821:33;3818:53;;;3867:1;3864;3857:12;3818:53;3903:9;3890:23;3880:33;;3963:2;3952:9;3948:18;3935:32;3976:31;4001:5;3976:31;:::i;:::-;4026:5;-1:-1:-1;4083:2:19;4068:18;;4055:32;4096:33;4055:32;4096:33;:::i;:::-;3636:732;;;;-1:-1:-1;4148:7:19;;4202:2;4187:18;;4174:32;;-1:-1:-1;4253:3:19;4238:19;;4225:33;;4305:3;4290:19;;4277:33;;-1:-1:-1;4357:3:19;4342:19;;;4329:33;;-1:-1:-1;3636:732:19;-1:-1:-1;;3636:732:19:o;5094:118::-;5180:5;5173:13;5166:21;5159:5;5156:32;5146:60;;5202:1;5199;5192:12;5217:700;5310:6;5318;5326;5334;5387:3;5375:9;5366:7;5362:23;5358:33;5355:53;;;5404:1;5401;5394:12;5355:53;5443:9;5430:23;5462:31;5487:5;5462:31;:::i;:::-;5512:5;-1:-1:-1;5569:2:19;5554:18;;5541:32;5582:30;5541:32;5582:30;:::i;:::-;5631:7;-1:-1:-1;5690:2:19;5675:18;;5662:32;5703:30;5662:32;5703:30;:::i;:::-;5752:7;-1:-1:-1;5811:2:19;5796:18;;5783:32;5859:6;5846:20;;5834:33;;5824:61;;5881:1;5878;5871:12;5922:180;5981:6;6034:2;6022:9;6013:7;6009:23;6005:32;6002:52;;;6050:1;6047;6040:12;6002:52;-1:-1:-1;6073:23:19;;5922:180;-1:-1:-1;5922:180:19:o;6494:529::-;6571:6;6579;6587;6640:2;6628:9;6619:7;6615:23;6611:32;6608:52;;;6656:1;6653;6646:12;6608:52;6695:9;6682:23;6714:31;6739:5;6714:31;:::i;:::-;6764:5;-1:-1:-1;6821:2:19;6806:18;;6793:32;6834:33;6793:32;6834:33;:::i;:::-;6886:7;-1:-1:-1;6945:2:19;6930:18;;6917:32;6958:33;6917:32;6958:33;:::i;:::-;7010:7;7000:17;;;6494:529;;;;;:::o;7702:336::-;7904:2;7886:21;;;7943:2;7923:18;;;7916:30;-1:-1:-1;;;7977:2:19;7962:18;;7955:42;8029:2;8014:18;;7702:336::o;8043:334::-;8245:2;8227:21;;;8284:2;8264:18;;;8257:30;-1:-1:-1;;;8318:2:19;8303:18;;8296:40;8368:2;8353:18;;8043:334::o;8603:184::-;8673:6;8726:2;8714:9;8705:7;8701:23;8697:32;8694:52;;;8742:1;8739;8732:12;8694:52;-1:-1:-1;8765:16:19;;8603:184;-1:-1:-1;8603:184:19:o;8792:127::-;8853:10;8848:3;8844:20;8841:1;8834:31;8884:4;8881:1;8874:15;8908:4;8905:1;8898:15;8924:171;8992:6;9031:10;;;9019;;;9015:27;;9054:12;;;9051:38;;;9069:18;;:::i;:::-;9051:38;8924:171;;;;:::o;9100:541::-;-1:-1:-1;;;;;9428:15:19;;;9410:34;;9480:15;;;9475:2;9460:18;;9453:43;9527:2;9512:18;;9505:34;;;;9575:15;;;9570:2;9555:18;;9548:43;9622:3;9607:19;;9600:35;;;;9359:3;9344:19;;9100:541::o;11399:128::-;11466:9;;;11487:11;;;11484:37;;;11501:18;;:::i;12128:400::-;-1:-1:-1;;;;;12384:15:19;;;12366:34;;12436:15;;;;12431:2;12416:18;;12409:43;-1:-1:-1;;;;;;12488:33:19;;;12483:2;12468:18;;12461:61;12316:2;12301:18;;12128:400::o;12533:245::-;12600:6;12653:2;12641:9;12632:7;12628:23;12624:32;12621:52;;;12669:1;12666;12659:12;12621:52;12701:9;12695:16;12720:28;12742:5;12720:28;:::i;13515:125::-;13580:9;;;13601:10;;;13598:36;;;13614:18;;:::i;14255:217::-;14293:3;-1:-1:-1;;;;;14382:2:19;14375:5;14371:14;14409:2;14400:7;14397:15;14394:41;;14415:18;;:::i;:::-;14464:1;14451:15;;14255:217;-1:-1:-1;;;14255:217:19:o
Swarm Source
ipfs://af918269a8fdf3f4c1d5cfc3d24ad0aaf22546ce1a97e3f1d6992f37a58e6593
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.