Source Code
Overview
SOPH Balance
0 SOPH
More Info
ContractCreator
Multichain Info
N/A
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
LzOftHelper
Compiler Version
v0.8.26+commit.8a97fa7a
ZkSolc Version
v1.5.6
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.8.26; import "contracts/proxies/Upgradeable2Step.sol"; import "contracts/s/IOFT.sol"; import "contracts/common/Rescuable.sol"; contract LzOftHelper is Upgradeable2Step, Rescuable { using SafeERC20 for IERC20; event ToggleOFTContract(address indexed oftContract, bool indexed isEnabled); /// @notice Mapping of allowed OFT contracts and their enabled status. mapping (IOFT => bool) public allowedOFTs; function send(IOFT oftContract, IOFT.SendParam memory _sendParam) external returns (IOFT.MessagingReceipt memory msgReceipt, IOFT.OFTReceipt memory oftReceipt) { require(allowedOFTs[oftContract], "unauthorized OFT"); // override supplied values //ref: https://docs.layerzero.network/v2/developers/evm/oft/quickstart#message-execution-options _sendParam.extraOptions = hex'0003010011010000000000000000000000000000ea60'; _sendParam.composeMsg = ""; _sendParam.oftCmd = ""; // handles transfers for OFT and OFTAdapter underlying token IERC20(oftContract.token()).safeTransferFrom(msg.sender, address(this), _sendParam.amountLD); IOFT.MessagingFee memory _fee = oftContract.quoteSend(_sendParam, false); require(address(this).balance >= _fee.nativeFee, "not enough fee token"); return oftContract.send{value: _fee.nativeFee}(_sendParam, _fee, address(this)); } function quoteSend(IOFT oftContract, IOFT.SendParam memory _sendParam) external view returns (IOFT.MessagingFee memory msgFee) { // override supplied values //ref: https://docs.layerzero.network/v2/developers/evm/oft/quickstart#message-execution-options _sendParam.extraOptions = hex'0003010011010000000000000000000000000000ea60'; _sendParam.composeMsg = ""; _sendParam.oftCmd = ""; return oftContract.quoteSend(_sendParam, false); } function toggleOFTContract(IOFT oftContract_, bool isEnabled_) external onlyOwner { allowedOFTs[oftContract_] = isEnabled_; if (isEnabled_) { // handles OFT approval if necessary if (oftContract_.approvalRequired()) { IERC20(oftContract_.token()).forceApprove(address(oftContract_), type(uint256).max); } } else { IERC20(oftContract_.token()).forceApprove(address(oftContract_), 0); } emit ToggleOFTContract(address(oftContract_), isEnabled_); } function addressToBytes32(address _addr) external pure returns (bytes32) { return bytes32(uint256(uint160(_addr))); } function _requireRescuerRole() internal view override { _checkOwner(); } // allowed to receive native token receive() external payable {} }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.8.26; import "contracts/access/Ownable2Step.sol"; /** * @title Upgradeable2Step * @notice This contract implements a two-step process for upgrading the implementation address. It provides security by allowing the owner to propose a new implementation and the implementation to accept itself. * @dev Inherits from `Ownable2Step`, allowing the contract owner to initiate the upgrade process, which must then be accepted by the proposed implementation. */ contract Upgradeable2Step is Ownable2Step { /// @notice The slot containing the address of the pending implementation contract. bytes32 public constant PENDING_IMPLEMENTATION_SLOT = keccak256("PENDING_IMPLEMENTATION_SLOT"); /// @notice The slot containing the address of the current implementation contract. bytes32 public constant IMPLEMENTATION_SLOT = keccak256("IMPLEMENTATION_SLOT"); /** * @dev Emitted when a new implementation is proposed. * @param previousImplementation The address of the previous implementation. * @param newImplementation The address of the new implementation proposed. */ event ReplaceImplementationStarted(address indexed previousImplementation, address indexed newImplementation); /** * @dev Emitted when a new implementation is accepted and becomes active. * @param previousImplementation The address of the previous implementation. * @param newImplementation The address of the new active implementation. */ event ReplaceImplementation(address indexed previousImplementation, address indexed newImplementation); /** * @dev Thrown when an unauthorized account attempts to execute a restricted function. */ error Unauthorized(); /** * @notice Initializes the contract and sets the deployer as the initial owner. * @dev Passes the deployer address to the `Ownable2Step` constructor. */ constructor() Ownable(msg.sender) {} /** * @notice Starts the implementation replacement process by setting a new pending implementation address. * @dev Can only be called by the owner. Emits the `ReplaceImplementationStarted` event. * @param impl_ The address of the new implementation contract to be set as pending. */ function replaceImplementation(address impl_) public onlyOwner { bytes32 slot_pending = PENDING_IMPLEMENTATION_SLOT; assembly { sstore(slot_pending, impl_) } emit ReplaceImplementationStarted(implementation(), impl_); } /** * @notice Completes the implementation replacement process by accepting the pending implementation. * @dev Can only be called by the pending implementation itself. Emits the `ReplaceImplementation` event and updates the `implementation` state. * Deletes the `pendingImplementation` address upon successful acceptance. */ function acceptImplementation() public { if (msg.sender != pendingImplementation()) { revert OwnableUnauthorizedAccount(msg.sender); } emit ReplaceImplementation(implementation(), msg.sender); bytes32 slot_pending = PENDING_IMPLEMENTATION_SLOT; bytes32 slot = IMPLEMENTATION_SLOT; assembly { sstore(slot_pending, 0) sstore(slot, caller()) } } /** * @notice Allows a new implementation to become the active implementation in a proxy contract. * @dev Can only be called by the owner of the specified proxy contract. Calls `acceptImplementation` on the proxy contract. * @param proxy The proxy contract where the new implementation should be accepted. */ function becomeImplementation(Upgradeable2Step proxy) public { if (msg.sender != proxy.owner()) { revert Unauthorized(); } proxy.acceptImplementation(); } /** * @notice Returns the pending implementation address * @return The pending implementation address */ function pendingImplementation() public view returns (address) { address pendingImplementation_; bytes32 slot_pending = PENDING_IMPLEMENTATION_SLOT; assembly { pendingImplementation_ := sload(slot_pending) } return pendingImplementation_; } /** * @notice Returns the current implementation address * @return The current implementation address */ function implementation() public view returns (address) { address implementation_; bytes32 slot = IMPLEMENTATION_SLOT; assembly { implementation_ := sload(slot) } return implementation_; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable2Step.sol) pragma solidity ^0.8.20; import {Ownable} from "contracts/access/Ownable.sol"; /** * @dev Contract module which provides access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is specified at deployment time in the constructor for `Ownable`. This * can later be changed with {transferOwnership} and {acceptOwnership}. * * This module is used through inheritance. It will make available all functions * from parent (Ownable). */ abstract contract Ownable2Step is Ownable { address private _pendingOwner; event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner); /** * @dev Returns the address of the pending owner. */ function pendingOwner() public view virtual returns (address) { return _pendingOwner; } /** * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual override onlyOwner { _pendingOwner = newOwner; emit OwnershipTransferStarted(owner(), newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner. * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual override { delete _pendingOwner; super._transferOwnership(newOwner); } /** * @dev The new owner accepts the ownership transfer. */ function acceptOwnership() public virtual { address sender = _msgSender(); if (pendingOwner() != sender) { revert OwnableUnauthorizedAccount(sender); } _transferOwnership(sender); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "contracts/utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.8.26; import { IERC20 } from "contracts/token/ERC20/IERC20.sol"; interface IOFT is IERC20 { /** * @dev Struct representing token parameters for the OFT send() operation. */ struct SendParam { uint32 dstEid; // Destination endpoint ID. bytes32 to; // Recipient address. uint256 amountLD; // Amount to send in local decimals. uint256 minAmountLD; // Minimum amount to send in local decimals. bytes extraOptions; // Additional options supplied by the caller to be used in the LayerZero message. bytes composeMsg; // The composed message for the send() operation. bytes oftCmd; // The OFT command to be executed, unused in default OFT implementations. } struct MessagingFee { uint nativeFee; // gas amount in native gas token uint lzTokenFee; // gas amount in ZRO token } struct MessagingReceipt { bytes32 guid; uint64 nonce; MessagingFee fee; } struct OFTReceipt { uint256 amountSentLD; // Amount of tokens ACTUALLY debited from the sender in local decimals. // @dev In non-default implementations, the amountReceivedLD COULD differ from this value. uint256 amountReceivedLD; // Amount of tokens to be received on the remote side. } // @dev executes a cross-chain OFT swap via layerZero Endpoint function send(SendParam calldata _sendParam, MessagingFee calldata _fee, address _refundAddress) external payable returns (MessagingReceipt memory msgReceipt, OFTReceipt memory oftReceipt); /** * @notice Provides a quote for the send() operation. * @param _sendParam The parameters for the send() operation. * @param _payInLzToken Flag indicating whether the caller is paying in the LZ token. * @return msgFee The calculated LayerZero messaging fee from the send() operation. * * @dev MessagingFee: LayerZero msg fee * - nativeFee: The native fee. * - lzTokenFee: The lzToken fee. */ function quoteSend(SendParam calldata _sendParam, bool _payInLzToken) external view returns (MessagingFee memory msgFee); /** * @dev Retrieves the address of the underlying ERC20 implementation. * @return The address of the adapted ERC-20 token. * * @dev In the case of OFT, address(this) and erc20 are the same contract. * @dev In the case of OFTAdapter, address(this) and erc20 are NOT the same contract. */ function token() external view returns (address); /** * @notice Indicates whether the OFT contract requires approval of the 'token()' to send. * @return requiresApproval Needs approval of the underlying token implementation. * * @dev In the case of OFT where the contract IS the token, approval is NOT required. * @dev In the case of default OFTAdapter, approval is required. * @dev In non-default OFTAdapter contracts with something like mint and burn privileges, it would NOT need approval. */ function approvalRequired() external pure virtual returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.26; import "contracts/token/ERC20/utils/SafeERC20.sol"; abstract contract Rescuable { using SafeERC20 for IERC20; /** * @notice Override this function in inheriting contracts to set appropriate permissions */ function _requireRescuerRole() internal view virtual; /** * @notice Allows the rescue of ERC20 tokens held by the contract * @param token The ERC20 token to be rescued */ function rescue(IERC20 token) external { _requireRescuerRole(); uint256 balance = token.balanceOf(address(this)); token.safeTransfer(msg.sender, balance); } /** * @notice Allows the rescue of Ether held by the contract */ function rescueEth() external{ _requireRescuerRole(); uint256 balance = address(this).balance; (bool success, ) = msg.sender.call{value: balance}(""); require(success, "Transfer failed"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "contracts/token/ERC20/IERC20.sol"; import {IERC20Permit} from "contracts/token/ERC20/extensions/IERC20Permit.sol"; import {Address} from "contracts/utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev An operation with an ERC20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @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.encodeCall(token.transfer, (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.encodeCall(token.transferFrom, (from, to, 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); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @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); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { revert SafeERC20FailedOperation(address(token)); } } /** * @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(token).code.length > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @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. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ 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]. * * CAUTION: See Security Considerations above. */ 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } }
{ "evmVersion": "shanghai", "optimizer": { "enabled": true, "runs": 200 }, "libraries": { "LzOftHelper.sol": {} }, "remappings": [ "@openzeppelin=./node_modules/@openzeppelin", "@erc721a=./node_modules/erc721a/contracts", "OpenZeppelin=C:/Users/tomcb/.brownie/packages/OpenZeppelin", "paulrberg=C:/Users/tomcb/.brownie/packages/paulrberg" ], "metadata": { "appendCBOR": false, "bytecodeHash": "none" }, "outputSelection": { "*": { "*": [ "abi" ] } } }
[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousImplementation","type":"address"},{"indexed":true,"internalType":"address","name":"newImplementation","type":"address"}],"name":"ReplaceImplementation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousImplementation","type":"address"},{"indexed":true,"internalType":"address","name":"newImplementation","type":"address"}],"name":"ReplaceImplementationStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oftContract","type":"address"},{"indexed":true,"internalType":"bool","name":"isEnabled","type":"bool"}],"name":"ToggleOFTContract","type":"event"},{"inputs":[],"name":"IMPLEMENTATION_SLOT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PENDING_IMPLEMENTATION_SLOT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"addressToBytes32","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"contract IOFT","name":"","type":"address"}],"name":"allowedOFTs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract Upgradeable2Step","name":"proxy","type":"address"}],"name":"becomeImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingImplementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IOFT","name":"oftContract","type":"address"},{"components":[{"internalType":"uint32","name":"dstEid","type":"uint32"},{"internalType":"bytes32","name":"to","type":"bytes32"},{"internalType":"uint256","name":"amountLD","type":"uint256"},{"internalType":"uint256","name":"minAmountLD","type":"uint256"},{"internalType":"bytes","name":"extraOptions","type":"bytes"},{"internalType":"bytes","name":"composeMsg","type":"bytes"},{"internalType":"bytes","name":"oftCmd","type":"bytes"}],"internalType":"struct IOFT.SendParam","name":"_sendParam","type":"tuple"}],"name":"quoteSend","outputs":[{"components":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"lzTokenFee","type":"uint256"}],"internalType":"struct IOFT.MessagingFee","name":"msgFee","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"impl_","type":"address"}],"name":"replaceImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"rescue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IOFT","name":"oftContract","type":"address"},{"components":[{"internalType":"uint32","name":"dstEid","type":"uint32"},{"internalType":"bytes32","name":"to","type":"bytes32"},{"internalType":"uint256","name":"amountLD","type":"uint256"},{"internalType":"uint256","name":"minAmountLD","type":"uint256"},{"internalType":"bytes","name":"extraOptions","type":"bytes"},{"internalType":"bytes","name":"composeMsg","type":"bytes"},{"internalType":"bytes","name":"oftCmd","type":"bytes"}],"internalType":"struct IOFT.SendParam","name":"_sendParam","type":"tuple"}],"name":"send","outputs":[{"components":[{"internalType":"bytes32","name":"guid","type":"bytes32"},{"internalType":"uint64","name":"nonce","type":"uint64"},{"components":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"lzTokenFee","type":"uint256"}],"internalType":"struct IOFT.MessagingFee","name":"fee","type":"tuple"}],"internalType":"struct IOFT.MessagingReceipt","name":"msgReceipt","type":"tuple"},{"components":[{"internalType":"uint256","name":"amountSentLD","type":"uint256"},{"internalType":"uint256","name":"amountReceivedLD","type":"uint256"}],"internalType":"struct IOFT.OFTReceipt","name":"oftReceipt","type":"tuple"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IOFT","name":"oftContract_","type":"address"},{"internalType":"bool","name":"isEnabled_","type":"bool"}],"name":"toggleOFTContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010002ed087c9dae7cb10ef43bf018a52db3a372512b5d7b51af175461999a6600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0003000000000002000b00000000000200000060031002700000029503300197000200000031035500010000000103550000008004000039000000400040043f0000000100200190000000370000c13d000000040030008c000000420000413d000000000201043b000000e0022002700000029d0020009c0000005f0000a13d0000029e0020009c000000850000213d000002a50020009c000000d10000a13d000002a60020009c000002040000613d000002a70020009c000001420000613d000002a80020009c000002f40000c13d0000000001000416000000000001004b000002f40000c13d000000000100041a00000297011001970000000002000411000000000021004b000002590000c13d000002c5010000410000000000100443000000000100041000000004001004430000000001000414000002950010009c0000029501008041000000c001100210000002c0011001c70000800a020000390a500a4b0000040f00000001002001900000072e0000613d000000000301043b00000000010004140000000004000411000000040040008c000002c20000c13d00000001020000390000000001000031000003250000013d0000000001000416000000000001004b000002f40000c13d0000000006000411000000000006004b000000460000c13d0000029b01000041000000000010043f000000040000043f0000029c0100004100000a5200010430000000000003004b000002f40000c13d000000000100001900000a510001042e0000000101000039000000000201041a0000029602200197000000000021041b000000000100041a0000029602100197000000000262019f000000000020041b00000000020004140000029705100197000002950020009c0000029502008041000000c00120021000000298011001c70000800d02000039000000030300003900000299040000410a500a460000040f0000000100200190000002f40000613d0000002001000039000001000010044300000120000004430000029a0100004100000a510001042e000002ab0020009c000000a20000a13d000002ac0020009c000000f20000a13d000002ad0020009c000001860000613d000002ae0020009c000001a10000613d000002af0020009c000002f40000c13d0000000001000416000000000001004b000002f40000c13d0000000101000039000000000201041a00000297032001970000000006000411000000000063004b000002540000c13d0000029602200197000000000021041b000000000100041a0000029602100197000000000262019f000000000020041b00000000020004140000029705100197000002950020009c0000029502008041000000c00120021000000298011001c70000800d02000039000000030300003900000299040000410a500a460000040f0000000100200190000000440000c13d000002f40000013d0000029f0020009c000000fb0000a13d000002a00020009c0000020c0000613d000002a10020009c000001e40000613d000002a20020009c000002f40000c13d000000240030008c000002f40000413d0000000002000416000000000002004b000002f40000c13d0000000401100370000000000101043b000002970010009c000002f40000213d000000000010043f0000000201000039000000200010043f00000000010000190a500a350000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f000002b70100004100000a510001042e000002b20020009c000000c60000213d000002b50020009c000001040000613d000002b60020009c000002f40000c13d0000000001000416000000000001004b000002f40000c13d000002c201000041000000000101041a00000297011001970000000006000411000000000016004b000002540000c13d000002c301000041000000000101041a0000000002000414000002950020009c00000295020080410000029705100197000000c00120021000000298011001c70000800d020000390000000303000039000002e3040000410a500a460000040f0000000100200190000002f40000613d000002c201000041000000000001041b0000000001000411000002c302000041000000000012041b000000000100001900000a510001042e000002b30020009c0000010b0000613d000002b40020009c000002f40000c13d0000000001000416000000000001004b000002f40000c13d000002c201000041000000800010043f000002b70100004100000a510001042e000002a90020009c000002210000613d000002aa0020009c000002f40000c13d000000240030008c000002f40000413d0000000002000416000000000002004b000002f40000c13d0000000401100370000000000101043b000700000001001d000002970010009c000002f40000213d000000000100041a00000297011001970000000002000411000000000021004b000002590000c13d00000007010000290000029702100197000002cf01000041000000800010043f0000000001000410000000840010043f0000000001000414000000040020008c000002c90000c13d0000000003000031000000200030008c00000020040000390000000004034019000002ee0000013d000002b00020009c0000022b0000613d000002b10020009c000002f40000c13d0000000001000416000000000001004b000002f40000c13d000002c3010000410000022f0000013d000002a30020009c000002340000613d000002a40020009c000002f40000c13d0000000001000416000000000001004b000002f40000c13d00000001010000390000022f0000013d0000000001000416000000000001004b000002f40000c13d000002c301000041000000800010043f000002b70100004100000a510001042e000000440030008c000002f40000413d0000000002000416000000000002004b000002f40000c13d0000000402100370000000000202043b000700000002001d000002970020009c000002f40000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000600000002001d000000000012004b000002f40000c13d000000000100041a00000297021001970000000001000411000000000012004b000002f60000c13d0000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000002950010009c0000029501008041000000c001100210000002d3011001c700008010020000390a500a4b0000040f0000000100200190000002f40000613d000000000101043b000000000201041a000002e40220019700000006022001af000000000021041b000000400500043d000000060000006b0000038b0000c13d000002d401000041000000000015043500000000010004140000000702000029000000040020008c0000040d0000c13d0000000003000031000000200030008c000000200400003900000000040340190000043b0000013d0000000001000416000000000001004b000002f40000c13d00000000010300190a5008090000040f0000000005010019000000400100043d000002ca0010009c0000033c0000213d0000004003100039000000400030043f000000200310003900000000000304350000000000010435000000400100043d000002ca0010009c0000033c0000213d0000004003100039000000400030043f0000002003100039000002cb0400004100000000004304350000001603000039000000000031043500000080032000390000000000130435000000400100043d000002cc0010009c0000033c0000213d0000002003100039000000400030043f0000000000010435000000a0032000390000000000130435000000400100043d000002cc0010009c0000033c0000213d0000002003100039000000400030043f0000000000010435000000c0032000390000000000130435000002cd01000041000000400400043d000700000004001d0000000001140436000500000001001d000000040140003900000040030000390000000000310435000000440340003900000000010200190000000002030019000600000005001d0a5008fb0000040f000000070b0000290000002402b000390000000000020435000000000300041400000006020000290000029702200197000000040020008c000003960000c13d0000000003000031000000400030008c00000040040000390000000004034019000003c50000013d0000000001000416000000000001004b000002f40000c13d000000000100041a00000297021001970000000005000411000000000052004b0000025e0000c13d0000000102000039000000000302041a0000029603300197000000000032041b0000029601100197000000000010041b0000000001000414000002950010009c0000029501008041000000c00110021000000298011001c70000800d020000390000000303000039000002990400004100000000060000190a500a460000040f0000000100200190000000440000c13d000002f40000013d0000000001000416000000000001004b000002f40000c13d00000000010300190a5008090000040f000000400500043d000002d20050009c0000033c0000213d0000006003500039000000400030043f000000200350003900000000000304350000000000050435000000400300043d000002ca0030009c0000033c0000213d0000004004300039000000400040043f00000020043000390000000000040435000000000003043500000040045000390000000000340435000000400400043d000002ca0040009c0000033c0000213d000700000002001d0000004003400039000000400030043f0000002003400039000000000003043500000000000404350000029701100197000600000001001d000000000010043f0000000201000039000000200010043f0000000001000414000002950010009c0000029501008041000000c001100210000002d3011001c700008010020000390a500a4b0000040f0000000100200190000002f40000613d000000400200043d000000000101043b000000000101041a000000ff00100190000003e40000c13d0000004401200039000002db030000410000000000310435000000240120003900000010030000390000000000310435000002c8010000410000000000120435000000040120003900000020030000390000000000310435000002950020009c00000295020080410000004001200210000002c9011001c700000a5200010430000000240030008c000002f40000413d0000000002000416000000000002004b000002f40000c13d0000000401100370000000000101043b000002970010009c000002f40000213d000000000200041a00000297022001970000000005000411000000000052004b0000025e0000c13d00000297061001970000000101000039000000000201041a0000029602200197000000000262019f000000000021041b0000000001000414000002950010009c0000029501008041000000c00110021000000298011001c70000800d020000390000000303000039000002b9040000410a500a460000040f0000000100200190000000440000c13d000002f40000013d0000000001000416000000000001004b000002f40000c13d000000000100041a0000029701100197000000800010043f000002b70100004100000a510001042e000000240030008c000002f40000413d0000000002000416000000000002004b000002f40000c13d0000000401100370000000000101043b000002970010009c000002f40000213d0000029702100197000002ba01000041000000800010043f0000000001000414000000040020008c000700000002001d000002630000c13d0000000003000031000000200030008c00000020040000390000000004034019000002880000013d000000240030008c000002f40000413d0000000002000416000000000002004b000002f40000c13d0000000401100370000000000101043b000002970010009c000002310000a13d000002f40000013d0000000001000416000000000001004b000002f40000c13d000002c201000041000000000101041a0000029701100197000000800010043f000002b70100004100000a510001042e000000240030008c000002f40000413d0000000002000416000000000002004b000002f40000c13d0000000401100370000000000101043b000002970010009c000002f40000213d000000000200041a00000297032001970000000002000411000000000023004b000002590000c13d0000029706100197000002c202000041000000000012041b000002c301000041000000000101041a0000000002000414000002950020009c00000295020080410000029705100197000000c00120021000000298011001c70000800d020000390000000303000039000002c4040000410a500a460000040f0000000100200190000000440000c13d000002f40000013d000002b801000041000000000010043f000000040060043f0000029c0100004100000a5200010430000002b801000041000000000010043f000000040020043f0000029c0100004100000a5200010430000002b801000041000000000010043f000000040050043f0000029c0100004100000a5200010430000002950010009c0000029501008041000000c001100210000002bb011001c70a500a4b0000040f00000060031002700000029503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000000800a000039000002770000613d000000000801034f000000008908043c000000000a9a043600000000005a004b000002730000c13d000000000006004b000002840000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000002fb0000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000002f40000413d000000800100043d000002970010009c000002f40000213d0000000002000411000000000012004b000003870000c13d000002bf010000410000000000100443000000070100002900000004001004430000000001000414000002950010009c0000029501008041000000c001100210000002c0011001c700008002020000390a500a4b0000040f00000001002001900000072e0000613d000000000101043b000000000001004b000002f40000613d000000400400043d000002c101000041000000000014043500000000010004140000000702000029000000040020008c000002bd0000613d000002950040009c000002950200004100000000020440190000004002200210000002950010009c0000029501008041000000c001100210000000000121019f000002be011001c70000000702000029000700000004001d0a500a460000040f00000007040000290000006003100270000002950030019d00020000000103550000000100200190000004db0000613d000000000104001900000000020000190a5007f70000040f000000000100001900000a510001042e000002950010009c0000029501008041000000c001100210000000000003004b0000031d0000c13d0000000002040019000003200000013d000002950010009c0000029501008041000000c001100210000002d0011001c70a500a4b0000040f00000060031002700000029503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000002dd0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000002d90000c13d000000000006004b000002ea0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000003420000613d0000001f01400039000000600110018f00000080021001bf000000400020043f000000200030008c000003070000813d000000000100001900000a5200010430000002b802000041000000000020043f000000040010043f0000029c0100004100000a52000104300000001f0530018f000002bc06300198000000400200043d00000000046200190000034d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000003020000c13d0000034d0000013d0000000005020019000000a002100039000000800300043d000002d1040000410000000000420435000000c402100039000000000032043500000000020004110000029702200197000000a40110003900000000002104350000004401000039000600000005001d0000000000150435000000640200003900000000010500190a5007f70000040f000000070100002900000006020000290a50094d0000040f000000000100001900000a510001042e00000298011001c7000080090200003900000000050000190a500a460000040f00020000000103550000006001100270000002950010019d0000029501100197000000000001004b0000033a0000c13d0000000100200190000000440000c13d000000400100043d0000004402100039000002c703000041000000000032043500000024021000390000000f030000390000000000320435000002c8020000410000000000210435000000040210003900000020030000390000000000320435000002950010009c00000295010080410000004001100210000002c9011001c700000a5200010430000002c60010009c000003600000a13d000002e201000041000000000010043f0000004101000039000000040010043f0000029c0100004100000a52000104300000001f0530018f000002bc06300198000000400200043d00000000046200190000034d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000003490000c13d000000000005004b0000035a0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000002950020009c00000295020080410000004002200210000000000112019f00000a52000104300000001f04100039000002e5044001970000003f04400039000002e505400197000000400400043d0000000005540019000000000045004b00000000060000390000000106004039000002c60050009c0000033c0000213d00000001006001900000033c0000c13d000000400050043f0000000006140436000002e5031001980000001f0410018f00000000013600190000000205000367000003790000613d000000000705034f000000007807043c0000000006860436000000000016004b000003750000c13d000000000004004b000003270000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000003270000013d000002bd01000041000000000010043f000002be0100004100000a5200010430000002dc01000041000000000015043500000000010004140000000702000029000000040020008c000004650000c13d0000000003000031000000200030008c00000020040000390000000004034019000004930000013d0000000001b10049000002950010009c000002950100804100000060011002100000029500b0009c000002950400004100000000040b40190000004004400210000000000141019f000002950030009c0000029503008041000000c003300210000000000131019f0a500a4b0000040f000000070b00002900000060031002700000029503300197000000400030008c000000400400003900000000040340190000001f0640018f000000600740019000000000057b0019000003b40000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000003b00000c13d000000000006004b000003c10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000004b70000613d0000001f01400039000000e00210018f0000000001b20019000000000021004b00000000020000390000000102004039000002c60010009c0000033c0000213d00000001002001900000033c0000c13d000000400010043f000000400030008c000002f40000413d000002ca0010009c0000033c0000213d0000004002100039000000400020043f00000000020b04330000000001210436000000050300002900000000030304330000000000310435000000400300043d000000000223043600000000010104330000000000120435000002950030009c00000295030080410000004001300210000002ce011001c700000a510001042e000002ca0020009c00000007040000290000033c0000213d0000004001200039000000400010043f0000002001200039000002cb0300004100000000003104350000001601000039000000000012043500000080014000390000000000210435000000400100043d000002cc0010009c0000033c0000213d0000002002100039000000400020043f0000000000010435000000a0024000390000000000120435000000400100043d000002cc0010009c0000033c0000213d0000002002100039000000400020043f0000000000010435000000c0024000390000000000120435000002d401000041000000400200043d000500000002001d000000000012043500000000010004140000000602000029000000040020008c000004e80000c13d0000000003000031000000200030008c00000020040000390000000004034019000005130000013d000002950050009c000002950200004100000000020540190000004002200210000002950010009c0000029501008041000000c001100210000000000121019f000002be011001c70000000702000029000500000005001d0a500a4b0000040f00000060031002700000029503300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000050b0000290000000505700029000004290000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000004250000c13d000000000006004b000004360000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000004c30000613d00000000050b00190000001f01400039000000600110018f0000000002510019000000000012004b00000000010000390000000101004039000002c60020009c0000033c0000213d00000001001001900000033c0000c13d000500000002001d000000400020043f000000200030008c000002f40000413d0000000001050433000400000001001d000002970010009c000002f40000213d00000005050000290000002002500039000002dd0100004100000000001204350000002401500039000000070400002900000000004104350000004401000039000000000015043500000044015000390000000000010435000002de0050009c0000033c0000213d0000008001500039000000400010043f000000000505043300000000040004140000000406000029000000040060008c000005b70000c13d000002c60030009c0000033c0000213d0000000102000039000005da0000013d000002950050009c000002950200004100000000020540190000004002200210000002950010009c0000029501008041000000c001100210000000000121019f000002be011001c70000000702000029000500000005001d0a500a4b0000040f00000060031002700000029503300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000050b0000290000000505700029000004810000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000047d0000c13d000000000006004b0000048e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000004cf0000613d00000000050b00190000001f01400039000000600110018f0000000004510019000000000014004b00000000020000390000000102004039000002c60040009c0000033c0000213d00000001002001900000033c0000c13d000500000004001d000000400040043f000000200030008c000002f40000413d0000000002050433000000000002004b0000000004000039000000010400c039000000000042004b000002f40000c13d000000000002004b000005500000c13d0000000001000414000002950010009c0000029501008041000000c00110021000000298011001c70000800d020000390000000303000039000002e104000041000000070500002900000006060000290a500a460000040f0000000100200190000000440000c13d000002f40000013d0000001f0530018f000002bc06300198000000400200043d00000000046200190000034d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000004be0000c13d0000034d0000013d0000001f0530018f000002bc06300198000000400200043d00000000046200190000034d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000004ca0000c13d0000034d0000013d0000001f0530018f000002bc06300198000000400200043d00000000046200190000034d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000004d60000c13d0000034d0000013d00000295033001970000001f0530018f000002bc06300198000000400200043d00000000046200190000034d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000004e30000c13d0000034d0000013d0000000502000029000002950020009c00000295020080410000004002200210000002950010009c0000029501008041000000c001100210000000000121019f000002be011001c700000006020000290a500a4b0000040f00000060031002700000029503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000505700029000005020000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b000004fe0000c13d000000000006004b0000050f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000005ab0000613d0000001f01400039000000600110018f0000000502100029000000000012004b00000000010000390000000101004039000002c60020009c0000033c0000213d00000001001001900000033c0000c13d000000400020043f000000200030008c000002f40000413d00000005010000290000000001010433000002970010009c000002f40000213d0000000706000029000000400360003900000000030304330000002004200039000002d50500004100000000005404350000006404200039000000000034043500000024032000390000000004000411000000000043043500000044032000390000000004000410000000000043043500000064030000390000000000320435000002d60020009c0000033c0000213d000000a003200039000000400030043f0a50094d0000040f000002cd01000041000000400300043d000500000003001d0000000001130436000300000001001d000000040130003900000040020000390000000000210435000000440230003900000007010000290a5008fb0000040f00000005020000290000002402200039000000000002043500000000020004140000000603000029000000040030008c000006420000c13d0000000003000031000000400030008c00000040040000390000000004034019000006710000013d000002d4020000410000000504000029000000000024043500000000020004140000000704000029000000040040008c000005840000613d0000000501000029000002950010009c00000295010080410000004001100210000002950020009c0000029502008041000000c002200210000000000112019f000002be011001c700000007020000290a500a4b0000040f00000060031002700000029503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000505700029000005710000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b0000056d0000c13d000000000006004b0000057e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000005cd0000613d0000001f01400039000000600110018f0000000501100029000400000001001d000002c60010009c0000033c0000213d0000000401000029000000400010043f000000200030008c000002f40000413d00000005010000290000000001010433000500000001001d000002970010009c000002f40000213d00000004050000290000004401500039000000010200008a00000000002104350000002002500039000002dd01000041000000000012043500000024015000390000000704000029000000000041043500000044010000390000000000150435000002de0050009c0000033c0000213d00000004040000290000008001400039000000400010043f000000000504043300000000040004140000000506000029000000040060008c000006bf0000c13d000002c60030009c0000033c0000213d0000000102000039000006d60000013d0000001f0530018f000002bc06300198000000400200043d00000000046200190000034d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000005b20000c13d0000034d0000013d000002950020009c00000295020080410000004001200210000002950050009c00000295050080410000006002500210000000000112019f000002950040009c0000029504008041000000c002400210000000000121019f00000004020000290a500a460000040f000000010220018f00020000000103550000006001100270000002950010019d0000029503100198000005d90000c13d00000060010000390000008004000039000006000000013d0000001f0530018f000002bc06300198000000400200043d00000000046200190000034d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000005d40000c13d0000034d0000013d000000400100043d0000001f04300039000002df044001970000003f04400039000002e0054001970000000004150019000000000054004b00000000050000390000000105004039000002c60040009c0000033c0000213d00000001005001900000033c0000c13d000000400040043f0000000004310436000002e5053001980000001f0630018f00000000035400190000000207000367000005f30000613d000000000807034f0000000009040019000000008a08043c0000000009a90436000000000039004b000005ef0000c13d000000000006004b000006000000613d000000000557034f0000000306600210000000000703043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000530435000000000002004b000006170000c13d000000400200043d0000002001200039000002dd0300004100000000003104350000002401200039000000070300002900000000003104350000004401000039000000000012043500000044012000390000000000010435000002de0020009c0000033c0000213d0000008001200039000000400010043f00000004010000290a50094d0000040f000000040100002900000005020000290a50094d0000040f000004a90000013d00000000020004150000000b0220008a00030005002002180000000001010433000000000001004b000006320000c13d000002bf010000410000000000100443000000040100002900000004001004430000000001000414000002950010009c0000029501008041000000c001100210000002c0011001c700008002020000390a500a4b0000040f00000001002001900000072e0000613d000000000101043b000000000001004b00000003010000290000000501100270000000000100003f000000010100c03f000004a90000c13d000006020000013d000002d80010009c000002f40000213d000000200010008c000002f40000413d0000000001040433000000000001004b0000000002000039000000010200c039000000000021004b000002f40000c13d00000000020004150000000a0220008a0003000500200218000000000001004b000006020000613d0000061d0000013d00000005030000290000000001310049000002950010009c00000295010080410000006001100210000002950030009c00000295030080410000004003300210000000000131019f000002950020009c0000029502008041000000c002200210000000000121019f00000006020000290a500a4b0000040f00000060031002700000029503300197000000400030008c000000400400003900000000040340190000001f0640018f00000060074001900000000505700029000006600000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b0000065c0000c13d000000000006004b0000066d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000006b30000613d0000001f01400039000000e00110018f0000000502100029000000000012004b00000000010000390000000101004039000400000002001d000002c60020009c0000033c0000213d00000001001001900000033c0000c13d0000000401000029000000400010043f000000400030008c000002f40000413d0000000401000029000002ca0010009c0000033c0000213d00000004020000290000004001200039000000400010043f00000005010000290000000001010433000000000212043600000003010000290000000001010433000300000002001d0000000000120435000002c5010000410000000000100443000000000100041000000004001004430000000001000414000002950010009c0000029501008041000000c001100210000002c0011001c70000800a020000390a500a4b0000040f00000001002001900000072e0000613d000000400200043d000500000002001d000000040220003900000004030000290000000003030433000000000101043b000200000003001d000000000031004b0000073f0000813d000002c80100004100000005030000290000000000130435000000200100003900000000001204350000004401300039000002da020000410000000000210435000000240130003900000014020000390000000000210435000002950030009c00000295030080410000004001300210000002c9011001c700000a52000104300000001f0530018f000002bc06300198000000400200043d00000000046200190000034d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000006ba0000c13d0000034d0000013d000002950020009c00000295020080410000004001200210000002950050009c00000295050080410000006002500210000000000112019f000002950040009c0000029504008041000000c002400210000000000121019f00000005020000290a500a460000040f000000010220018f00020000000103550000006001100270000002950010019d0000029503100198000006d50000c13d00000060010000390000008004000039000006fc0000013d000000400100043d0000001f04300039000002df044001970000003f04400039000002e0054001970000000004150019000000000054004b00000000050000390000000105004039000002c60040009c0000033c0000213d00000001005001900000033c0000c13d000000400040043f0000000004310436000002e5053001980000001f0630018f00000000035400190000000207000367000006ef0000613d000000000807034f0000000009040019000000008a08043c0000000009a90436000000000039004b000006eb0000c13d000000000006004b000006fc0000613d000000000557034f0000000306600210000000000703043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000530435000000000002004b000007130000c13d000000400200043d0000002001200039000002dd0300004100000000003104350000002401200039000000070300002900000000003104350000004401000039000000000012043500000044012000390000000000010435000002de0020009c0000033c0000213d0000008001200039000000400010043f00000005010000290a50094d0000040f000000050100002900000004020000290a50094d0000040f000004a90000013d0000000002000415000000090220008a00030005002002180000000001010433000000000001004b0000072f0000c13d000002bf010000410000000000100443000000050100002900000004001004430000000001000414000002950010009c0000029501008041000000c001100210000002c0011001c700008002020000390a500a4b0000040f00000001002001900000072e0000613d000000000101043b000000000001004b00000003010000290000000501100270000000000100003f000000010100c03f000004a90000c13d000006fe0000013d000000000001042f000002d80010009c000002f40000213d000000200010008c000002f40000413d0000000001040433000000000001004b0000000002000039000000010200c039000000000021004b000002f40000c13d0000000002000415000000080220008a0003000500200218000000000001004b000006fe0000613d000007190000013d000002d70100004100000005030000290000000001130436000100000001001d00000080010000390000000000120435000000840230003900000007010000290a5008fb0000040f00000004020000290000000002020433000000050400002900000024034000390000000000230435000000030200002900000000020204330000004403400039000000000023043500000064024000390000000003000410000000000032043500000000020004140000000603000029000000040030008c0000075d0000c13d0000000003000031000000c00030008c000000c0040000390000000004034019000007940000013d00000005030000290000000001310049000002950010009c00000295010080410000006001100210000002950030009c00000295030080410000004003300210000000000131019f000002950020009c0000029502008041000000c002200210000000000112019f000000020000006b0000076e0000c13d0000000602000029000007730000013d00000298011001c700008009020000390000000203000029000000060400002900000000050000190a500a460000040f00000060031002700000029503300197000000c00030008c000000c00400003900000000040340190000001f0640018f000000e0074001900000000505700029000007830000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b0000077f0000c13d000000000006004b000007900000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000007eb0000613d0000001f01400039000001e00210018f0000000501200029000000000021004b00000000020000390000000102004039000002c60010009c0000033c0000213d00000001002001900000033c0000c13d000000400010043f000000c00030008c000002f40000413d000002d20010009c0000033c0000213d0000006002100039000000400020043f00000005020000290000000002020433000000000221043600000001030000290000000003030433000002c60030009c000002f40000213d00000005050000290000000004540019000000000032043500000040035000390000000005340049000002d80050009c000002f40000213d000000400050008c000002f40000413d000000400500043d000002ca0050009c0000033c0000213d0000004006500039000000400060043f0000000003030433000000000335043600000005070000290000006006700039000000000606043300000000006304350000004003100039000000000053043500000080057000390000000004540049000002d80040009c000002f40000213d000000400040008c000002f40000413d000000400400043d000002ca0040009c0000033c0000213d0000004006400039000000400060043f000000000505043300000000055404360000000506000029000000a006600039000000000606043300000000006504350000000001010433000000400600043d00000000011604360000000002020433000002c602200197000000000021043500000000010304330000000021010434000000400360003900000000001304350000000001020433000000600260003900000000001204350000000001040433000000800260003900000000001204350000000001050433000000a0026000390000000000120435000002950060009c00000295060080410000004001600210000002d9011001c700000a510001042e0000001f0530018f000002bc06300198000000400200043d00000000046200190000034d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000007f20000c13d0000034d0000013d0000001f02200039000002e5022001970000000001120019000000000021004b00000000020000390000000102004039000002c60010009c000008030000213d0000000100200190000008030000c13d000000400010043f000000000001042d000002e201000041000000000010043f0000004101000039000000040010043f0000029c0100004100000a52000104300001000000000002000002d80010009c000008f30000213d0000000003010019000000430010008c000008f30000a13d00000001040003670000000401400370000000000101043b000100000001001d000002970010009c000008f30000213d0000002401400370000000000501043b000002c60050009c000008f30000213d0000000001530049000002d80010009c000008f30000213d000000e40010008c000008f30000413d000000400200043d000002e60020009c000008f50000813d000000e001200039000000400010043f0000000406500039000000000164034f000000000101043b000002950010009c000008f30000213d00000000011204360000002007600039000000000774034f000000000707043b00000000007104350000004001600039000000000114034f000000000101043b000000400720003900000000001704350000006001600039000000000114034f000000000101043b000000600720003900000000001704350000008007600039000000000174034f000000000101043b000002c60010009c000008f30000213d000000000b5100190000002301b00039000000000031004b000008f30000813d000000040cb000390000000001c4034f000000000801043b000002c60080009c000008f50000213d0000001f06800039000002e5066001970000003f06600039000002e506600197000000400900043d000000000a69001900000000009a004b00000000060000390000000106004039000002c600a0009c000008f50000213d0000000100600190000008f50000c13d0000004000a0043f0000000006890436000000000a8b0019000000240aa0003900000000003a004b000008f30000213d000000200ac00039000000000ca4034f000002e50d8001980000001f0e80018f000000000bd60019000008640000613d000000000f0c034f000000000a06001900000000f10f043c000000000a1a04360000000000ba004b000008600000c13d00000000000e004b000008710000613d0000000001dc034f000000030ae00210000000000c0b0433000000000cac01cf000000000cac022f000000000101043b000001000aa000890000000001a1022f0000000001a101cf0000000001c1019f00000000001b043500000000018600190000000000010435000000800120003900000000009104350000002007700039000000000174034f000000000601043b000002c60060009c000008f30000213d000000000b5600190000002301b00039000000000031004b000008f30000813d000000040cb000390000000001c4034f000000000801043b000002c60080009c000008f50000213d0000001f01800039000002e5011001970000003f01100039000002e501100197000000400900043d000000000a19001900000000009a004b00000000060000390000000106004039000002c600a0009c000008f50000213d0000000100600190000008f50000c13d0000004000a0043f000000000a89043600000000018b00190000002401100039000000000031004b000008f30000213d0000002001c00039000000000c14034f000002e50d8001980000001f0e80018f000000000bda0019000008a20000613d000000000f0c034f00000000060a001900000000f10f043c00000000061604360000000000b6004b0000089e0000c13d00000000000e004b000008af0000613d0000000001dc034f0000000306e00210000000000c0b0433000000000c6c01cf000000000c6c022f000000000101043b0000010006600089000000000161022f00000000016101cf0000000001c1019f00000000001b043500000000018a00190000000000010435000000a00120003900000000009104350000002001700039000000000114034f000000000601043b000002c60060009c000008f30000213d00000000095600190000002301900039000000000031004b000008f30000813d000000040a9000390000000001a4034f000000000501043b000002c60050009c000008f50000213d0000001f01500039000002e5011001970000003f01100039000002e501100197000000400700043d0000000008170019000000000078004b00000000060000390000000106004039000002c60080009c000008f50000213d0000000100600190000008f50000c13d000000400080043f000000000857043600000000015900190000002401100039000000000031004b000008f30000213d0000002001a00039000000000414034f000002e5065001980000001f0950018f0000000003680019000008e00000613d000000000a04034f000000000108001900000000ab0a043c0000000001b10436000000000031004b000008dc0000c13d000000000009004b000008ed0000613d000000000164034f0000000304900210000000000603043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f000000000013043500000000015800190000000000010435000000c00120003900000000007104350000000101000029000000000001042d000000000100001900000a5200010430000002e201000041000000000010043f0000004101000039000000040010043f0000029c0100004100000a52000104300000000043010434000002950330019700000000033204360000000004040433000000000043043500000040031000390000000003030433000000400420003900000000003404350000006003100039000000000303043300000060042000390000000000340435000000800310003900000000030304330000008004200039000000e0050000390000000000540435000000e004200039000000005303043400000000003404350000010004200039000000000003004b0000091b0000613d000000000600001900000000074600190000000008650019000000000808043300000000008704350000002006600039000000000036004b000009140000413d000000000534001900000000000504350000001f05300039000002e5055001970000000004540019000000a00510003900000000050504330000000006240049000000a007200039000000000067043500000000650504340000000004540436000000000005004b000009310000613d000000000700001900000000084700190000000009760019000000000909043300000000009804350000002007700039000000000057004b0000092a0000413d000000000654001900000000000604350000001f05500039000002e5055001970000000005540019000000c00110003900000000010104330000000004250049000000c002200039000000000042043500000000420104340000000001250436000000000002004b000009470000613d000000000500001900000000061500190000000007540019000000000707043300000000007604350000002005500039000000000025004b000009400000413d000000000421001900000000000404350000001f02200039000002e5022001970000000001210019000000000001042d000400000000000200000000340204340000000002000414000002970a1001970000000400a0008c0000097e0000c13d0000000001000032000009b90000613d000002eb0010009c00000a140000813d0000001f03100039000002e5033001970000003f03300039000002e503300197000000400b00043d00000000033b00190000000000b3004b00000000040000390000000104004039000002c60030009c00000a140000213d000000010040019000000a140000c13d000000400030043f00000000051b0436000002e5021001980000001f0310018f00000000012500190000000204000367000009700000613d000000000604034f000000006706043c0000000005750436000000000015004b0000096c0000c13d000000000003004b000009ba0000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000009ba0000013d000002950040009c00000295040080410000006001400210000002950030009c00000295030080410000004003300210000000000131019f000002950020009c0000029502008041000000c002200210000000000121019f00020000000a001d00000000020a00190a500a460000040f00020000000103550000006003100270000002950030019d0000029504300198000009dc0000613d0000001f03400039000002e7033001970000003f03300039000002e803300197000000400b00043d00000000033b00190000000000b3004b00000000050000390000000105004039000002c60030009c000000020a00002900000a140000213d000000010050019000000a140000c13d000000400030043f0000001f0540018f00000000034b0436000002bc064001980000000004630019000009ab0000613d000000000701034f0000000008030019000000007907043c0000000008980436000000000048004b000009a70000c13d000000000005004b000009df0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000009df0000013d000000600b0000390000000002000415000000040220008a000000050220021000000000010b0433000000000001004b000009e70000c13d00010000000b001d00020000000a001d000002bf010000410000000000100443000000040100003900000004001004430000000001000414000002950010009c0000029501008041000000c001100210000002c0011001c700008002020000390a500a4b0000040f000000010020019000000a250000613d0000000002000415000000040220008a0000000502200210000000000101043b000000000001004b000000010b000029000009fe0000c13d000002ea01000041000000000010043f0000000401000039000000040010043f0000029c0100004100000a5200010430000000600b0000390000008003000039000000020a00002900000000010b0433000000010020019000000a1f0000613d0000000002000415000000030220008a0000000502200210000000000001004b000009ea0000613d000000050220027000000000020b001f00000a040000013d00010000000b001d000002bf0100004100000000001004430000000400a004430000000001000414000002950010009c0000029501008041000000c001100210000002c0011001c700008002020000390a500a4b0000040f000000010020019000000a250000613d0000000002000415000000030220008a0000000502200210000000000101043b000000000001004b000000010b00002900000a2e0000613d00000000010b0433000000050220027000000000020b001f000000000001004b000000020a00002900000a110000613d000002d80010009c00000a120000213d0000001f0010008c00000a120000a13d0000002001b000390000000001010433000000000001004b0000000002000039000000010200c039000000000021004b00000a120000c13d000000000001004b00000a1a0000613d000000000001042d000000000100001900000a5200010430000002e201000041000000000010043f0000004101000039000000040010043f0000029c0100004100000a5200010430000002ec01000041000000000010043f0000000400a0043f0000029c0100004100000a5200010430000000000001004b00000a260000c13d000002e901000041000000000010043f000002be0100004100000a5200010430000000000001042f000002950030009c00000295030080410000004002300210000002950010009c00000295010080410000006001100210000000000121019f00000a5200010430000002ea01000041000000000010043f0000000201000029000000040010043f0000029c0100004100000a5200010430000000000001042f0000000002000414000002950020009c0000029502008041000000c002200210000002950010009c00000295010080410000004001100210000000000121019f000002d3011001c700008010020000390a500a4b0000040f000000010020019000000a440000613d000000000101043b000000000001042d000000000100001900000a520001043000000a49002104210000000102000039000000000001042d0000000002000019000000000001042d00000a4e002104230000000102000039000000000001042d0000000002000019000000000001042d00000a500000043200000a510001042e00000a5200010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000002000000000000000000000000000000400000010000000000000000001e4fbdf70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000000000000000000000082c947b600000000000000000000000000000000000000000000000000000000d69efdc400000000000000000000000000000000000000000000000000000000eaac8c3100000000000000000000000000000000000000000000000000000000eaac8c3200000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f734c14d00000000000000000000000000000000000000000000000000000000d69efdc500000000000000000000000000000000000000000000000000000000e30c3978000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b00000000000000000000000000000000000000000000000000000000c35dfd1300000000000000000000000000000000000000000000000000000000ce31a06b0000000000000000000000000000000000000000000000000000000082c947b700000000000000000000000000000000000000000000000000000000839006f200000000000000000000000000000000000000000000000000000000396f7b2200000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000715018a600000000000000000000000000000000000000000000000000000000749075ff0000000000000000000000000000000000000000000000000000000079ba509700000000000000000000000000000000000000000000000000000000396f7b23000000000000000000000000000000000000000000000000000000005c60da1b00000000000000000000000000000000000000000000000000000000168e125400000000000000000000000000000000000000000000000000000000168e125500000000000000000000000000000000000000000000000000000000348ce7be00000000000000000000000000000000000000000000000000000000086fc0c70000000000000000000000000000000000000000000000000000000015ba56e50000000000000000000000000000000000000020000000800000000000000000118cdaa70000000000000000000000000000000000000000000000000000000038d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e227008da5cb5b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000080000000000000000000000000000000000000000000000000000000000000000000000000ffffffe082b429000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83020000020000000000000000000000000000002400000000000000000000000015ba56e500000000000000000000000000000000000000000000000000000000ed121f2bd960c6029b39fec5a771d28b9d0fe6caa150c9e459a5c08adc3eb682f603533e14e17222e047634a2b3457fe346d27e294cedf9d21d74e5feea4a04667f679e13fe9dca16f3079221965ec41838cb8881cbc0f440bc13507c6b214c29cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f39000000000000000000000000000000000000000000000000ffffffffffffffff5472616e73666572206661696c6564000000000000000000000000000000000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbf0003010011010000000000000000000000000000ea6000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdf3b6f743b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000800000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff9f0200000000000000000000000000000000000040000000000000000000000000fc0c546a0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff5fc7c7f5b3000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000c00000000000000000000000006e6f7420656e6f7567682066656520746f6b656e000000000000000000000000756e617574686f72697a6564204f4654000000000000000000000000000000009f68b96400000000000000000000000000000000000000000000000000000000095ea7b300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f000000000000000000000000000000000000000000000001ffffffffffffffe0000000000000000000000000000000000000000000000003ffffffffffffffe02f24468d391470d4eb33ed8bd5a55b7ecd416210f5efe8b60071e51bcabd28c54e487b7100000000000000000000000000000000000000000000000000000000eb7a7d62743daf8cf4055aea544d0a89e2011279ed4105567d010759e6fa4de2ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff2000000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe01425ea42000000000000000000000000000000000000000000000000000000009996b3150000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000005274afe700000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.