More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 382 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Swap And Execute | 69876260 | 18 days ago | IN | 0 POL | 0.03078834 | ||||
Swap And Execute | 69876158 | 18 days ago | IN | 0 POL | 0.02391254 | ||||
Swap And Execute | 69875980 | 18 days ago | IN | 0 POL | 0.02287925 | ||||
Swap And Execute | 69875424 | 18 days ago | IN | 0 POL | 0.03426665 | ||||
Swap And Execute | 69875297 | 18 days ago | IN | 0 POL | 0.02174476 | ||||
Swap And Execute | 69874497 | 19 days ago | IN | 0 POL | 0.02742966 | ||||
Swap And Execute | 69874431 | 19 days ago | IN | 0 POL | 0.02402343 | ||||
Swap And Execute | 69874376 | 19 days ago | IN | 0 POL | 0.0175364 | ||||
Swap And Execute | 69874159 | 19 days ago | IN | 0 POL | 0.01778312 | ||||
Swap And Execute | 69870453 | 19 days ago | IN | 0 POL | 0.03956691 | ||||
Swap And Execute | 69818751 | 20 days ago | IN | 0 POL | 0.20829242 | ||||
Swap And Execute | 69818692 | 20 days ago | IN | 0 POL | 0.70177875 | ||||
Swap And Execute | 69817654 | 20 days ago | IN | 0 POL | 0.01081299 | ||||
Swap And Execute | 69814713 | 20 days ago | IN | 0 POL | 0.04179143 | ||||
Swap And Execute | 69813443 | 20 days ago | IN | 0 POL | 0.01376152 | ||||
Swap And Execute | 69812597 | 20 days ago | IN | 0 POL | 0.01572703 | ||||
Swap And Execute | 69441246 | 29 days ago | IN | 50 POL | 0.01620907 | ||||
Swap And Execute | 67249056 | 84 days ago | IN | 1 wei | 0.00197119 | ||||
Swap And Execute | 65070399 | 139 days ago | IN | 2.7937 POL | 0.01096849 | ||||
Swap And Execute | 63264919 | 184 days ago | IN | 0.01007839 POL | 0.00561723 | ||||
Swap And Execute | 62488656 | 204 days ago | IN | 0 POL | 0.00757562 | ||||
Swap And Execute | 62486493 | 204 days ago | IN | 0 POL | 0.00341553 | ||||
Swap And Execute | 62481676 | 204 days ago | IN | 0 POL | 0.01652982 | ||||
Swap And Execute | 62465090 | 204 days ago | IN | 0 POL | 0.01176725 | ||||
Swap And Execute | 62458375 | 204 days ago | IN | 0 POL | 0.02595138 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
70637203 | 4 hrs ago | 18.01909315 POL | ||||
70637203 | 4 hrs ago | 18.01909315 POL | ||||
70628430 | 9 hrs ago | 0.00060914 POL | ||||
70628430 | 9 hrs ago | 0.00060914 POL | ||||
70617316 | 15 hrs ago | 2.32983825 POL | ||||
70617316 | 15 hrs ago | 2.32983825 POL | ||||
70613057 | 18 hrs ago | 6.71345427 POL | ||||
70613057 | 18 hrs ago | 6.71345427 POL | ||||
70602548 | 24 hrs ago | 4.86596678 POL | ||||
70602548 | 24 hrs ago | 4.86596678 POL | ||||
70595830 | 28 hrs ago | 0.25103104 POL | ||||
70595830 | 28 hrs ago | 0.25103104 POL | ||||
70593901 | 29 hrs ago | 2.51237515 POL | ||||
70593901 | 29 hrs ago | 2.51237515 POL | ||||
70589293 | 32 hrs ago | 0.00089205 POL | ||||
70589293 | 32 hrs ago | 0.00089205 POL | ||||
70589181 | 32 hrs ago | 0.00083723 POL | ||||
70589181 | 32 hrs ago | 0.00083723 POL | ||||
70585817 | 34 hrs ago | 11.86356393 POL | ||||
70585817 | 34 hrs ago | 11.86356393 POL | ||||
70580871 | 37 hrs ago | 0.00977056 POL | ||||
70580871 | 37 hrs ago | 0.00977056 POL | ||||
70580789 | 37 hrs ago | 11.77155037 POL | ||||
70580789 | 37 hrs ago | 11.77155037 POL | ||||
70580772 | 37 hrs ago | 1.5191796 POL |
Loading...
Loading
Contract Name:
Executor
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2023-08-07 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.17; /// @title Reentrancy Guard /// @author LI.FI (https://li.fi) /// @notice Abstract contract to provide protection against reentrancy abstract contract ReentrancyGuard { /// Storage /// bytes32 private constant NAMESPACE = keccak256("com.lifi.reentrancyguard"); /// Types /// struct ReentrancyStorage { uint256 status; } /// Errors /// error ReentrancyError(); /// Constants /// uint256 private constant _NOT_ENTERED = 0; uint256 private constant _ENTERED = 1; /// Modifiers /// modifier nonReentrant() { ReentrancyStorage storage s = reentrancyStorage(); if (s.status == _ENTERED) revert ReentrancyError(); s.status = _ENTERED; _; s.status = _NOT_ENTERED; } /// Private Methods /// /// @dev fetch local storage function reentrancyStorage() private pure returns (ReentrancyStorage storage data) { bytes32 position = NAMESPACE; // solhint-disable-next-line no-inline-assembly assembly { data.slot := position } } } error AlreadyInitialized(); error CannotAuthoriseSelf(); error CannotBridgeToSameNetwork(); error ContractCallNotAllowed(); error CumulativeSlippageTooHigh(uint256 minAmount, uint256 receivedAmount); error ExternalCallFailed(); error InformationMismatch(); error InsufficientBalance(uint256 required, uint256 balance); error InvalidAmount(); error InvalidCallData(); error InvalidConfig(); error InvalidContract(); error InvalidDestinationChain(); error InvalidFallbackAddress(); error InvalidReceiver(); error InvalidSendingToken(); error NativeAssetNotSupported(); error NativeAssetTransferFailed(); error NoSwapDataProvided(); error NoSwapFromZeroBalance(); error NotAContract(); error NotInitialized(); error NoTransferToNullAddress(); error NullAddrIsNotAnERC20Token(); error NullAddrIsNotAValidSpender(); error OnlyContractOwner(); error RecoveryAddressCannotBeZero(); error ReentrancyError(); error TokenNotSupported(); error UnAuthorized(); error UnsupportedChainId(uint256 chainId); error WithdrawFailed(); error ZeroAmount(); // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/utils/SafeERC20.sol) // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol) /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://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.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Compatible with tokens that require the approval to be set to * 0 before setting it to a non-zero value. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } } /// @title LibAsset /// @notice This library contains helpers for dealing with onchain transfers /// of assets, including accounting for the native asset `assetId` /// conventions and any noncompliant ERC20 transfers library LibAsset { uint256 private constant MAX_UINT = type(uint256).max; address internal constant NULL_ADDRESS = address(0); /// @dev All native assets use the empty address for their asset id /// by convention address internal constant NATIVE_ASSETID = NULL_ADDRESS; //address(0) /// @notice Gets the balance of the inheriting contract for the given asset /// @param assetId The asset identifier to get the balance of /// @return Balance held by contracts using this library function getOwnBalance(address assetId) internal view returns (uint256) { return isNativeAsset(assetId) ? address(this).balance : IERC20(assetId).balanceOf(address(this)); } /// @notice Transfers ether from the inheriting contract to a given /// recipient /// @param recipient Address to send ether to /// @param amount Amount to send to given recipient function transferNativeAsset( address payable recipient, uint256 amount ) private { if (recipient == NULL_ADDRESS) revert NoTransferToNullAddress(); if (amount > address(this).balance) revert InsufficientBalance(amount, address(this).balance); // solhint-disable-next-line avoid-low-level-calls (bool success, ) = recipient.call{ value: amount }(""); if (!success) revert NativeAssetTransferFailed(); } /// @notice If the current allowance is insufficient, the allowance for a given spender /// is set to MAX_UINT. /// @param assetId Token address to transfer /// @param spender Address to give spend approval to /// @param amount Amount to approve for spending function maxApproveERC20( IERC20 assetId, address spender, uint256 amount ) internal { if (isNativeAsset(address(assetId))) { return; } if (spender == NULL_ADDRESS) { revert NullAddrIsNotAValidSpender(); } if (assetId.allowance(address(this), spender) < amount) { SafeERC20.safeApprove(IERC20(assetId), spender, 0); SafeERC20.safeApprove(IERC20(assetId), spender, MAX_UINT); } } /// @notice Transfers tokens from the inheriting contract to a given /// recipient /// @param assetId Token address to transfer /// @param recipient Address to send token to /// @param amount Amount to send to given recipient function transferERC20( address assetId, address recipient, uint256 amount ) private { if (isNativeAsset(assetId)) { revert NullAddrIsNotAnERC20Token(); } if (recipient == NULL_ADDRESS) { revert NoTransferToNullAddress(); } uint256 assetBalance = IERC20(assetId).balanceOf(address(this)); if (amount > assetBalance) { revert InsufficientBalance(amount, assetBalance); } SafeERC20.safeTransfer(IERC20(assetId), recipient, amount); } /// @notice Transfers tokens from a sender to a given recipient /// @param assetId Token address to transfer /// @param from Address of sender/owner /// @param to Address of recipient/spender /// @param amount Amount to transfer from owner to spender function transferFromERC20( address assetId, address from, address to, uint256 amount ) internal { if (isNativeAsset(assetId)) { revert NullAddrIsNotAnERC20Token(); } if (to == NULL_ADDRESS) { revert NoTransferToNullAddress(); } IERC20 asset = IERC20(assetId); uint256 prevBalance = asset.balanceOf(to); SafeERC20.safeTransferFrom(asset, from, to, amount); if (asset.balanceOf(to) - prevBalance != amount) { revert InvalidAmount(); } } function depositAsset(address assetId, uint256 amount) internal { if (amount == 0) revert InvalidAmount(); if (isNativeAsset(assetId)) { if (msg.value < amount) revert InvalidAmount(); } else { uint256 balance = IERC20(assetId).balanceOf(msg.sender); if (balance < amount) revert InsufficientBalance(amount, balance); transferFromERC20(assetId, msg.sender, address(this), amount); } } function depositAssets(LibSwap.SwapData[] calldata swaps) internal { for (uint256 i = 0; i < swaps.length; ) { LibSwap.SwapData calldata swap = swaps[i]; if (swap.requiresDeposit) { depositAsset(swap.sendingAssetId, swap.fromAmount); } unchecked { i++; } } } /// @notice Determines whether the given assetId is the native asset /// @param assetId The asset identifier to evaluate /// @return Boolean indicating if the asset is the native asset function isNativeAsset(address assetId) internal pure returns (bool) { return assetId == NATIVE_ASSETID; } /// @notice Wrapper function to transfer a given asset (native or erc20) to /// some recipient. Should handle all non-compliant return value /// tokens as well by using the SafeERC20 contract by open zeppelin. /// @param assetId Asset id for transfer (address(0) for native asset, /// token address for erc20s) /// @param recipient Address to send asset to /// @param amount Amount to send to given recipient function transferAsset( address assetId, address payable recipient, uint256 amount ) internal { isNativeAsset(assetId) ? transferNativeAsset(recipient, amount) : transferERC20(assetId, recipient, amount); } /// @dev Checks whether the given address is a contract and contains code function isContract(address _contractAddr) internal view returns (bool) { uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(_contractAddr) } return size > 0; } } library LibBytes { // solhint-disable no-inline-assembly // LibBytes specific errors error SliceOverflow(); error SliceOutOfBounds(); error AddressOutOfBounds(); bytes16 private constant _SYMBOLS = "0123456789abcdef"; // ------------------------- function slice( bytes memory _bytes, uint256 _start, uint256 _length ) internal pure returns (bytes memory) { if (_length + 31 < _length) revert SliceOverflow(); if (_bytes.length < _start + _length) revert SliceOutOfBounds(); bytes memory tempBytes; assembly { switch iszero(_length) case 0 { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // The first word of the slice result is potentially a partial // word read from the original array. To read it, we calculate // the length of that partial word and start copying that many // bytes into the array. The first word we copy will start with // data we don't care about, but the last `lengthmod` bytes will // land at the beginning of the contents of the new array. When // we're done copying, we overwrite the full first word with // the actual length of the slice. let lengthmod := and(_length, 31) // The multiplication in the next line is necessary // because when slicing multiples of 32 bytes (lengthmod == 0) // the following copy loop was copying the origin's length // and then ending prematurely not copying everything it should. let mc := add( add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod)) ) let end := add(mc, _length) for { // The multiplication in the next line has the same exact purpose // as the one above. let cc := add( add( add(_bytes, lengthmod), mul(0x20, iszero(lengthmod)) ), _start ) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } mstore(tempBytes, _length) //update free-memory pointer //allocating the array padded to 32 bytes like the compiler does now mstore(0x40, and(add(mc, 31), not(31))) } //if we want a zero-length slice let's just return a zero-length array default { tempBytes := mload(0x40) //zero out the 32 bytes slice we are about to return //we need to do it because Solidity does not garbage collect mstore(tempBytes, 0) mstore(0x40, add(tempBytes, 0x20)) } } return tempBytes; } function toAddress( bytes memory _bytes, uint256 _start ) internal pure returns (address) { if (_bytes.length < _start + 20) { revert AddressOutOfBounds(); } address tempAddress; assembly { tempAddress := div( mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000 ) } return tempAddress; } /// Copied from OpenZeppelin's `Strings.sol` utility library. /// https://github.com/OpenZeppelin/openzeppelin-contracts/blob/8335676b0e99944eef6a742e16dcd9ff6e68e609/contracts/utils/Strings.sol function toHexString( uint256 value, uint256 length ) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } library LibUtil { using LibBytes for bytes; function getRevertMsg( bytes memory _res ) internal pure returns (string memory) { // If the _res length is less than 68, then the transaction failed silently (without a revert message) if (_res.length < 68) return "Transaction reverted silently"; bytes memory revertData = _res.slice(4, _res.length - 4); // Remove the selector which is the first 4 bytes return abi.decode(revertData, (string)); // All that remains is the revert string } /// @notice Determines whether the given address is the zero address /// @param addr The address to verify /// @return Boolean indicating if the address is the zero address function isZeroAddress(address addr) internal pure returns (bool) { return addr == address(0); } } library LibSwap { struct SwapData { address callTo; address approveTo; address sendingAssetId; address receivingAssetId; uint256 fromAmount; bytes callData; bool requiresDeposit; } event AssetSwapped( bytes32 transactionId, address dex, address fromAssetId, address toAssetId, uint256 fromAmount, uint256 toAmount, uint256 timestamp ); function swap(bytes32 transactionId, SwapData calldata _swap) internal { if (!LibAsset.isContract(_swap.callTo)) revert InvalidContract(); uint256 fromAmount = _swap.fromAmount; if (fromAmount == 0) revert NoSwapFromZeroBalance(); uint256 nativeValue = LibAsset.isNativeAsset(_swap.sendingAssetId) ? _swap.fromAmount : 0; uint256 initialSendingAssetBalance = LibAsset.getOwnBalance( _swap.sendingAssetId ); uint256 initialReceivingAssetBalance = LibAsset.getOwnBalance( _swap.receivingAssetId ); if (nativeValue == 0) { LibAsset.maxApproveERC20( IERC20(_swap.sendingAssetId), _swap.approveTo, _swap.fromAmount ); } if (initialSendingAssetBalance < _swap.fromAmount) { revert InsufficientBalance( _swap.fromAmount, initialSendingAssetBalance ); } // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory res) = _swap.callTo.call{ value: nativeValue }(_swap.callData); if (!success) { string memory reason = LibUtil.getRevertMsg(res); revert(reason); } uint256 newBalance = LibAsset.getOwnBalance(_swap.receivingAssetId); emit AssetSwapped( transactionId, _swap.callTo, _swap.sendingAssetId, _swap.receivingAssetId, _swap.fromAmount, newBalance > initialReceivingAssetBalance ? newBalance - initialReceivingAssetBalance : newBalance, block.timestamp ); } } interface ILiFi { /// Structs /// struct BridgeData { bytes32 transactionId; string bridge; string integrator; address referrer; address sendingAssetId; address receiver; uint256 minAmount; uint256 destinationChainId; bool hasSourceSwaps; bool hasDestinationCall; } /// Events /// event LiFiTransferStarted(ILiFi.BridgeData bridgeData); event LiFiTransferCompleted( bytes32 indexed transactionId, address receivingAssetId, address receiver, uint256 amount, uint256 timestamp ); event LiFiTransferRecovered( bytes32 indexed transactionId, address receivingAssetId, address receiver, uint256 amount, uint256 timestamp ); event LiFiGenericSwapCompleted( bytes32 indexed transactionId, string integrator, string referrer, address receiver, address fromAssetId, address toAssetId, uint256 fromAmount, uint256 toAmount ); // Deprecated but kept here to include in ABI to parse historic events event LiFiSwappedGeneric( bytes32 indexed transactionId, string integrator, string referrer, address fromAssetId, address toAssetId, uint256 fromAmount, uint256 toAmount ); } interface IERC20Proxy { function transferFrom( address tokenAddress, address from, address to, uint256 amount ) external; } // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/utils/ERC1155Holder.sol) // OpenZeppelin Contracts v4.4.1 (token/ERC1155/utils/ERC1155Receiver.sol) // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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); } /** * @dev _Available since v3.1._ */ 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); } // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.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); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @dev _Available since v3.1._ */ abstract contract ERC1155Receiver 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); } } /** * Simple implementation of `ERC1155Receiver` 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. * * @dev _Available since v3.1._ */ contract ERC1155Holder is ERC1155Receiver { 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; } } // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/utils/ERC721Holder.sol) // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) /** * @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); } /** * @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}. */ contract ERC721Holder is IERC721Receiver { /** * @dev See {IERC721Receiver-onERC721Received}. * * Always returns `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received(address, address, uint256, bytes memory) public virtual override returns (bytes4) { return this.onERC721Received.selector; } } /// @title Executor /// @author LI.FI (https://li.fi) /// @notice Arbitrary execution contract used for cross-chain swaps and message passing /// @custom:version 2.0.0 contract Executor is ILiFi, ReentrancyGuard, ERC1155Holder, ERC721Holder { /// Storage /// /// @notice The address of the ERC20Proxy contract IERC20Proxy public erc20Proxy; /// Events /// event ERC20ProxySet(address indexed proxy); /// Modifiers /// /// @dev Sends any leftover balances back to the user modifier noLeftovers( LibSwap.SwapData[] calldata _swaps, address payable _leftoverReceiver ) { uint256 numSwaps = _swaps.length; if (numSwaps != 1) { uint256[] memory initialBalances = _fetchBalances(_swaps); address finalAsset = _swaps[numSwaps - 1].receivingAssetId; uint256 curBalance = 0; _; for (uint256 i = 0; i < numSwaps - 1; ) { address curAsset = _swaps[i].receivingAssetId; // Handle multi-to-one swaps if (curAsset != finalAsset) { curBalance = LibAsset.getOwnBalance(curAsset); if (curBalance > initialBalances[i]) { LibAsset.transferAsset( curAsset, _leftoverReceiver, curBalance - initialBalances[i] ); } } unchecked { ++i; } } } else { _; } } /// Constructor /// @notice Initialize local variables for the Executor /// @param _erc20Proxy The address of the ERC20Proxy contract constructor(address _erc20Proxy) { erc20Proxy = IERC20Proxy(_erc20Proxy); emit ERC20ProxySet(_erc20Proxy); } /// External Methods /// /// @notice Performs a swap before completing a cross-chain transaction /// @param _transactionId the transaction id for the swap /// @param _swapData array of data needed for swaps /// @param _transferredAssetId token received from the other chain /// @param _receiver address that will receive tokens in the end function swapAndCompleteBridgeTokens( bytes32 _transactionId, LibSwap.SwapData[] calldata _swapData, address _transferredAssetId, address payable _receiver ) external payable nonReentrant { _processSwaps( _transactionId, _swapData, _transferredAssetId, _receiver, 0, true ); } /// @notice Performs a series of swaps or arbitrary executions /// @param _transactionId the transaction id for the swap /// @param _swapData array of data needed for swaps /// @param _transferredAssetId token received from the other chain /// @param _receiver address that will receive tokens in the end /// @param _amount amount of token for swaps or arbitrary executions function swapAndExecute( bytes32 _transactionId, LibSwap.SwapData[] calldata _swapData, address _transferredAssetId, address payable _receiver, uint256 _amount ) external payable nonReentrant { _processSwaps( _transactionId, _swapData, _transferredAssetId, _receiver, _amount, false ); } /// Private Methods /// /// @notice Performs a series of swaps or arbitrary executions /// @param _transactionId the transaction id for the swap /// @param _swapData array of data needed for swaps /// @param _transferredAssetId token received from the other chain /// @param _receiver address that will receive tokens in the end /// @param _amount amount of token for swaps or arbitrary executions /// @param _depositAllowance If deposit approved amount of token function _processSwaps( bytes32 _transactionId, LibSwap.SwapData[] calldata _swapData, address _transferredAssetId, address payable _receiver, uint256 _amount, bool _depositAllowance ) private { uint256 startingBalance; uint256 finalAssetStartingBalance; address finalAssetId = _swapData[_swapData.length - 1] .receivingAssetId; if (!LibAsset.isNativeAsset(finalAssetId)) { finalAssetStartingBalance = LibAsset.getOwnBalance(finalAssetId); } else { finalAssetStartingBalance = LibAsset.getOwnBalance(finalAssetId) - msg.value; } if (!LibAsset.isNativeAsset(_transferredAssetId)) { startingBalance = LibAsset.getOwnBalance(_transferredAssetId); if (_depositAllowance) { uint256 allowance = IERC20(_transferredAssetId).allowance( msg.sender, address(this) ); LibAsset.depositAsset(_transferredAssetId, allowance); } else { erc20Proxy.transferFrom( _transferredAssetId, msg.sender, address(this), _amount ); } } else { startingBalance = LibAsset.getOwnBalance(_transferredAssetId) - msg.value; } _executeSwaps(_transactionId, _swapData, _receiver); uint256 postSwapBalance = LibAsset.getOwnBalance(_transferredAssetId); if (postSwapBalance > startingBalance) { LibAsset.transferAsset( _transferredAssetId, _receiver, postSwapBalance - startingBalance ); } uint256 finalAssetPostSwapBalance = LibAsset.getOwnBalance( finalAssetId ); if (finalAssetPostSwapBalance > finalAssetStartingBalance) { LibAsset.transferAsset( finalAssetId, _receiver, finalAssetPostSwapBalance - finalAssetStartingBalance ); } emit LiFiTransferCompleted( _transactionId, _transferredAssetId, _receiver, finalAssetPostSwapBalance, block.timestamp ); } /// @dev Executes swaps one after the other /// @param _transactionId the transaction id for the swap /// @param _swapData Array of data used to execute swaps /// @param _leftoverReceiver Address to receive lefover tokens function _executeSwaps( bytes32 _transactionId, LibSwap.SwapData[] calldata _swapData, address payable _leftoverReceiver ) private noLeftovers(_swapData, _leftoverReceiver) { uint256 numSwaps = _swapData.length; for (uint256 i = 0; i < numSwaps; ) { if (_swapData[i].callTo == address(erc20Proxy)) { revert UnAuthorized(); // Prevent calling ERC20 Proxy directly } LibSwap.SwapData calldata currentSwapData = _swapData[i]; LibSwap.swap(_transactionId, currentSwapData); unchecked { ++i; } } } /// @dev Fetches balances of tokens to be swapped before swapping. /// @param _swapData Array of data used to execute swaps /// @return uint256[] Array of token balances. function _fetchBalances( LibSwap.SwapData[] calldata _swapData ) private view returns (uint256[] memory) { uint256 numSwaps = _swapData.length; uint256[] memory balances = new uint256[](numSwaps); address asset; for (uint256 i = 0; i < numSwaps; ) { asset = _swapData[i].receivingAssetId; balances[i] = LibAsset.getOwnBalance(asset); if (LibAsset.isNativeAsset(asset)) { balances[i] -= msg.value; } unchecked { ++i; } } return balances; } /// @dev required for receiving native assets from destination swaps // solhint-disable-next-line no-empty-blocks receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_erc20Proxy","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"required","type":"uint256"},{"internalType":"uint256","name":"balance","type":"uint256"}],"name":"InsufficientBalance","type":"error"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"InvalidContract","type":"error"},{"inputs":[],"name":"NativeAssetTransferFailed","type":"error"},{"inputs":[],"name":"NoSwapFromZeroBalance","type":"error"},{"inputs":[],"name":"NoTransferToNullAddress","type":"error"},{"inputs":[],"name":"NullAddrIsNotAValidSpender","type":"error"},{"inputs":[],"name":"NullAddrIsNotAnERC20Token","type":"error"},{"inputs":[],"name":"ReentrancyError","type":"error"},{"inputs":[],"name":"SliceOutOfBounds","type":"error"},{"inputs":[],"name":"SliceOverflow","type":"error"},{"inputs":[],"name":"UnAuthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"proxy","type":"address"}],"name":"ERC20ProxySet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"transactionId","type":"bytes32"},{"indexed":false,"internalType":"string","name":"integrator","type":"string"},{"indexed":false,"internalType":"string","name":"referrer","type":"string"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"address","name":"fromAssetId","type":"address"},{"indexed":false,"internalType":"address","name":"toAssetId","type":"address"},{"indexed":false,"internalType":"uint256","name":"fromAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toAmount","type":"uint256"}],"name":"LiFiGenericSwapCompleted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"transactionId","type":"bytes32"},{"indexed":false,"internalType":"string","name":"integrator","type":"string"},{"indexed":false,"internalType":"string","name":"referrer","type":"string"},{"indexed":false,"internalType":"address","name":"fromAssetId","type":"address"},{"indexed":false,"internalType":"address","name":"toAssetId","type":"address"},{"indexed":false,"internalType":"uint256","name":"fromAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toAmount","type":"uint256"}],"name":"LiFiSwappedGeneric","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"transactionId","type":"bytes32"},{"indexed":false,"internalType":"address","name":"receivingAssetId","type":"address"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LiFiTransferCompleted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"transactionId","type":"bytes32"},{"indexed":false,"internalType":"address","name":"receivingAssetId","type":"address"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LiFiTransferRecovered","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"bytes32","name":"transactionId","type":"bytes32"},{"internalType":"string","name":"bridge","type":"string"},{"internalType":"string","name":"integrator","type":"string"},{"internalType":"address","name":"referrer","type":"address"},{"internalType":"address","name":"sendingAssetId","type":"address"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"minAmount","type":"uint256"},{"internalType":"uint256","name":"destinationChainId","type":"uint256"},{"internalType":"bool","name":"hasSourceSwaps","type":"bool"},{"internalType":"bool","name":"hasDestinationCall","type":"bool"}],"indexed":false,"internalType":"struct ILiFi.BridgeData","name":"bridgeData","type":"tuple"}],"name":"LiFiTransferStarted","type":"event"},{"inputs":[],"name":"erc20Proxy","outputs":[{"internalType":"contract IERC20Proxy","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_transactionId","type":"bytes32"},{"components":[{"internalType":"address","name":"callTo","type":"address"},{"internalType":"address","name":"approveTo","type":"address"},{"internalType":"address","name":"sendingAssetId","type":"address"},{"internalType":"address","name":"receivingAssetId","type":"address"},{"internalType":"uint256","name":"fromAmount","type":"uint256"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bool","name":"requiresDeposit","type":"bool"}],"internalType":"struct LibSwap.SwapData[]","name":"_swapData","type":"tuple[]"},{"internalType":"address","name":"_transferredAssetId","type":"address"},{"internalType":"address payable","name":"_receiver","type":"address"}],"name":"swapAndCompleteBridgeTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_transactionId","type":"bytes32"},{"components":[{"internalType":"address","name":"callTo","type":"address"},{"internalType":"address","name":"approveTo","type":"address"},{"internalType":"address","name":"sendingAssetId","type":"address"},{"internalType":"address","name":"receivingAssetId","type":"address"},{"internalType":"uint256","name":"fromAmount","type":"uint256"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bool","name":"requiresDeposit","type":"bool"}],"internalType":"struct LibSwap.SwapData[]","name":"_swapData","type":"tuple[]"},{"internalType":"address","name":"_transferredAssetId","type":"address"},{"internalType":"address payable","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"swapAndExecute","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620025a8380380620025a8833981016040819052620000349162000080565b600080546001600160a01b0319166001600160a01b038316908117825560405190917f2c835b8316da89c3b658f57c3b39e7b191fddc4b104beeda23042d5dadf455a991a250620000b2565b6000602082840312156200009357600080fd5b81516001600160a01b0381168114620000ab57600080fd5b9392505050565b6124e680620000c26000396000f3fe6080604052600436106100745760003560e01c80637f555b031161004e5780637f555b031461011b578063a83cbaa31461016d578063bc197c8114610180578063f23a6e61146101c557600080fd5b806301ffc9a714610080578063150b7a02146100b55780634f91bc2b1461010657600080fd5b3661007b57005b600080fd5b34801561008c57600080fd5b506100a061009b366004611d6e565b61020a565b60405190151581526020015b60405180910390f35b3480156100c157600080fd5b506100d56100d0366004611eef565b6102a3565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020016100ac565b610119610114366004611fa7565b6102cd565b005b34801561012757600080fd5b506000546101489073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100ac565b61011961017b36600461201b565b61036e565b34801561018c57600080fd5b506100d561019b36600461210c565b7fbc197c810000000000000000000000000000000000000000000000000000000095945050505050565b3480156101d157600080fd5b506100d56101e03660046121ba565b7ff23a6e610000000000000000000000000000000000000000000000000000000095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f4e2312e000000000000000000000000000000000000000000000000000000000148061029d57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b7f150b7a02000000000000000000000000000000000000000000000000000000005b949350505050565b7fa65bb2f450488ab0858c00edc14abc5297769bf42adb48cfb77752890e8b697b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01610348576040517f29f745a700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018160000181905550610363868686868660006001610409565b600090555050505050565b7fa65bb2f450488ab0858c00edc14abc5297769bf42adb48cfb77752890e8b697b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016103e9576040517f29f745a700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600181556103fd8787878787876000610409565b60009055505050505050565b60008080888861041a600182612252565b81811061042957610429612265565b905060200281019061043b9190612294565b61044c9060808101906060016122d2565b905073ffffffffffffffffffffffffffffffffffffffff81161561047a57610473816106e2565b9150610491565b34610484826106e2565b61048e9190612252565b91505b73ffffffffffffffffffffffffffffffffffffffff871615610604576104b6876106e2565b92508315610567576040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815233600482015230602482015260009073ffffffffffffffffffffffffffffffffffffffff89169063dd62ed3e90604401602060405180830381865afa158015610531573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061055591906122ef565b9050610561888261079a565b5061061b565b6000546040517f15dacbea00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff898116600483015233602483015230604483015260648201889052909116906315dacbea90608401600060405180830381600087803b1580156105e757600080fd5b505af11580156105fb573d6000803e3d6000fd5b5050505061061b565b3461060e886106e2565b6106189190612252565b92505b6106278a8a8a8961091a565b6000610632886106e2565b90508381111561065057610650888861064b8785612252565b610c2c565b600061065b836106e2565b90508381111561067457610674838961064b8785612252565b6040805173ffffffffffffffffffffffffffffffffffffffff808c1682528a1660208201529081018290524260608201528c907fb8c86983f929c6b770461983d1bbde1870408120f07123e9c12d49f35a0b4c4b9060800160405180910390a2505050505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff821615610793576040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa15801561076a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061078e91906122ef565b61029d565b4792915050565b806000036107d4576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821661082d5780341015610829576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815233600482015260009073ffffffffffffffffffffffffffffffffffffffff8416906370a0823190602401602060405180830381865afa15801561089a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108be91906122ef565b905081811015610909576040517fcf47918100000000000000000000000000000000000000000000000000000000815260048101839052602481018290526044015b60405180910390fd5b61091583333085610c5d565b505050565b8282828160018114610b415760006109328585610e77565b905060008585610943600186612252565b81811061095257610952612265565b90506020028101906109649190612294565b6109759060808101906060016122d2565b9050600088815b81811015610a565760005473ffffffffffffffffffffffffffffffffffffffff168c8c838181106109af576109af612265565b90506020028101906109c19190612294565b6109cf9060208101906122d2565b73ffffffffffffffffffffffffffffffffffffffff1603610a1c576040517fbe24598300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b368c8c83818110610a2f57610a2f612265565b9050602002810190610a419190612294565b9050610a4d8e82610f83565b5060010161097c565b505060005b610a66600186612252565b811015610b38576000888883818110610a8157610a81612265565b9050602002810190610a939190612294565b610aa49060808101906060016122d2565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b2f57610ae2816106e2565b9250848281518110610af657610af6612265565b6020026020010151831115610b2f57610b2f8188878581518110610b1c57610b1c612265565b60200260200101518661064b9190612252565b50600101610a5b565b50505050610c22565b8560005b81811015610c1f5760005473ffffffffffffffffffffffffffffffffffffffff16898983818110610b7857610b78612265565b9050602002810190610b8a9190612294565b610b989060208101906122d2565b73ffffffffffffffffffffffffffffffffffffffff1603610be5576040517fbe24598300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b36898983818110610bf857610bf8612265565b9050602002810190610c0a9190612294565b9050610c168b82610f83565b50600101610b45565b50505b5050505050505050565b73ffffffffffffffffffffffffffffffffffffffff831615610c53576109158383836112b3565b6109158282611435565b73ffffffffffffffffffffffffffffffffffffffff8416610caa576040517fd1bebf0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610cf7576040517f21f7434500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff838116600483015285916000918316906370a0823190602401602060405180830381865afa158015610d68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8c91906122ef565b9050610d9a8286868661155f565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152849183918516906370a0823190602401602060405180830381865afa158015610e0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2e91906122ef565b610e389190612252565b14610e6f576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050505050565b60608160008167ffffffffffffffff811115610e9557610e95611dd5565b604051908082528060200260200182016040528015610ebe578160200160208202803683370190505b5090506000805b83811015610f7857868682818110610edf57610edf612265565b9050602002810190610ef19190612294565b610f029060808101906060016122d2565b9150610f0d826106e2565b838281518110610f1f57610f1f612265565b602090810291909101015273ffffffffffffffffffffffffffffffffffffffff8216610f705734838281518110610f5857610f58612265565b60200260200101818151610f6c9190612252565b9052505b600101610ec5565b509095945050505050565b610f99610f9360208301836122d2565b3b151590565b610fcf576040517f6eefed2000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6080810135600081900361100f576040517fe46e079c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061103e61102460608501604086016122d2565b73ffffffffffffffffffffffffffffffffffffffff161590565b61104957600061104f565b82608001355b9050600061106b61106660608601604087016122d2565b6106e2565b9050600061108261106660808701606088016122d2565b9050826000036110b9576110b961109f60608701604088016122d2565b6110af60408801602089016122d2565b876080013561163b565b8460800135821015611104576040517fcf4791810000000000000000000000000000000000000000000000000000000081526080860135600482015260248101839052604401610900565b60008061111460208801886122d2565b73ffffffffffffffffffffffffffffffffffffffff168561113860a08a018a612308565b60405161114692919061236d565b60006040518083038185875af1925050503d8060008114611183576040519150601f19603f3d011682016040523d82523d6000602084013e611188565b606091505b5091509150816111d357600061119d8261177e565b9050806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090091906123a1565b60006111e861106660808a0160608b016122d2565b90507f7bfdfdb5e3a3776976e53cb0607060f54c5312701c8cba1155cc4d5394440b388961121960208b018b6122d2565b61122960608c0160408d016122d2565b61123960808d0160608e016122d2565b8c6080013589871161124b5786611255565b6112558a88612252565b6040805196875273ffffffffffffffffffffffffffffffffffffffff95861660208801529385169386019390935292166060840152608083019190915260a08201524260c082015260e00160405180910390a1505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff8316611300576040517fd1bebf0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821661134d576040517f21f7434500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8516906370a0823190602401602060405180830381865afa1580156113ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113de91906122ef565b905080821115611424576040517fcf4791810000000000000000000000000000000000000000000000000000000081526004810183905260248101829052604401610900565b61142f8484846117fc565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8216611482576040517f21f7434500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b478111156114c5576040517fcf47918100000000000000000000000000000000000000000000000000000000815260048101829052476024820152604401610900565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d806000811461151f576040519150601f19603f3d011682016040523d82523d6000602084013e611524565b606091505b5050905080610915576040517f5a04673700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60405173ffffffffffffffffffffffffffffffffffffffff8085166024830152831660448201526064810182905261142f9085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152611852565b73ffffffffffffffffffffffffffffffffffffffff831661165b57505050565b73ffffffffffffffffffffffffffffffffffffffff82166116a8576040517f63ba9bff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff838116602483015282919085169063dd62ed3e90604401602060405180830381865afa15801561171d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061174191906122ef565b10156109155761175383836000611961565b61091583837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611961565b60606044825110156117c357505060408051808201909152601d81527f5472616e73616374696f6e2072657665727465642073696c656e746c79000000602082015290565b60006117df60048085516117d79190612252565b859190611ae3565b9050808060200190518101906117f591906123f2565b9392505050565b60405173ffffffffffffffffffffffffffffffffffffffff83166024820152604481018290526109159084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064016115b9565b60006118b4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611bfd9092919063ffffffff16565b90508051600014806118d55750808060200190518101906118d59190612469565b610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610900565b801580611a0157506040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff838116602483015284169063dd62ed3e90604401602060405180830381865afa1580156119db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119ff91906122ef565b155b611a8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401610900565b60405173ffffffffffffffffffffffffffffffffffffffff83166024820152604481018290526109159084907f095ea7b300000000000000000000000000000000000000000000000000000000906064016115b9565b606081611af181601f61248b565b1015611b29576040517f47aaf07a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b33828461248b565b84511015611b6d576040517f3b99b53d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b606082158015611b8c5760405191506000825260208201604052611bf4565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015611bc5578051835260209283019201611bad565b5050858452601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016604052505b50949350505050565b60606102c58484600085856000808673ffffffffffffffffffffffffffffffffffffffff168587604051611c31919061249e565b60006040518083038185875af1925050503d8060008114611c6e576040519150601f19603f3d011682016040523d82523d6000602084013e611c73565b606091505b5091509150611c8487838387611c8f565b979650505050505050565b60608315611d25578251600003611d1e5773ffffffffffffffffffffffffffffffffffffffff85163b611d1e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610900565b50816102c5565b6102c58383815115611d3a5781518083602001fd5b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090091906123a1565b600060208284031215611d8057600080fd5b81357fffffffff00000000000000000000000000000000000000000000000000000000811681146117f557600080fd5b73ffffffffffffffffffffffffffffffffffffffff81168114611dd257600080fd5b50565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715611e4b57611e4b611dd5565b604052919050565b600067ffffffffffffffff821115611e6d57611e6d611dd5565b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b600082601f830112611eaa57600080fd5b8135611ebd611eb882611e53565b611e04565b818152846020838601011115611ed257600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060808587031215611f0557600080fd5b8435611f1081611db0565b93506020850135611f2081611db0565b925060408501359150606085013567ffffffffffffffff811115611f4357600080fd5b611f4f87828801611e99565b91505092959194509250565b60008083601f840112611f6d57600080fd5b50813567ffffffffffffffff811115611f8557600080fd5b6020830191508360208260051b8501011115611fa057600080fd5b9250929050565b600080600080600060808688031215611fbf57600080fd5b85359450602086013567ffffffffffffffff811115611fdd57600080fd5b611fe988828901611f5b565b9095509350506040860135611ffd81611db0565b9150606086013561200d81611db0565b809150509295509295909350565b60008060008060008060a0878903121561203457600080fd5b86359550602087013567ffffffffffffffff81111561205257600080fd5b61205e89828a01611f5b565b909650945050604087013561207281611db0565b9250606087013561208281611db0565b80925050608087013590509295509295509295565b600082601f8301126120a857600080fd5b8135602067ffffffffffffffff8211156120c4576120c4611dd5565b8160051b6120d3828201611e04565b92835284810182019282810190878511156120ed57600080fd5b83870192505b84831015611c84578235825291830191908301906120f3565b600080600080600060a0868803121561212457600080fd5b853561212f81611db0565b9450602086013561213f81611db0565b9350604086013567ffffffffffffffff8082111561215c57600080fd5b61216889838a01612097565b9450606088013591508082111561217e57600080fd5b61218a89838a01612097565b935060808801359150808211156121a057600080fd5b506121ad88828901611e99565b9150509295509295909350565b600080600080600060a086880312156121d257600080fd5b85356121dd81611db0565b945060208601356121ed81611db0565b93506040860135925060608601359150608086013567ffffffffffffffff81111561221757600080fd5b6121ad88828901611e99565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8181038181111561029d5761029d612223565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600082357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff218336030181126122c857600080fd5b9190910192915050565b6000602082840312156122e457600080fd5b81356117f581611db0565b60006020828403121561230157600080fd5b5051919050565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe184360301811261233d57600080fd5b83018035915067ffffffffffffffff82111561235857600080fd5b602001915036819003821315611fa057600080fd5b8183823760009101908152919050565b60005b83811015612398578181015183820152602001612380565b50506000910152565b60208152600082518060208401526123c081604085016020870161237d565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60006020828403121561240457600080fd5b815167ffffffffffffffff81111561241b57600080fd5b8201601f8101841361242c57600080fd5b805161243a611eb882611e53565b81815285602083850101111561244f57600080fd5b61246082602083016020860161237d565b95945050505050565b60006020828403121561247b57600080fd5b815180151581146117f557600080fd5b8082018082111561029d5761029d612223565b600082516122c881846020870161237d56fea2646970667358221220757550f4986391fe98f4be3b775ce0331c333a4bbdb27a8dee28597ea200526a64736f6c634300081100330000000000000000000000005741a7ffe7c39ca175546a54985fa79211290b51
Deployed Bytecode
0x6080604052600436106100745760003560e01c80637f555b031161004e5780637f555b031461011b578063a83cbaa31461016d578063bc197c8114610180578063f23a6e61146101c557600080fd5b806301ffc9a714610080578063150b7a02146100b55780634f91bc2b1461010657600080fd5b3661007b57005b600080fd5b34801561008c57600080fd5b506100a061009b366004611d6e565b61020a565b60405190151581526020015b60405180910390f35b3480156100c157600080fd5b506100d56100d0366004611eef565b6102a3565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020016100ac565b610119610114366004611fa7565b6102cd565b005b34801561012757600080fd5b506000546101489073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100ac565b61011961017b36600461201b565b61036e565b34801561018c57600080fd5b506100d561019b36600461210c565b7fbc197c810000000000000000000000000000000000000000000000000000000095945050505050565b3480156101d157600080fd5b506100d56101e03660046121ba565b7ff23a6e610000000000000000000000000000000000000000000000000000000095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f4e2312e000000000000000000000000000000000000000000000000000000000148061029d57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b7f150b7a02000000000000000000000000000000000000000000000000000000005b949350505050565b7fa65bb2f450488ab0858c00edc14abc5297769bf42adb48cfb77752890e8b697b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01610348576040517f29f745a700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018160000181905550610363868686868660006001610409565b600090555050505050565b7fa65bb2f450488ab0858c00edc14abc5297769bf42adb48cfb77752890e8b697b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016103e9576040517f29f745a700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600181556103fd8787878787876000610409565b60009055505050505050565b60008080888861041a600182612252565b81811061042957610429612265565b905060200281019061043b9190612294565b61044c9060808101906060016122d2565b905073ffffffffffffffffffffffffffffffffffffffff81161561047a57610473816106e2565b9150610491565b34610484826106e2565b61048e9190612252565b91505b73ffffffffffffffffffffffffffffffffffffffff871615610604576104b6876106e2565b92508315610567576040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815233600482015230602482015260009073ffffffffffffffffffffffffffffffffffffffff89169063dd62ed3e90604401602060405180830381865afa158015610531573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061055591906122ef565b9050610561888261079a565b5061061b565b6000546040517f15dacbea00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff898116600483015233602483015230604483015260648201889052909116906315dacbea90608401600060405180830381600087803b1580156105e757600080fd5b505af11580156105fb573d6000803e3d6000fd5b5050505061061b565b3461060e886106e2565b6106189190612252565b92505b6106278a8a8a8961091a565b6000610632886106e2565b90508381111561065057610650888861064b8785612252565b610c2c565b600061065b836106e2565b90508381111561067457610674838961064b8785612252565b6040805173ffffffffffffffffffffffffffffffffffffffff808c1682528a1660208201529081018290524260608201528c907fb8c86983f929c6b770461983d1bbde1870408120f07123e9c12d49f35a0b4c4b9060800160405180910390a2505050505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff821615610793576040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa15801561076a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061078e91906122ef565b61029d565b4792915050565b806000036107d4576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821661082d5780341015610829576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815233600482015260009073ffffffffffffffffffffffffffffffffffffffff8416906370a0823190602401602060405180830381865afa15801561089a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108be91906122ef565b905081811015610909576040517fcf47918100000000000000000000000000000000000000000000000000000000815260048101839052602481018290526044015b60405180910390fd5b61091583333085610c5d565b505050565b8282828160018114610b415760006109328585610e77565b905060008585610943600186612252565b81811061095257610952612265565b90506020028101906109649190612294565b6109759060808101906060016122d2565b9050600088815b81811015610a565760005473ffffffffffffffffffffffffffffffffffffffff168c8c838181106109af576109af612265565b90506020028101906109c19190612294565b6109cf9060208101906122d2565b73ffffffffffffffffffffffffffffffffffffffff1603610a1c576040517fbe24598300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b368c8c83818110610a2f57610a2f612265565b9050602002810190610a419190612294565b9050610a4d8e82610f83565b5060010161097c565b505060005b610a66600186612252565b811015610b38576000888883818110610a8157610a81612265565b9050602002810190610a939190612294565b610aa49060808101906060016122d2565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b2f57610ae2816106e2565b9250848281518110610af657610af6612265565b6020026020010151831115610b2f57610b2f8188878581518110610b1c57610b1c612265565b60200260200101518661064b9190612252565b50600101610a5b565b50505050610c22565b8560005b81811015610c1f5760005473ffffffffffffffffffffffffffffffffffffffff16898983818110610b7857610b78612265565b9050602002810190610b8a9190612294565b610b989060208101906122d2565b73ffffffffffffffffffffffffffffffffffffffff1603610be5576040517fbe24598300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b36898983818110610bf857610bf8612265565b9050602002810190610c0a9190612294565b9050610c168b82610f83565b50600101610b45565b50505b5050505050505050565b73ffffffffffffffffffffffffffffffffffffffff831615610c53576109158383836112b3565b6109158282611435565b73ffffffffffffffffffffffffffffffffffffffff8416610caa576040517fd1bebf0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610cf7576040517f21f7434500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff838116600483015285916000918316906370a0823190602401602060405180830381865afa158015610d68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8c91906122ef565b9050610d9a8286868661155f565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152849183918516906370a0823190602401602060405180830381865afa158015610e0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2e91906122ef565b610e389190612252565b14610e6f576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050505050565b60608160008167ffffffffffffffff811115610e9557610e95611dd5565b604051908082528060200260200182016040528015610ebe578160200160208202803683370190505b5090506000805b83811015610f7857868682818110610edf57610edf612265565b9050602002810190610ef19190612294565b610f029060808101906060016122d2565b9150610f0d826106e2565b838281518110610f1f57610f1f612265565b602090810291909101015273ffffffffffffffffffffffffffffffffffffffff8216610f705734838281518110610f5857610f58612265565b60200260200101818151610f6c9190612252565b9052505b600101610ec5565b509095945050505050565b610f99610f9360208301836122d2565b3b151590565b610fcf576040517f6eefed2000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6080810135600081900361100f576040517fe46e079c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061103e61102460608501604086016122d2565b73ffffffffffffffffffffffffffffffffffffffff161590565b61104957600061104f565b82608001355b9050600061106b61106660608601604087016122d2565b6106e2565b9050600061108261106660808701606088016122d2565b9050826000036110b9576110b961109f60608701604088016122d2565b6110af60408801602089016122d2565b876080013561163b565b8460800135821015611104576040517fcf4791810000000000000000000000000000000000000000000000000000000081526080860135600482015260248101839052604401610900565b60008061111460208801886122d2565b73ffffffffffffffffffffffffffffffffffffffff168561113860a08a018a612308565b60405161114692919061236d565b60006040518083038185875af1925050503d8060008114611183576040519150601f19603f3d011682016040523d82523d6000602084013e611188565b606091505b5091509150816111d357600061119d8261177e565b9050806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090091906123a1565b60006111e861106660808a0160608b016122d2565b90507f7bfdfdb5e3a3776976e53cb0607060f54c5312701c8cba1155cc4d5394440b388961121960208b018b6122d2565b61122960608c0160408d016122d2565b61123960808d0160608e016122d2565b8c6080013589871161124b5786611255565b6112558a88612252565b6040805196875273ffffffffffffffffffffffffffffffffffffffff95861660208801529385169386019390935292166060840152608083019190915260a08201524260c082015260e00160405180910390a1505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff8316611300576040517fd1bebf0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821661134d576040517f21f7434500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8516906370a0823190602401602060405180830381865afa1580156113ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113de91906122ef565b905080821115611424576040517fcf4791810000000000000000000000000000000000000000000000000000000081526004810183905260248101829052604401610900565b61142f8484846117fc565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8216611482576040517f21f7434500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b478111156114c5576040517fcf47918100000000000000000000000000000000000000000000000000000000815260048101829052476024820152604401610900565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d806000811461151f576040519150601f19603f3d011682016040523d82523d6000602084013e611524565b606091505b5050905080610915576040517f5a04673700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60405173ffffffffffffffffffffffffffffffffffffffff8085166024830152831660448201526064810182905261142f9085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152611852565b73ffffffffffffffffffffffffffffffffffffffff831661165b57505050565b73ffffffffffffffffffffffffffffffffffffffff82166116a8576040517f63ba9bff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff838116602483015282919085169063dd62ed3e90604401602060405180830381865afa15801561171d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061174191906122ef565b10156109155761175383836000611961565b61091583837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611961565b60606044825110156117c357505060408051808201909152601d81527f5472616e73616374696f6e2072657665727465642073696c656e746c79000000602082015290565b60006117df60048085516117d79190612252565b859190611ae3565b9050808060200190518101906117f591906123f2565b9392505050565b60405173ffffffffffffffffffffffffffffffffffffffff83166024820152604481018290526109159084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064016115b9565b60006118b4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611bfd9092919063ffffffff16565b90508051600014806118d55750808060200190518101906118d59190612469565b610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610900565b801580611a0157506040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff838116602483015284169063dd62ed3e90604401602060405180830381865afa1580156119db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119ff91906122ef565b155b611a8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401610900565b60405173ffffffffffffffffffffffffffffffffffffffff83166024820152604481018290526109159084907f095ea7b300000000000000000000000000000000000000000000000000000000906064016115b9565b606081611af181601f61248b565b1015611b29576040517f47aaf07a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b33828461248b565b84511015611b6d576040517f3b99b53d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b606082158015611b8c5760405191506000825260208201604052611bf4565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015611bc5578051835260209283019201611bad565b5050858452601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016604052505b50949350505050565b60606102c58484600085856000808673ffffffffffffffffffffffffffffffffffffffff168587604051611c31919061249e565b60006040518083038185875af1925050503d8060008114611c6e576040519150601f19603f3d011682016040523d82523d6000602084013e611c73565b606091505b5091509150611c8487838387611c8f565b979650505050505050565b60608315611d25578251600003611d1e5773ffffffffffffffffffffffffffffffffffffffff85163b611d1e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610900565b50816102c5565b6102c58383815115611d3a5781518083602001fd5b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090091906123a1565b600060208284031215611d8057600080fd5b81357fffffffff00000000000000000000000000000000000000000000000000000000811681146117f557600080fd5b73ffffffffffffffffffffffffffffffffffffffff81168114611dd257600080fd5b50565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715611e4b57611e4b611dd5565b604052919050565b600067ffffffffffffffff821115611e6d57611e6d611dd5565b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b600082601f830112611eaa57600080fd5b8135611ebd611eb882611e53565b611e04565b818152846020838601011115611ed257600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060808587031215611f0557600080fd5b8435611f1081611db0565b93506020850135611f2081611db0565b925060408501359150606085013567ffffffffffffffff811115611f4357600080fd5b611f4f87828801611e99565b91505092959194509250565b60008083601f840112611f6d57600080fd5b50813567ffffffffffffffff811115611f8557600080fd5b6020830191508360208260051b8501011115611fa057600080fd5b9250929050565b600080600080600060808688031215611fbf57600080fd5b85359450602086013567ffffffffffffffff811115611fdd57600080fd5b611fe988828901611f5b565b9095509350506040860135611ffd81611db0565b9150606086013561200d81611db0565b809150509295509295909350565b60008060008060008060a0878903121561203457600080fd5b86359550602087013567ffffffffffffffff81111561205257600080fd5b61205e89828a01611f5b565b909650945050604087013561207281611db0565b9250606087013561208281611db0565b80925050608087013590509295509295509295565b600082601f8301126120a857600080fd5b8135602067ffffffffffffffff8211156120c4576120c4611dd5565b8160051b6120d3828201611e04565b92835284810182019282810190878511156120ed57600080fd5b83870192505b84831015611c84578235825291830191908301906120f3565b600080600080600060a0868803121561212457600080fd5b853561212f81611db0565b9450602086013561213f81611db0565b9350604086013567ffffffffffffffff8082111561215c57600080fd5b61216889838a01612097565b9450606088013591508082111561217e57600080fd5b61218a89838a01612097565b935060808801359150808211156121a057600080fd5b506121ad88828901611e99565b9150509295509295909350565b600080600080600060a086880312156121d257600080fd5b85356121dd81611db0565b945060208601356121ed81611db0565b93506040860135925060608601359150608086013567ffffffffffffffff81111561221757600080fd5b6121ad88828901611e99565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8181038181111561029d5761029d612223565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600082357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff218336030181126122c857600080fd5b9190910192915050565b6000602082840312156122e457600080fd5b81356117f581611db0565b60006020828403121561230157600080fd5b5051919050565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe184360301811261233d57600080fd5b83018035915067ffffffffffffffff82111561235857600080fd5b602001915036819003821315611fa057600080fd5b8183823760009101908152919050565b60005b83811015612398578181015183820152602001612380565b50506000910152565b60208152600082518060208401526123c081604085016020870161237d565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60006020828403121561240457600080fd5b815167ffffffffffffffff81111561241b57600080fd5b8201601f8101841361242c57600080fd5b805161243a611eb882611e53565b81815285602083850101111561244f57600080fd5b61246082602083016020860161237d565b95945050505050565b60006020828403121561247b57600080fd5b815180151581146117f557600080fd5b8082018082111561029d5761029d612223565b600082516122c881846020870161237d56fea2646970667358221220757550f4986391fe98f4be3b775ce0331c333a4bbdb27a8dee28597ea200526a64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005741a7ffe7c39ca175546a54985fa79211290b51
-----Decoded View---------------
Arg [0] : _erc20Proxy (address): 0x5741A7FfE7c39Ca175546a54985fA79211290b51
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005741a7ffe7c39ca175546a54985fa79211290b51
Deployed Bytecode Sourcemap
47100:8331:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44219:223;;;;;;;;;;-1:-1:-1;44219:223:0;;;;;:::i;:::-;;:::i;:::-;;;516:14:1;;509:22;491:41;;479:2;464:18;44219:223:0;;;;;;;;46757:164;;;;;;;;;;-1:-1:-1;46757:164:0;;;;;:::i;:::-;;:::i;:::-;;;2791:66:1;2779:79;;;2761:98;;2749:2;2734:18;46757:164:0;2617:248:1;49260:418:0;;;;;;:::i;:::-;;:::i;:::-;;47259:29;;;;;;;;;;-1:-1:-1;47259:29:0;;;;;;;;;;;4295:42:1;4283:55;;;4265:74;;4253:2;4238:18;47259:29:0;4099:246:1;50090:438:0;;;;;;:::i;:::-;;:::i;45013:255::-;;;;;;;;;;-1:-1:-1;45013:255:0;;;;;:::i;:::-;45224:36;45013:255;;;;;;;;44778:227;;;;;;;;;;-1:-1:-1;44778:227:0;;;;;:::i;:::-;44966:31;44778:227;;;;;;;;44219:223;44321:4;44345:49;;;44360:34;44345:49;;:89;;-1:-1:-1;44003:25:0;43988:40;;;;44398:36;44338:96;44219:223;-1:-1:-1;;44219:223:0:o;46757:164::-;46883:30;46757:164;;;;;;;:::o;49260:418::-;297:37;727:8;;:20;;723:50;;756:17;;;;;;;;;;;;;;723:50;593:1;784;:8;;:19;;;;49500:170:::1;49528:14;49557:9;;49581:19;49615:9;49639:1;49655:4;49500:13;:170::i;:::-;549:1:::0;826:23;;-1:-1:-1;;;;;49260:418:0:o;50090:438::-;297:37;727:8;;:20;;723:50;;756:17;;;;;;;;;;;;;;723:50;593:1;784:19;;50343:177:::1;50371:14:::0;50400:9;;50424:19;50458:9;50482:7;784:8;50343:13:::1;:177::i;:::-;549:1:::0;826:23;;-1:-1:-1;;;;;;50090:438:0:o;51041:2483::-;51304:23;;;51405:9;;51415:20;51434:1;51405:9;51415:20;:::i;:::-;51405:31;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:62;;;;;;;;;:::i;:::-;51382:85;-1:-1:-1;29183:25:0;;;;51478:277;;51564:36;51587:12;51564:22;:36::i;:::-;51536:64;;51478:277;;;51734:9;51678:36;51701:12;51678:22;:36::i;:::-;:65;;;;:::i;:::-;51633:110;;51478:277;29183:25;;;;51767:791;;51850:43;51873:19;51850:22;:43::i;:::-;51832:61;;51912:17;51908:499;;;51970:125;;;;;52030:10;51970:125;;;9178:34:1;52071:4:0;9228:18:1;;;9221:43;51950:17:0;;51970:37;;;;;;9090:18:1;;51970:125:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51950:145;;52114:53;52136:19;52157:9;52114:21;:53::i;:::-;51931:252;51767:791;;51908:499;52208:10;;:183;;;;;:10;9774:15:1;;;52208:183:0;;;9756:34:1;52296:10:0;9806:18:1;;;9799:43;52337:4:0;9858:18:1;;;9851:43;9910:18;;;9903:34;;;52208:10:0;;;;:23;;9667:19:1;;52208:183:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51767:791;;;52537:9;52474:43;52497:19;52474:22;:43::i;:::-;:72;;;;:::i;:::-;52439:107;;51767:791;52570:51;52584:14;52600:9;;52611;52570:13;:51::i;:::-;52634:23;52660:43;52683:19;52660:22;:43::i;:::-;52634:69;;52736:15;52718;:33;52714:221;;;52768:155;52809:19;52847:9;52875:33;52893:15;52875;:33;:::i;:::-;52768:22;:155::i;:::-;52947:33;52983:60;53020:12;52983:22;:60::i;:::-;52947:96;;53088:25;53060;:53;53056:254;;;53130:168;53171:12;53202:9;53230:53;53258:25;53230;:53;:::i;53130:168::-;53327:189;;;10197:42:1;10266:15;;;10248:34;;10318:15;;10313:2;10298:18;;10291:43;10350:18;;;10343:34;;;53490:15:0;10408:2:1;10393:18;;10386:34;53363:14:0;;53327:189;;10174:3:1;10159:19;53327:189:0;;;;;;;51293:2231;;;;;51041:2483;;;;;;;:::o;24527:234::-;24590:7;29183:25;;;;24630:123;;24713:40;;;;;24747:4;24713:40;;;4265:74:1;24713:25:0;;;;;;4238:18:1;;24713:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24630:123;;;24672:21;24610:143;24527:234;-1:-1:-1;;24527:234:0:o;28023:477::-;28102:6;28112:1;28102:11;28098:39;;28122:15;;;;;;;;;;;;;;28098:39;29183:25;;;28148:345;;28207:6;28195:9;:18;28191:46;;;28222:15;;;;;;;;;;;;;;28191:46;28023:477;;:::o;28148:345::-;28288:37;;;;;28314:10;28288:37;;;4265:74:1;28270:15:0;;28288:25;;;;;;4238:18:1;;28288:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28270:55;;28354:6;28344:7;:16;28340:65;;;28369:36;;;;;;;;10836:25:1;;;10877:18;;;10870:34;;;10809:18;;28369:36:0;;;;;;;;28340:65;28420:61;28438:7;28447:10;28467:4;28474:6;28420:17;:61::i;:::-;28255:238;28023:477;;:::o;53774:670::-;53949:9;;53960:17;53949:9;47639:1;47627:13;;47623:963;;47657:32;47692:22;47707:6;;47692:14;:22::i;:::-;47657:57;-1:-1:-1;47729:18:0;47750:6;;47757:12;47768:1;47757:8;:12;:::i;:::-;47750:20;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:37;;;;;;;;;:::i;:::-;47729:58;-1:-1:-1;47802:18:0;54009:9;47802:18;54036:401:::1;54060:8;54056:1;:12;54036:401;;;54122:10;::::0;::::1;;54091:9:::0;;54101:1;54091:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:19;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;:42;;::::0;54087:144:::1;;54161:14;;;;;;;;;;;;;;54087:144;54247:41;54291:9;;54301:1;54291:12;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;54247:56;;54318:45;54331:14;54347:15;54318:12;:45::i;:::-;-1:-1:-1::0;54407:3:0::1;;54036:401;;;;53979:465;47864:9:::0;47859:682;47883:12;47894:1;47883:8;:12;:::i;:::-;47879:1;:16;47859:682;;;47918:16;47937:6;;47944:1;47937:9;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:26;;;;;;;;;:::i;:::-;47918:45;;48044:10;48032:22;;:8;:22;;;48028:424;;48092:32;48115:8;48092:22;:32::i;:::-;48079:45;;48164:15;48180:1;48164:18;;;;;;;;:::i;:::-;;;;;;;48151:10;:31;48147:286;;;48211:198;48264:8;48303:17;48364:15;48380:1;48364:18;;;;;;;;:::i;:::-;;;;;;;48351:10;:31;;;;:::i;48211:198::-;-1:-1:-1;48503:3:0;;47859:682;;;;47642:910;;;47623:963;;;54009:9;53990:16:::1;54036:401;54060:8;54056:1;:12;54036:401;;;54122:10;::::0;::::1;;54091:9:::0;;54101:1;54091:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:19;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;:42;;::::0;54087:144:::1;;54161:14;;;;;;;;;;;;;;54087:144;54247:41;54291:9;;54301:1;54291:12;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;54247:56;;54318:45;54331:14;54347:15;54318:12;:45::i;:::-;-1:-1:-1::0;54407:3:0::1;;54036:401;;;;53979:465;47623:963:::0;47569:1024;53774:670;;;;;;;:::o;29699:278::-;29183:25;;;;29836:133;;29928:41;29942:7;29951:9;29962:6;29928:13;:41::i;29836:133::-;29874:38;29894:9;29905:6;29874:19;:38::i;27412:603::-;29183:25;;;27561:89;;27611:27;;;;;;;;;;;;;;27561:89;27664:18;;;27660:83;;27706:25;;;;;;;;;;;;;;27660:83;27818:19;;;;;:15;4283:55:1;;;27818:19:0;;;4265:74:1;27777:7:0;;27755:12;;27818:15;;;;;4238:18:1;;27818:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27796:41;;27848:51;27875:5;27882:4;27888:2;27892:6;27848:26;:51::i;:::-;27914:19;;;;;:15;4283:55:1;;;27914:19:0;;;4265:74:1;27951:6:0;;27936:11;;27914:15;;;;;4238:18:1;;27914:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:33;;;;:::i;:::-;:43;27910:98;;27981:15;;;;;;;;;;;;;;27910:98;27550:465;;27412:603;;;;:::o;54638:629::-;54739:16;54787:9;54768:16;54787:9;54842:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54842:23:0;-1:-1:-1;54814:51:0;-1:-1:-1;54876:13:0;;54900:332;54924:8;54920:1;:12;54900:332;;;54959:9;;54969:1;54959:12;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:29;;;;;;;;;:::i;:::-;54951:37;;55017:29;55040:5;55017:22;:29::i;:::-;55003:8;55012:1;55003:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;29183:25;;;55063:94;;55132:9;55117:8;55126:1;55117:11;;;;;;;;:::i;:::-;;;;;;:24;;;;;;;:::i;:::-;;;-1:-1:-1;55063:94:0;55202:3;;54900:332;;;-1:-1:-1;55251:8:0;;54638:629;-1:-1:-1;;;;;54638:629:0:o;36204:1822::-;36291:33;36311:12;;;;:5;:12;:::i;:::-;30259:26;30313:8;;;30064:265;36291:33;36286:64;;36333:17;;;;;;;;;;;;;;36286:64;36382:16;;;;36361:18;36413:15;;;36409:51;;36437:23;;;;;;;;;;;;;;36409:51;36471:19;36493:44;36516:20;;;;;;;;:::i;:::-;29183:25;;;;29096:120;36493:44;:93;;36585:1;36493:93;;;36553:5;:16;;;36493:93;36471:115;-1:-1:-1;36597:34:0;36634:68;36671:20;;;;;;;;:::i;:::-;36634:22;:68::i;:::-;36597:105;-1:-1:-1;36713:36:0;36752:70;36789:22;;;;;;;;:::i;36752:70::-;36713:109;;36839:11;36854:1;36839:16;36835:204;;36872:155;36922:20;;;;;;;;:::i;:::-;36962:15;;;;;;;;:::i;:::-;36996:5;:16;;;36872:24;:155::i;:::-;37084:5;:16;;;37055:26;:45;37051:199;;;37124:114;;;;;37162:16;;;;37124:114;;;10836:25:1;10877:18;;;10870:34;;;10809:18;;37124:114:0;10662:248:1;37051:199:0;37323:12;;37357;;;;:5;:12;:::i;:::-;:17;;37396:11;37419:14;;;;:5;:14;:::i;:::-;37357:77;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37322:112;;;;37450:7;37445:118;;37474:20;37497:25;37518:3;37497:20;:25::i;:::-;37474:48;;37544:6;37537:14;;;;;;;;;;;:::i;37445:118::-;37575:18;37596:46;37619:22;;;;;;;;:::i;37596:46::-;37575:67;-1:-1:-1;37660:358:0;37687:13;37715:12;;;;:5;:12;:::i;:::-;37742:20;;;;;;;;:::i;:::-;37777:22;;;;;;;;:::i;:::-;37814:5;:16;;;37858:28;37845:10;:41;:132;;37967:10;37845:132;;;37906:41;37919:28;37906:10;:41;:::i;:::-;37660:358;;;12806:25:1;;;12850:42;12928:15;;;12923:2;12908:18;;12901:43;12980:15;;;12960:18;;;12953:43;;;;13032:15;;13027:2;13012:18;;13005:43;13079:3;13064:19;;13057:35;;;;13123:3;13108:19;;13101:35;37992:15:0;13167:3:1;13152:19;;13145:35;12793:3;12778:19;37660:358:0;;;;;;;36275:1751;;;;;;;36204:1822;;:::o;26547:581::-;29183:25;;;26675:89;;26725:27;;;;;;;;;;;;;;26675:89;26778:25;;;26774:90;;26827:25;;;;;;;;;;;;;;26774:90;26899:40;;;;;26933:4;26899:40;;;4265:74:1;26876:20:0;;26899:25;;;;;;4238:18:1;;26899:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26876:63;;26963:12;26954:6;:21;26950:102;;;26999:41;;;;;;;;10836:25:1;;;10877:18;;;10870:34;;;10809:18;;26999:41:0;10662:248:1;26950:102:0;27062:58;27092:7;27102:9;27113:6;27062:22;:58::i;:::-;26664:464;26547:581;;;:::o;24977:488::-;25097:25;;;25093:63;;25131:25;;;;;;;;;;;;;;25093:63;25180:21;25171:6;:30;25167:106;;;25223:50;;;;;;;;10836:25:1;;;25251:21:0;10877:18:1;;;10870:34;10809:18;;25223:50:0;10662:248:1;25167:106:0;25345:12;25363:9;:14;;25386:6;25363:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25344:54;;;25414:7;25409:48;;25430:27;;;;;;;;;;;;;;18084:205;18212:68;;13613:42:1;13682:15;;;18212:68:0;;;13664:34:1;13734:15;;13714:18;;;13707:43;13766:18;;;13759:34;;;18185:96:0;;18205:5;;18235:27;;13576:18:1;;18212:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18185:19;:96::i;25757:523::-;29183:25;;;25885:70;;25757:523;;;:::o;25885:70::-;25969:23;;;25965:91;;26016:28;;;;;;;;;;;;;;25965:91;26072:41;;;;;26098:4;26072:41;;;9178:34:1;26072:17:0;9248:15:1;;;9228:18;;;9221:43;26116:6:0;;26072:17;;;;;;9090:18:1;;26072:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:50;26068:205;;;26139:50;26168:7;26178;26187:1;26139:21;:50::i;:::-;26204:57;26233:7;26243;24051:17;26204:21;:57::i;34906:494::-;34986:13;35142:2;35128:4;:11;:16;35124:60;;;-1:-1:-1;;35146:38:0;;;;;;;;;;;;;;;;;;34906:494::o;35124:60::-;35195:23;35221:30;35232:1;35249;35235:4;:11;:15;;;;:::i;:::-;35221:4;;:30;:10;:30::i;:::-;35195:56;;35330:10;35319:32;;;;;;;;;;;;:::i;:::-;35312:39;34906:494;-1:-1:-1;;;34906:494:0:o;17662:177::-;17772:58;;14661:42:1;14649:55;;17772:58:0;;;14631:74:1;14721:18;;;14714:34;;;17745:86:0;;17765:5;;17795:23;;14604:18:1;;17772:58:0;14457:297:1;21985:649:0;22409:23;22435:69;22463:4;22435:69;;;;;;;;;;;;;;;;;22443:5;22435:27;;;;:69;;;;;:::i;:::-;22409:95;;22523:10;:17;22544:1;22523:22;:56;;;;22560:10;22549:30;;;;;;;;;;;;:::i;:::-;22515:111;;;;;;;15243:2:1;22515:111:0;;;15225:21:1;15282:2;15262:18;;;15255:30;15321:34;15301:18;;;15294:62;15392:12;15372:18;;;15365:40;15422:19;;22515:111:0;15041:406:1;18558:582:0;18888:10;;;18887:62;;-1:-1:-1;18904:39:0;;;;;18928:4;18904:39;;;9178:34:1;18904:15:0;9248::1;;;9228:18;;;9221:43;18904:15:0;;;;;9090:18:1;;18904:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:44;18887:62;18865:166;;;;;;;15654:2:1;18865:166:0;;;15636:21:1;15693:2;15673:18;;;15666:30;15732:34;15712:18;;;15705:62;15803:24;15783:18;;;15776:52;15845:19;;18865:166:0;15452:418:1;18865:166:0;19069:62;;14661:42:1;14649:55;;19069:62:0;;;14631:74:1;14721:18;;;14714:34;;;19042:90:0;;19062:5;;19092:22;;14604:18:1;;19069:62:0;14457:297:1;30631:3058:0;30757:12;30801:7;30786:12;30801:7;30796:2;30786:12;:::i;:::-;:22;30782:50;;;30817:15;;;;;;;;;;;;;;30782:50;30863:16;30872:7;30863:6;:16;:::i;:::-;30847:6;:13;:32;30843:63;;;30888:18;;;;;;;;;;;;;;30843:63;30919:22;30985:15;;31014:2224;;;;33382:4;33376:11;33363:24;;33571:1;33560:9;33553:20;33621:4;33610:9;33606:20;33600:4;33593:34;30978:2664;;31014:2224;31199:4;31193:11;31180:24;;31868:2;31859:7;31855:16;32299:9;32292:17;32286:4;32282:28;32249:9;32238;32234:25;32208:121;32366:7;32362:2;32358:16;32759:6;32694:9;32687:17;32681:4;32677:28;32636:9;32628:6;32624:22;32590:142;32560:228;32394:592;32815:3;32811:2;32808:11;32394:592;;;32957:9;;32946:21;;32857:4;32849:13;;;;32890;32394:592;;;-1:-1:-1;;33006:26:0;;;33218:2;33201:11;33214:7;33197:25;33191:4;33184:39;-1:-1:-1;30978:2664:0;-1:-1:-1;33672:9:0;30631:3058;-1:-1:-1;;;;30631:3058:0:o;11544:229::-;11681:12;11713:52;11735:6;11743:4;11749:1;11752:12;11681;12918;12932:23;12959:6;:11;;12978:5;12985:4;12959:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12917:73;;;;13008:69;13035:6;13043:7;13052:10;13064:12;13008:26;:69::i;:::-;13001:76;12630:455;-1:-1:-1;;;;;;;12630:455:0:o;15203:644::-;15388:12;15417:7;15413:427;;;15445:10;:17;15466:1;15445:22;15441:290;;9084:19;;;;15655:60;;;;;;;16906:2:1;15655:60:0;;;16888:21:1;16945:2;16925:18;;;16918:30;16984:31;16964:18;;;16957:59;17033:18;;15655:60:0;16704:353:1;15655:60:0;-1:-1:-1;15752:10:0;15745:17;;15413:427;15795:33;15803:10;15815:12;16550:17;;:21;16546:388;;16782:10;16776:17;16839:15;16826:10;16822:2;16818:19;16811:44;16546:388;16909:12;16902:20;;;;;;;;;;;:::i;14:332:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;180:9;167:23;230:66;223:5;219:78;212:5;209:89;199:117;;312:1;309;302:12;543:154;629:42;622:5;618:54;611:5;608:65;598:93;;687:1;684;677:12;598:93;543:154;:::o;702:184::-;754:77;751:1;744:88;851:4;848:1;841:15;875:4;872:1;865:15;891:334;962:2;956:9;1018:2;1008:13;;1023:66;1004:86;992:99;;1121:18;1106:34;;1142:22;;;1103:62;1100:88;;;1168:18;;:::i;:::-;1204:2;1197:22;891:334;;-1:-1:-1;891:334:1:o;1230:245::-;1278:4;1311:18;1303:6;1300:30;1297:56;;;1333:18;;:::i;:::-;-1:-1:-1;1390:2:1;1378:15;1395:66;1374:88;1464:4;1370:99;;1230:245::o;1480:462::-;1522:5;1575:3;1568:4;1560:6;1556:17;1552:27;1542:55;;1593:1;1590;1583:12;1542:55;1629:6;1616:20;1660:48;1676:31;1704:2;1676:31;:::i;:::-;1660:48;:::i;:::-;1733:2;1724:7;1717:19;1779:3;1772:4;1767:2;1759:6;1755:15;1751:26;1748:35;1745:55;;;1796:1;1793;1786:12;1745:55;1861:2;1854:4;1846:6;1842:17;1835:4;1826:7;1822:18;1809:55;1909:1;1884:16;;;1902:4;1880:27;1873:38;;;;1888:7;1480:462;-1:-1:-1;;;1480:462:1:o;1947:665::-;2042:6;2050;2058;2066;2119:3;2107:9;2098:7;2094:23;2090:33;2087:53;;;2136:1;2133;2126:12;2087:53;2175:9;2162:23;2194:31;2219:5;2194:31;:::i;:::-;2244:5;-1:-1:-1;2301:2:1;2286:18;;2273:32;2314:33;2273:32;2314:33;:::i;:::-;2366:7;-1:-1:-1;2420:2:1;2405:18;;2392:32;;-1:-1:-1;2475:2:1;2460:18;;2447:32;2502:18;2491:30;;2488:50;;;2534:1;2531;2524:12;2488:50;2557:49;2598:7;2589:6;2578:9;2574:22;2557:49;:::i;:::-;2547:59;;;1947:665;;;;;;;:::o;2870:384::-;2950:8;2960:6;3014:3;3007:4;2999:6;2995:17;2991:27;2981:55;;3032:1;3029;3022:12;2981:55;-1:-1:-1;3055:20:1;;3098:18;3087:30;;3084:50;;;3130:1;3127;3120:12;3084:50;3167:4;3159:6;3155:17;3143:29;;3227:3;3220:4;3210:6;3207:1;3203:14;3195:6;3191:27;3187:38;3184:47;3181:67;;;3244:1;3241;3234:12;3181:67;2870:384;;;;;:::o;3259:835::-;3408:6;3416;3424;3432;3440;3493:3;3481:9;3472:7;3468:23;3464:33;3461:53;;;3510:1;3507;3500:12;3461:53;3546:9;3533:23;3523:33;;3607:2;3596:9;3592:18;3579:32;3634:18;3626:6;3623:30;3620:50;;;3666:1;3663;3656:12;3620:50;3705:87;3784:7;3775:6;3764:9;3760:22;3705:87;:::i;:::-;3811:8;;-1:-1:-1;3679:113:1;-1:-1:-1;;3896:2:1;3881:18;;3868:32;3909:31;3868:32;3909:31;:::i;:::-;3959:5;-1:-1:-1;4016:2:1;4001:18;;3988:32;4029:33;3988:32;4029:33;:::i;:::-;4081:7;4071:17;;;3259:835;;;;;;;;:::o;4350:904::-;4508:6;4516;4524;4532;4540;4548;4601:3;4589:9;4580:7;4576:23;4572:33;4569:53;;;4618:1;4615;4608:12;4569:53;4654:9;4641:23;4631:33;;4715:2;4704:9;4700:18;4687:32;4742:18;4734:6;4731:30;4728:50;;;4774:1;4771;4764:12;4728:50;4813:87;4892:7;4883:6;4872:9;4868:22;4813:87;:::i;:::-;4919:8;;-1:-1:-1;4787:113:1;-1:-1:-1;;5004:2:1;4989:18;;4976:32;5017:31;4976:32;5017:31;:::i;:::-;5067:5;-1:-1:-1;5124:2:1;5109:18;;5096:32;5137:33;5096:32;5137:33;:::i;:::-;5189:7;5179:17;;;5243:3;5232:9;5228:19;5215:33;5205:43;;4350:904;;;;;;;;:::o;5259:712::-;5313:5;5366:3;5359:4;5351:6;5347:17;5343:27;5333:55;;5384:1;5381;5374:12;5333:55;5420:6;5407:20;5446:4;5469:18;5465:2;5462:26;5459:52;;;5491:18;;:::i;:::-;5537:2;5534:1;5530:10;5560:28;5584:2;5580;5576:11;5560:28;:::i;:::-;5622:15;;;5692;;;5688:24;;;5653:12;;;;5724:15;;;5721:35;;;5752:1;5749;5742:12;5721:35;5788:2;5780:6;5776:15;5765:26;;5800:142;5816:6;5811:3;5808:15;5800:142;;;5882:17;;5870:30;;5833:12;;;;5920;;;;5800:142;;5976:1071;6130:6;6138;6146;6154;6162;6215:3;6203:9;6194:7;6190:23;6186:33;6183:53;;;6232:1;6229;6222:12;6183:53;6271:9;6258:23;6290:31;6315:5;6290:31;:::i;:::-;6340:5;-1:-1:-1;6397:2:1;6382:18;;6369:32;6410:33;6369:32;6410:33;:::i;:::-;6462:7;-1:-1:-1;6520:2:1;6505:18;;6492:32;6543:18;6573:14;;;6570:34;;;6600:1;6597;6590:12;6570:34;6623:61;6676:7;6667:6;6656:9;6652:22;6623:61;:::i;:::-;6613:71;;6737:2;6726:9;6722:18;6709:32;6693:48;;6766:2;6756:8;6753:16;6750:36;;;6782:1;6779;6772:12;6750:36;6805:63;6860:7;6849:8;6838:9;6834:24;6805:63;:::i;:::-;6795:73;;6921:3;6910:9;6906:19;6893:33;6877:49;;6951:2;6941:8;6938:16;6935:36;;;6967:1;6964;6957:12;6935:36;;6990:51;7033:7;7022:8;7011:9;7007:24;6990:51;:::i;:::-;6980:61;;;5976:1071;;;;;;;;:::o;7052:734::-;7156:6;7164;7172;7180;7188;7241:3;7229:9;7220:7;7216:23;7212:33;7209:53;;;7258:1;7255;7248:12;7209:53;7297:9;7284:23;7316:31;7341:5;7316:31;:::i;:::-;7366:5;-1:-1:-1;7423:2:1;7408:18;;7395:32;7436:33;7395:32;7436:33;:::i;:::-;7488:7;-1:-1:-1;7542:2:1;7527:18;;7514:32;;-1:-1:-1;7593:2:1;7578:18;;7565:32;;-1:-1:-1;7648:3:1;7633:19;;7620:33;7676:18;7665:30;;7662:50;;;7708:1;7705;7698:12;7662:50;7731:49;7772:7;7763:6;7752:9;7748:22;7731:49;:::i;7791:184::-;7843:77;7840:1;7833:88;7940:4;7937:1;7930:15;7964:4;7961:1;7954:15;7980:128;8047:9;;;8068:11;;;8065:37;;;8082:18;;:::i;8113:184::-;8165:77;8162:1;8155:88;8262:4;8259:1;8252:15;8286:4;8283:1;8276:15;8302:384;8396:4;8454:11;8441:25;8544:66;8533:8;8517:14;8513:29;8509:102;8489:18;8485:127;8475:155;;8626:1;8623;8616:12;8475:155;8647:33;;;;;8302:384;-1:-1:-1;;8302:384:1:o;8691:247::-;8750:6;8803:2;8791:9;8782:7;8778:23;8774:32;8771:52;;;8819:1;8816;8809:12;8771:52;8858:9;8845:23;8877:31;8902:5;8877:31;:::i;9275:184::-;9345:6;9398:2;9386:9;9377:7;9373:23;9369:32;9366:52;;;9414:1;9411;9404:12;9366:52;-1:-1:-1;9437:16:1;;9275:184;-1:-1:-1;9275:184:1:o;10915:580::-;10992:4;10998:6;11058:11;11045:25;11148:66;11137:8;11121:14;11117:29;11113:102;11093:18;11089:127;11079:155;;11230:1;11227;11220:12;11079:155;11257:33;;11309:20;;;-1:-1:-1;11352:18:1;11341:30;;11338:50;;;11384:1;11381;11374:12;11338:50;11417:4;11405:17;;-1:-1:-1;11448:14:1;11444:27;;;11434:38;;11431:58;;;11485:1;11482;11475:12;11500:271;11683:6;11675;11670:3;11657:33;11639:3;11709:16;;11734:13;;;11709:16;11500:271;-1:-1:-1;11500:271:1:o;11776:250::-;11861:1;11871:113;11885:6;11882:1;11879:13;11871:113;;;11961:11;;;11955:18;11942:11;;;11935:39;11907:2;11900:10;11871:113;;;-1:-1:-1;;12018:1:1;12000:16;;11993:27;11776:250::o;12031:455::-;12180:2;12169:9;12162:21;12143:4;12212:6;12206:13;12255:6;12250:2;12239:9;12235:18;12228:34;12271:79;12343:6;12338:2;12327:9;12323:18;12318:2;12310:6;12306:15;12271:79;:::i;:::-;12402:2;12390:15;12407:66;12386:88;12371:104;;;;12477:2;12367:113;;12031:455;-1:-1:-1;;12031:455:1:o;13804:648::-;13884:6;13937:2;13925:9;13916:7;13912:23;13908:32;13905:52;;;13953:1;13950;13943:12;13905:52;13986:9;13980:16;14019:18;14011:6;14008:30;14005:50;;;14051:1;14048;14041:12;14005:50;14074:22;;14127:4;14119:13;;14115:27;-1:-1:-1;14105:55:1;;14156:1;14153;14146:12;14105:55;14185:2;14179:9;14210:48;14226:31;14254:2;14226:31;:::i;14210:48::-;14281:2;14274:5;14267:17;14321:7;14316:2;14311;14307;14303:11;14299:20;14296:33;14293:53;;;14342:1;14339;14332:12;14293:53;14355:67;14419:2;14414;14407:5;14403:14;14398:2;14394;14390:11;14355:67;:::i;:::-;14441:5;13804:648;-1:-1:-1;;;;;13804:648:1:o;14759:277::-;14826:6;14879:2;14867:9;14858:7;14854:23;14850:32;14847:52;;;14895:1;14892;14885:12;14847:52;14927:9;14921:16;14980:5;14973:13;14966:21;14959:5;14956:32;14946:60;;15002:1;14999;14992:12;15875:125;15940:9;;;15961:10;;;15958:36;;;15974:18;;:::i;16412:287::-;16541:3;16579:6;16573:13;16595:66;16654:6;16649:3;16642:4;16634:6;16630:17;16595:66;:::i
Swarm Source
ipfs://757550f4986391fe98f4be3b775ce0331c333a4bbdb27a8dee28597ea200526a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.