Overview
APE Balance
0 APE
APE Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 17 from a total of 17 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Send | 8820320 | 10 days ago | IN | 0.09816721 APE | 0.00622354 | ||||
Send | 8820241 | 10 days ago | IN | 0.06086614 APE | 0.00622321 | ||||
Send | 8820236 | 10 days ago | IN | 0.16991714 APE | 0.00622351 | ||||
Send | 8820183 | 10 days ago | IN | 0.05207751 APE | 0.00622323 | ||||
Send | 8820180 | 10 days ago | IN | 1.70681962 APE | 0.00637456 | ||||
Set Enforced Opt... | 8819717 | 10 days ago | IN | 0 APE | 0.00134233 | ||||
Set Peer | 8819716 | 10 days ago | IN | 0 APE | 0.00121304 | ||||
Set Enforced Opt... | 8819700 | 10 days ago | IN | 0 APE | 0.00134233 | ||||
Set Peer | 8819695 | 10 days ago | IN | 0 APE | 0.00121304 | ||||
Set Enforced Opt... | 8819681 | 10 days ago | IN | 0 APE | 0.00134236 | ||||
Set Peer | 8819678 | 10 days ago | IN | 0 APE | 0.00121304 | ||||
Set Enforced Opt... | 8819660 | 10 days ago | IN | 0 APE | 0.00134236 | ||||
Set Peer | 8819654 | 10 days ago | IN | 0 APE | 0.00121304 | ||||
Set Enforced Opt... | 8819639 | 10 days ago | IN | 0 APE | 0.00134233 | ||||
Set Peer | 8819634 | 10 days ago | IN | 0 APE | 0.00121304 | ||||
Set Enforced Opt... | 8789406 | 11 days ago | IN | 0 APE | 0.00248349 | ||||
Set Peer | 8789399 | 11 days ago | IN | 0 APE | 0.00121671 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
OFTImplementation
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at apescan.io on 2025-01-25 */ // SPDX-License-Identifier: MIT pragma solidity >=0.8.0 ^0.8.20; // ../node_modules/@layerzerolabs/oapp-evm/contracts/oapp/interfaces/IOAppMsgInspector.sol /** * @title IOAppMsgInspector * @dev Interface for the OApp Message Inspector, allowing examination of message and options contents. */ interface IOAppMsgInspector { // Custom error message for inspection failure error InspectionFailed(bytes message, bytes options); /** * @notice Allows the inspector to examine LayerZero message contents and optionally throw a revert if invalid. * @param _message The message payload to be inspected. * @param _options Additional options or parameters for inspection. * @return valid A boolean indicating whether the inspection passed (true) or failed (false). * * @dev Optionally done as a revert, OR use the boolean provided to handle the failure. */ function inspect(bytes calldata _message, bytes calldata _options) external view returns (bool valid); } // ../node_modules/@openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts (last updated v5.0.0) (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); } // /Users/benhaslam/ambient/oft_tools/node_modules/@layerzerolabs/lz-evm-protocol-v2/contracts/interfaces/IMessageLibManager.sol struct SetConfigParam { uint32 eid; uint32 configType; bytes config; } interface IMessageLibManager { struct Timeout { address lib; uint256 expiry; } event LibraryRegistered(address newLib); event DefaultSendLibrarySet(uint32 eid, address newLib); event DefaultReceiveLibrarySet(uint32 eid, address newLib); event DefaultReceiveLibraryTimeoutSet(uint32 eid, address oldLib, uint256 expiry); event SendLibrarySet(address sender, uint32 eid, address newLib); event ReceiveLibrarySet(address receiver, uint32 eid, address newLib); event ReceiveLibraryTimeoutSet(address receiver, uint32 eid, address oldLib, uint256 timeout); function registerLibrary(address _lib) external; function isRegisteredLibrary(address _lib) external view returns (bool); function getRegisteredLibraries() external view returns (address[] memory); function setDefaultSendLibrary(uint32 _eid, address _newLib) external; function defaultSendLibrary(uint32 _eid) external view returns (address); function setDefaultReceiveLibrary(uint32 _eid, address _newLib, uint256 _gracePeriod) external; function defaultReceiveLibrary(uint32 _eid) external view returns (address); function setDefaultReceiveLibraryTimeout(uint32 _eid, address _lib, uint256 _expiry) external; function defaultReceiveLibraryTimeout(uint32 _eid) external view returns (address lib, uint256 expiry); function isSupportedEid(uint32 _eid) external view returns (bool); function isValidReceiveLibrary(address _receiver, uint32 _eid, address _lib) external view returns (bool); /// ------------------- OApp interfaces ------------------- function setSendLibrary(address _oapp, uint32 _eid, address _newLib) external; function getSendLibrary(address _sender, uint32 _eid) external view returns (address lib); function isDefaultSendLibrary(address _sender, uint32 _eid) external view returns (bool); function setReceiveLibrary(address _oapp, uint32 _eid, address _newLib, uint256 _gracePeriod) external; function getReceiveLibrary(address _receiver, uint32 _eid) external view returns (address lib, bool isDefault); function setReceiveLibraryTimeout(address _oapp, uint32 _eid, address _lib, uint256 _expiry) external; function receiveLibraryTimeout(address _receiver, uint32 _eid) external view returns (address lib, uint256 expiry); function setConfig(address _oapp, address _lib, SetConfigParam[] calldata _params) external; function getConfig( address _oapp, address _lib, uint32 _eid, uint32 _configType ) external view returns (bytes memory config); } // /Users/benhaslam/ambient/oft_tools/node_modules/@layerzerolabs/lz-evm-protocol-v2/contracts/interfaces/IMessagingChannel.sol interface IMessagingChannel { event InboundNonceSkipped(uint32 srcEid, bytes32 sender, address receiver, uint64 nonce); event PacketNilified(uint32 srcEid, bytes32 sender, address receiver, uint64 nonce, bytes32 payloadHash); event PacketBurnt(uint32 srcEid, bytes32 sender, address receiver, uint64 nonce, bytes32 payloadHash); function eid() external view returns (uint32); // this is an emergency function if a message cannot be verified for some reasons // required to provide _nextNonce to avoid race condition function skip(address _oapp, uint32 _srcEid, bytes32 _sender, uint64 _nonce) external; function nilify(address _oapp, uint32 _srcEid, bytes32 _sender, uint64 _nonce, bytes32 _payloadHash) external; function burn(address _oapp, uint32 _srcEid, bytes32 _sender, uint64 _nonce, bytes32 _payloadHash) external; function nextGuid(address _sender, uint32 _dstEid, bytes32 _receiver) external view returns (bytes32); function inboundNonce(address _receiver, uint32 _srcEid, bytes32 _sender) external view returns (uint64); function outboundNonce(address _sender, uint32 _dstEid, bytes32 _receiver) external view returns (uint64); function inboundPayloadHash( address _receiver, uint32 _srcEid, bytes32 _sender, uint64 _nonce ) external view returns (bytes32); function lazyInboundNonce(address _receiver, uint32 _srcEid, bytes32 _sender) external view returns (uint64); } // /Users/benhaslam/ambient/oft_tools/node_modules/@layerzerolabs/lz-evm-protocol-v2/contracts/interfaces/IMessagingComposer.sol interface IMessagingComposer { event ComposeSent(address from, address to, bytes32 guid, uint16 index, bytes message); event ComposeDelivered(address from, address to, bytes32 guid, uint16 index); event LzComposeAlert( address indexed from, address indexed to, address indexed executor, bytes32 guid, uint16 index, uint256 gas, uint256 value, bytes message, bytes extraData, bytes reason ); function composeQueue( address _from, address _to, bytes32 _guid, uint16 _index ) external view returns (bytes32 messageHash); function sendCompose(address _to, bytes32 _guid, uint16 _index, bytes calldata _message) external; function lzCompose( address _from, address _to, bytes32 _guid, uint16 _index, bytes calldata _message, bytes calldata _extraData ) external payable; } // /Users/benhaslam/ambient/oft_tools/node_modules/@layerzerolabs/lz-evm-protocol-v2/contracts/interfaces/IMessagingContext.sol interface IMessagingContext { function isSendingMessage() external view returns (bool); function getSendContext() external view returns (uint32 dstEid, address sender); } // /Users/benhaslam/ambient/oft_tools/node_modules/@layerzerolabs/lz-evm-protocol-v2/contracts/libs/AddressCast.sol library AddressCast { error AddressCast_InvalidSizeForAddress(); error AddressCast_InvalidAddress(); function toBytes32(bytes calldata _addressBytes) internal pure returns (bytes32 result) { if (_addressBytes.length > 32) revert AddressCast_InvalidAddress(); result = bytes32(_addressBytes); unchecked { uint256 offset = 32 - _addressBytes.length; result = result >> (offset * 8); } } function toBytes32(address _address) internal pure returns (bytes32 result) { result = bytes32(uint256(uint160(_address))); } function toBytes(bytes32 _addressBytes32, uint256 _size) internal pure returns (bytes memory result) { if (_size == 0 || _size > 32) revert AddressCast_InvalidSizeForAddress(); result = new bytes(_size); unchecked { uint256 offset = 256 - _size * 8; assembly { mstore(add(result, 32), shl(offset, _addressBytes32)) } } } function toAddress(bytes32 _addressBytes32) internal pure returns (address result) { result = address(uint160(uint256(_addressBytes32))); } function toAddress(bytes calldata _addressBytes) internal pure returns (address result) { if (_addressBytes.length != 20) revert AddressCast_InvalidAddress(); result = address(bytes20(_addressBytes)); } } // /Users/benhaslam/ambient/oft_tools/node_modules/@layerzerolabs/oapp-evm/contracts/oapp/interfaces/IOAppOptionsType3.sol /** * @dev Struct representing enforced option parameters. */ struct EnforcedOptionParam { uint32 eid; // Endpoint ID uint16 msgType; // Message Type bytes options; // Additional options } /** * @title IOAppOptionsType3 * @dev Interface for the OApp with Type 3 Options, allowing the setting and combining of enforced options. */ interface IOAppOptionsType3 { // Custom error message for invalid options error InvalidOptions(bytes options); // Event emitted when enforced options are set event EnforcedOptionSet(EnforcedOptionParam[] _enforcedOptions); /** * @notice Sets enforced options for specific endpoint and message type combinations. * @param _enforcedOptions An array of EnforcedOptionParam structures specifying enforced options. */ function setEnforcedOptions(EnforcedOptionParam[] calldata _enforcedOptions) external; /** * @notice Combines options for a given endpoint and message type. * @param _eid The endpoint ID. * @param _msgType The OApp message type. * @param _extraOptions Additional options passed by the caller. * @return options The combination of caller specified options AND enforced options. */ function combineOptions( uint32 _eid, uint16 _msgType, bytes calldata _extraOptions ) external view returns (bytes memory options); } // /Users/benhaslam/ambient/oft_tools/node_modules/@layerzerolabs/oapp-evm/contracts/precrime/interfaces/IPreCrime.sol struct PreCrimePeer { uint32 eid; bytes32 preCrime; bytes32 oApp; } // TODO not done yet interface IPreCrime { error OnlyOffChain(); // for simulate() error PacketOversize(uint256 max, uint256 actual); error PacketUnsorted(); error SimulationFailed(bytes reason); // for preCrime() error SimulationResultNotFound(uint32 eid); error InvalidSimulationResult(uint32 eid, bytes reason); error CrimeFound(bytes crime); function getConfig(bytes[] calldata _packets, uint256[] calldata _packetMsgValues) external returns (bytes memory); function simulate( bytes[] calldata _packets, uint256[] calldata _packetMsgValues ) external payable returns (bytes memory); function buildSimulationResult() external view returns (bytes memory); function preCrime( bytes[] calldata _packets, uint256[] calldata _packetMsgValues, bytes[] calldata _simulations ) external; function version() external view returns (uint64 major, uint8 minor); } // /Users/benhaslam/ambient/oft_tools/node_modules/@layerzerolabs/oft-evm/contracts/libs/OFTComposeMsgCodec.sol library OFTComposeMsgCodec { // Offset constants for decoding composed messages uint8 private constant NONCE_OFFSET = 8; uint8 private constant SRC_EID_OFFSET = 12; uint8 private constant AMOUNT_LD_OFFSET = 44; uint8 private constant COMPOSE_FROM_OFFSET = 76; /** * @dev Encodes a OFT composed message. * @param _nonce The nonce value. * @param _srcEid The source endpoint ID. * @param _amountLD The amount in local decimals. * @param _composeMsg The composed message. * @return _msg The encoded Composed message. */ function encode( uint64 _nonce, uint32 _srcEid, uint256 _amountLD, bytes memory _composeMsg // 0x[composeFrom][composeMsg] ) internal pure returns (bytes memory _msg) { _msg = abi.encodePacked(_nonce, _srcEid, _amountLD, _composeMsg); } /** * @dev Retrieves the nonce for the composed message. * @param _msg The message. * @return The nonce value. */ function nonce(bytes calldata _msg) internal pure returns (uint64) { return uint64(bytes8(_msg[:NONCE_OFFSET])); } /** * @dev Retrieves the source endpoint ID for the composed message. * @param _msg The message. * @return The source endpoint ID. */ function srcEid(bytes calldata _msg) internal pure returns (uint32) { return uint32(bytes4(_msg[NONCE_OFFSET:SRC_EID_OFFSET])); } /** * @dev Retrieves the amount in local decimals from the composed message. * @param _msg The message. * @return The amount in local decimals. */ function amountLD(bytes calldata _msg) internal pure returns (uint256) { return uint256(bytes32(_msg[SRC_EID_OFFSET:AMOUNT_LD_OFFSET])); } /** * @dev Retrieves the composeFrom value from the composed message. * @param _msg The message. * @return The composeFrom value. */ function composeFrom(bytes calldata _msg) internal pure returns (bytes32) { return bytes32(_msg[AMOUNT_LD_OFFSET:COMPOSE_FROM_OFFSET]); } /** * @dev Retrieves the composed message. * @param _msg The message. * @return The composed message. */ function composeMsg(bytes calldata _msg) internal pure returns (bytes memory) { return _msg[COMPOSE_FROM_OFFSET:]; } /** * @dev Converts an address to bytes32. * @param _addr The address to convert. * @return The bytes32 representation of the address. */ function addressToBytes32(address _addr) internal pure returns (bytes32) { return bytes32(uint256(uint160(_addr))); } /** * @dev Converts bytes32 to an address. * @param _b The bytes32 value to convert. * @return The address representation of bytes32. */ function bytes32ToAddress(bytes32 _b) internal pure returns (address) { return address(uint160(uint256(_b))); } } // /Users/benhaslam/ambient/oft_tools/node_modules/@layerzerolabs/oft-evm/contracts/libs/OFTMsgCodec.sol library OFTMsgCodec { // Offset constants for encoding and decoding OFT messages uint8 private constant SEND_TO_OFFSET = 32; uint8 private constant SEND_AMOUNT_SD_OFFSET = 40; /** * @dev Encodes an OFT LayerZero message. * @param _sendTo The recipient address. * @param _amountShared The amount in shared decimals. * @param _composeMsg The composed message. * @return _msg The encoded message. * @return hasCompose A boolean indicating whether the message has a composed payload. */ function encode( bytes32 _sendTo, uint64 _amountShared, bytes memory _composeMsg ) internal view returns (bytes memory _msg, bool hasCompose) { hasCompose = _composeMsg.length > 0; // @dev Remote chains will want to know the composed function caller ie. msg.sender on the src. _msg = hasCompose ? abi.encodePacked(_sendTo, _amountShared, addressToBytes32(msg.sender), _composeMsg) : abi.encodePacked(_sendTo, _amountShared); } /** * @dev Checks if the OFT message is composed. * @param _msg The OFT message. * @return A boolean indicating whether the message is composed. */ function isComposed(bytes calldata _msg) internal pure returns (bool) { return _msg.length > SEND_AMOUNT_SD_OFFSET; } /** * @dev Retrieves the recipient address from the OFT message. * @param _msg The OFT message. * @return The recipient address. */ function sendTo(bytes calldata _msg) internal pure returns (bytes32) { return bytes32(_msg[:SEND_TO_OFFSET]); } /** * @dev Retrieves the amount in shared decimals from the OFT message. * @param _msg The OFT message. * @return The amount in shared decimals. */ function amountSD(bytes calldata _msg) internal pure returns (uint64) { return uint64(bytes8(_msg[SEND_TO_OFFSET:SEND_AMOUNT_SD_OFFSET])); } /** * @dev Retrieves the composed message from the OFT message. * @param _msg The OFT message. * @return The composed message. */ function composeMsg(bytes calldata _msg) internal pure returns (bytes memory) { return _msg[SEND_AMOUNT_SD_OFFSET:]; } /** * @dev Converts an address to bytes32. * @param _addr The address to convert. * @return The bytes32 representation of the address. */ function addressToBytes32(address _addr) internal pure returns (bytes32) { return bytes32(uint256(uint160(_addr))); } /** * @dev Converts bytes32 to an address. * @param _b The bytes32 value to convert. * @return The address representation of bytes32. */ function bytes32ToAddress(bytes32 _b) internal pure returns (address) { return address(uint160(uint256(_b))); } } // /Users/benhaslam/ambient/oft_tools/node_modules/@openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // /Users/benhaslam/ambient/oft_tools/node_modules/@openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.0.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 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); } // /Users/benhaslam/ambient/oft_tools/node_modules/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol // OpenZeppelin Contracts (last updated v5.0.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. * * ==== 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); } // /Users/benhaslam/ambient/oft_tools/node_modules/@openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) /** * @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(); } } } // /Users/benhaslam/ambient/oft_tools/node_modules/@openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) /** * @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; } } // ../node_modules/@openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.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); } } // /Users/benhaslam/ambient/oft_tools/node_modules/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // /Users/benhaslam/ambient/oft_tools/node_modules/@layerzerolabs/lz-evm-protocol-v2/contracts/interfaces/IMessageLib.sol enum MessageLibType { Send, Receive, SendAndReceive } interface IMessageLib is IERC165 { function setConfig(address _oapp, SetConfigParam[] calldata _config) external; function getConfig(uint32 _eid, address _oapp, uint32 _configType) external view returns (bytes memory config); function isSupportedEid(uint32 _eid) external view returns (bool); // message libs of same major version are compatible function version() external view returns (uint64 major, uint8 minor, uint8 endpointVersion); function messageLibType() external view returns (MessageLibType); } // ../node_modules/@layerzerolabs/oapp-evm/contracts/oapp/libs/OAppOptionsType3.sol /** * @title OAppOptionsType3 * @dev Abstract contract implementing the IOAppOptionsType3 interface with type 3 options. */ abstract contract OAppOptionsType3 is IOAppOptionsType3, Ownable { uint16 internal constant OPTION_TYPE_3 = 3; // @dev The "msgType" should be defined in the child contract. mapping(uint32 eid => mapping(uint16 msgType => bytes enforcedOption)) public enforcedOptions; /** * @dev Sets the enforced options for specific endpoint and message type combinations. * @param _enforcedOptions An array of EnforcedOptionParam structures specifying enforced options. * * @dev Only the owner/admin of the OApp can call this function. * @dev Provides a way for the OApp to enforce things like paying for PreCrime, AND/OR minimum dst lzReceive gas amounts etc. * @dev These enforced options can vary as the potential options/execution on the remote may differ as per the msgType. * eg. Amount of lzReceive() gas necessary to deliver a lzCompose() message adds overhead you dont want to pay * if you are only making a standard LayerZero message ie. lzReceive() WITHOUT sendCompose(). */ function setEnforcedOptions(EnforcedOptionParam[] calldata _enforcedOptions) public virtual onlyOwner { _setEnforcedOptions(_enforcedOptions); } /** * @dev Sets the enforced options for specific endpoint and message type combinations. * @param _enforcedOptions An array of EnforcedOptionParam structures specifying enforced options. * * @dev Provides a way for the OApp to enforce things like paying for PreCrime, AND/OR minimum dst lzReceive gas amounts etc. * @dev These enforced options can vary as the potential options/execution on the remote may differ as per the msgType. * eg. Amount of lzReceive() gas necessary to deliver a lzCompose() message adds overhead you dont want to pay * if you are only making a standard LayerZero message ie. lzReceive() WITHOUT sendCompose(). */ function _setEnforcedOptions(EnforcedOptionParam[] memory _enforcedOptions) internal virtual { for (uint256 i = 0; i < _enforcedOptions.length; i++) { // @dev Enforced options are only available for optionType 3, as type 1 and 2 dont support combining. _assertOptionsType3(_enforcedOptions[i].options); enforcedOptions[_enforcedOptions[i].eid][_enforcedOptions[i].msgType] = _enforcedOptions[i].options; } emit EnforcedOptionSet(_enforcedOptions); } /** * @notice Combines options for a given endpoint and message type. * @param _eid The endpoint ID. * @param _msgType The OAPP message type. * @param _extraOptions Additional options passed by the caller. * @return options The combination of caller specified options AND enforced options. * * @dev If there is an enforced lzReceive option: * - {gasLimit: 200k, msg.value: 1 ether} AND a caller supplies a lzReceive option: {gasLimit: 100k, msg.value: 0.5 ether} * - The resulting options will be {gasLimit: 300k, msg.value: 1.5 ether} when the message is executed on the remote lzReceive() function. * @dev This presence of duplicated options is handled off-chain in the verifier/executor. */ function combineOptions( uint32 _eid, uint16 _msgType, bytes calldata _extraOptions ) public view virtual returns (bytes memory) { bytes memory enforced = enforcedOptions[_eid][_msgType]; // No enforced options, pass whatever the caller supplied, even if it's empty or legacy type 1/2 options. if (enforced.length == 0) return _extraOptions; // No caller options, return enforced if (_extraOptions.length == 0) return enforced; // @dev If caller provided _extraOptions, must be type 3 as its the ONLY type that can be combined. if (_extraOptions.length >= 2) { _assertOptionsType3(_extraOptions); // @dev Remove the first 2 bytes containing the type from the _extraOptions and combine with enforced. return bytes.concat(enforced, _extraOptions[2:]); } // No valid set of options was found. revert InvalidOptions(_extraOptions); } /** * @dev Internal function to assert that options are of type 3. * @param _options The options to be checked. */ function _assertOptionsType3(bytes memory _options) internal pure virtual { uint16 optionsType; assembly { optionsType := mload(add(_options, 2)) } if (optionsType != OPTION_TYPE_3) revert InvalidOptions(_options); } } // ../node_modules/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.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; } } // ../node_modules/@layerzerolabs/lz-evm-protocol-v2/contracts/interfaces/ILayerZeroEndpointV2.sol struct MessagingParams_0 { uint32 dstEid; bytes32 receiver; bytes message; bytes options; bool payInLzToken; } struct MessagingReceipt_0 { bytes32 guid; uint64 nonce; MessagingFee_0 fee; } struct MessagingFee_0 { uint256 nativeFee; uint256 lzTokenFee; } struct Origin_0 { uint32 srcEid; bytes32 sender; uint64 nonce; } interface ILayerZeroEndpointV2_0 is IMessageLibManager, IMessagingComposer, IMessagingChannel, IMessagingContext { event PacketSent(bytes encodedPayload, bytes options, address sendLibrary); event PacketVerified(Origin_0 origin, address receiver, bytes32 payloadHash); event PacketDelivered(Origin_0 origin, address receiver); event LzReceiveAlert( address indexed receiver, address indexed executor, Origin_0 origin, bytes32 guid, uint256 gas, uint256 value, bytes message, bytes extraData, bytes reason ); event LzTokenSet(address token); event DelegateSet(address sender, address delegate); function quote(MessagingParams_0 calldata _params, address _sender) external view returns (MessagingFee_0 memory); function send( MessagingParams_0 calldata _params, address _refundAddress ) external payable returns (MessagingReceipt_0 memory); function verify(Origin_0 calldata _origin, address _receiver, bytes32 _payloadHash) external; function verifiable(Origin_0 calldata _origin, address _receiver) external view returns (bool); function initializable(Origin_0 calldata _origin, address _receiver) external view returns (bool); function lzReceive( Origin_0 calldata _origin, address _receiver, bytes32 _guid, bytes calldata _message, bytes calldata _extraData ) external payable; // oapp can burn messages partially by calling this function with its own business logic if messages are verified in order function clear(address _oapp, Origin_0 calldata _origin, bytes32 _guid, bytes calldata _message) external; function setLzToken(address _lzToken) external; function lzToken() external view returns (address); function nativeToken() external view returns (address); function setDelegate(address _delegate) external; } // ../node_modules/@openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // /Users/benhaslam/ambient/oft_tools/node_modules/@layerzerolabs/lz-evm-protocol-v2/contracts/interfaces/ILayerZeroEndpointV2.sol struct MessagingParams_1 { uint32 dstEid; bytes32 receiver; bytes message; bytes options; bool payInLzToken; } struct MessagingReceipt_1 { bytes32 guid; uint64 nonce; MessagingFee_1 fee; } struct MessagingFee_1 { uint256 nativeFee; uint256 lzTokenFee; } struct Origin_1 { uint32 srcEid; bytes32 sender; uint64 nonce; } interface ILayerZeroEndpointV2_1 is IMessageLibManager, IMessagingComposer, IMessagingChannel, IMessagingContext { event PacketSent(bytes encodedPayload, bytes options, address sendLibrary); event PacketVerified(Origin_1 origin, address receiver, bytes32 payloadHash); event PacketDelivered(Origin_1 origin, address receiver); event LzReceiveAlert( address indexed receiver, address indexed executor, Origin_1 origin, bytes32 guid, uint256 gas, uint256 value, bytes message, bytes extraData, bytes reason ); event LzTokenSet(address token); event DelegateSet(address sender, address delegate); function quote(MessagingParams_1 calldata _params, address _sender) external view returns (MessagingFee_1 memory); function send( MessagingParams_1 calldata _params, address _refundAddress ) external payable returns (MessagingReceipt_1 memory); function verify(Origin_1 calldata _origin, address _receiver, bytes32 _payloadHash) external; function verifiable(Origin_1 calldata _origin, address _receiver) external view returns (bool); function initializable(Origin_1 calldata _origin, address _receiver) external view returns (bool); function lzReceive( Origin_1 calldata _origin, address _receiver, bytes32 _guid, bytes calldata _message, bytes calldata _extraData ) external payable; // oapp can burn messages partially by calling this function with its own business logic if messages are verified in order function clear(address _oapp, Origin_1 calldata _origin, bytes32 _guid, bytes calldata _message) external; function setLzToken(address _lzToken) external; function lzToken() external view returns (address); function nativeToken() external view returns (address); function setDelegate(address _delegate) external; } // ../node_modules/@layerzerolabs/lz-evm-protocol-v2/contracts/interfaces/ILayerZeroReceiver.sol interface ILayerZeroReceiver { function allowInitializePath(Origin_0 calldata _origin) external view returns (bool); function nextNonce(uint32 _eid, bytes32 _sender) external view returns (uint64); function lzReceive( Origin_0 calldata _origin, bytes32 _guid, bytes calldata _message, address _executor, bytes calldata _extraData ) external payable; } // /Users/benhaslam/ambient/oft_tools/node_modules/@layerzerolabs/oapp-evm/contracts/oapp/interfaces/IOAppCore.sol /** * @title IOAppCore */ interface IOAppCore { // Custom error messages error OnlyPeer(uint32 eid, bytes32 sender); error NoPeer(uint32 eid); error InvalidEndpointCall(); error InvalidDelegate(); // Event emitted when a peer (OApp) is set for a corresponding endpoint event PeerSet(uint32 eid, bytes32 peer); /** * @notice Retrieves the OApp version information. * @return senderVersion The version of the OAppSender.sol contract. * @return receiverVersion The version of the OAppReceiver.sol contract. */ function oAppVersion() external view returns (uint64 senderVersion, uint64 receiverVersion); /** * @notice Retrieves the LayerZero endpoint associated with the OApp. * @return iEndpoint The LayerZero endpoint as an interface. */ function endpoint() external view returns (ILayerZeroEndpointV2_0 iEndpoint); /** * @notice Retrieves the peer (OApp) associated with a corresponding endpoint. * @param _eid The endpoint ID. * @return peer The peer address (OApp instance) associated with the corresponding endpoint. */ function peers(uint32 _eid) external view returns (bytes32 peer); /** * @notice Sets the peer address (OApp instance) for a corresponding endpoint. * @param _eid The endpoint ID. * @param _peer The address of the peer to be associated with the corresponding endpoint. */ function setPeer(uint32 _eid, bytes32 _peer) external; /** * @notice Sets the delegate address for the OApp Core. * @param _delegate The address of the delegate to be set. */ function setDelegate(address _delegate) external; } // /Users/benhaslam/ambient/oft_tools/node_modules/@layerzerolabs/oapp-evm/contracts/oapp/interfaces/IOAppReceiver.sol interface IOAppReceiver is ILayerZeroReceiver { /** * @notice Indicates whether an address is an approved composeMsg sender to the Endpoint. * @param _origin The origin information containing the source endpoint and sender address. * - srcEid: The source chain endpoint ID. * - sender: The sender address on the src chain. * - nonce: The nonce of the message. * @param _message The lzReceive payload. * @param _sender The sender address. * @return isSender Is a valid sender. * * @dev Applications can optionally choose to implement a separate composeMsg sender that is NOT the bridging layer. * @dev The default sender IS the OAppReceiver implementer. */ function isComposeMsgSender( Origin_0 calldata _origin, bytes calldata _message, address _sender ) external view returns (bool isSender); } // /Users/benhaslam/ambient/oft_tools/node_modules/@layerzerolabs/lz-evm-protocol-v2/contracts/interfaces/ISendLib.sol struct Packet { uint64 nonce; uint32 srcEid; address sender; uint32 dstEid; bytes32 receiver; bytes32 guid; bytes message; } interface ISendLib is IMessageLib { function send( Packet calldata _packet, bytes calldata _options, bool _payInLzToken ) external returns (MessagingFee_1 memory, bytes memory encodedPacket); function quote( Packet calldata _packet, bytes calldata _options, bool _payInLzToken ) external view returns (MessagingFee_1 memory); function setTreasury(address _treasury) external; function withdrawFee(address _to, uint256 _amount) external; function withdrawLzTokenFee(address _lzToken, address _to, uint256 _amount) external; } // /Users/benhaslam/ambient/oft_tools/node_modules/@layerzerolabs/oapp-evm/contracts/oapp/OAppCore.sol /** * @title OAppCore * @dev Abstract contract implementing the IOAppCore interface with basic OApp configurations. */ abstract contract OAppCore is IOAppCore, Ownable { // The LayerZero endpoint associated with the given OApp ILayerZeroEndpointV2_0 public immutable endpoint; // Mapping to store peers associated with corresponding endpoints mapping(uint32 eid => bytes32 peer) public peers; /** * @dev Constructor to initialize the OAppCore with the provided endpoint and delegate. * @param _endpoint The address of the LOCAL Layer Zero endpoint. * @param _delegate The delegate capable of making OApp configurations inside of the endpoint. * * @dev The delegate typically should be set as the owner of the contract. */ constructor(address _endpoint, address _delegate) { endpoint = ILayerZeroEndpointV2_0(_endpoint); if (_delegate == address(0)) revert InvalidDelegate(); endpoint.setDelegate(_delegate); } /** * @notice Sets the peer address (OApp instance) for a corresponding endpoint. * @param _eid The endpoint ID. * @param _peer The address of the peer to be associated with the corresponding endpoint. * * @dev Only the owner/admin of the OApp can call this function. * @dev Indicates that the peer is trusted to send LayerZero messages to this OApp. * @dev Set this to bytes32(0) to remove the peer address. * @dev Peer is a bytes32 to accommodate non-evm chains. */ function setPeer(uint32 _eid, bytes32 _peer) public virtual onlyOwner { _setPeer(_eid, _peer); } /** * @notice Sets the peer address (OApp instance) for a corresponding endpoint. * @param _eid The endpoint ID. * @param _peer The address of the peer to be associated with the corresponding endpoint. * * @dev Indicates that the peer is trusted to send LayerZero messages to this OApp. * @dev Set this to bytes32(0) to remove the peer address. * @dev Peer is a bytes32 to accommodate non-evm chains. */ function _setPeer(uint32 _eid, bytes32 _peer) internal virtual { peers[_eid] = _peer; emit PeerSet(_eid, _peer); } /** * @notice Internal function to get the peer address associated with a specific endpoint; reverts if NOT set. * ie. the peer is set to bytes32(0). * @param _eid The endpoint ID. * @return peer The address of the peer associated with the specified endpoint. */ function _getPeerOrRevert(uint32 _eid) internal view virtual returns (bytes32) { bytes32 peer = peers[_eid]; if (peer == bytes32(0)) revert NoPeer(_eid); return peer; } /** * @notice Sets the delegate address for the OApp. * @param _delegate The address of the delegate to be set. * * @dev Only the owner/admin of the OApp can call this function. * @dev Provides the ability for a delegate to set configs, on behalf of the OApp, directly on the Endpoint contract. */ function setDelegate(address _delegate) public onlyOwner { endpoint.setDelegate(_delegate); } } // ../node_modules/@layerzerolabs/lz-evm-protocol-v2/contracts/messagelib/libs/PacketV1Codec.sol library PacketV1Codec { using AddressCast for address; using AddressCast for bytes32; uint8 internal constant PACKET_VERSION = 1; // header (version + nonce + path) // version uint256 private constant PACKET_VERSION_OFFSET = 0; // nonce uint256 private constant NONCE_OFFSET = 1; // path uint256 private constant SRC_EID_OFFSET = 9; uint256 private constant SENDER_OFFSET = 13; uint256 private constant DST_EID_OFFSET = 45; uint256 private constant RECEIVER_OFFSET = 49; // payload (guid + message) uint256 private constant GUID_OFFSET = 81; // keccak256(nonce + path) uint256 private constant MESSAGE_OFFSET = 113; function encode(Packet memory _packet) internal pure returns (bytes memory encodedPacket) { encodedPacket = abi.encodePacked( PACKET_VERSION, _packet.nonce, _packet.srcEid, _packet.sender.toBytes32(), _packet.dstEid, _packet.receiver, _packet.guid, _packet.message ); } function encodePacketHeader(Packet memory _packet) internal pure returns (bytes memory) { return abi.encodePacked( PACKET_VERSION, _packet.nonce, _packet.srcEid, _packet.sender.toBytes32(), _packet.dstEid, _packet.receiver ); } function encodePayload(Packet memory _packet) internal pure returns (bytes memory) { return abi.encodePacked(_packet.guid, _packet.message); } function header(bytes calldata _packet) internal pure returns (bytes calldata) { return _packet[0:GUID_OFFSET]; } function version(bytes calldata _packet) internal pure returns (uint8) { return uint8(bytes1(_packet[PACKET_VERSION_OFFSET:NONCE_OFFSET])); } function nonce(bytes calldata _packet) internal pure returns (uint64) { return uint64(bytes8(_packet[NONCE_OFFSET:SRC_EID_OFFSET])); } function srcEid(bytes calldata _packet) internal pure returns (uint32) { return uint32(bytes4(_packet[SRC_EID_OFFSET:SENDER_OFFSET])); } function sender(bytes calldata _packet) internal pure returns (bytes32) { return bytes32(_packet[SENDER_OFFSET:DST_EID_OFFSET]); } function senderAddressB20(bytes calldata _packet) internal pure returns (address) { return sender(_packet).toAddress(); } function dstEid(bytes calldata _packet) internal pure returns (uint32) { return uint32(bytes4(_packet[DST_EID_OFFSET:RECEIVER_OFFSET])); } function receiver(bytes calldata _packet) internal pure returns (bytes32) { return bytes32(_packet[RECEIVER_OFFSET:GUID_OFFSET]); } function receiverB20(bytes calldata _packet) internal pure returns (address) { return receiver(_packet).toAddress(); } function guid(bytes calldata _packet) internal pure returns (bytes32) { return bytes32(_packet[GUID_OFFSET:MESSAGE_OFFSET]); } function message(bytes calldata _packet) internal pure returns (bytes calldata) { return bytes(_packet[MESSAGE_OFFSET:]); } function payload(bytes calldata _packet) internal pure returns (bytes calldata) { return bytes(_packet[GUID_OFFSET:]); } function payloadHash(bytes calldata _packet) internal pure returns (bytes32) { return keccak256(payload(_packet)); } } // /Users/benhaslam/ambient/oft_tools/node_modules/@layerzerolabs/oapp-evm/contracts/precrime/libs/Packet.sol /** * @title InboundPacket * @dev Structure representing an inbound packet received by the contract. */ struct InboundPacket { Origin_0 origin; // Origin information of the packet. uint32 dstEid; // Destination endpointId of the packet. address receiver; // Receiver address for the packet. bytes32 guid; // Unique identifier of the packet. uint256 value; // msg.value of the packet. address executor; // Executor address for the packet. bytes message; // Message payload of the packet. bytes extraData; // Additional arbitrary data for the packet. } /** * @title PacketDecoder * @dev Library for decoding LayerZero packets. */ library PacketDecoder { using PacketV1Codec for bytes; /** * @dev Decode an inbound packet from the given packet data. * @param _packet The packet data to decode. * @return packet An InboundPacket struct representing the decoded packet. */ function decode(bytes calldata _packet) internal pure returns (InboundPacket memory packet) { packet.origin = Origin_0(_packet.srcEid(), _packet.sender(), _packet.nonce()); packet.dstEid = _packet.dstEid(); packet.receiver = _packet.receiverB20(); packet.guid = _packet.guid(); packet.message = _packet.message(); } /** * @dev Decode multiple inbound packets from the given packet data and associated message values. * @param _packets An array of packet data to decode. * @param _packetMsgValues An array of associated message values for each packet. * @return packets An array of InboundPacket structs representing the decoded packets. */ function decode( bytes[] calldata _packets, uint256[] memory _packetMsgValues ) internal pure returns (InboundPacket[] memory packets) { packets = new InboundPacket[](_packets.length); for (uint256 i = 0; i < _packets.length; i++) { bytes calldata packet = _packets[i]; packets[i] = PacketDecoder.decode(packet); // @dev Allows the verifier to specify the msg.value that gets passed in lzReceive. packets[i].value = _packetMsgValues[i]; } } } // /Users/benhaslam/ambient/oft_tools/node_modules/@layerzerolabs/oapp-evm/contracts/oapp/OAppReceiver.sol /** * @title OAppReceiver * @dev Abstract contract implementing the ILayerZeroReceiver interface and extending OAppCore for OApp receivers. */ abstract contract OAppReceiver is IOAppReceiver, OAppCore { // Custom error message for when the caller is not the registered endpoint/ error OnlyEndpoint(address addr); // @dev The version of the OAppReceiver implementation. // @dev Version is bumped when changes are made to this contract. uint64 internal constant RECEIVER_VERSION = 2; /** * @notice Retrieves the OApp version information. * @return senderVersion The version of the OAppSender.sol contract. * @return receiverVersion The version of the OAppReceiver.sol contract. * * @dev Providing 0 as the default for OAppSender version. Indicates that the OAppSender is not implemented. * ie. this is a RECEIVE only OApp. * @dev If the OApp uses both OAppSender and OAppReceiver, then this needs to be override returning the correct versions. */ function oAppVersion() public view virtual returns (uint64 senderVersion, uint64 receiverVersion) { return (0, RECEIVER_VERSION); } /** * @notice Indicates whether an address is an approved composeMsg sender to the Endpoint. * @dev _origin The origin information containing the source endpoint and sender address. * - srcEid: The source chain endpoint ID. * - sender: The sender address on the src chain. * - nonce: The nonce of the message. * @dev _message The lzReceive payload. * @param _sender The sender address. * @return isSender Is a valid sender. * * @dev Applications can optionally choose to implement separate composeMsg senders that are NOT the bridging layer. * @dev The default sender IS the OAppReceiver implementer. */ function isComposeMsgSender( Origin_0 calldata /*_origin*/, bytes calldata /*_message*/, address _sender ) public view virtual returns (bool) { return _sender == address(this); } /** * @notice Checks if the path initialization is allowed based on the provided origin. * @param origin The origin information containing the source endpoint and sender address. * @return Whether the path has been initialized. * * @dev This indicates to the endpoint that the OApp has enabled msgs for this particular path to be received. * @dev This defaults to assuming if a peer has been set, its initialized. * Can be overridden by the OApp if there is other logic to determine this. */ function allowInitializePath(Origin_0 calldata origin) public view virtual returns (bool) { return peers[origin.srcEid] == origin.sender; } /** * @notice Retrieves the next nonce for a given source endpoint and sender address. * @dev _srcEid The source endpoint ID. * @dev _sender The sender address. * @return nonce The next nonce. * * @dev The path nonce starts from 1. If 0 is returned it means that there is NO nonce ordered enforcement. * @dev Is required by the off-chain executor to determine the OApp expects msg execution is ordered. * @dev This is also enforced by the OApp. * @dev By default this is NOT enabled. ie. nextNonce is hardcoded to return 0. */ function nextNonce(uint32 /*_srcEid*/, bytes32 /*_sender*/) public view virtual returns (uint64 nonce) { return 0; } /** * @dev Entry point for receiving messages or packets from the endpoint. * @param _origin The origin information containing the source endpoint and sender address. * - srcEid: The source chain endpoint ID. * - sender: The sender address on the src chain. * - nonce: The nonce of the message. * @param _guid The unique identifier for the received LayerZero message. * @param _message The payload of the received message. * @param _executor The address of the executor for the received message. * @param _extraData Additional arbitrary data provided by the corresponding executor. * * @dev Entry point for receiving msg/packet from the LayerZero endpoint. */ function lzReceive( Origin_0 calldata _origin, bytes32 _guid, bytes calldata _message, address _executor, bytes calldata _extraData ) public payable virtual { // Ensures that only the endpoint can attempt to lzReceive() messages to this OApp. if (address(endpoint) != msg.sender) revert OnlyEndpoint(msg.sender); // Ensure that the sender matches the expected peer for the source endpoint. if (_getPeerOrRevert(_origin.srcEid) != _origin.sender) revert OnlyPeer(_origin.srcEid, _origin.sender); // Call the internal OApp implementation of lzReceive. _lzReceive(_origin, _guid, _message, _executor, _extraData); } /** * @dev Internal function to implement lzReceive logic without needing to copy the basic parameter validation. */ function _lzReceive( Origin_0 calldata _origin, bytes32 _guid, bytes calldata _message, address _executor, bytes calldata _extraData ) internal virtual; } // /Users/benhaslam/ambient/oft_tools/node_modules/@layerzerolabs/oapp-evm/contracts/precrime/interfaces/IOAppPreCrimeSimulator.sol // @dev Import the Origin so it's exposed to OAppPreCrimeSimulator implementers. // solhint-disable-next-line no-unused-import /** * @title IOAppPreCrimeSimulator Interface * @dev Interface for the preCrime simulation functionality in an OApp. */ interface IOAppPreCrimeSimulator { // @dev simulation result used in PreCrime implementation error SimulationResult(bytes result); error OnlySelf(); /** * @dev Emitted when the preCrime contract address is set. * @param preCrimeAddress The address of the preCrime contract. */ event PreCrimeSet(address preCrimeAddress); /** * @dev Retrieves the address of the preCrime contract implementation. * @return The address of the preCrime contract. */ function preCrime() external view returns (address); /** * @dev Retrieves the address of the OApp contract. * @return The address of the OApp contract. */ function oApp() external view returns (address); /** * @dev Sets the preCrime contract address. * @param _preCrime The address of the preCrime contract. */ function setPreCrime(address _preCrime) external; /** * @dev Mocks receiving a packet, then reverts with a series of data to infer the state/result. * @param _packets An array of LayerZero InboundPacket objects representing received packets. */ function lzReceiveAndRevert(InboundPacket[] calldata _packets) external payable; /** * @dev checks if the specified peer is considered 'trusted' by the OApp. * @param _eid The endpoint Id to check. * @param _peer The peer to check. * @return Whether the peer passed is considered 'trusted' by the OApp. */ function isPeer(uint32 _eid, bytes32 _peer) external view returns (bool); } // ../node_modules/@layerzerolabs/oapp-evm/contracts/oapp/OAppSender.sol /** * @title OAppSender * @dev Abstract contract implementing the OAppSender functionality for sending messages to a LayerZero endpoint. */ abstract contract OAppSender_0 is OAppCore { using SafeERC20 for IERC20; // Custom error messages error NotEnoughNative(uint256 msgValue); error LzTokenUnavailable(); // @dev The version of the OAppSender implementation. // @dev Version is bumped when changes are made to this contract. uint64 internal constant SENDER_VERSION = 1; /** * @notice Retrieves the OApp version information. * @return senderVersion The version of the OAppSender.sol contract. * @return receiverVersion The version of the OAppReceiver.sol contract. * * @dev Providing 0 as the default for OAppReceiver version. Indicates that the OAppReceiver is not implemented. * ie. this is a SEND only OApp. * @dev If the OApp uses both OAppSender and OAppReceiver, then this needs to be override returning the correct versions */ function oAppVersion() public view virtual returns (uint64 senderVersion, uint64 receiverVersion) { return (SENDER_VERSION, 0); } /** * @dev Internal function to interact with the LayerZero EndpointV2.quote() for fee calculation. * @param _dstEid The destination endpoint ID. * @param _message The message payload. * @param _options Additional options for the message. * @param _payInLzToken Flag indicating whether to pay the fee in LZ tokens. * @return fee The calculated MessagingFee for the message. * - nativeFee: The native fee for the message. * - lzTokenFee: The LZ token fee for the message. */ function _quote( uint32 _dstEid, bytes memory _message, bytes memory _options, bool _payInLzToken ) internal view virtual returns (MessagingFee_0 memory fee) { return endpoint.quote( MessagingParams_0(_dstEid, _getPeerOrRevert(_dstEid), _message, _options, _payInLzToken), address(this) ); } /** * @dev Internal function to interact with the LayerZero EndpointV2.send() for sending a message. * @param _dstEid The destination endpoint ID. * @param _message The message payload. * @param _options Additional options for the message. * @param _fee The calculated LayerZero fee for the message. * - nativeFee: The native fee. * - lzTokenFee: The lzToken fee. * @param _refundAddress The address to receive any excess fee values sent to the endpoint. * @return receipt The receipt for the sent message. * - guid: The unique identifier for the sent message. * - nonce: The nonce of the sent message. * - fee: The LayerZero fee incurred for the message. */ function _lzSend( uint32 _dstEid, bytes memory _message, bytes memory _options, MessagingFee_0 memory _fee, address _refundAddress ) internal virtual returns (MessagingReceipt_0 memory receipt) { // @dev Push corresponding fees to the endpoint, any excess is sent back to the _refundAddress from the endpoint. uint256 messageValue = _payNative(_fee.nativeFee); if (_fee.lzTokenFee > 0) _payLzToken(_fee.lzTokenFee); return // solhint-disable-next-line check-send-result endpoint.send{ value: messageValue }( MessagingParams_0(_dstEid, _getPeerOrRevert(_dstEid), _message, _options, _fee.lzTokenFee > 0), _refundAddress ); } /** * @dev Internal function to pay the native fee associated with the message. * @param _nativeFee The native fee to be paid. * @return nativeFee The amount of native currency paid. * * @dev If the OApp needs to initiate MULTIPLE LayerZero messages in a single transaction, * this will need to be overridden because msg.value would contain multiple lzFees. * @dev Should be overridden in the event the LayerZero endpoint requires a different native currency. * @dev Some EVMs use an ERC20 as a method for paying transactions/gasFees. * @dev The endpoint is EITHER/OR, ie. it will NOT support both types of native payment at a time. */ function _payNative(uint256 _nativeFee) internal virtual returns (uint256 nativeFee) { if (msg.value != _nativeFee) revert NotEnoughNative(msg.value); return _nativeFee; } /** * @dev Internal function to pay the LZ token fee associated with the message. * @param _lzTokenFee The LZ token fee to be paid. * * @dev If the caller is trying to pay in the specified lzToken, then the lzTokenFee is passed to the endpoint. * @dev Any excess sent, is passed back to the specified _refundAddress in the _lzSend(). */ function _payLzToken(uint256 _lzTokenFee) internal virtual { // @dev Cannot cache the token because it is not immutable in the endpoint. address lzToken = endpoint.lzToken(); if (lzToken == address(0)) revert LzTokenUnavailable(); // Pay LZ token fee by sending tokens to the endpoint. IERC20(lzToken).safeTransferFrom(msg.sender, address(endpoint), _lzTokenFee); } } // /Users/benhaslam/ambient/oft_tools/node_modules/@layerzerolabs/oapp-evm/contracts/oapp/OAppSender.sol /** * @title OAppSender * @dev Abstract contract implementing the OAppSender functionality for sending messages to a LayerZero endpoint. */ abstract contract OAppSender_1 is OAppCore { using SafeERC20 for IERC20; // Custom error messages error NotEnoughNative(uint256 msgValue); error LzTokenUnavailable(); // @dev The version of the OAppSender implementation. // @dev Version is bumped when changes are made to this contract. uint64 internal constant SENDER_VERSION = 1; /** * @notice Retrieves the OApp version information. * @return senderVersion The version of the OAppSender.sol contract. * @return receiverVersion The version of the OAppReceiver.sol contract. * * @dev Providing 0 as the default for OAppReceiver version. Indicates that the OAppReceiver is not implemented. * ie. this is a SEND only OApp. * @dev If the OApp uses both OAppSender and OAppReceiver, then this needs to be override returning the correct versions */ function oAppVersion() public view virtual returns (uint64 senderVersion, uint64 receiverVersion) { return (SENDER_VERSION, 0); } /** * @dev Internal function to interact with the LayerZero EndpointV2.quote() for fee calculation. * @param _dstEid The destination endpoint ID. * @param _message The message payload. * @param _options Additional options for the message. * @param _payInLzToken Flag indicating whether to pay the fee in LZ tokens. * @return fee The calculated MessagingFee for the message. * - nativeFee: The native fee for the message. * - lzTokenFee: The LZ token fee for the message. */ function _quote( uint32 _dstEid, bytes memory _message, bytes memory _options, bool _payInLzToken ) internal view virtual returns (MessagingFee_0 memory fee) { return endpoint.quote( MessagingParams_0(_dstEid, _getPeerOrRevert(_dstEid), _message, _options, _payInLzToken), address(this) ); } /** * @dev Internal function to interact with the LayerZero EndpointV2.send() for sending a message. * @param _dstEid The destination endpoint ID. * @param _message The message payload. * @param _options Additional options for the message. * @param _fee The calculated LayerZero fee for the message. * - nativeFee: The native fee. * - lzTokenFee: The lzToken fee. * @param _refundAddress The address to receive any excess fee values sent to the endpoint. * @return receipt The receipt for the sent message. * - guid: The unique identifier for the sent message. * - nonce: The nonce of the sent message. * - fee: The LayerZero fee incurred for the message. */ function _lzSend( uint32 _dstEid, bytes memory _message, bytes memory _options, MessagingFee_0 memory _fee, address _refundAddress ) internal virtual returns (MessagingReceipt_0 memory receipt) { // @dev Push corresponding fees to the endpoint, any excess is sent back to the _refundAddress from the endpoint. uint256 messageValue = _payNative(_fee.nativeFee); if (_fee.lzTokenFee > 0) _payLzToken(_fee.lzTokenFee); return // solhint-disable-next-line check-send-result endpoint.send{ value: messageValue }( MessagingParams_0(_dstEid, _getPeerOrRevert(_dstEid), _message, _options, _fee.lzTokenFee > 0), _refundAddress ); } /** * @dev Internal function to pay the native fee associated with the message. * @param _nativeFee The native fee to be paid. * @return nativeFee The amount of native currency paid. * * @dev If the OApp needs to initiate MULTIPLE LayerZero messages in a single transaction, * this will need to be overridden because msg.value would contain multiple lzFees. * @dev Should be overridden in the event the LayerZero endpoint requires a different native currency. * @dev Some EVMs use an ERC20 as a method for paying transactions/gasFees. * @dev The endpoint is EITHER/OR, ie. it will NOT support both types of native payment at a time. */ function _payNative(uint256 _nativeFee) internal virtual returns (uint256 nativeFee) { if (msg.value != _nativeFee) revert NotEnoughNative(msg.value); return _nativeFee; } /** * @dev Internal function to pay the LZ token fee associated with the message. * @param _lzTokenFee The LZ token fee to be paid. * * @dev If the caller is trying to pay in the specified lzToken, then the lzTokenFee is passed to the endpoint. * @dev Any excess sent, is passed back to the specified _refundAddress in the _lzSend(). */ function _payLzToken(uint256 _lzTokenFee) internal virtual { // @dev Cannot cache the token because it is not immutable in the endpoint. address lzToken = endpoint.lzToken(); if (lzToken == address(0)) revert LzTokenUnavailable(); // Pay LZ token fee by sending tokens to the endpoint. IERC20(lzToken).safeTransferFrom(msg.sender, address(endpoint), _lzTokenFee); } } // /Users/benhaslam/ambient/oft_tools/node_modules/@layerzerolabs/oft-evm/contracts/interfaces/IOFT.sol /** * @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. } /** * @dev Struct representing OFT limit information. * @dev These amounts can change dynamically and are up the specific oft implementation. */ struct OFTLimit { uint256 minAmountLD; // Minimum amount in local decimals that can be sent to the recipient. uint256 maxAmountLD; // Maximum amount in local decimals that can be sent to the recipient. } /** * @dev Struct representing OFT receipt information. */ 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 Struct representing OFT fee details. * @dev Future proof mechanism to provide a standardized way to communicate fees to things like a UI. */ struct OFTFeeDetail { int256 feeAmountLD; // Amount of the fee in local decimals. string description; // Description of the fee. } /** * @title IOFT * @dev Interface for the OftChain (OFT) token. * @dev Does not inherit ERC20 to accommodate usage by OFTAdapter as well. * @dev This specific interface ID is '0x02e49c2c'. */ interface IOFT { // Custom error messages error InvalidLocalDecimals(); error SlippageExceeded(uint256 amountLD, uint256 minAmountLD); // Events event OFTSent( bytes32 indexed guid, // GUID of the OFT message. uint32 dstEid, // Destination Endpoint ID. address indexed fromAddress, // Address of the sender on the src chain. uint256 amountSentLD, // Amount of tokens sent in local decimals. uint256 amountReceivedLD // Amount of tokens received in local decimals. ); event OFTReceived( bytes32 indexed guid, // GUID of the OFT message. uint32 srcEid, // Source Endpoint ID. address indexed toAddress, // Address of the recipient on the dst chain. uint256 amountReceivedLD // Amount of tokens received in local decimals. ); /** * @notice Retrieves interfaceID and the version of the OFT. * @return interfaceId The interface ID. * @return version The version. * * @dev interfaceId: This specific interface ID is '0x02e49c2c'. * @dev version: Indicates a cross-chain compatible msg encoding with other OFTs. * @dev If a new feature is added to the OFT cross-chain msg encoding, the version will be incremented. * ie. localOFT version(x,1) CAN send messages to remoteOFT version(x,1) */ function oftVersion() external view returns (bytes4 interfaceId, uint64 version); /** * @notice Retrieves the address of the token associated with the OFT. * @return token The address of the ERC20 token implementation. */ 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 Allows things like wallet implementers to determine integration requirements, * without understanding the underlying token implementation. */ function approvalRequired() external view returns (bool); /** * @notice Retrieves the shared decimals of the OFT. * @return sharedDecimals The shared decimals of the OFT. */ function sharedDecimals() external view returns (uint8); /** * @notice Provides a quote for OFT-related operations. * @param _sendParam The parameters for the send operation. * @return limit The OFT limit information. * @return oftFeeDetails The details of OFT fees. * @return receipt The OFT receipt information. */ function quoteOFT( SendParam calldata _sendParam ) external view returns (OFTLimit memory, OFTFeeDetail[] memory oftFeeDetails, OFTReceipt memory); /** * @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 fee 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_0 memory); /** * @notice Executes the send() operation. * @param _sendParam The parameters for the send operation. * @param _fee The fee information supplied by the caller. * - nativeFee: The native fee. * - lzTokenFee: The lzToken fee. * @param _refundAddress The address to receive any excess funds from fees etc. on the src. * @return receipt The LayerZero messaging receipt from the send() operation. * @return oftReceipt The OFT receipt information. * * @dev MessagingReceipt: LayerZero msg receipt * - guid: The unique identifier for the sent message. * - nonce: The nonce of the sent message. * - fee: The LayerZero fee incurred for the message. */ function send( SendParam calldata _sendParam, MessagingFee_0 calldata _fee, address _refundAddress ) external payable returns (MessagingReceipt_0 memory, OFTReceipt memory); } // ../node_modules/@layerzerolabs/oapp-evm/contracts/precrime/OAppPreCrimeSimulator.sol /** * @title OAppPreCrimeSimulator * @dev Abstract contract serving as the base for preCrime simulation functionality in an OApp. */ abstract contract OAppPreCrimeSimulator is IOAppPreCrimeSimulator, Ownable { // The address of the preCrime implementation. address public preCrime; /** * @dev Retrieves the address of the OApp contract. * @return The address of the OApp contract. * * @dev The simulator contract is the base contract for the OApp by default. * @dev If the simulator is a separate contract, override this function. */ function oApp() external view virtual returns (address) { return address(this); } /** * @dev Sets the preCrime contract address. * @param _preCrime The address of the preCrime contract. */ function setPreCrime(address _preCrime) public virtual onlyOwner { preCrime = _preCrime; emit PreCrimeSet(_preCrime); } /** * @dev Interface for pre-crime simulations. Always reverts at the end with the simulation results. * @param _packets An array of InboundPacket objects representing received packets to be delivered. * * @dev WARNING: MUST revert at the end with the simulation results. * @dev Gives the preCrime implementation the ability to mock sending packets to the lzReceive function, * WITHOUT actually executing them. */ function lzReceiveAndRevert(InboundPacket[] calldata _packets) public payable virtual { for (uint256 i = 0; i < _packets.length; i++) { InboundPacket calldata packet = _packets[i]; // Ignore packets that are not from trusted peers. if (!isPeer(packet.origin.srcEid, packet.origin.sender)) continue; // @dev Because a verifier is calling this function, it doesnt have access to executor params: // - address _executor // - bytes calldata _extraData // preCrime will NOT work for OApps that rely on these two parameters inside of their _lzReceive(). // They are instead stubbed to default values, address(0) and bytes("") // @dev Calling this.lzReceiveSimulate removes ability for assembly return 0 callstack exit, // which would cause the revert to be ignored. this.lzReceiveSimulate{ value: packet.value }( packet.origin, packet.guid, packet.message, packet.executor, packet.extraData ); } // @dev Revert with the simulation results. msg.sender must implement IPreCrime.buildSimulationResult(). revert SimulationResult(IPreCrime(msg.sender).buildSimulationResult()); } /** * @dev Is effectively an internal function because msg.sender must be address(this). * Allows resetting the call stack for 'internal' calls. * @param _origin The origin information containing the source endpoint and sender address. * - srcEid: The source chain endpoint ID. * - sender: The sender address on the src chain. * - nonce: The nonce of the message. * @param _guid The unique identifier of the packet. * @param _message The message payload of the packet. * @param _executor The executor address for the packet. * @param _extraData Additional data for the packet. */ function lzReceiveSimulate( Origin_0 calldata _origin, bytes32 _guid, bytes calldata _message, address _executor, bytes calldata _extraData ) external payable virtual { // @dev Ensure ONLY can be called 'internally'. if (msg.sender != address(this)) revert OnlySelf(); _lzReceiveSimulate(_origin, _guid, _message, _executor, _extraData); } /** * @dev Internal function to handle the OAppPreCrimeSimulator simulated receive. * @param _origin The origin information. * - srcEid: The source chain endpoint ID. * - sender: The sender address from the src chain. * - nonce: The nonce of the LayerZero message. * @param _guid The GUID of the LayerZero message. * @param _message The LayerZero message. * @param _executor The address of the off-chain executor. * @param _extraData Arbitrary data passed by the msg executor. * * @dev Enables the preCrime simulator to mock sending lzReceive() messages, * routes the msg down from the OAppPreCrimeSimulator, and back up to the OAppReceiver. */ function _lzReceiveSimulate( Origin_0 calldata _origin, bytes32 _guid, bytes calldata _message, address _executor, bytes calldata _extraData ) internal virtual; /** * @dev checks if the specified peer is considered 'trusted' by the OApp. * @param _eid The endpoint Id to check. * @param _peer The peer to check. * @return Whether the peer passed is considered 'trusted' by the OApp. */ function isPeer(uint32 _eid, bytes32 _peer) public view virtual returns (bool); } // ../node_modules/@layerzerolabs/oapp-evm/contracts/oapp/OApp.sol // @dev Import the 'MessagingFee' and 'MessagingReceipt' so it's exposed to OApp implementers // solhint-disable-next-line no-unused-import // @dev Import the 'Origin' so it's exposed to OApp implementers // solhint-disable-next-line no-unused-import /** * @title OApp * @dev Abstract contract serving as the base for OApp implementation, combining OAppSender and OAppReceiver functionality. */ abstract contract OApp is OAppSender_0, OAppReceiver { /** * @dev Constructor to initialize the OApp with the provided endpoint and owner. * @param _endpoint The address of the LOCAL LayerZero endpoint. * @param _delegate The delegate capable of making OApp configurations inside of the endpoint. */ constructor(address _endpoint, address _delegate) OAppCore(_endpoint, _delegate) {} /** * @notice Retrieves the OApp version information. * @return senderVersion The version of the OAppSender.sol implementation. * @return receiverVersion The version of the OAppReceiver.sol implementation. */ function oAppVersion() public pure virtual override(OAppSender_0, OAppReceiver) returns (uint64 senderVersion, uint64 receiverVersion) { return (SENDER_VERSION, RECEIVER_VERSION); } } // /Users/benhaslam/ambient/oft_tools/node_modules/@layerzerolabs/oft-evm/contracts/OFTCore.sol /** * @title OFTCore * @dev Abstract contract for the OftChain (OFT) token. */ abstract contract OFTCore is IOFT, OApp, OAppPreCrimeSimulator, OAppOptionsType3 { using OFTMsgCodec for bytes; using OFTMsgCodec for bytes32; // @notice Provides a conversion rate when swapping between denominations of SD and LD // - shareDecimals == SD == shared Decimals // - localDecimals == LD == local decimals // @dev Considers that tokens have different decimal amounts on various chains. // @dev eg. // For a token // - locally with 4 decimals --> 1.2345 => uint(12345) // - remotely with 2 decimals --> 1.23 => uint(123) // - The conversion rate would be 10 ** (4 - 2) = 100 // @dev If you want to send 1.2345 -> (uint 12345), you CANNOT represent that value on the remote, // you can only display 1.23 -> uint(123). // @dev To preserve the dust that would otherwise be lost on that conversion, // we need to unify a denomination that can be represented on ALL chains inside of the OFT mesh uint256 public immutable decimalConversionRate; // @notice Msg types that are used to identify the various OFT operations. // @dev This can be extended in child contracts for non-default oft operations // @dev These values are used in things like combineOptions() in OAppOptionsType3.sol. uint16 public constant SEND = 1; uint16 public constant SEND_AND_CALL = 2; // Address of an optional contract to inspect both 'message' and 'options' address public msgInspector; event MsgInspectorSet(address inspector); /** * @dev Constructor. * @param _localDecimals The decimals of the token on the local chain (this chain). * @param _endpoint The address of the LayerZero endpoint. * @param _delegate The delegate capable of making OApp configurations inside of the endpoint. */ constructor(uint8 _localDecimals, address _endpoint, address _delegate) OApp(_endpoint, _delegate) { if (_localDecimals < sharedDecimals()) revert InvalidLocalDecimals(); decimalConversionRate = 10 ** (_localDecimals - sharedDecimals()); } /** * @notice Retrieves interfaceID and the version of the OFT. * @return interfaceId The interface ID. * @return version The version. * * @dev interfaceId: This specific interface ID is '0x02e49c2c'. * @dev version: Indicates a cross-chain compatible msg encoding with other OFTs. * @dev If a new feature is added to the OFT cross-chain msg encoding, the version will be incremented. * ie. localOFT version(x,1) CAN send messages to remoteOFT version(x,1) */ function oftVersion() external pure virtual returns (bytes4 interfaceId, uint64 version) { return (type(IOFT).interfaceId, 1); } /** * @dev Retrieves the shared decimals of the OFT. * @return The shared decimals of the OFT. * * @dev Sets an implicit cap on the amount of tokens, over uint64.max() will need some sort of outbound cap / totalSupply cap * Lowest common decimal denominator between chains. * Defaults to 6 decimal places to provide up to 18,446,744,073,709.551615 units (max uint64). * For tokens exceeding this totalSupply(), they will need to override the sharedDecimals function with something smaller. * ie. 4 sharedDecimals would be 1,844,674,407,370,955.1615 */ function sharedDecimals() public view virtual returns (uint8) { return 6; } /** * @dev Sets the message inspector address for the OFT. * @param _msgInspector The address of the message inspector. * * @dev This is an optional contract that can be used to inspect both 'message' and 'options'. * @dev Set it to address(0) to disable it, or set it to a contract address to enable it. */ function setMsgInspector(address _msgInspector) public virtual onlyOwner { msgInspector = _msgInspector; emit MsgInspectorSet(_msgInspector); } /** * @notice Provides a quote for OFT-related operations. * @param _sendParam The parameters for the send operation. * @return oftLimit The OFT limit information. * @return oftFeeDetails The details of OFT fees. * @return oftReceipt The OFT receipt information. */ function quoteOFT( SendParam calldata _sendParam ) external view virtual returns (OFTLimit memory oftLimit, OFTFeeDetail[] memory oftFeeDetails, OFTReceipt memory oftReceipt) { uint256 minAmountLD = 0; // Unused in the default implementation. uint256 maxAmountLD = type(uint64).max; // Unused in the default implementation. oftLimit = OFTLimit(minAmountLD, maxAmountLD); // Unused in the default implementation; reserved for future complex fee details. oftFeeDetails = new OFTFeeDetail[](0); // @dev This is the same as the send() operation, but without the actual send. // - amountSentLD is the amount in local decimals that would be sent from the sender. // - amountReceivedLD is the amount in local decimals that will be credited to the recipient on the remote OFT instance. // @dev The amountSentLD MIGHT not equal the amount the user actually receives. HOWEVER, the default does. (uint256 amountSentLD, uint256 amountReceivedLD) = _debitView( _sendParam.amountLD, _sendParam.minAmountLD, _sendParam.dstEid ); oftReceipt = OFTReceipt(amountSentLD, amountReceivedLD); } /** * @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 virtual returns (MessagingFee_0 memory msgFee) { // @dev mock the amount to receive, this is the same operation used in the send(). // The quote is as similar as possible to the actual send() operation. (, uint256 amountReceivedLD) = _debitView(_sendParam.amountLD, _sendParam.minAmountLD, _sendParam.dstEid); // @dev Builds the options and OFT message to quote in the endpoint. (bytes memory message, bytes memory options) = _buildMsgAndOptions(_sendParam, amountReceivedLD); // @dev Calculates the LayerZero fee for the send() operation. return _quote(_sendParam.dstEid, message, options, _payInLzToken); } /** * @dev Executes the send operation. * @param _sendParam The parameters for the send operation. * @param _fee The calculated fee for the send() operation. * - nativeFee: The native fee. * - lzTokenFee: The lzToken fee. * @param _refundAddress The address to receive any excess funds. * @return msgReceipt The receipt for the send operation. * @return oftReceipt The OFT receipt information. * * @dev MessagingReceipt: LayerZero msg receipt * - guid: The unique identifier for the sent message. * - nonce: The nonce of the sent message. * - fee: The LayerZero fee incurred for the message. */ function send( SendParam calldata _sendParam, MessagingFee_0 calldata _fee, address _refundAddress ) external payable virtual returns (MessagingReceipt_0 memory msgReceipt, OFTReceipt memory oftReceipt) { // @dev Applies the token transfers regarding this send() operation. // - amountSentLD is the amount in local decimals that was ACTUALLY sent/debited from the sender. // - amountReceivedLD is the amount in local decimals that will be received/credited to the recipient on the remote OFT instance. (uint256 amountSentLD, uint256 amountReceivedLD) = _debit( msg.sender, _sendParam.amountLD, _sendParam.minAmountLD, _sendParam.dstEid ); // @dev Builds the options and OFT message to quote in the endpoint. (bytes memory message, bytes memory options) = _buildMsgAndOptions(_sendParam, amountReceivedLD); // @dev Sends the message to the LayerZero endpoint and returns the LayerZero msg receipt. msgReceipt = _lzSend(_sendParam.dstEid, message, options, _fee, _refundAddress); // @dev Formulate the OFT receipt. oftReceipt = OFTReceipt(amountSentLD, amountReceivedLD); emit OFTSent(msgReceipt.guid, _sendParam.dstEid, msg.sender, amountSentLD, amountReceivedLD); } /** * @dev Internal function to build the message and options. * @param _sendParam The parameters for the send() operation. * @param _amountLD The amount in local decimals. * @return message The encoded message. * @return options The encoded options. */ function _buildMsgAndOptions( SendParam calldata _sendParam, uint256 _amountLD ) internal view virtual returns (bytes memory message, bytes memory options) { bool hasCompose; // @dev This generated message has the msg.sender encoded into the payload so the remote knows who the caller is. (message, hasCompose) = OFTMsgCodec.encode( _sendParam.to, _toSD(_amountLD), // @dev Must be include a non empty bytes if you want to compose, EVEN if you dont need it on the remote. // EVEN if you dont require an arbitrary payload to be sent... eg. '0x01' _sendParam.composeMsg ); // @dev Change the msg type depending if its composed or not. uint16 msgType = hasCompose ? SEND_AND_CALL : SEND; // @dev Combine the callers _extraOptions with the enforced options via the OAppOptionsType3. options = combineOptions(_sendParam.dstEid, msgType, _sendParam.extraOptions); // @dev Optionally inspect the message and options depending if the OApp owner has set a msg inspector. // @dev If it fails inspection, needs to revert in the implementation. ie. does not rely on return boolean address inspector = msgInspector; // caches the msgInspector to avoid potential double storage read if (inspector != address(0)) IOAppMsgInspector(inspector).inspect(message, options); } /** * @dev Internal function to handle the receive on the LayerZero endpoint. * @param _origin The origin information. * - srcEid: The source chain endpoint ID. * - sender: The sender address from the src chain. * - nonce: The nonce of the LayerZero message. * @param _guid The unique identifier for the received LayerZero message. * @param _message The encoded message. * @dev _executor The address of the executor. * @dev _extraData Additional data. */ function _lzReceive( Origin_0 calldata _origin, bytes32 _guid, bytes calldata _message, address /*_executor*/, // @dev unused in the default implementation. bytes calldata /*_extraData*/ // @dev unused in the default implementation. ) internal virtual override { // @dev The src sending chain doesnt know the address length on this chain (potentially non-evm) // Thus everything is bytes32() encoded in flight. address toAddress = _message.sendTo().bytes32ToAddress(); // @dev Credit the amountLD to the recipient and return the ACTUAL amount the recipient received in local decimals uint256 amountReceivedLD = _credit(toAddress, _toLD(_message.amountSD()), _origin.srcEid); if (_message.isComposed()) { // @dev Proprietary composeMsg format for the OFT. bytes memory composeMsg = OFTComposeMsgCodec.encode( _origin.nonce, _origin.srcEid, amountReceivedLD, _message.composeMsg() ); // @dev Stores the lzCompose payload that will be executed in a separate tx. // Standardizes functionality for executing arbitrary contract invocation on some non-evm chains. // @dev The off-chain executor will listen and process the msg based on the src-chain-callers compose options passed. // @dev The index is used when a OApp needs to compose multiple msgs on lzReceive. // For default OFT implementation there is only 1 compose msg per lzReceive, thus its always 0. endpoint.sendCompose(toAddress, _guid, 0 /* the index of the composed message*/, composeMsg); } emit OFTReceived(_guid, _origin.srcEid, toAddress, amountReceivedLD); } /** * @dev Internal function to handle the OAppPreCrimeSimulator simulated receive. * @param _origin The origin information. * - srcEid: The source chain endpoint ID. * - sender: The sender address from the src chain. * - nonce: The nonce of the LayerZero message. * @param _guid The unique identifier for the received LayerZero message. * @param _message The LayerZero message. * @param _executor The address of the off-chain executor. * @param _extraData Arbitrary data passed by the msg executor. * * @dev Enables the preCrime simulator to mock sending lzReceive() messages, * routes the msg down from the OAppPreCrimeSimulator, and back up to the OAppReceiver. */ function _lzReceiveSimulate( Origin_0 calldata _origin, bytes32 _guid, bytes calldata _message, address _executor, bytes calldata _extraData ) internal virtual override { _lzReceive(_origin, _guid, _message, _executor, _extraData); } /** * @dev Check if the peer is considered 'trusted' by the OApp. * @param _eid The endpoint ID to check. * @param _peer The peer to check. * @return Whether the peer passed is considered 'trusted' by the OApp. * * @dev Enables OAppPreCrimeSimulator to check whether a potential Inbound Packet is from a trusted source. */ function isPeer(uint32 _eid, bytes32 _peer) public view virtual override returns (bool) { return peers[_eid] == _peer; } /** * @dev Internal function to remove dust from the given local decimal amount. * @param _amountLD The amount in local decimals. * @return amountLD The amount after removing dust. * * @dev Prevents the loss of dust when moving amounts between chains with different decimals. * @dev eg. uint(123) with a conversion rate of 100 becomes uint(100). */ function _removeDust(uint256 _amountLD) internal view virtual returns (uint256 amountLD) { return (_amountLD / decimalConversionRate) * decimalConversionRate; } /** * @dev Internal function to convert an amount from shared decimals into local decimals. * @param _amountSD The amount in shared decimals. * @return amountLD The amount in local decimals. */ function _toLD(uint64 _amountSD) internal view virtual returns (uint256 amountLD) { return _amountSD * decimalConversionRate; } /** * @dev Internal function to convert an amount from local decimals into shared decimals. * @param _amountLD The amount in local decimals. * @return amountSD The amount in shared decimals. */ function _toSD(uint256 _amountLD) internal view virtual returns (uint64 amountSD) { return uint64(_amountLD / decimalConversionRate); } /** * @dev Internal function to mock the amount mutation from a OFT debit() operation. * @param _amountLD The amount to send in local decimals. * @param _minAmountLD The minimum amount to send in local decimals. * @dev _dstEid The destination endpoint ID. * @return amountSentLD The amount sent, in local decimals. * @return amountReceivedLD The amount to be received on the remote chain, in local decimals. * * @dev This is where things like fees would be calculated and deducted from the amount to be received on the remote. */ function _debitView( uint256 _amountLD, uint256 _minAmountLD, uint32 /*_dstEid*/ ) internal view virtual returns (uint256 amountSentLD, uint256 amountReceivedLD) { // @dev Remove the dust so nothing is lost on the conversion between chains with different decimals for the token. amountSentLD = _removeDust(_amountLD); // @dev The amount to send is the same as amount received in the default implementation. amountReceivedLD = amountSentLD; // @dev Check for slippage. if (amountReceivedLD < _minAmountLD) { revert SlippageExceeded(amountReceivedLD, _minAmountLD); } } /** * @dev Internal function to perform a debit operation. * @param _from The address to debit. * @param _amountLD The amount to send in local decimals. * @param _minAmountLD The minimum amount to send in local decimals. * @param _dstEid The destination endpoint ID. * @return amountSentLD The amount sent in local decimals. * @return amountReceivedLD The amount received in local decimals on the remote. * * @dev Defined here but are intended to be overriden depending on the OFT implementation. * @dev Depending on OFT implementation the _amountLD could differ from the amountReceivedLD. */ function _debit( address _from, uint256 _amountLD, uint256 _minAmountLD, uint32 _dstEid ) internal virtual returns (uint256 amountSentLD, uint256 amountReceivedLD); /** * @dev Internal function to perform a credit operation. * @param _to The address to credit. * @param _amountLD The amount to credit in local decimals. * @param _srcEid The source endpoint ID. * @return amountReceivedLD The amount ACTUALLY received in local decimals. * * @dev Defined here but are intended to be overriden depending on the OFT implementation. * @dev Depending on OFT implementation the _amountLD could differ from the amountReceivedLD. */ function _credit( address _to, uint256 _amountLD, uint32 _srcEid ) internal virtual returns (uint256 amountReceivedLD); } // ../node_modules/@layerzerolabs/oft-evm/contracts/OFT.sol /** * @title OFT Contract * @dev OFT is an ERC-20 token that extends the functionality of the OFTCore contract. */ abstract contract OFT is OFTCore, ERC20 { /** * @dev Constructor for the OFT contract. * @param _name The name of the OFT. * @param _symbol The symbol of the OFT. * @param _lzEndpoint The LayerZero endpoint address. * @param _delegate The delegate capable of making OApp configurations inside of the endpoint. */ constructor( string memory _name, string memory _symbol, address _lzEndpoint, address _delegate ) ERC20(_name, _symbol) OFTCore(decimals(), _lzEndpoint, _delegate) {} /** * @dev Retrieves the address of the underlying ERC20 implementation. * @return The address of the OFT token. * * @dev In the case of OFT, address(this) and erc20 are the same contract. */ function token() public view returns (address) { return address(this); } /** * @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. */ function approvalRequired() external pure virtual returns (bool) { return false; } /** * @dev Burns tokens from the sender's specified balance. * @param _from The address to debit the tokens from. * @param _amountLD The amount of tokens to send in local decimals. * @param _minAmountLD The minimum amount to send in local decimals. * @param _dstEid The destination chain ID. * @return amountSentLD The amount sent in local decimals. * @return amountReceivedLD The amount received in local decimals on the remote. */ function _debit( address _from, uint256 _amountLD, uint256 _minAmountLD, uint32 _dstEid ) internal virtual override returns (uint256 amountSentLD, uint256 amountReceivedLD) { (amountSentLD, amountReceivedLD) = _debitView(_amountLD, _minAmountLD, _dstEid); // @dev In NON-default OFT, amountSentLD could be 100, with a 10% fee, the amountReceivedLD amount is 90, // therefore amountSentLD CAN differ from amountReceivedLD. // @dev Default OFT burns on src. _burn(_from, amountSentLD); } /** * @dev Credits tokens to the specified address. * @param _to The address to credit the tokens to. * @param _amountLD The amount of tokens to credit in local decimals. * @dev _srcEid The source chain ID. * @return amountReceivedLD The amount of tokens ACTUALLY received in local decimals. */ function _credit( address _to, uint256 _amountLD, uint32 /*_srcEid*/ ) internal virtual override returns (uint256 amountReceivedLD) { if (_to == address(0x0)) _to = address(0xdead); // _mint(...) does not support address(0x0) // @dev Default OFT mints on dst. _mint(_to, _amountLD); // @dev In the case of NON-default OFT, the _amountLD MIGHT not be == amountReceivedLD. return _amountLD; } } // src/oftImplementation.sol contract OFTImplementation is OFT { /** * @dev Constructor for the OFTImplementation contract. * @param _lzEndpoint The LayerZero endpoint address. * @param _delegate The delegate capable of making OApp configurations inside of the endpoint. */ constructor( string memory name, string memory symbol, address _lzEndpoint, address _delegate ) OFT(name, symbol, _lzEndpoint, _delegate)Ownable(_delegate) {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"_lzEndpoint","type":"address"},{"internalType":"address","name":"_delegate","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"InvalidDelegate","type":"error"},{"inputs":[],"name":"InvalidEndpointCall","type":"error"},{"inputs":[],"name":"InvalidLocalDecimals","type":"error"},{"inputs":[{"internalType":"bytes","name":"options","type":"bytes"}],"name":"InvalidOptions","type":"error"},{"inputs":[],"name":"LzTokenUnavailable","type":"error"},{"inputs":[{"internalType":"uint32","name":"eid","type":"uint32"}],"name":"NoPeer","type":"error"},{"inputs":[{"internalType":"uint256","name":"msgValue","type":"uint256"}],"name":"NotEnoughNative","type":"error"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"OnlyEndpoint","type":"error"},{"inputs":[{"internalType":"uint32","name":"eid","type":"uint32"},{"internalType":"bytes32","name":"sender","type":"bytes32"}],"name":"OnlyPeer","type":"error"},{"inputs":[],"name":"OnlySelf","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":[{"internalType":"bytes","name":"result","type":"bytes"}],"name":"SimulationResult","type":"error"},{"inputs":[{"internalType":"uint256","name":"amountLD","type":"uint256"},{"internalType":"uint256","name":"minAmountLD","type":"uint256"}],"name":"SlippageExceeded","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"uint32","name":"eid","type":"uint32"},{"internalType":"uint16","name":"msgType","type":"uint16"},{"internalType":"bytes","name":"options","type":"bytes"}],"indexed":false,"internalType":"struct EnforcedOptionParam[]","name":"_enforcedOptions","type":"tuple[]"}],"name":"EnforcedOptionSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"inspector","type":"address"}],"name":"MsgInspectorSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"guid","type":"bytes32"},{"indexed":false,"internalType":"uint32","name":"srcEid","type":"uint32"},{"indexed":true,"internalType":"address","name":"toAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountReceivedLD","type":"uint256"}],"name":"OFTReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"guid","type":"bytes32"},{"indexed":false,"internalType":"uint32","name":"dstEid","type":"uint32"},{"indexed":true,"internalType":"address","name":"fromAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountSentLD","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountReceivedLD","type":"uint256"}],"name":"OFTSent","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":false,"internalType":"uint32","name":"eid","type":"uint32"},{"indexed":false,"internalType":"bytes32","name":"peer","type":"bytes32"}],"name":"PeerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"preCrimeAddress","type":"address"}],"name":"PreCrimeSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"SEND","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SEND_AND_CALL","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"srcEid","type":"uint32"},{"internalType":"bytes32","name":"sender","type":"bytes32"},{"internalType":"uint64","name":"nonce","type":"uint64"}],"internalType":"struct Origin_0","name":"origin","type":"tuple"}],"name":"allowInitializePath","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"approvalRequired","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_eid","type":"uint32"},{"internalType":"uint16","name":"_msgType","type":"uint16"},{"internalType":"bytes","name":"_extraOptions","type":"bytes"}],"name":"combineOptions","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimalConversionRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endpoint","outputs":[{"internalType":"contract ILayerZeroEndpointV2_0","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"eid","type":"uint32"},{"internalType":"uint16","name":"msgType","type":"uint16"}],"name":"enforcedOptions","outputs":[{"internalType":"bytes","name":"enforcedOption","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"srcEid","type":"uint32"},{"internalType":"bytes32","name":"sender","type":"bytes32"},{"internalType":"uint64","name":"nonce","type":"uint64"}],"internalType":"struct Origin_0","name":"","type":"tuple"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"address","name":"_sender","type":"address"}],"name":"isComposeMsgSender","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_eid","type":"uint32"},{"internalType":"bytes32","name":"_peer","type":"bytes32"}],"name":"isPeer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"srcEid","type":"uint32"},{"internalType":"bytes32","name":"sender","type":"bytes32"},{"internalType":"uint64","name":"nonce","type":"uint64"}],"internalType":"struct Origin_0","name":"_origin","type":"tuple"},{"internalType":"bytes32","name":"_guid","type":"bytes32"},{"internalType":"bytes","name":"_message","type":"bytes"},{"internalType":"address","name":"_executor","type":"address"},{"internalType":"bytes","name":"_extraData","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"components":[{"internalType":"uint32","name":"srcEid","type":"uint32"},{"internalType":"bytes32","name":"sender","type":"bytes32"},{"internalType":"uint64","name":"nonce","type":"uint64"}],"internalType":"struct Origin_0","name":"origin","type":"tuple"},{"internalType":"uint32","name":"dstEid","type":"uint32"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"bytes32","name":"guid","type":"bytes32"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"address","name":"executor","type":"address"},{"internalType":"bytes","name":"message","type":"bytes"},{"internalType":"bytes","name":"extraData","type":"bytes"}],"internalType":"struct InboundPacket[]","name":"_packets","type":"tuple[]"}],"name":"lzReceiveAndRevert","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"srcEid","type":"uint32"},{"internalType":"bytes32","name":"sender","type":"bytes32"},{"internalType":"uint64","name":"nonce","type":"uint64"}],"internalType":"struct Origin_0","name":"_origin","type":"tuple"},{"internalType":"bytes32","name":"_guid","type":"bytes32"},{"internalType":"bytes","name":"_message","type":"bytes"},{"internalType":"address","name":"_executor","type":"address"},{"internalType":"bytes","name":"_extraData","type":"bytes"}],"name":"lzReceiveSimulate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"msgInspector","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"","type":"uint32"},{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"nextNonce","outputs":[{"internalType":"uint64","name":"nonce","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oApp","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oAppVersion","outputs":[{"internalType":"uint64","name":"senderVersion","type":"uint64"},{"internalType":"uint64","name":"receiverVersion","type":"uint64"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"oftVersion","outputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"},{"internalType":"uint64","name":"version","type":"uint64"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"eid","type":"uint32"}],"name":"peers","outputs":[{"internalType":"bytes32","name":"peer","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preCrime","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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 SendParam","name":"_sendParam","type":"tuple"}],"name":"quoteOFT","outputs":[{"components":[{"internalType":"uint256","name":"minAmountLD","type":"uint256"},{"internalType":"uint256","name":"maxAmountLD","type":"uint256"}],"internalType":"struct OFTLimit","name":"oftLimit","type":"tuple"},{"components":[{"internalType":"int256","name":"feeAmountLD","type":"int256"},{"internalType":"string","name":"description","type":"string"}],"internalType":"struct OFTFeeDetail[]","name":"oftFeeDetails","type":"tuple[]"},{"components":[{"internalType":"uint256","name":"amountSentLD","type":"uint256"},{"internalType":"uint256","name":"amountReceivedLD","type":"uint256"}],"internalType":"struct OFTReceipt","name":"oftReceipt","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"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 SendParam","name":"_sendParam","type":"tuple"},{"internalType":"bool","name":"_payInLzToken","type":"bool"}],"name":"quoteSend","outputs":[{"components":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"lzTokenFee","type":"uint256"}],"internalType":"struct MessagingFee_0","name":"msgFee","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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 SendParam","name":"_sendParam","type":"tuple"},{"components":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"lzTokenFee","type":"uint256"}],"internalType":"struct MessagingFee_0","name":"_fee","type":"tuple"},{"internalType":"address","name":"_refundAddress","type":"address"}],"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 MessagingFee_0","name":"fee","type":"tuple"}],"internalType":"struct MessagingReceipt_0","name":"msgReceipt","type":"tuple"},{"components":[{"internalType":"uint256","name":"amountSentLD","type":"uint256"},{"internalType":"uint256","name":"amountReceivedLD","type":"uint256"}],"internalType":"struct OFTReceipt","name":"oftReceipt","type":"tuple"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_delegate","type":"address"}],"name":"setDelegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"eid","type":"uint32"},{"internalType":"uint16","name":"msgType","type":"uint16"},{"internalType":"bytes","name":"options","type":"bytes"}],"internalType":"struct EnforcedOptionParam[]","name":"_enforcedOptions","type":"tuple[]"}],"name":"setEnforcedOptions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_msgInspector","type":"address"}],"name":"setMsgInspector","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_eid","type":"uint32"},{"internalType":"bytes32","name":"_peer","type":"bytes32"}],"name":"setPeer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_preCrime","type":"address"}],"name":"setPreCrime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sharedDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c060405234801561001057600080fd5b5060405161370538038061370583398101604081905261002f916102ab565b83838383838360128484818181818d6001600160a01b03811661006c57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b61007581610181565b506001600160a01b0380831660805281166100a357604051632d618d8160e21b815260040160405180910390fd5b60805160405163ca5eb5e160e01b81526001600160a01b0383811660048301529091169063ca5eb5e190602401600060405180830381600087803b1580156100ea57600080fd5b505af11580156100fe573d6000803e3d6000fd5b50505050505050506101146101d160201b60201c565b60ff168360ff16101561013a576040516301e9714b60e41b815260040160405180910390fd5b61014560068461034b565b61015090600a610451565b60a0525060089150610164905083826104f0565b50600961017182826104f0565b50505050505050505050506105ae565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600690565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126101fd57600080fd5b81516001600160401b03811115610216576102166101d6565b604051601f8201601f19908116603f011681016001600160401b0381118282101715610244576102446101d6565b60405281815283820160200185101561025c57600080fd5b60005b8281101561027b5760208186018101518383018201520161025f565b506000918101602001919091529392505050565b80516001600160a01b03811681146102a657600080fd5b919050565b600080600080608085870312156102c157600080fd5b84516001600160401b038111156102d757600080fd5b6102e3878288016101ec565b602087015190955090506001600160401b0381111561030157600080fd5b61030d878288016101ec565b93505061031c6040860161028f565b915061032a6060860161028f565b905092959194509250565b634e487b7160e01b600052601160045260246000fd5b60ff828116828216039081111561036457610364610335565b92915050565b6001815b60018411156103a55780850481111561038957610389610335565b600184161561039757908102905b60019390931c92800261036e565b935093915050565b6000826103bc57506001610364565b816103c957506000610364565b81600181146103df57600281146103e957610405565b6001915050610364565b60ff8411156103fa576103fa610335565b50506001821b610364565b5060208310610133831016604e8410600b8410161715610428575081810a610364565b610435600019848461036a565b806000190482111561044957610449610335565b029392505050565b600061046060ff8416836103ad565b9392505050565b600181811c9082168061047b57607f821691505b60208210810361049b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156104eb57806000526020600020601f840160051c810160208510156104c85750805b601f840160051c820191505b818110156104e857600081556001016104d4565b50505b505050565b81516001600160401b03811115610509576105096101d6565b61051d816105178454610467565b846104a1565b6020601f82116001811461055157600083156105395750848201515b600019600385901b1c1916600184901b1784556104e8565b600084815260208120601f198516915b828110156105815787850151825560209485019460019092019101610561565b508482101561059f5786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b60805160a0516130ec6106196000396000818161061e01528181611ae501528181611b5a0152611d5e0152600081816104dd0152818161098d015281816110a4015281816113230152818161168d0152818161193401528181611e5f0152611f1801526130ec6000f3fe6080604052600436106102515760003560e01c80637d25a05e11610139578063bb0b6a53116100b6578063d045a0dc1161007a578063d045a0dc14610755578063d424388514610768578063dd62ed3e14610788578063f2fde38b146107ce578063fc0c546a14610461578063ff7bd03d146107ee57600080fd5b8063bb0b6a53146106b4578063bc70b354146106e1578063bd815db014610701578063c7c7f5b314610714578063ca5eb5e11461073557600080fd5b8063963efcaa116100fd578063963efcaa1461060c5780639f68b96414610640578063a9059cbb14610654578063b731ea0a14610674578063b98bd0701461069457600080fd5b80637d25a05e1461056a57806382413eac146105a5578063857749b0146105c55780638da5cb5b146105d957806395d89b41146105f757600080fd5b806323b872dd116101d25780635535d461116101965780635535d461146104745780635a0dfe4d146104945780635e280f11146104cb5780636fc1b31e146104ff57806370a082311461051f578063715018a61461055557600080fd5b806323b872dd146103d2578063313ce567146103f25780633400288b146104145780633b6f743b1461043457806352ae28791461046157600080fd5b8063134d4f2511610219578063134d4f251461032d578063156a0d0f1461035557806317442b701461037c57806318160ddd1461039e5780631f5e1334146103bd57600080fd5b806306fdde0314610256578063095ea7b3146102815780630d35b415146102b1578063111ecdad146102e057806313137d6514610318575b600080fd5b34801561026257600080fd5b5061026b61080e565b60405161027891906121b6565b60405180910390f35b34801561028d57600080fd5b506102a161029c3660046121de565b6108a0565b6040519015158152602001610278565b3480156102bd57600080fd5b506102d16102cc366004612222565b6108ba565b60405161027893929190612256565b3480156102ec57600080fd5b50600454610300906001600160a01b031681565b6040516001600160a01b039091168152602001610278565b61032b61032636600461234d565b61098b565b005b34801561033957600080fd5b50610342600281565b60405161ffff9091168152602001610278565b34801561036157600080fd5b506040805162b9270b60e21b81526001602082015201610278565b34801561038857600080fd5b5060408051600181526002602082015201610278565b3480156103aa57600080fd5b506007545b604051908152602001610278565b3480156103c957600080fd5b50610342600181565b3480156103de57600080fd5b506102a16103ed3660046123ee565b610a4b565b3480156103fe57600080fd5b5060125b60405160ff9091168152602001610278565b34801561042057600080fd5b5061032b61042f366004612448565b610a71565b34801561044057600080fd5b5061045461044f366004612472565b610a87565b60405161027891906124c3565b34801561046d57600080fd5b5030610300565b34801561048057600080fd5b5061026b61048f3660046124ec565b610aee565b3480156104a057600080fd5b506102a16104af366004612448565b63ffffffff919091166000908152600160205260409020541490565b3480156104d757600080fd5b506103007f000000000000000000000000000000000000000000000000000000000000000081565b34801561050b57600080fd5b5061032b61051a36600461251f565b610b93565b34801561052b57600080fd5b506103af61053a36600461251f565b6001600160a01b031660009081526005602052604090205490565b34801561056157600080fd5b5061032b610bf0565b34801561057657600080fd5b5061058d610585366004612448565b600092915050565b6040516001600160401b039091168152602001610278565b3480156105b157600080fd5b506102a16105c036600461253c565b610c04565b3480156105d157600080fd5b506006610402565b3480156105e557600080fd5b506000546001600160a01b0316610300565b34801561060357600080fd5b5061026b610c19565b34801561061857600080fd5b506103af7f000000000000000000000000000000000000000000000000000000000000000081565b34801561064c57600080fd5b5060006102a1565b34801561066057600080fd5b506102a161066f3660046121de565b610c28565b34801561068057600080fd5b50600254610300906001600160a01b031681565b3480156106a057600080fd5b5061032b6106af3660046125e6565b610c36565b3480156106c057600080fd5b506103af6106cf366004612627565b60016020526000908152604090205481565b3480156106ed57600080fd5b5061026b6106fc366004612642565b610c50565b61032b61070f3660046125e6565b610df8565b6107276107223660046126a2565b610f82565b60405161027892919061270f565b34801561074157600080fd5b5061032b61075036600461251f565b61107d565b61032b61076336600461234d565b611103565b34801561077457600080fd5b5061032b61078336600461251f565b611132565b34801561079457600080fd5b506103af6107a3366004612761565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b3480156107da57600080fd5b5061032b6107e936600461251f565b611188565b3480156107fa57600080fd5b506102a161080936600461278f565b6111c6565b60606008805461081d906127ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610849906127ab565b80156108965780601f1061086b57610100808354040283529160200191610896565b820191906000526020600020905b81548152906001019060200180831161087957829003601f168201915b5050505050905090565b6000336108ae8185856111fc565b60019150505b92915050565b604080518082019091526000808252602082015260606108ed604051806040016040528060008152602001600081525090565b60408051808201825260008082526001600160401b03602080840182905284518381529081019094529195509182610948565b6040805180820190915260008152606060208201528152602001906001900390816109205790505b50935060008061096d604089013560608a013561096860208c018c612627565b61120e565b60408051808201909152918252602082015296989597505050505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633146109db576040516391ac5e4f60e01b81523360048201526024015b60405180910390fd5b602087018035906109f5906109f0908a612627565b611252565b14610a3357610a076020880188612627565b60405163309afaf360e21b815263ffffffff9091166004820152602088013560248201526044016109d2565b610a428787878787878761128e565b50505050505050565b600033610a598582856113f5565b610a64858585611473565b60019150505b9392505050565b610a796114d2565b610a8382826114ff565b5050565b60408051808201909152600080825260208201526000610ab7604085013560608601356109686020880188612627565b915050600080610ac78684611554565b9092509050610ae4610adc6020880188612627565b838388611677565b9695505050505050565b600360209081526000928352604080842090915290825290208054610b12906127ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3e906127ab565b8015610b8b5780601f10610b6057610100808354040283529160200191610b8b565b820191906000526020600020905b815481529060010190602001808311610b6e57829003601f168201915b505050505081565b610b9b6114d2565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527ff0be4f1e87349231d80c36b33f9e8639658eeaf474014dee15a3e6a4d4414197906020015b60405180910390a150565b610bf86114d2565b610c026000611758565b565b6001600160a01b03811630145b949350505050565b60606009805461081d906127ab565b6000336108ae818585611473565b610c3e6114d2565b610a83610c4b8284612896565b6117a8565b63ffffffff8416600090815260036020908152604080832061ffff87168452909152812080546060929190610c84906127ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb0906127ab565b8015610cfd5780601f10610cd257610100808354040283529160200191610cfd565b820191906000526020600020905b815481529060010190602001808311610ce057829003601f168201915b505050505090508051600003610d4d5783838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929450610c119350505050565b6000839003610d5d579050610c11565b60028310610ddb57610da484848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506118af92505050565b80610db284600281886129bf565b604051602001610dc4939291906129e9565b604051602081830303815290604052915050610c11565b8383604051639a6d49cd60e01b81526004016109d2929190612a3a565b60005b81811015610f015736838383818110610e1657610e16612a4e565b9050602002810190610e289190612a64565b9050610e5b610e3a6020830183612627565b602083013563ffffffff919091166000908152600160205260409020541490565b610e655750610ef9565b3063d045a0dc60c08301358360a0810135610e84610100830183612a85565b610e95610100890160e08a0161251f565b610ea36101208a018a612a85565b6040518963ffffffff1660e01b8152600401610ec59796959493929190612ae0565b6000604051808303818588803b158015610ede57600080fd5b505af1158015610ef2573d6000803e3d6000fd5b5050505050505b600101610dfb565b50336001600160a01b0316638e9e70996040518163ffffffff1660e01b8152600401600060405180830381865afa158015610f40573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610f689190810190612b66565b604051638351eea760e01b81526004016109d291906121b6565b610f8a61211f565b6040805180820190915260008082526020820152600080610fc133604089013560608a0135610fbc60208c018c612627565b6118db565b91509150600080610fd28984611554565b9092509050610ffe610fe760208b018b612627565b8383610ff8368d90038d018d612bd3565b8b611901565b60408051808201909152858152602080820186905282519298509096503391907f85496b760a4b7f8d66384b9df21b381f5d1b1e79f229a47aaf4c232edc2fe59a9061104c908d018d612627565b6040805163ffffffff909216825260208201899052810187905260600160405180910390a350505050935093915050565b6110856114d2565b60405163ca5eb5e160e01b81526001600160a01b0382811660048301527f0000000000000000000000000000000000000000000000000000000000000000169063ca5eb5e190602401600060405180830381600087803b1580156110e857600080fd5b505af11580156110fc573d6000803e3d6000fd5b5050505050565b3330146111235760405163029a949d60e31b815260040160405180910390fd5b610a4287878787878787610a33565b61113a6114d2565b600280546001600160a01b0319166001600160a01b0383169081179091556040519081527fd48d879cef83a1c0bdda516f27b13ddb1b3f8bbac1c9e1511bb2a659c242776090602001610be5565b6111906114d2565b6001600160a01b0381166111ba57604051631e4fbdf760e01b8152600060048201526024016109d2565b6111c381611758565b50565b60006020820180359060019083906111de9086612627565b63ffffffff1681526020810191909152604001600020541492915050565b6112098383836001611a0c565b505050565b60008061121a85611ae1565b91508190508381101561124a576040516371c4efed60e01b815260048101829052602481018590526044016109d2565b935093915050565b63ffffffff8116600090815260016020526040812054806108b45760405163f6ff4fb760e01b815263ffffffff841660048201526024016109d2565b60006112a061129d8787611b18565b90565b905060006112cc826112ba6112b58a8a611b30565b611b53565b6112c760208d018d612627565b611b88565b905060288611156113935760006113096112ec60608c0160408d01612c06565b6112f960208d018d612627565b846113048c8c611bb0565b611bfb565b604051633e5ac80960e11b81529091506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690637cb590129061135f9086908d906000908790600401612c23565b600060405180830381600087803b15801561137957600080fd5b505af115801561138d573d6000803e3d6000fd5b50505050505b6001600160a01b038216887fefed6d3500546b29533b128a29e3a94d70788727f0507505ac12eaf2e578fd9c6113cc60208d018d612627565b6040805163ffffffff9092168252602082018690520160405180910390a3505050505050505050565b6001600160a01b03838116600090815260066020908152604080832093861683529290522054600019811461146d578181101561145e57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016109d2565b61146d84848484036000611a0c565b50505050565b6001600160a01b03831661149d57604051634b637e8f60e11b8152600060048201526024016109d2565b6001600160a01b0382166114c75760405163ec442f0560e01b8152600060048201526024016109d2565b611209838383611c2d565b6000546001600160a01b03163314610c025760405163118cdaa760e01b81523360048201526024016109d2565b63ffffffff8216600081815260016020908152604091829020849055815192835282018390527f238399d427b947898edb290f5ff0f9109849b1c3ba196a42e35f00c50a54b98b910160405180910390a15050565b60608060006115b1856020013561156a86611d57565b61157760a0890189612a85565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611d8392505050565b90935090506000816115c45760016115c7565b60025b90506115e76115d96020880188612627565b826106fc60808a018a612a85565b6004549093506001600160a01b0316801561166d5760405163043a78eb60e01b81526001600160a01b0382169063043a78eb9061162a9088908890600401612c54565b602060405180830381865afa158015611647573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061166b9190612c79565b505b5050509250929050565b60408051808201909152600080825260208201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ddc28c586040518060a001604052808863ffffffff1681526020016116da89611252565b8152602001878152602001868152602001851515815250306040518363ffffffff1660e01b815260040161170f929190612c96565b6040805180830381865afa15801561172b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061174f9190612d40565b95945050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005b815181101561187f576117da8282815181106117c9576117c9612a4e565b6020026020010151604001516118af565b8181815181106117ec576117ec612a4e565b6020026020010151604001516003600084848151811061180e5761180e612a4e565b60200260200101516000015163ffffffff1663ffffffff168152602001908152602001600020600084848151811061184857611848612a4e565b60200260200101516020015161ffff1661ffff16815260200190815260200160002090816118769190612da3565b506001016117ab565b507fbe4864a8e820971c0247f5992e2da559595f7bf076a21cb5928d443d2a13b67481604051610be59190612e61565b600281015161ffff8116600314610a835781604051639a6d49cd60e01b81526004016109d291906121b6565b6000806118e985858561120e565b90925090506118f88683611dfd565b94509492505050565b61190961211f565b60006119188460000151611e33565b602085015190915015611932576119328460200151611e5b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316632637a450826040518060a001604052808b63ffffffff1681526020016119828c611252565b81526020018a815260200189815260200160008960200151111515815250866040518463ffffffff1660e01b81526004016119be929190612c96565b60806040518083038185885af11580156119dc573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611a019190612ef1565b979650505050505050565b6001600160a01b038416611a365760405163e602df0560e01b8152600060048201526024016109d2565b6001600160a01b038316611a6057604051634a1406b160e11b8152600060048201526024016109d2565b6001600160a01b038085166000908152600660209081526040808320938716835292905220829055801561146d57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611ad391815260200190565b60405180910390a350505050565b60007f0000000000000000000000000000000000000000000000000000000000000000611b0e8184612f53565b6108b49190612f75565b6000611b2760208284866129bf565b610a6a91612f8c565b6000611b406028602084866129bf565b611b4991612faa565b60c01c9392505050565b60006108b47f00000000000000000000000000000000000000000000000000000000000000006001600160401b038416612f75565b60006001600160a01b038416611b9e5761dead93505b611ba88484611f3d565b509092915050565b6060611bbf82602881866129bf565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929695505050505050565b606084848484604051602001611c149493929190612fe2565b6040516020818303038152906040529050949350505050565b6001600160a01b038316611c58578060076000828254611c4d9190613031565b90915550611cca9050565b6001600160a01b03831660009081526005602052604090205481811015611cab5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016109d2565b6001600160a01b03841660009081526005602052604090209082900390555b6001600160a01b038216611ce657600780548290039055611d05565b6001600160a01b03821660009081526005602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d4a91815260200190565b60405180910390a3505050565b60006108b47f000000000000000000000000000000000000000000000000000000000000000083612f53565b8051606090151580611dcc578484604051602001611db892919091825260c01b6001600160c01b031916602082015260280190565b604051602081830303815290604052611df3565b84843385604051602001611de39493929190613044565b6040516020818303038152906040525b9150935093915050565b6001600160a01b038216611e2757604051634b637e8f60e11b8152600060048201526024016109d2565b610a8382600083611c2d565b6000813414611e57576040516304fb820960e51b81523460048201526024016109d2565b5090565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e4fe1d946040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ebb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611edf9190613087565b90506001600160a01b038116611f08576040516329b99a9560e11b815260040160405180910390fd5b610a836001600160a01b038216337f000000000000000000000000000000000000000000000000000000000000000085611f73565b6001600160a01b038216611f675760405163ec442f0560e01b8152600060048201526024016109d2565b610a8360008383611c2d565b604080516001600160a01b038581166024830152848116604483015260648083018590528351808403909101815260849092019092526020810180516001600160e01b03166323b872dd60e01b17905261146d91869190600090611fd990841683612027565b90508051600014158015611ffe575080806020019051810190611ffc9190612c79565b155b1561120957604051635274afe760e01b81526001600160a01b03841660048201526024016109d2565b6060610a6a8383600084600080856001600160a01b0316848660405161204d91906130a4565b60006040518083038185875af1925050503d806000811461208a576040519150601f19603f3d011682016040523d82523d6000602084013e61208f565b606091505b5091509150610ae48683836060826120af576120aa826120f6565b610a6a565b81511580156120c657506001600160a01b0384163b155b156120ef57604051639996b31560e01b81526001600160a01b03851660048201526024016109d2565b5080610a6a565b8051156121065780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b60405180606001604052806000801916815260200160006001600160401b03168152602001612161604051806040016040528060008152602001600081525090565b905290565b60005b83811015612181578181015183820152602001612169565b50506000910152565b600081518084526121a2816020860160208601612166565b601f01601f19169290920160200192915050565b602081526000610a6a602083018461218a565b6001600160a01b03811681146111c357600080fd5b600080604083850312156121f157600080fd5b82356121fc816121c9565b946020939093013593505050565b600060e0828403121561221c57600080fd5b50919050565b60006020828403121561223457600080fd5b81356001600160401b0381111561224a57600080fd5b610c118482850161220a565b8351815260208085015190820152600060a0820160a0604084015280855180835260c08501915060c08160051b86010192506020870160005b828110156122d75760bf1987860301845281518051865260208101519050604060208701526122c1604087018261218a565b955050602093840193919091019060010161228f565b5050855160608601525050602084015160808401529050610c11565b60006060828403121561221c57600080fd5b60008083601f84011261231757600080fd5b5081356001600160401b0381111561232e57600080fd5b60208301915083602082850101111561234657600080fd5b9250929050565b600080600080600080600060e0888a03121561236857600080fd5b61237289896122f3565b96506060880135955060808801356001600160401b0381111561239457600080fd5b6123a08a828b01612305565b90965094505060a08801356123b4816121c9565b925060c08801356001600160401b038111156123cf57600080fd5b6123db8a828b01612305565b989b979a50959850939692959293505050565b60008060006060848603121561240357600080fd5b833561240e816121c9565b9250602084013561241e816121c9565b929592945050506040919091013590565b803563ffffffff8116811461244357600080fd5b919050565b6000806040838503121561245b57600080fd5b6121fc8361242f565b80151581146111c357600080fd5b6000806040838503121561248557600080fd5b82356001600160401b0381111561249b57600080fd5b6124a78582860161220a565b92505060208301356124b881612464565b809150509250929050565b8151815260208083015190820152604081016108b4565b803561ffff8116811461244357600080fd5b600080604083850312156124ff57600080fd5b6125088361242f565b9150612516602084016124da565b90509250929050565b60006020828403121561253157600080fd5b8135610a6a816121c9565b60008060008060a0858703121561255257600080fd5b61255c86866122f3565b935060608501356001600160401b0381111561257757600080fd5b61258387828801612305565b9094509250506080850135612597816121c9565b939692955090935050565b60008083601f8401126125b457600080fd5b5081356001600160401b038111156125cb57600080fd5b6020830191508360208260051b850101111561234657600080fd5b600080602083850312156125f957600080fd5b82356001600160401b0381111561260f57600080fd5b61261b858286016125a2565b90969095509350505050565b60006020828403121561263957600080fd5b610a6a8261242f565b6000806000806060858703121561265857600080fd5b6126618561242f565b935061266f602086016124da565b925060408501356001600160401b0381111561268a57600080fd5b61269687828801612305565b95989497509550505050565b600080600083850360808112156126b857600080fd5b84356001600160401b038111156126ce57600080fd5b6126da8782880161220a565b9450506040601f19820112156126ef57600080fd5b506020840191506060840135612704816121c9565b809150509250925092565b600060c082019050835182526001600160401b036020850151166020830152604084015161274a604084018280518252602090810151910152565b5082516080830152602083015160a0830152610a6a565b6000806040838503121561277457600080fd5b823561277f816121c9565b915060208301356124b8816121c9565b6000606082840312156127a157600080fd5b610a6a83836122f3565b600181811c908216806127bf57607f821691505b60208210810361221c57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b604051606081016001600160401b0381118282101715612817576128176127df565b60405290565b604080519081016001600160401b0381118282101715612817576128176127df565b604051601f8201601f191681016001600160401b0381118282101715612867576128676127df565b604052919050565b60006001600160401b03821115612888576128886127df565b50601f01601f191660200190565b60006001600160401b038311156128af576128af6127df565b8260051b6128bf6020820161283f565b848152908301906020810190368311156128d857600080fd5b845b838110156129b55780356001600160401b038111156128f857600080fd5b8601606036829003121561290b57600080fd5b6129136127f5565b61291c8261242f565b815261292a602083016124da565b602082015260408201356001600160401b0381111561294857600080fd5b919091019036601f83011261295c57600080fd5b813561296f61296a8261286f565b61283f565b81815236602083860101111561298457600080fd5b81602085016020830137600060208383010152806040840152505080855250506020830192506020810190506128da565b5095945050505050565b600080858511156129cf57600080fd5b838611156129dc57600080fd5b5050820193919092039150565b600084516129fb818460208901612166565b8201838582376000930192835250909392505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b602081526000610c11602083018486612a11565b634e487b7160e01b600052603260045260246000fd5b6000823561013e19833603018112612a7b57600080fd5b9190910192915050565b6000808335601e19843603018112612a9c57600080fd5b8301803591506001600160401b03821115612ab657600080fd5b60200191503681900382131561234657600080fd5b6001600160401b03811681146111c357600080fd5b63ffffffff612aee8961242f565b1681526020888101359082015260006040890135612b0b81612acb565b6001600160401b03811660408401525087606083015260e06080830152612b3660e083018789612a11565b6001600160a01b03861660a084015282810360c0840152612b58818587612a11565b9a9950505050505050505050565b600060208284031215612b7857600080fd5b81516001600160401b03811115612b8e57600080fd5b8201601f81018413612b9f57600080fd5b8051612bad61296a8261286f565b818152856020838501011115612bc257600080fd5b61174f826020830160208601612166565b60006040828403128015612be657600080fd5b50612bef61281d565b823581526020928301359281019290925250919050565b600060208284031215612c1857600080fd5b8135610a6a81612acb565b60018060a01b038516815283602082015261ffff83166040820152608060608201526000610ae4608083018461218a565b604081526000612c67604083018561218a565b828103602084015261174f818561218a565b600060208284031215612c8b57600080fd5b8151610a6a81612464565b6040815263ffffffff8351166040820152602083015160608201526000604084015160a06080840152612ccc60e084018261218a565b90506060850151603f198483030160a0850152612ce9828261218a565b60809690960151151560c08501525050506001600160a01b039190911660209091015290565b600060408284031215612d2157600080fd5b612d2961281d565b825181526020928301519281019290925250919050565b600060408284031215612d5257600080fd5b610a6a8383612d0f565b601f82111561120957806000526020600020601f840160051c81016020851015612d835750805b601f840160051c820191505b818110156110fc5760008155600101612d8f565b81516001600160401b03811115612dbc57612dbc6127df565b612dd081612dca84546127ab565b84612d5c565b6020601f821160018114612e045760008315612dec5750848201515b600019600385901b1c1916600184901b1784556110fc565b600084815260208120601f198516915b82811015612e345787850151825560209485019460019092019101612e14565b5084821015612e525786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b6000602082016020835280845180835260408501915060408160051b86010192506020860160005b82811015612ee557603f19878603018452815163ffffffff815116865261ffff60208201511660208701526040810151905060606040870152612ecf606087018261218a565b9550506020938401939190910190600101612e89565b50929695505050505050565b60006080828403128015612f0457600080fd5b50612f0d6127f5565b825181526020830151612f1f81612acb565b6020820152612f318460408501612d0f565b60408201529392505050565b634e487b7160e01b600052601160045260246000fd5b600082612f7057634e487b7160e01b600052601260045260246000fd5b500490565b80820281158282048414176108b4576108b4612f3d565b803560208310156108b457600019602084900360031b1b1692915050565b80356001600160c01b03198116906008841015612fdb576001600160c01b0319600885900360031b81901b82161691505b5092915050565b6001600160401b0360c01b8560c01b16815263ffffffff60e01b8460e01b16600882015282600c8201526000825161302181602c850160208701612166565b91909101602c0195945050505050565b808201808211156108b4576108b4612f3d565b8481526001600160401b0360c01b8460c01b16602082015282602882015260008251613077816048850160208701612166565b9190910160480195945050505050565b60006020828403121561309957600080fd5b8151610a6a816121c9565b60008251612a7b81846020870161216656fea2646970667358221220b9efd82bc53ca84c3514103e346d5b0ee527ee1945cad2e6a246c69e4d1da1dd64736f6c634300081c0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000006f475642a6e85809b1c36fa62763669b1b48dd5b000000000000000000000000922275f9022822665cf3bd0baf6e7dd68428eae1000000000000000000000000000000000000000000000000000000000000000e4f4646494349414c205452554d5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055452554d50000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102515760003560e01c80637d25a05e11610139578063bb0b6a53116100b6578063d045a0dc1161007a578063d045a0dc14610755578063d424388514610768578063dd62ed3e14610788578063f2fde38b146107ce578063fc0c546a14610461578063ff7bd03d146107ee57600080fd5b8063bb0b6a53146106b4578063bc70b354146106e1578063bd815db014610701578063c7c7f5b314610714578063ca5eb5e11461073557600080fd5b8063963efcaa116100fd578063963efcaa1461060c5780639f68b96414610640578063a9059cbb14610654578063b731ea0a14610674578063b98bd0701461069457600080fd5b80637d25a05e1461056a57806382413eac146105a5578063857749b0146105c55780638da5cb5b146105d957806395d89b41146105f757600080fd5b806323b872dd116101d25780635535d461116101965780635535d461146104745780635a0dfe4d146104945780635e280f11146104cb5780636fc1b31e146104ff57806370a082311461051f578063715018a61461055557600080fd5b806323b872dd146103d2578063313ce567146103f25780633400288b146104145780633b6f743b1461043457806352ae28791461046157600080fd5b8063134d4f2511610219578063134d4f251461032d578063156a0d0f1461035557806317442b701461037c57806318160ddd1461039e5780631f5e1334146103bd57600080fd5b806306fdde0314610256578063095ea7b3146102815780630d35b415146102b1578063111ecdad146102e057806313137d6514610318575b600080fd5b34801561026257600080fd5b5061026b61080e565b60405161027891906121b6565b60405180910390f35b34801561028d57600080fd5b506102a161029c3660046121de565b6108a0565b6040519015158152602001610278565b3480156102bd57600080fd5b506102d16102cc366004612222565b6108ba565b60405161027893929190612256565b3480156102ec57600080fd5b50600454610300906001600160a01b031681565b6040516001600160a01b039091168152602001610278565b61032b61032636600461234d565b61098b565b005b34801561033957600080fd5b50610342600281565b60405161ffff9091168152602001610278565b34801561036157600080fd5b506040805162b9270b60e21b81526001602082015201610278565b34801561038857600080fd5b5060408051600181526002602082015201610278565b3480156103aa57600080fd5b506007545b604051908152602001610278565b3480156103c957600080fd5b50610342600181565b3480156103de57600080fd5b506102a16103ed3660046123ee565b610a4b565b3480156103fe57600080fd5b5060125b60405160ff9091168152602001610278565b34801561042057600080fd5b5061032b61042f366004612448565b610a71565b34801561044057600080fd5b5061045461044f366004612472565b610a87565b60405161027891906124c3565b34801561046d57600080fd5b5030610300565b34801561048057600080fd5b5061026b61048f3660046124ec565b610aee565b3480156104a057600080fd5b506102a16104af366004612448565b63ffffffff919091166000908152600160205260409020541490565b3480156104d757600080fd5b506103007f0000000000000000000000006f475642a6e85809b1c36fa62763669b1b48dd5b81565b34801561050b57600080fd5b5061032b61051a36600461251f565b610b93565b34801561052b57600080fd5b506103af61053a36600461251f565b6001600160a01b031660009081526005602052604090205490565b34801561056157600080fd5b5061032b610bf0565b34801561057657600080fd5b5061058d610585366004612448565b600092915050565b6040516001600160401b039091168152602001610278565b3480156105b157600080fd5b506102a16105c036600461253c565b610c04565b3480156105d157600080fd5b506006610402565b3480156105e557600080fd5b506000546001600160a01b0316610300565b34801561060357600080fd5b5061026b610c19565b34801561061857600080fd5b506103af7f000000000000000000000000000000000000000000000000000000e8d4a5100081565b34801561064c57600080fd5b5060006102a1565b34801561066057600080fd5b506102a161066f3660046121de565b610c28565b34801561068057600080fd5b50600254610300906001600160a01b031681565b3480156106a057600080fd5b5061032b6106af3660046125e6565b610c36565b3480156106c057600080fd5b506103af6106cf366004612627565b60016020526000908152604090205481565b3480156106ed57600080fd5b5061026b6106fc366004612642565b610c50565b61032b61070f3660046125e6565b610df8565b6107276107223660046126a2565b610f82565b60405161027892919061270f565b34801561074157600080fd5b5061032b61075036600461251f565b61107d565b61032b61076336600461234d565b611103565b34801561077457600080fd5b5061032b61078336600461251f565b611132565b34801561079457600080fd5b506103af6107a3366004612761565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b3480156107da57600080fd5b5061032b6107e936600461251f565b611188565b3480156107fa57600080fd5b506102a161080936600461278f565b6111c6565b60606008805461081d906127ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610849906127ab565b80156108965780601f1061086b57610100808354040283529160200191610896565b820191906000526020600020905b81548152906001019060200180831161087957829003601f168201915b5050505050905090565b6000336108ae8185856111fc565b60019150505b92915050565b604080518082019091526000808252602082015260606108ed604051806040016040528060008152602001600081525090565b60408051808201825260008082526001600160401b03602080840182905284518381529081019094529195509182610948565b6040805180820190915260008152606060208201528152602001906001900390816109205790505b50935060008061096d604089013560608a013561096860208c018c612627565b61120e565b60408051808201909152918252602082015296989597505050505050565b7f0000000000000000000000006f475642a6e85809b1c36fa62763669b1b48dd5b6001600160a01b031633146109db576040516391ac5e4f60e01b81523360048201526024015b60405180910390fd5b602087018035906109f5906109f0908a612627565b611252565b14610a3357610a076020880188612627565b60405163309afaf360e21b815263ffffffff9091166004820152602088013560248201526044016109d2565b610a428787878787878761128e565b50505050505050565b600033610a598582856113f5565b610a64858585611473565b60019150505b9392505050565b610a796114d2565b610a8382826114ff565b5050565b60408051808201909152600080825260208201526000610ab7604085013560608601356109686020880188612627565b915050600080610ac78684611554565b9092509050610ae4610adc6020880188612627565b838388611677565b9695505050505050565b600360209081526000928352604080842090915290825290208054610b12906127ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3e906127ab565b8015610b8b5780601f10610b6057610100808354040283529160200191610b8b565b820191906000526020600020905b815481529060010190602001808311610b6e57829003601f168201915b505050505081565b610b9b6114d2565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527ff0be4f1e87349231d80c36b33f9e8639658eeaf474014dee15a3e6a4d4414197906020015b60405180910390a150565b610bf86114d2565b610c026000611758565b565b6001600160a01b03811630145b949350505050565b60606009805461081d906127ab565b6000336108ae818585611473565b610c3e6114d2565b610a83610c4b8284612896565b6117a8565b63ffffffff8416600090815260036020908152604080832061ffff87168452909152812080546060929190610c84906127ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb0906127ab565b8015610cfd5780601f10610cd257610100808354040283529160200191610cfd565b820191906000526020600020905b815481529060010190602001808311610ce057829003601f168201915b505050505090508051600003610d4d5783838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929450610c119350505050565b6000839003610d5d579050610c11565b60028310610ddb57610da484848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506118af92505050565b80610db284600281886129bf565b604051602001610dc4939291906129e9565b604051602081830303815290604052915050610c11565b8383604051639a6d49cd60e01b81526004016109d2929190612a3a565b60005b81811015610f015736838383818110610e1657610e16612a4e565b9050602002810190610e289190612a64565b9050610e5b610e3a6020830183612627565b602083013563ffffffff919091166000908152600160205260409020541490565b610e655750610ef9565b3063d045a0dc60c08301358360a0810135610e84610100830183612a85565b610e95610100890160e08a0161251f565b610ea36101208a018a612a85565b6040518963ffffffff1660e01b8152600401610ec59796959493929190612ae0565b6000604051808303818588803b158015610ede57600080fd5b505af1158015610ef2573d6000803e3d6000fd5b5050505050505b600101610dfb565b50336001600160a01b0316638e9e70996040518163ffffffff1660e01b8152600401600060405180830381865afa158015610f40573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610f689190810190612b66565b604051638351eea760e01b81526004016109d291906121b6565b610f8a61211f565b6040805180820190915260008082526020820152600080610fc133604089013560608a0135610fbc60208c018c612627565b6118db565b91509150600080610fd28984611554565b9092509050610ffe610fe760208b018b612627565b8383610ff8368d90038d018d612bd3565b8b611901565b60408051808201909152858152602080820186905282519298509096503391907f85496b760a4b7f8d66384b9df21b381f5d1b1e79f229a47aaf4c232edc2fe59a9061104c908d018d612627565b6040805163ffffffff909216825260208201899052810187905260600160405180910390a350505050935093915050565b6110856114d2565b60405163ca5eb5e160e01b81526001600160a01b0382811660048301527f0000000000000000000000006f475642a6e85809b1c36fa62763669b1b48dd5b169063ca5eb5e190602401600060405180830381600087803b1580156110e857600080fd5b505af11580156110fc573d6000803e3d6000fd5b5050505050565b3330146111235760405163029a949d60e31b815260040160405180910390fd5b610a4287878787878787610a33565b61113a6114d2565b600280546001600160a01b0319166001600160a01b0383169081179091556040519081527fd48d879cef83a1c0bdda516f27b13ddb1b3f8bbac1c9e1511bb2a659c242776090602001610be5565b6111906114d2565b6001600160a01b0381166111ba57604051631e4fbdf760e01b8152600060048201526024016109d2565b6111c381611758565b50565b60006020820180359060019083906111de9086612627565b63ffffffff1681526020810191909152604001600020541492915050565b6112098383836001611a0c565b505050565b60008061121a85611ae1565b91508190508381101561124a576040516371c4efed60e01b815260048101829052602481018590526044016109d2565b935093915050565b63ffffffff8116600090815260016020526040812054806108b45760405163f6ff4fb760e01b815263ffffffff841660048201526024016109d2565b60006112a061129d8787611b18565b90565b905060006112cc826112ba6112b58a8a611b30565b611b53565b6112c760208d018d612627565b611b88565b905060288611156113935760006113096112ec60608c0160408d01612c06565b6112f960208d018d612627565b846113048c8c611bb0565b611bfb565b604051633e5ac80960e11b81529091506001600160a01b037f0000000000000000000000006f475642a6e85809b1c36fa62763669b1b48dd5b1690637cb590129061135f9086908d906000908790600401612c23565b600060405180830381600087803b15801561137957600080fd5b505af115801561138d573d6000803e3d6000fd5b50505050505b6001600160a01b038216887fefed6d3500546b29533b128a29e3a94d70788727f0507505ac12eaf2e578fd9c6113cc60208d018d612627565b6040805163ffffffff9092168252602082018690520160405180910390a3505050505050505050565b6001600160a01b03838116600090815260066020908152604080832093861683529290522054600019811461146d578181101561145e57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016109d2565b61146d84848484036000611a0c565b50505050565b6001600160a01b03831661149d57604051634b637e8f60e11b8152600060048201526024016109d2565b6001600160a01b0382166114c75760405163ec442f0560e01b8152600060048201526024016109d2565b611209838383611c2d565b6000546001600160a01b03163314610c025760405163118cdaa760e01b81523360048201526024016109d2565b63ffffffff8216600081815260016020908152604091829020849055815192835282018390527f238399d427b947898edb290f5ff0f9109849b1c3ba196a42e35f00c50a54b98b910160405180910390a15050565b60608060006115b1856020013561156a86611d57565b61157760a0890189612a85565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611d8392505050565b90935090506000816115c45760016115c7565b60025b90506115e76115d96020880188612627565b826106fc60808a018a612a85565b6004549093506001600160a01b0316801561166d5760405163043a78eb60e01b81526001600160a01b0382169063043a78eb9061162a9088908890600401612c54565b602060405180830381865afa158015611647573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061166b9190612c79565b505b5050509250929050565b60408051808201909152600080825260208201527f0000000000000000000000006f475642a6e85809b1c36fa62763669b1b48dd5b6001600160a01b031663ddc28c586040518060a001604052808863ffffffff1681526020016116da89611252565b8152602001878152602001868152602001851515815250306040518363ffffffff1660e01b815260040161170f929190612c96565b6040805180830381865afa15801561172b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061174f9190612d40565b95945050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005b815181101561187f576117da8282815181106117c9576117c9612a4e565b6020026020010151604001516118af565b8181815181106117ec576117ec612a4e565b6020026020010151604001516003600084848151811061180e5761180e612a4e565b60200260200101516000015163ffffffff1663ffffffff168152602001908152602001600020600084848151811061184857611848612a4e565b60200260200101516020015161ffff1661ffff16815260200190815260200160002090816118769190612da3565b506001016117ab565b507fbe4864a8e820971c0247f5992e2da559595f7bf076a21cb5928d443d2a13b67481604051610be59190612e61565b600281015161ffff8116600314610a835781604051639a6d49cd60e01b81526004016109d291906121b6565b6000806118e985858561120e565b90925090506118f88683611dfd565b94509492505050565b61190961211f565b60006119188460000151611e33565b602085015190915015611932576119328460200151611e5b565b7f0000000000000000000000006f475642a6e85809b1c36fa62763669b1b48dd5b6001600160a01b0316632637a450826040518060a001604052808b63ffffffff1681526020016119828c611252565b81526020018a815260200189815260200160008960200151111515815250866040518463ffffffff1660e01b81526004016119be929190612c96565b60806040518083038185885af11580156119dc573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611a019190612ef1565b979650505050505050565b6001600160a01b038416611a365760405163e602df0560e01b8152600060048201526024016109d2565b6001600160a01b038316611a6057604051634a1406b160e11b8152600060048201526024016109d2565b6001600160a01b038085166000908152600660209081526040808320938716835292905220829055801561146d57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611ad391815260200190565b60405180910390a350505050565b60007f000000000000000000000000000000000000000000000000000000e8d4a51000611b0e8184612f53565b6108b49190612f75565b6000611b2760208284866129bf565b610a6a91612f8c565b6000611b406028602084866129bf565b611b4991612faa565b60c01c9392505050565b60006108b47f000000000000000000000000000000000000000000000000000000e8d4a510006001600160401b038416612f75565b60006001600160a01b038416611b9e5761dead93505b611ba88484611f3d565b509092915050565b6060611bbf82602881866129bf565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929695505050505050565b606084848484604051602001611c149493929190612fe2565b6040516020818303038152906040529050949350505050565b6001600160a01b038316611c58578060076000828254611c4d9190613031565b90915550611cca9050565b6001600160a01b03831660009081526005602052604090205481811015611cab5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016109d2565b6001600160a01b03841660009081526005602052604090209082900390555b6001600160a01b038216611ce657600780548290039055611d05565b6001600160a01b03821660009081526005602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d4a91815260200190565b60405180910390a3505050565b60006108b47f000000000000000000000000000000000000000000000000000000e8d4a5100083612f53565b8051606090151580611dcc578484604051602001611db892919091825260c01b6001600160c01b031916602082015260280190565b604051602081830303815290604052611df3565b84843385604051602001611de39493929190613044565b6040516020818303038152906040525b9150935093915050565b6001600160a01b038216611e2757604051634b637e8f60e11b8152600060048201526024016109d2565b610a8382600083611c2d565b6000813414611e57576040516304fb820960e51b81523460048201526024016109d2565b5090565b60007f0000000000000000000000006f475642a6e85809b1c36fa62763669b1b48dd5b6001600160a01b031663e4fe1d946040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ebb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611edf9190613087565b90506001600160a01b038116611f08576040516329b99a9560e11b815260040160405180910390fd5b610a836001600160a01b038216337f0000000000000000000000006f475642a6e85809b1c36fa62763669b1b48dd5b85611f73565b6001600160a01b038216611f675760405163ec442f0560e01b8152600060048201526024016109d2565b610a8360008383611c2d565b604080516001600160a01b038581166024830152848116604483015260648083018590528351808403909101815260849092019092526020810180516001600160e01b03166323b872dd60e01b17905261146d91869190600090611fd990841683612027565b90508051600014158015611ffe575080806020019051810190611ffc9190612c79565b155b1561120957604051635274afe760e01b81526001600160a01b03841660048201526024016109d2565b6060610a6a8383600084600080856001600160a01b0316848660405161204d91906130a4565b60006040518083038185875af1925050503d806000811461208a576040519150601f19603f3d011682016040523d82523d6000602084013e61208f565b606091505b5091509150610ae48683836060826120af576120aa826120f6565b610a6a565b81511580156120c657506001600160a01b0384163b155b156120ef57604051639996b31560e01b81526001600160a01b03851660048201526024016109d2565b5080610a6a565b8051156121065780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b60405180606001604052806000801916815260200160006001600160401b03168152602001612161604051806040016040528060008152602001600081525090565b905290565b60005b83811015612181578181015183820152602001612169565b50506000910152565b600081518084526121a2816020860160208601612166565b601f01601f19169290920160200192915050565b602081526000610a6a602083018461218a565b6001600160a01b03811681146111c357600080fd5b600080604083850312156121f157600080fd5b82356121fc816121c9565b946020939093013593505050565b600060e0828403121561221c57600080fd5b50919050565b60006020828403121561223457600080fd5b81356001600160401b0381111561224a57600080fd5b610c118482850161220a565b8351815260208085015190820152600060a0820160a0604084015280855180835260c08501915060c08160051b86010192506020870160005b828110156122d75760bf1987860301845281518051865260208101519050604060208701526122c1604087018261218a565b955050602093840193919091019060010161228f565b5050855160608601525050602084015160808401529050610c11565b60006060828403121561221c57600080fd5b60008083601f84011261231757600080fd5b5081356001600160401b0381111561232e57600080fd5b60208301915083602082850101111561234657600080fd5b9250929050565b600080600080600080600060e0888a03121561236857600080fd5b61237289896122f3565b96506060880135955060808801356001600160401b0381111561239457600080fd5b6123a08a828b01612305565b90965094505060a08801356123b4816121c9565b925060c08801356001600160401b038111156123cf57600080fd5b6123db8a828b01612305565b989b979a50959850939692959293505050565b60008060006060848603121561240357600080fd5b833561240e816121c9565b9250602084013561241e816121c9565b929592945050506040919091013590565b803563ffffffff8116811461244357600080fd5b919050565b6000806040838503121561245b57600080fd5b6121fc8361242f565b80151581146111c357600080fd5b6000806040838503121561248557600080fd5b82356001600160401b0381111561249b57600080fd5b6124a78582860161220a565b92505060208301356124b881612464565b809150509250929050565b8151815260208083015190820152604081016108b4565b803561ffff8116811461244357600080fd5b600080604083850312156124ff57600080fd5b6125088361242f565b9150612516602084016124da565b90509250929050565b60006020828403121561253157600080fd5b8135610a6a816121c9565b60008060008060a0858703121561255257600080fd5b61255c86866122f3565b935060608501356001600160401b0381111561257757600080fd5b61258387828801612305565b9094509250506080850135612597816121c9565b939692955090935050565b60008083601f8401126125b457600080fd5b5081356001600160401b038111156125cb57600080fd5b6020830191508360208260051b850101111561234657600080fd5b600080602083850312156125f957600080fd5b82356001600160401b0381111561260f57600080fd5b61261b858286016125a2565b90969095509350505050565b60006020828403121561263957600080fd5b610a6a8261242f565b6000806000806060858703121561265857600080fd5b6126618561242f565b935061266f602086016124da565b925060408501356001600160401b0381111561268a57600080fd5b61269687828801612305565b95989497509550505050565b600080600083850360808112156126b857600080fd5b84356001600160401b038111156126ce57600080fd5b6126da8782880161220a565b9450506040601f19820112156126ef57600080fd5b506020840191506060840135612704816121c9565b809150509250925092565b600060c082019050835182526001600160401b036020850151166020830152604084015161274a604084018280518252602090810151910152565b5082516080830152602083015160a0830152610a6a565b6000806040838503121561277457600080fd5b823561277f816121c9565b915060208301356124b8816121c9565b6000606082840312156127a157600080fd5b610a6a83836122f3565b600181811c908216806127bf57607f821691505b60208210810361221c57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b604051606081016001600160401b0381118282101715612817576128176127df565b60405290565b604080519081016001600160401b0381118282101715612817576128176127df565b604051601f8201601f191681016001600160401b0381118282101715612867576128676127df565b604052919050565b60006001600160401b03821115612888576128886127df565b50601f01601f191660200190565b60006001600160401b038311156128af576128af6127df565b8260051b6128bf6020820161283f565b848152908301906020810190368311156128d857600080fd5b845b838110156129b55780356001600160401b038111156128f857600080fd5b8601606036829003121561290b57600080fd5b6129136127f5565b61291c8261242f565b815261292a602083016124da565b602082015260408201356001600160401b0381111561294857600080fd5b919091019036601f83011261295c57600080fd5b813561296f61296a8261286f565b61283f565b81815236602083860101111561298457600080fd5b81602085016020830137600060208383010152806040840152505080855250506020830192506020810190506128da565b5095945050505050565b600080858511156129cf57600080fd5b838611156129dc57600080fd5b5050820193919092039150565b600084516129fb818460208901612166565b8201838582376000930192835250909392505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b602081526000610c11602083018486612a11565b634e487b7160e01b600052603260045260246000fd5b6000823561013e19833603018112612a7b57600080fd5b9190910192915050565b6000808335601e19843603018112612a9c57600080fd5b8301803591506001600160401b03821115612ab657600080fd5b60200191503681900382131561234657600080fd5b6001600160401b03811681146111c357600080fd5b63ffffffff612aee8961242f565b1681526020888101359082015260006040890135612b0b81612acb565b6001600160401b03811660408401525087606083015260e06080830152612b3660e083018789612a11565b6001600160a01b03861660a084015282810360c0840152612b58818587612a11565b9a9950505050505050505050565b600060208284031215612b7857600080fd5b81516001600160401b03811115612b8e57600080fd5b8201601f81018413612b9f57600080fd5b8051612bad61296a8261286f565b818152856020838501011115612bc257600080fd5b61174f826020830160208601612166565b60006040828403128015612be657600080fd5b50612bef61281d565b823581526020928301359281019290925250919050565b600060208284031215612c1857600080fd5b8135610a6a81612acb565b60018060a01b038516815283602082015261ffff83166040820152608060608201526000610ae4608083018461218a565b604081526000612c67604083018561218a565b828103602084015261174f818561218a565b600060208284031215612c8b57600080fd5b8151610a6a81612464565b6040815263ffffffff8351166040820152602083015160608201526000604084015160a06080840152612ccc60e084018261218a565b90506060850151603f198483030160a0850152612ce9828261218a565b60809690960151151560c08501525050506001600160a01b039190911660209091015290565b600060408284031215612d2157600080fd5b612d2961281d565b825181526020928301519281019290925250919050565b600060408284031215612d5257600080fd5b610a6a8383612d0f565b601f82111561120957806000526020600020601f840160051c81016020851015612d835750805b601f840160051c820191505b818110156110fc5760008155600101612d8f565b81516001600160401b03811115612dbc57612dbc6127df565b612dd081612dca84546127ab565b84612d5c565b6020601f821160018114612e045760008315612dec5750848201515b600019600385901b1c1916600184901b1784556110fc565b600084815260208120601f198516915b82811015612e345787850151825560209485019460019092019101612e14565b5084821015612e525786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b6000602082016020835280845180835260408501915060408160051b86010192506020860160005b82811015612ee557603f19878603018452815163ffffffff815116865261ffff60208201511660208701526040810151905060606040870152612ecf606087018261218a565b9550506020938401939190910190600101612e89565b50929695505050505050565b60006080828403128015612f0457600080fd5b50612f0d6127f5565b825181526020830151612f1f81612acb565b6020820152612f318460408501612d0f565b60408201529392505050565b634e487b7160e01b600052601160045260246000fd5b600082612f7057634e487b7160e01b600052601260045260246000fd5b500490565b80820281158282048414176108b4576108b4612f3d565b803560208310156108b457600019602084900360031b1b1692915050565b80356001600160c01b03198116906008841015612fdb576001600160c01b0319600885900360031b81901b82161691505b5092915050565b6001600160401b0360c01b8560c01b16815263ffffffff60e01b8460e01b16600882015282600c8201526000825161302181602c850160208701612166565b91909101602c0195945050505050565b808201808211156108b4576108b4612f3d565b8481526001600160401b0360c01b8460c01b16602082015282602882015260008251613077816048850160208701612166565b9190910160480195945050505050565b60006020828403121561309957600080fd5b8151610a6a816121c9565b60008251612a7b81846020870161216656fea2646970667358221220b9efd82bc53ca84c3514103e346d5b0ee527ee1945cad2e6a246c69e4d1da1dd64736f6c634300081c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000006f475642a6e85809b1c36fa62763669b1b48dd5b000000000000000000000000922275f9022822665cf3bd0baf6e7dd68428eae1000000000000000000000000000000000000000000000000000000000000000e4f4646494349414c205452554d5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055452554d50000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): OFFICIAL TRUMP
Arg [1] : symbol (string): TRUMP
Arg [2] : _lzEndpoint (address): 0x6F475642a6e85809B1c36Fa62763669b1b48DD5B
Arg [3] : _delegate (address): 0x922275f9022822665CF3Bd0bAF6e7dd68428Eae1
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000006f475642a6e85809b1c36fa62763669b1b48dd5b
Arg [3] : 000000000000000000000000922275f9022822665cf3bd0baf6e7dd68428eae1
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 4f4646494349414c205452554d50000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 5452554d50000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
138612:481:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59173:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61466:190;;;;;;;;;;-1:-1:-1;61466:190:0;;;;;:::i;:::-;;:::i;:::-;;;1443:14:1;;1436:22;1418:41;;1406:2;1391:18;61466:190:0;1278:187:1;120727:1283:0;;;;;;;;;;-1:-1:-1;120727:1283:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;117870:27::-;;;;;;;;;;-1:-1:-1;117870:27:0;;;;-1:-1:-1;;;;;117870:27:0;;;;;;-1:-1:-1;;;;;3621:32:1;;;3603:51;;3591:2;3576:18;117870:27:0;3457:203:1;89158:725:0;;;;;;:::i;:::-;;:::i;:::-;;117741:40;;;;;;;;;;;;117780:1;117741:40;;;;;5452:6:1;5440:19;;;5422:38;;5410:2;5395:18;117741:40:0;5278:188:1;119039:142:0;;;;;;;;;;-1:-1:-1;119039:142:0;;;-1:-1:-1;;;5641:52:1;;119171:1:0;5724:2:1;5709:18;;5702:59;5614:18;119039:142:0;5471:296:1;115942:245:0;;;;;;;;;;-1:-1:-1;115942:245:0;;;92813:1;5942:50:1;;85387:1:0;6023:2:1;6008:18;;6001:59;5915:18;115942:245:0;5772:294:1;60275:99:0;;;;;;;;;;-1:-1:-1;60354:12:0;;60275:99;;;6217:25:1;;;6205:2;6190:18;60275:99:0;6071:177:1;117703:31:0;;;;;;;;;;;;117733:1;117703:31;;62234:249;;;;;;;;;;-1:-1:-1;62234:249:0;;;;;:::i;:::-;;:::i;60126:84::-;;;;;;;;;;-1:-1:-1;60200:2:0;60126:84;;;6938:4:1;6926:17;;;6908:36;;6896:2;6881:18;60126:84:0;6766:184:1;77029:110:0;;;;;;;;;;-1:-1:-1;77029:110:0;;;;;:::i;:::-;;:::i;122473:789::-;;;;;;;;;;-1:-1:-1;122473:789:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;110211:95::-;;;;;;;;;;-1:-1:-1;110293:4:0;110211:95;;44556:93;;;;;;;;;;-1:-1:-1;44556:93:0;;;;;:::i;:::-;;:::i;130903:134::-;;;;;;;;;;-1:-1:-1;130903:134:0;;;;;:::i;:::-;131009:11;;;;;130985:4;131009:11;;;:5;:11;;;;;;:20;;130903:134;75718:48;;;;;;;;;;;;;;;120246:166;;;;;;;;;;-1:-1:-1;120246:166:0;;;;;:::i;:::-;;:::i;60437:118::-;;;;;;;;;;-1:-1:-1;60437:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;60529:18:0;60502:7;60529:18;;;:9;:18;;;;;;;60437:118;41835:103;;;;;;;;;;;;;:::i;88280:130::-;;;;;;;;;;-1:-1:-1;88280:130:0;;;;;:::i;:::-;88369:12;88280:130;;;;;;;;-1:-1:-1;;;;;9610:31:1;;;9592:50;;9580:2;9565:18;88280:130:0;9448:200:1;86750:224:0;;;;;;;;;;-1:-1:-1;86750:224:0;;;;;:::i;:::-;;:::i;119800:89::-;;;;;;;;;;-1:-1:-1;119880:1:0;119800:89;;41160:87;;;;;;;;;;-1:-1:-1;41206:7:0;41233:6;-1:-1:-1;;;;;41233:6:0;41160:87;;59383:95;;;;;;;;;;;;;:::i;117392:46::-;;;;;;;;;;;;;;;136587:96;;;;;;;;;;-1:-1:-1;136646:4:0;136587:96;;60760:182;;;;;;;;;;-1:-1:-1;60760:182:0;;;;;:::i;:::-;;:::i;109886:23::-;;;;;;;;;;-1:-1:-1;109886:23:0;;;;-1:-1:-1;;;;;109886:23:0;;;45421:158;;;;;;;;;;-1:-1:-1;45421:158:0;;;;;:::i;:::-;;:::i;75846:48::-;;;;;;;;;;-1:-1:-1;75846:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;47575:1003;;;;;;;;;;-1:-1:-1;47575:1003:0;;;;;:::i;:::-;;:::i;111055:1358::-;;;;;;:::i;:::-;;:::i;123967:1368::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;78594:107::-;;;;;;;;;;-1:-1:-1;78594:107:0;;;;;:::i;:::-;;:::i;113075:421::-;;;;;;:::i;:::-;;:::i;110444:142::-;;;;;;;;;;-1:-1:-1;110444:142:0;;;;;:::i;:::-;;:::i;61005:::-;;;;;;;;;;-1:-1:-1;61005:142:0;;;;;:::i;:::-;-1:-1:-1;;;;;61112:18:0;;;61085:7;61112:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;61005:142;42093:220;;;;;;;;;;-1:-1:-1;42093:220:0;;;;;:::i;:::-;;:::i;87527:153::-;;;;;;;;;;-1:-1:-1;87527:153:0;;;;;:::i;:::-;;:::i;59173:91::-;59218:13;59251:5;59244:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59173:91;:::o;61466:190::-;61539:4;39271:10;61595:31;39271:10;61611:7;61620:5;61595:8;:31::i;:::-;61644:4;61637:11;;;61466:190;;;;;:::o;120727:1283::-;-1:-1:-1;;;;;;;;;;;;;;;;;120885:35:0;120922:28;-1:-1:-1;;;;;;;;;;;;;;;;;;;120922:28:0;121144:34;;;;;;;;-1:-1:-1;121144:34:0;;;-1:-1:-1;;;;;121144:34:0;;;;;;;121298:21;;;;;;;;;;;121144:34;;-1:-1:-1;;;121298:21:0;;;-1:-1:-1;;;;;;;;;;;;;;;;;121298:21:0;;;;;;;;;;;;;;;-1:-1:-1;121282:37:0;-1:-1:-1;121762:20:0;;121812:124;121837:19;;;;121871:22;;;;121908:17;;;;121837:10;121908:17;:::i;:::-;121812:10;:124::i;:::-;121960:42;;;;;;;;;;;;;;;;120727:1283;;;;-1:-1:-1;;;;;;120727:1283:0:o;89158:725::-;89481:8;-1:-1:-1;;;;;89473:31:0;89494:10;89473:31;89469:68;;89513:24;;-1:-1:-1;;;89513:24:0;;89526:10;89513:24;;;3603:51:1;3576:18;;89513:24:0;;;;;;;;89469:68;89676:14;;;;;;89640:32;;89657:14;;89676:7;89657:14;:::i;:::-;89640:16;:32::i;:::-;:50;89636:103;;89708:14;;;;:7;:14;:::i;:::-;89699:40;;-1:-1:-1;;;89699:40:0;;15311:10:1;15299:23;;;89699:40:0;;;15281:42:1;89724:14:0;;;;15339:18:1;;;15332:34;15254:18;;89699:40:0;15109:263:1;89636:103:0;89816:59;89827:7;89836:5;89843:8;;89853:9;89864:10;;89816;:59::i;:::-;89158:725;;;;;;;:::o;62234:249::-;62321:4;39271:10;62379:37;62395:4;39271:10;62410:5;62379:15;:37::i;:::-;62427:26;62437:4;62443:2;62447:5;62427:9;:26::i;:::-;62471:4;62464:11;;;62234:249;;;;;;:::o;77029:110::-;41046:13;:11;:13::i;:::-;77110:21:::1;77119:4;77125:5;77110:8;:21::i;:::-;77029:110:::0;;:::o;122473:789::-;-1:-1:-1;;;;;;;;;;;;;;;;;122815:24:0;122843:74;122854:19;;;;122875:22;;;;122899:17;;;;122854:10;122899:17;:::i;122843:74::-;122812:105;;;123009:20;123031;123055:49;123075:10;123087:16;123055:19;:49::i;:::-;123008:96;;-1:-1:-1;123008:96:0;-1:-1:-1;123196:58:0;123203:17;;;;:10;:17;:::i;:::-;123222:7;123231;123240:13;123196:6;:58::i;:::-;123189:65;122473:789;-1:-1:-1;;;;;;122473:789:0:o;44556:93::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;120246:166::-;41046:13;:11;:13::i;:::-;120330:12:::1;:28:::0;;-1:-1:-1;;;;;;120330:28:0::1;-1:-1:-1::0;;;;;120330:28:0;::::1;::::0;;::::1;::::0;;;120374:30:::1;::::0;3603:51:1;;;120374:30:0::1;::::0;3591:2:1;3576:18;120374:30:0::1;;;;;;;;120246:166:::0;:::o;41835:103::-;41046:13;:11;:13::i;:::-;41900:30:::1;41927:1;41900:18;:30::i;:::-;41835:103::o:0;86750:224::-;-1:-1:-1;;;;;86942:24:0;;86961:4;86942:24;86750:224;;;;;;;:::o;59383:95::-;59430:13;59463:7;59456:14;;;;;:::i;60760:182::-;60829:4;39271:10;60885:27;39271:10;60902:2;60906:5;60885:9;:27::i;45421:158::-;41046:13;:11;:13::i;:::-;45534:37:::1;;45554:16:::0;;45534:37:::1;:::i;:::-;:19;:37::i;47575:1003::-:0;47771:21;;;47747;47771;;;:15;:21;;;;;;;;:31;;;;;;;;;;47747:55;;47722:12;;47747:21;47771:31;47747:55;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47934:8;:15;47953:1;47934:20;47930:46;;47963:13;;47956:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47956:20:0;;-1:-1:-1;47956:20:0;;-1:-1:-1;;;;47956:20:0;47930:46;48064:1;48040:25;;;48036:46;;48074:8;-1:-1:-1;48067:15:0;;48036:46;48232:1;48208:25;;48204:271;;48250:34;48270:13;;48250:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48250:19:0;;-1:-1:-1;;;48250:34:0:i;:::-;48435:8;48445:17;:13;48459:1;48445:13;;:17;:::i;:::-;48422:41;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48415:48;;;;;48204:271;48556:13;;48541:29;;-1:-1:-1;;;48541:29:0;;;;;;;;;:::i;111055:1358::-;111157:9;111152:1057;111172:19;;;111152:1057;;;111213:29;111245:8;;111254:1;111245:11;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;111213:43;-1:-1:-1;111342:50:0;111349:20;;;;111213:43;111349:20;:::i;:::-;111371;;;;131009:11;;;;;130985:4;131009:11;;;:5;:11;;;;;;:20;;130903:134;111342:50;111337:65;;111394:8;;;111337:65;111973:4;:22;112004:12;;;;:6;112069:11;;;;112099:14;;;;112004:6;112099:14;:::i;:::-;112132:15;;;;;;;;:::i;:::-;112166:16;;;;:6;:16;:::i;:::-;111973:224;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;111198:1011;111152:1057;111193:3;;111152:1057;;;;112369:10;-1:-1:-1;;;;;112359:43:0;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;112359:45:0;;;;;;;;;;;;:::i;:::-;112342:63;;-1:-1:-1;;;112342:63:0;;;;;;;;:::i;123967:1368::-;124134:36;;:::i;:::-;-1:-1:-1;;;;;;;;;;;;;;;;;124538:20:0;;124588:145;124609:10;124634:19;;;;124668:22;;;;124705:17;;;;124634:10;124705:17;:::i;:::-;124588:6;:145::i;:::-;124537:196;;;;124825:20;124847;124871:49;124891:10;124903:16;124871:19;:49::i;:::-;124824:96;;-1:-1:-1;124824:96:0;-1:-1:-1;125046:66:0;125054:17;;;;:10;:17;:::i;:::-;125073:7;125082;125046:66;;;;;;;125091:4;125046:66;:::i;:::-;125097:14;125046:7;:66::i;:::-;125180:42;;;;;;;;;;;;;;;;;;;125248:15;;125033:79;;-1:-1:-1;125180:42:0;;-1:-1:-1;125284:10:0;;125248:15;125240:87;;125265:17;;;;:10;:17;:::i;:::-;125240:87;;;23065:10:1;23053:23;;;23035:42;;23108:2;23093:18;;23086:34;;;23136:18;;23129:34;;;23023:2;23008:18;125240:87:0;;;;;;;124202:1133;;;;123967:1368;;;;;;:::o;78594:107::-;41046:13;:11;:13::i;:::-;78662:31:::1;::::0;-1:-1:-1;;;78662:31:0;;-1:-1:-1;;;;;3621:32:1;;;78662:31:0::1;::::0;::::1;3603:51:1::0;78662:8:0::1;:20;::::0;::::1;::::0;3576:18:1;;78662:31:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;78594:107:::0;:::o;113075:421::-;113364:10;113386:4;113364:27;113360:50;;113400:10;;-1:-1:-1;;;113400:10:0;;;;;;;;;;;113360:50;113421:67;113440:7;113449:5;113456:8;;113466:9;113477:10;;113421:18;:67::i;110444:142::-;41046:13;:11;:13::i;:::-;110520:8:::1;:20:::0;;-1:-1:-1;;;;;;110520:20:0::1;-1:-1:-1::0;;;;;110520:20:0;::::1;::::0;;::::1;::::0;;;110556:22:::1;::::0;3603:51:1;;;110556:22:0::1;::::0;3591:2:1;3576:18;110556:22:0::1;3457:203:1::0;42093:220:0;41046:13;:11;:13::i;:::-;-1:-1:-1;;;;;42178:22:0;::::1;42174:93;;42224:31;::::0;-1:-1:-1;;;42224:31:0;;42252:1:::1;42224:31;::::0;::::1;3603:51:1::0;3576:18;;42224:31:0::1;3457:203:1::0;42174:93:0::1;42277:28;42296:8;42277:18;:28::i;:::-;42093:220:::0;:::o;87527:153::-;87611:4;87659:13;;;;;;87635:5;;87611:4;;87641:13;;87659:6;87641:13;:::i;:::-;87635:20;;;;;;;;;;;;;-1:-1:-1;87635:20:0;;:37;;87527:153;-1:-1:-1;;87527:153:0:o;66293:130::-;66378:37;66387:5;66394:7;66403:5;66410:4;66378:8;:37::i;:::-;66293:130;;;:::o;132964:682::-;133110:20;133132:24;133308:22;133320:9;133308:11;:22::i;:::-;133293:37;;133458:12;133439:31;;133543:12;133524:16;:31;133520:119;;;133579:48;;-1:-1:-1;;;133579:48:0;;;;;23348:25:1;;;23389:18;;;23382:34;;;23321:18;;133579:48:0;23174:248:1;133520:119:0;132964:682;;;;;;:::o;78047:200::-;78152:11;;;78117:7;78152:11;;;:5;:11;;;;;;;78174:43;;78205:12;;-1:-1:-1;;;78205:12:0;;23601:10:1;23589:23;;78205:12:0;;;23571:42:1;23544:18;;78205:12:0;23427:192:1;127627:1839:0;128115:17;128135:36;:17;:8;;:15;:17::i;:::-;18410:2;18298:125;128135:36;128115:56;;128306:24;128333:62;128341:9;128352:26;128358:19;:8;;:17;:19::i;:::-;128352:5;:26::i;:::-;128380:14;;;;:7;:14;:::i;:::-;128333:7;:62::i;:::-;128306:89;-1:-1:-1;15689:2:0;-1:-1:-1;;128408:970:0;;;128514:23;128540:180;128584:13;;;;;;;;:::i;:::-;128616:14;;;;:7;:14;:::i;:::-;128649:16;128684:21;:8;;:19;:21::i;:::-;128540:25;:180::i;:::-;129274:92;;-1:-1:-1;;;129274:92:0;;128514:206;;-1:-1:-1;;;;;;129274:8:0;:20;;;;:92;;129295:9;;129306:5;;129313:1;;128514:206;;129274:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128435:943;128408:970;-1:-1:-1;;;;;129395:63:0;;129407:5;129395:63;129414:14;;;;:7;:14;:::i;:::-;129395:63;;;15311:10:1;15299:23;;;15281:42;;15354:2;15339:18;;15332:34;;;15254:18;129395:63:0;;;;;;;127938:1528;;127627:1839;;;;;;;:::o;68009:487::-;-1:-1:-1;;;;;61112:18:0;;;68109:24;61112:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;68176:37:0;;68172:317;;68253:5;68234:16;:24;68230:132;;;68286:60;;-1:-1:-1;;;68286:60:0;;-1:-1:-1;;;;;24846:32:1;;68286:60:0;;;24828:51:1;24895:18;;;24888:34;;;24938:18;;;24931:34;;;24801:18;;68286:60:0;24626:345:1;68230:132:0;68405:57;68414:5;68421:7;68449:5;68430:16;:24;68456:5;68405:8;:57::i;:::-;68098:398;68009:487;;;:::o;62868:308::-;-1:-1:-1;;;;;62952:18:0;;62948:88;;62994:30;;-1:-1:-1;;;62994:30:0;;63021:1;62994:30;;;3603:51:1;3576:18;;62994:30:0;3457:203:1;62948:88:0;-1:-1:-1;;;;;63050:16:0;;63046:88;;63090:32;;-1:-1:-1;;;63090:32:0;;63119:1;63090:32;;;3603:51:1;3576:18;;63090:32:0;3457:203:1;63046:88:0;63144:24;63152:4;63158:2;63162:5;63144:7;:24::i;41325:166::-;41206:7;41233:6;-1:-1:-1;;;;;41233:6:0;39271:10;41385:23;41381:103;;41432:40;;-1:-1:-1;;;41432:40:0;;39271:10;41432:40;;;3603:51:1;3576:18;;41432:40:0;3457:203:1;77604:137:0;77678:11;;;;;;;:5;:11;;;;;;;;;:19;;;77713:20;;15281:42:1;;;15339:18;;15332:34;;;77713:20:0;;15254:18:1;77713:20:0;;;;;;;77604:137;;:::o;125638:1458::-;125773:20;125795;125828:15;126001:330;126034:10;:13;;;126062:16;126068:9;126062:5;:16::i;:::-;126299:21;;;;:10;:21;:::i;:::-;126001:330;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;126001:18:0;;-1:-1:-1;;;126001:330:0:i;:::-;125977:354;;-1:-1:-1;125977:354:0;-1:-1:-1;126413:14:0;125977:354;126430:33;;117733:1;126430:33;;;117780:1;126430:33;126413:50;-1:-1:-1;126587:67:0;126602:17;;;;:10;:17;:::i;:::-;126621:7;126630:23;;;;:10;:23;:::i;126587:67::-;126916:12;;126577:77;;-1:-1:-1;;;;;;126916:12:0;127009:23;;127005:83;;127034:54;;-1:-1:-1;;;127034:54:0;;-1:-1:-1;;;;;127034:36:0;;;;;:54;;127071:7;;127080;;127034:54;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;127005:83;125817:1279;;;125638:1458;;;;;:::o;94033:406::-;-1:-1:-1;;;;;;;;;;;;;;;;;94263:8:0;-1:-1:-1;;;;;94263:14:0;;94296:88;;;;;;;;94314:7;94296:88;;;;;;94323:25;94340:7;94323:16;:25::i;:::-;94296:88;;;;94350:8;94296:88;;;;94360:8;94296:88;;;;94370:13;94296:88;;;;;94411:4;94263:168;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;94243:188;94033:406;-1:-1:-1;;;;;94033:406:0:o;42473:191::-;42547:16;42566:6;;-1:-1:-1;;;;;42583:17:0;;;-1:-1:-1;;;;;;42583:17:0;;;;;;42616:40;;42566:6;;;;;;;42616:40;;42547:16;42616:40;42536:128;42473:191;:::o;46280:522::-;46389:9;46384:358;46408:16;:23;46404:1;:27;46384:358;;;46568:48;46588:16;46605:1;46588:19;;;;;;;;:::i;:::-;;;;;;;:27;;;46568:19;:48::i;:::-;46703:16;46720:1;46703:19;;;;;;;;:::i;:::-;;;;;;;:27;;;46631:15;:40;46647:16;46664:1;46647:19;;;;;;;;:::i;:::-;;;;;;;:23;;;46631:40;;;;;;;;;;;;;;;:69;46672:16;46689:1;46672:19;;;;;;;;:::i;:::-;;;;;;;:27;;;46631:69;;;;;;;;;;;;;;;:99;;;;;;:::i;:::-;-1:-1:-1;46433:3:0;;46384:358;;;;46759:35;46777:16;46759:35;;;;;;:::i;48724:270::-;48897:1;48883:16;;48877:23;48925:28;;;44478:1;48925:28;48921:65;;48977:8;48962:24;;-1:-1:-1;;;48962:24:0;;;;;;;;:::i;137177:580::-;137343:20;137365:24;137437:44;137448:9;137459:12;137473:7;137437:10;:44::i;:::-;137402:79;;-1:-1:-1;137402:79:0;-1:-1:-1;137723:26:0;137729:5;137402:79;137723:5;:26::i;:::-;137177:580;;;;;;;:::o;95214:789::-;95423:33;;:::i;:::-;95592:20;95615:26;95626:4;:14;;;95615:10;:26::i;:::-;95656:15;;;;95592:49;;-1:-1:-1;95656:19:0;95652:53;;95677:28;95689:4;:15;;;95677:11;:28::i;:::-;95798:8;-1:-1:-1;;;;;95798:13:0;;95820:12;95853:94;;;;;;;;95871:7;95853:94;;;;;;95880:25;95897:7;95880:16;:25::i;:::-;95853:94;;;;95907:8;95853:94;;;;95917:8;95853:94;;;;95945:1;95927:4;:15;;;:19;95853:94;;;;;95966:14;95798:197;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;95718:277;95214:789;-1:-1:-1;;;;;;;95214:789:0:o;67274:443::-;-1:-1:-1;;;;;67387:19:0;;67383:91;;67430:32;;-1:-1:-1;;;67430:32:0;;67459:1;67430:32;;;3603:51:1;3576:18;;67430:32:0;3457:203:1;67383:91:0;-1:-1:-1;;;;;67488:21:0;;67484:92;;67533:31;;-1:-1:-1;;;67533:31:0;;67561:1;67533:31;;;3603:51:1;3576:18;;67533:31:0;3457:203:1;67484:92:0;-1:-1:-1;;;;;67586:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;67632:78;;;;67683:7;-1:-1:-1;;;;;67667:31:0;67676:5;-1:-1:-1;;;;;67667:31:0;;67692:5;67667:31;;;;6217:25:1;;6205:2;6190:18;;6071:177;67667:31:0;;;;;;;;67274:443;;;;:::o;131441:174::-;131512:16;131586:21;131549:33;131586:21;131549:9;:33;:::i;:::-;131548:59;;;;:::i;17055:125::-;17115:7;17150:21;15633:2;17115:7;17150:4;;:21;:::i;:::-;17142:30;;;:::i;17365:154::-;17427:6;17467:42;15689:2;15633;17467:4;;:42;:::i;:::-;17460:50;;;:::i;:::-;17453:58;;;17365:154;-1:-1:-1;;;17365:154:0:o;131846:141::-;131910:16;131946:33;131958:21;-1:-1:-1;;;;;131946:33:0;;;:::i;138101:472::-;138239:24;-1:-1:-1;;;;;138280:19:0;;138276:46;;138315:6;138301:21;;138276:46;138420:21;138426:3;138431:9;138420:5;:21::i;:::-;-1:-1:-1;138556:9:0;;138101:472;-1:-1:-1;;138101:472:0:o;17686:132::-;17750:12;17782:28;:4;15689:2;17782:4;;:28;:::i;:::-;17775:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17775:35:0;;17686:132;-1:-1:-1;;;;;;17686:132:0:o;12969:291::-;13158:17;13212:6;13220:7;13229:9;13240:11;13195:57;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;13188:64;;12969:291;;;;;;:::o;63500:1135::-;-1:-1:-1;;;;;63590:18:0;;63586:552;;63744:5;63728:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;63586:552:0;;-1:-1:-1;63586:552:0;;-1:-1:-1;;;;;63804:15:0;;63782:19;63804:15;;;:9;:15;;;;;;63838:19;;;63834:117;;;63885:50;;-1:-1:-1;;;63885:50:0;;-1:-1:-1;;;;;24846:32:1;;63885:50:0;;;24828:51:1;24895:18;;;24888:34;;;24938:18;;;24931:34;;;24801:18;;63885:50:0;24626:345:1;63834:117:0;-1:-1:-1;;;;;64074:15:0;;;;;;:9;:15;;;;;64092:19;;;;64074:37;;63586:552;-1:-1:-1;;;;;64154:16:0;;64150:435;;64320:12;:21;;;;;;;64150:435;;;-1:-1:-1;;;;;64536:13:0;;;;;;:9;:13;;;;;:22;;;;;;64150:435;64617:2;-1:-1:-1;;;;;64602:25:0;64611:4;-1:-1:-1;;;;;64602:25:0;;64621:5;64602:25;;;;6217::1;;6205:2;6190:18;;6071:177;64602:25:0;;;;;;;;63500:1135;;;:::o;132218:149::-;132283:15;132325:33;132337:21;132325:9;:33;:::i;16054:516::-;16252:18;;16192:17;;16252:22;;;16397:165;;16539:7;16548:13;16522:40;;;;;;;;32970:19:1;;;33045:3;33023:16;-1:-1:-1;;;;;;33019:51:1;33014:2;33005:12;;32998:73;33096:2;33087:12;;32815:290;16522:40:0;;;;;;;;;;;;;16397:165;;;16440:7;16449:13;16481:10;16494:11;16423:83;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;16397:165;16390:172;;16054:516;;;;;;:::o;65529:211::-;-1:-1:-1;;;;;65600:21:0;;65596:91;;65645:30;;-1:-1:-1;;;65645:30:0;;65672:1;65645:30;;;3603:51:1;3576:18;;65645:30:0;3457:203:1;65596:91:0;65697:35;65705:7;65722:1;65726:5;65697:7;:35::i;96712:194::-;96778:17;96825:10;96812:9;:23;96808:62;;96844:26;;-1:-1:-1;;;96844:26:0;;96860:9;96844:26;;;6217:25:1;6190:18;;96844:26:0;6071:177:1;96808:62:0;-1:-1:-1;96888:10:0;96712:194::o;97292:417::-;97447:15;97465:8;-1:-1:-1;;;;;97465:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;97447:36;-1:-1:-1;;;;;;97498:21:0;;97494:54;;97528:20;;-1:-1:-1;;;97528:20:0;;;;;;;;;;;97494:54;97625:76;-1:-1:-1;;;;;97625:32:0;;97658:10;97678:8;97689:11;97625:32;:76::i;64988:213::-;-1:-1:-1;;;;;65059:21:0;;65055:93;;65104:32;;-1:-1:-1;;;65104:32:0;;65133:1;65104:32;;;3603:51:1;3576:18;;65104:32:0;3457:203:1;65055:93:0;65158:35;65174:1;65178:7;65187:5;65158:7;:35::i;50607:190::-;50735:53;;;-1:-1:-1;;;;;34123:32:1;;;50735:53:0;;;34105:51:1;34192:32;;;34172:18;;;34165:60;34241:18;;;;34234:34;;;50735:53:0;;;;;;;;;;34078:18:1;;;;50735:53:0;;;;;;;;-1:-1:-1;;;;;50735:53:0;-1:-1:-1;;;50735:53:0;;;50708:81;;50728:5;;50735:53;-1:-1:-1;;53461:33:0;;50750:18;;50735:53;53461:27;:33::i;:::-;53435:59;;53509:10;:17;53530:1;53509:22;;:57;;;;;53547:10;53536:30;;;;;;;;;;;;:::i;:::-;53535:31;53509:57;53505:137;;;53590:40;;-1:-1:-1;;;53590:40:0;;-1:-1:-1;;;;;3621:32:1;;53590:40:0;;;3603:51:1;3576:18;;53590:40:0;3457:203:1;34835:153:0;34910:12;34942:38;34964:6;34972:4;34978:1;34910:12;35568;35582:23;35609:6;-1:-1:-1;;;;;35609:11:0;35628:5;35635:4;35609:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35567:73;;;;35658:55;35685:6;35693:7;35702:10;36947:12;36977:7;36972:417;;37001:19;37009:10;37001:7;:19::i;:::-;36972:417;;;37229:17;;:22;:49;;;;-1:-1:-1;;;;;;37255:18:0;;;:23;37229:49;37225:121;;;37306:24;;-1:-1:-1;;;37306:24:0;;-1:-1:-1;;;;;3621:32:1;;37306:24:0;;;3603:51:1;3576:18;;37306:24:0;3457:203:1;37225:121:0;-1:-1:-1;37367:10:0;37360:17;;37949:528;38082:17;;:21;38078:392;;38314:10;38308:17;38371:15;38358:10;38354:2;38350:19;38343:44;38078:392;38441:17;;-1:-1:-1;;;38441:17:0;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:250:1:-;99:1;109:113;123:6;120:1;117:13;109:113;;;199:11;;;193:18;180:11;;;173:39;145:2;138:10;109:113;;;-1:-1:-1;;256:1:1;238:16;;231:27;14:250::o;269:271::-;311:3;349:5;343:12;376:6;371:3;364:19;392:76;461:6;454:4;449:3;445:14;438:4;431:5;427:16;392:76;:::i;:::-;522:2;501:15;-1:-1:-1;;497:29:1;488:39;;;;529:4;484:50;;269:271;-1:-1:-1;;269:271:1:o;545:220::-;694:2;683:9;676:21;657:4;714:45;755:2;744:9;740:18;732:6;714:45;:::i;770:131::-;-1:-1:-1;;;;;845:31:1;;835:42;;825:70;;891:1;888;881:12;906:367;974:6;982;1035:2;1023:9;1014:7;1010:23;1006:32;1003:52;;;1051:1;1048;1041:12;1003:52;1090:9;1077:23;1109:31;1134:5;1109:31;:::i;:::-;1159:5;1237:2;1222:18;;;;1209:32;;-1:-1:-1;;;906:367:1:o;1470:158::-;1532:5;1577:3;1568:6;1563:3;1559:16;1555:26;1552:46;;;1594:1;1591;1584:12;1552:46;-1:-1:-1;1616:6:1;1470:158;-1:-1:-1;1470:158:1:o;1633:360::-;1721:6;1774:2;1762:9;1753:7;1749:23;1745:32;1742:52;;;1790:1;1787;1780:12;1742:52;1830:9;1817:23;-1:-1:-1;;;;;1855:6:1;1852:30;1849:50;;;1895:1;1892;1885:12;1849:50;1918:69;1979:7;1970:6;1959:9;1955:22;1918:69;:::i;2152:1300::-;2072:12;;2060:25;;2134:4;2123:16;;;2117:23;2101:14;;;2094:47;2518:4;2566:3;2551:19;;2660:3;2655:2;2644:9;2640:18;2633:31;2684:6;2719;2713:13;2750:6;2742;2735:22;2788:3;2777:9;2773:19;2766:26;;2851:3;2841:6;2838:1;2834:14;2823:9;2819:30;2815:40;2801:54;;2890:4;2882:6;2878:17;2913:1;2923:437;2937:6;2934:1;2931:13;2923:437;;;3030:3;3026:8;3014:9;3006:6;3002:22;2998:37;2993:3;2986:50;3065:6;3059:13;3106:2;3100:9;3092:6;3085:25;3157:4;3153:2;3149:13;3143:20;3123:40;;3202:2;3195:4;3187:6;3183:17;3176:29;3228:48;3272:2;3264:6;3260:15;3246:12;3228:48;:::i;:::-;3218:58;-1:-1:-1;;3311:4:1;3336:14;;;;3299:17;;;;;2959:1;2952:9;2923:437;;;-1:-1:-1;;2072:12:1;;3442:2;3427:18;;2060:25;-1:-1:-1;;2134:4:1;2123:16;;2117:23;2101:14;;;2094:47;3377:6;-1:-1:-1;3392:54:1;1998:149;3665:154;3724:5;3769:2;3760:6;3755:3;3751:16;3747:25;3744:45;;;3785:1;3782;3775:12;3824:347;3875:8;3885:6;3939:3;3932:4;3924:6;3920:17;3916:27;3906:55;;3957:1;3954;3947:12;3906:55;-1:-1:-1;3980:20:1;;-1:-1:-1;;;;;4012:30:1;;4009:50;;;4055:1;4052;4045:12;4009:50;4092:4;4084:6;4080:17;4068:29;;4144:3;4137:4;4128:6;4120;4116:19;4112:30;4109:39;4106:59;;;4161:1;4158;4151:12;4106:59;3824:347;;;;;:::o;4176:1097::-;4321:6;4329;4337;4345;4353;4361;4369;4422:3;4410:9;4401:7;4397:23;4393:33;4390:53;;;4439:1;4436;4429:12;4390:53;4462;4507:7;4496:9;4462:53;:::i;:::-;4452:63;-1:-1:-1;4584:2:1;4569:18;;4556:32;;-1:-1:-1;4663:3:1;4648:19;;4635:33;-1:-1:-1;;;;;4680:30:1;;4677:50;;;4723:1;4720;4713:12;4677:50;4762:58;4812:7;4803:6;4792:9;4788:22;4762:58;:::i;:::-;4839:8;;-1:-1:-1;4736:84:1;-1:-1:-1;;4926:3:1;4911:19;;4898:33;4940;4898;4940;:::i;:::-;4992:7;-1:-1:-1;5052:3:1;5037:19;;5024:33;-1:-1:-1;;;;;5069:32:1;;5066:52;;;5114:1;5111;5104:12;5066:52;5153:60;5205:7;5194:8;5183:9;5179:24;5153:60;:::i;:::-;4176:1097;;;;-1:-1:-1;4176:1097:1;;-1:-1:-1;4176:1097:1;;;;5127:86;;-1:-1:-1;;;4176:1097:1:o;6253:508::-;6330:6;6338;6346;6399:2;6387:9;6378:7;6374:23;6370:32;6367:52;;;6415:1;6412;6405:12;6367:52;6454:9;6441:23;6473:31;6498:5;6473:31;:::i;:::-;6523:5;-1:-1:-1;6580:2:1;6565:18;;6552:32;6593:33;6552:32;6593:33;:::i;:::-;6253:508;;6645:7;;-1:-1:-1;;;6725:2:1;6710:18;;;;6697:32;;6253:508::o;6955:163::-;7022:20;;7082:10;7071:22;;7061:33;;7051:61;;7108:1;7105;7098:12;7051:61;6955:163;;;:::o;7123:298::-;7190:6;7198;7251:2;7239:9;7230:7;7226:23;7222:32;7219:52;;;7267:1;7264;7257:12;7219:52;7290:28;7308:9;7290:28;:::i;7426:118::-;7512:5;7505:13;7498:21;7491:5;7488:32;7478:60;;7534:1;7531;7524:12;7549:489;7643:6;7651;7704:2;7692:9;7683:7;7679:23;7675:32;7672:52;;;7720:1;7717;7710:12;7672:52;7760:9;7747:23;-1:-1:-1;;;;;7785:6:1;7782:30;7779:50;;;7825:1;7822;7815:12;7779:50;7848:69;7909:7;7900:6;7889:9;7885:22;7848:69;:::i;:::-;7838:79;;;7967:2;7956:9;7952:18;7939:32;7980:28;8002:5;7980:28;:::i;:::-;8027:5;8017:15;;;7549:489;;;;;:::o;8043:261::-;2072:12;;2060:25;;2134:4;2123:16;;;2117:23;2101:14;;;2094:47;8241:2;8226:18;;8253:45;1998:149;8309:159;8376:20;;8436:6;8425:18;;8415:29;;8405:57;;8458:1;8455;8448:12;8473:256;8539:6;8547;8600:2;8588:9;8579:7;8575:23;8571:32;8568:52;;;8616:1;8613;8606:12;8568:52;8639:28;8657:9;8639:28;:::i;:::-;8629:38;;8686:37;8719:2;8708:9;8704:18;8686:37;:::i;:::-;8676:47;;8473:256;;;;;:::o;9196:247::-;9255:6;9308:2;9296:9;9287:7;9283:23;9279:32;9276:52;;;9324:1;9321;9314:12;9276:52;9363:9;9350:23;9382:31;9407:5;9382:31;:::i;9653:672::-;9769:6;9777;9785;9793;9846:3;9834:9;9825:7;9821:23;9817:33;9814:53;;;9863:1;9860;9853:12;9814:53;9886;9931:7;9920:9;9886:53;:::i;:::-;9876:63;;9990:2;9979:9;9975:18;9962:32;-1:-1:-1;;;;;10009:6:1;10006:30;10003:50;;;10049:1;10046;10039:12;10003:50;10088:58;10138:7;10129:6;10118:9;10114:22;10088:58;:::i;:::-;10165:8;;-1:-1:-1;10062:84:1;-1:-1:-1;;10250:3:1;10235:19;;10222:33;10264:31;10222:33;10264:31;:::i;:::-;9653:672;;;;-1:-1:-1;9653:672:1;;-1:-1:-1;;9653:672:1:o;10330:395::-;10421:8;10431:6;10485:3;10478:4;10470:6;10466:17;10462:27;10452:55;;10503:1;10500;10493:12;10452:55;-1:-1:-1;10526:20:1;;-1:-1:-1;;;;;10558:30:1;;10555:50;;;10601:1;10598;10591:12;10555:50;10638:4;10630:6;10626:17;10614:29;;10698:3;10691:4;10681:6;10678:1;10674:14;10666:6;10662:27;10658:38;10655:47;10652:67;;;10715:1;10712;10705:12;10730:503;10854:6;10862;10915:2;10903:9;10894:7;10890:23;10886:32;10883:52;;;10931:1;10928;10921:12;10883:52;10971:9;10958:23;-1:-1:-1;;;;;10996:6:1;10993:30;10990:50;;;11036:1;11033;11026:12;10990:50;11075:98;11165:7;11156:6;11145:9;11141:22;11075:98;:::i;:::-;11192:8;;11049:124;;-1:-1:-1;10730:503:1;-1:-1:-1;;;;10730:503:1:o;11238:184::-;11296:6;11349:2;11337:9;11328:7;11324:23;11320:32;11317:52;;;11365:1;11362;11355:12;11317:52;11388:28;11406:9;11388:28;:::i;11609:553::-;11695:6;11703;11711;11719;11772:2;11760:9;11751:7;11747:23;11743:32;11740:52;;;11788:1;11785;11778:12;11740:52;11811:28;11829:9;11811:28;:::i;:::-;11801:38;;11858:37;11891:2;11880:9;11876:18;11858:37;:::i;:::-;11848:47;;11946:2;11935:9;11931:18;11918:32;-1:-1:-1;;;;;11965:6:1;11962:30;11959:50;;;12005:1;12002;11995:12;11959:50;12044:58;12094:7;12085:6;12074:9;12070:22;12044:58;:::i;:::-;11609:553;;;;-1:-1:-1;12121:8:1;-1:-1:-1;;;;11609:553:1:o;12670:659::-;12810:6;12818;12826;12870:9;12861:7;12857:23;12900:3;12896:2;12892:12;12889:32;;;12917:1;12914;12907:12;12889:32;12957:9;12944:23;-1:-1:-1;;;;;12982:6:1;12979:30;12976:50;;;13022:1;13019;13012:12;12976:50;13045:69;13106:7;13097:6;13086:9;13082:22;13045:69;:::i;:::-;13035:79;-1:-1:-1;;13148:2:1;-1:-1:-1;;13130:16:1;;13126:25;13123:45;;;13164:1;13161;13154:12;13123:45;;13202:2;13191:9;13187:18;13177:28;;13255:2;13244:9;13240:18;13227:32;13268:31;13293:5;13268:31;:::i;:::-;13318:5;13308:15;;;12670:659;;;;;:::o;13334:617::-;13582:4;13624:3;13613:9;13609:19;13601:27;;13661:6;13655:13;13644:9;13637:32;-1:-1:-1;;;;;13729:4:1;13721:6;13717:17;13711:24;13707:49;13700:4;13689:9;13685:20;13678:79;13804:4;13796:6;13792:17;13786:24;13819:62;13875:4;13864:9;13860:20;13846:12;2072;;2060:25;;2134:4;2123:16;;;2117:23;2101:14;;2094:47;1998:149;13819:62;-1:-1:-1;2072:12:1;;13940:3;13925:19;;2060:25;2134:4;2123:16;;2117:23;2101:14;;;2094:47;13890:55;1998:149;13956:388;14024:6;14032;14085:2;14073:9;14064:7;14060:23;14056:32;14053:52;;;14101:1;14098;14091:12;14053:52;14140:9;14127:23;14159:31;14184:5;14159:31;:::i;:::-;14209:5;-1:-1:-1;14266:2:1;14251:18;;14238:32;14279:33;14238:32;14279:33;:::i;14349:238::-;14436:6;14489:2;14477:9;14468:7;14464:23;14460:32;14457:52;;;14505:1;14502;14495:12;14457:52;14528:53;14573:7;14562:9;14528:53;:::i;14592:380::-;14671:1;14667:12;;;;14714;;;14735:61;;14789:4;14781:6;14777:17;14767:27;;14735:61;14842:2;14834:6;14831:14;14811:18;14808:38;14805:161;;14888:10;14883:3;14879:20;14876:1;14869:31;14923:4;14920:1;14913:15;14951:4;14948:1;14941:15;14977:127;15038:10;15033:3;15029:20;15026:1;15019:31;15069:4;15066:1;15059:15;15093:4;15090:1;15083:15;15377:253;15449:2;15443:9;15491:4;15479:17;;-1:-1:-1;;;;;15511:34:1;;15547:22;;;15508:62;15505:88;;;15573:18;;:::i;:::-;15609:2;15602:22;15377:253;:::o;15635:251::-;15707:2;15701:9;;;15737:15;;-1:-1:-1;;;;;15767:34:1;;15803:22;;;15764:62;15761:88;;;15829:18;;:::i;15891:275::-;15962:2;15956:9;16027:2;16008:13;;-1:-1:-1;;16004:27:1;15992:40;;-1:-1:-1;;;;;16047:34:1;;16083:22;;;16044:62;16041:88;;;16109:18;;:::i;:::-;16145:2;16138:22;15891:275;;-1:-1:-1;15891:275:1:o;16171:186::-;16219:4;-1:-1:-1;;;;;16244:6:1;16241:30;16238:56;;;16274:18;;:::i;:::-;-1:-1:-1;16340:2:1;16319:15;-1:-1:-1;;16315:29:1;16346:4;16311:40;;16171:186::o;16362:1782::-;16552:9;-1:-1:-1;;;;;16582:6:1;16579:30;16576:56;;;16612:18;;:::i;:::-;16658:6;16655:1;16651:14;16685:30;16709:4;16705:2;16701:13;16685:30;:::i;:::-;16749:19;;;16821:14;;;;16793:4;16784:14;;;16858;16847:26;;16844:46;;;16886:1;16883;16876:12;16844:46;16910:5;16924:1187;16940:6;16935:3;16932:15;16924:1187;;;17028:3;17015:17;-1:-1:-1;;;;;17051:11:1;17048:35;17045:55;;;17096:1;17093;17086:12;17045:55;17123:23;;17191:4;17170:14;17166:23;;;17162:34;17159:54;;;17209:1;17206;17199:12;17159:54;17241:22;;:::i;:::-;17292:21;17310:2;17292:21;:::i;:::-;17283:7;17276:38;17354:32;17380:4;17376:2;17372:13;17354:32;:::i;:::-;17347:4;17338:7;17334:18;17327:60;17435:2;17431;17427:11;17414:25;-1:-1:-1;;;;;17458:6:1;17455:30;17452:50;;;17498:1;17495;17488:12;17452:50;17525:15;;;;;17582:14;17575:4;17567:13;;17563:34;17553:62;;17611:1;17608;17601:12;17553:62;17657:2;17644:16;17688:54;17704:37;17732:8;17704:37;:::i;:::-;17688:54;:::i;:::-;17771:8;17762:7;17755:25;17829:14;17822:4;17811:8;17807:2;17803:17;17799:28;17796:48;17793:68;;;17857:1;17854;17847:12;17793:68;17922:8;17915:4;17911:2;17907:13;17900:4;17891:7;17887:18;17874:57;17986:1;17979:4;17968:8;17959:7;17955:22;17951:33;17944:44;18026:7;18021:2;18012:7;18008:16;18001:33;;;18059:7;18054:3;18047:20;;;18096:4;18091:3;18087:14;18080:21;;16966:4;16961:3;16957:14;16950:21;;16924:1187;;;-1:-1:-1;18133:5:1;16362:1782;-1:-1:-1;;;;;16362:1782:1:o;18149:331::-;18254:9;18265;18307:8;18295:10;18292:24;18289:44;;;18329:1;18326;18319:12;18289:44;18358:6;18348:8;18345:20;18342:40;;;18378:1;18375;18368:12;18342:40;-1:-1:-1;;18404:23:1;;;18449:25;;;;;-1:-1:-1;18149:331:1:o;18485:476::-;18676:3;18714:6;18708:13;18730:66;18789:6;18784:3;18777:4;18769:6;18765:17;18730:66;:::i;:::-;18818:16;;18871:6;18863;18818:16;18843:35;18935:1;18897:18;;18924:13;;;-1:-1:-1;18897:18:1;;18485:476;-1:-1:-1;;;18485:476:1:o;18966:266::-;19054:6;19049:3;19042:19;19106:6;19099:5;19092:4;19087:3;19083:14;19070:43;-1:-1:-1;19158:1:1;19133:16;;;19151:4;19129:27;;;19122:38;;;;19214:2;19193:15;;;-1:-1:-1;;19189:29:1;19180:39;;;19176:50;;18966:266::o;19237:244::-;19394:2;19383:9;19376:21;19357:4;19414:61;19471:2;19460:9;19456:18;19448:6;19440;19414:61;:::i;19486:127::-;19547:10;19542:3;19538:20;19535:1;19528:31;19578:4;19575:1;19568:15;19602:4;19599:1;19592:15;19618:331;19717:4;19775:11;19762:25;19869:3;19865:8;19854;19838:14;19834:29;19830:44;19810:18;19806:69;19796:97;;19889:1;19886;19879:12;19796:97;19910:33;;;;;19618:331;-1:-1:-1;;19618:331:1:o;19954:521::-;20031:4;20037:6;20097:11;20084:25;20191:2;20187:7;20176:8;20160:14;20156:29;20152:43;20132:18;20128:68;20118:96;;20210:1;20207;20200:12;20118:96;20237:33;;20289:20;;;-1:-1:-1;;;;;;20321:30:1;;20318:50;;;20364:1;20361;20354:12;20318:50;20397:4;20385:17;;-1:-1:-1;20428:14:1;20424:27;;;20414:38;;20411:58;;;20465:1;20462;20455:12;20480:129;-1:-1:-1;;;;;20558:5:1;20554:30;20547:5;20544:41;20534:69;;20599:1;20596;20589:12;20614:1048;20996:10;20969:25;20987:6;20969:25;:::i;:::-;20965:42;20947:61;;21074:4;21062:17;;;21049:31;21096:20;;;21089:35;20928:4;21173;21161:17;;21148:31;21188:32;21148:31;21188:32;:::i;:::-;-1:-1:-1;;;;;21262:7:1;21258:32;21251:4;21240:9;21236:20;21229:62;;21327:6;21322:2;21311:9;21307:18;21300:34;21371:3;21365;21354:9;21350:19;21343:32;21398:62;21455:3;21444:9;21440:19;21432:6;21424;21398:62;:::i;:::-;-1:-1:-1;;;;;21497:32:1;;21517:3;21476:19;;21469:61;21567:22;;;21561:3;21546:19;;21539:51;21607:49;21571:6;21641;21633;21607:49;:::i;:::-;21599:57;20614:1048;-1:-1:-1;;;;;;;;;;20614:1048:1:o;21667:667::-;21746:6;21799:2;21787:9;21778:7;21774:23;21770:32;21767:52;;;21815:1;21812;21805:12;21767:52;21848:9;21842:16;-1:-1:-1;;;;;21873:6:1;21870:30;21867:50;;;21913:1;21910;21903:12;21867:50;21936:22;;21989:4;21981:13;;21977:27;-1:-1:-1;21967:55:1;;22018:1;22015;22008:12;21967:55;22051:2;22045:9;22076:52;22092:35;22120:6;22092:35;:::i;22076:52::-;22151:6;22144:5;22137:21;22199:7;22194:2;22185:6;22181:2;22177:15;22173:24;22170:37;22167:57;;;22220:1;22217;22210:12;22167:57;22233:71;22297:6;22292:2;22285:5;22281:14;22276:2;22272;22268:11;22233:71;:::i;22339:491::-;22430:6;22490:2;22478:9;22469:7;22465:23;22461:32;22505:2;22502:22;;;22520:1;22517;22510:12;22502:22;-1:-1:-1;22562:22:1;;:::i;:::-;22629:23;;22661:22;;22756:2;22741:18;;;22728:32;22776:14;;;22769:31;;;;-1:-1:-1;22668:5:1;22339:491;-1:-1:-1;22339:491:1:o;23624:245::-;23682:6;23735:2;23723:9;23714:7;23710:23;23706:32;23703:52;;;23751:1;23748;23741:12;23703:52;23790:9;23777:23;23809:30;23833:5;23809:30;:::i;23874:479::-;24141:1;24137;24132:3;24128:11;24124:19;24116:6;24112:32;24101:9;24094:51;24181:6;24176:2;24165:9;24161:18;24154:34;24236:6;24228;24224:19;24219:2;24208:9;24204:18;24197:47;24280:3;24275:2;24264:9;24260:18;24253:31;24075:4;24301:46;24342:3;24331:9;24327:19;24319:6;24301:46;:::i;24976:379::-;25169:2;25158:9;25151:21;25132:4;25195:45;25236:2;25225:9;25221:18;25213:6;25195:45;:::i;:::-;25288:9;25280:6;25276:22;25271:2;25260:9;25256:18;25249:50;25316:33;25342:6;25334;25316:33;:::i;25360:245::-;25427:6;25480:2;25468:9;25459:7;25455:23;25451:32;25448:52;;;25496:1;25493;25486:12;25448:52;25528:9;25522:16;25547:28;25569:5;25547:28;:::i;25610:895::-;25837:2;25826:9;25819:21;25895:10;25886:6;25880:13;25876:30;25871:2;25860:9;25856:18;25849:58;25961:4;25953:6;25949:17;25943:24;25938:2;25927:9;25923:18;25916:52;25800:4;26015:2;26007:6;26003:15;25997:22;26056:4;26050:3;26039:9;26035:19;26028:33;26084:52;26131:3;26120:9;26116:19;26102:12;26084:52;:::i;:::-;26070:66;;26185:2;26177:6;26173:15;26167:22;26259:2;26255:7;26243:9;26235:6;26231:22;26227:36;26220:4;26209:9;26205:20;26198:66;26287:41;26321:6;26305:14;26287:41;:::i;:::-;26397:3;26385:16;;;;26379:23;26372:31;26365:39;26359:3;26344:19;;26337:68;-1:-1:-1;;;;;;;;26466:32:1;;;;26459:4;26444:20;;;26437:62;26273:55;25610:895::o;26510:388::-;26580:5;26628:4;26616:9;26611:3;26607:19;26603:30;26600:50;;;26646:1;26643;26636:12;26600:50;26668:22;;:::i;:::-;26735:16;;26760:22;;26848:2;26833:18;;;26827:25;26868:14;;;26861:31;;;;-1:-1:-1;26659:31:1;26510:388;-1:-1:-1;26510:388:1:o;26903:261::-;27005:6;27058:2;27046:9;27037:7;27033:23;27029:32;27026:52;;;27074:1;27071;27064:12;27026:52;27097:61;27150:7;27139:9;27097:61;:::i;27294:517::-;27395:2;27390:3;27387:11;27384:421;;;27431:5;27428:1;27421:16;27475:4;27472:1;27462:18;27545:2;27533:10;27529:19;27526:1;27522:27;27516:4;27512:38;27581:4;27569:10;27566:20;27563:47;;;-1:-1:-1;27604:4:1;27563:47;27659:2;27654:3;27650:12;27647:1;27643:20;27637:4;27633:31;27623:41;;27714:81;27732:2;27725:5;27722:13;27714:81;;;27791:1;27777:16;;27758:1;27747:13;27714:81;;27987:1295;28111:3;28105:10;-1:-1:-1;;;;;28130:6:1;28127:30;28124:56;;;28160:18;;:::i;:::-;28189:96;28278:6;28238:38;28270:4;28264:11;28238:38;:::i;:::-;28232:4;28189:96;:::i;:::-;28334:4;28365:2;28354:14;;28382:1;28377:648;;;;29069:1;29086:6;29083:89;;;-1:-1:-1;29138:19:1;;;29132:26;29083:89;-1:-1:-1;;27944:1:1;27940:11;;;27936:24;27932:29;27922:40;27968:1;27964:11;;;27919:57;29185:81;;28347:929;;28377:648;27241:1;27234:14;;;27278:4;27265:18;;-1:-1:-1;;28413:20:1;;;28530:222;28544:7;28541:1;28538:14;28530:222;;;28626:19;;;28620:26;28605:42;;28733:4;28718:20;;;;28686:1;28674:14;;;;28560:12;28530:222;;;28534:3;28780:6;28771:7;28768:19;28765:201;;;28841:19;;;28835:26;-1:-1:-1;;28924:1:1;28920:14;;;28936:3;28916:24;28912:37;28908:42;28893:58;28878:74;;28765:201;-1:-1:-1;;;;29012:1:1;28996:14;;;28992:22;28979:36;;-1:-1:-1;27987:1295:1:o;29287:1097::-;29501:4;29549:2;29538:9;29534:18;29579:2;29568:9;29561:21;29602:6;29637;29631:13;29668:6;29660;29653:22;29706:2;29695:9;29691:18;29684:25;;29768:2;29758:6;29755:1;29751:14;29740:9;29736:30;29732:39;29718:53;;29806:2;29798:6;29794:15;29827:1;29837:518;29851:6;29848:1;29845:13;29837:518;;;29944:2;29940:7;29928:9;29920:6;29916:22;29912:36;29907:3;29900:49;29978:6;29972:13;30028:10;30023:2;30017:9;30013:26;30005:6;29998:42;30101:6;30095:2;30091;30087:11;30081:18;30077:31;30072:2;30064:6;30060:15;30053:56;30156:2;30152;30148:11;30142:18;30122:38;;30197:4;30192:2;30184:6;30180:15;30173:29;30225:50;30269:4;30261:6;30257:17;30243:12;30225:50;:::i;:::-;30215:60;-1:-1:-1;;30310:2:1;30333:12;;;;30298:15;;;;;29873:1;29866:9;29837:518;;;-1:-1:-1;30372:6:1;;29287:1097;-1:-1:-1;;;;;;29287:1097:1:o;30389:564::-;30495:6;30555:3;30543:9;30534:7;30530:23;30526:33;30571:2;30568:22;;;30586:1;30583;30576:12;30568:22;-1:-1:-1;30628:22:1;;:::i;:::-;30679:9;30673:16;30666:5;30659:31;30735:2;30724:9;30720:18;30714:25;30748:32;30772:7;30748:32;:::i;:::-;30807:2;30796:14;;30789:31;30852:70;30914:7;30909:2;30894:18;;30852:70;:::i;:::-;30847:2;30836:14;;30829:94;30840:5;30389:564;-1:-1:-1;;;30389:564:1:o;30958:127::-;31019:10;31014:3;31010:20;31007:1;31000:31;31050:4;31047:1;31040:15;31074:4;31071:1;31064:15;31090:217;31130:1;31156;31146:132;;31200:10;31195:3;31191:20;31188:1;31181:31;31235:4;31232:1;31225:15;31263:4;31260:1;31253:15;31146:132;-1:-1:-1;31292:9:1;;31090:217::o;31312:168::-;31385:9;;;31416;;31433:15;;;31427:22;;31413:37;31403:71;;31454:18;;:::i;31485:255::-;31605:19;;31644:2;31636:11;;31633:101;;;-1:-1:-1;;31705:2:1;31701:12;;;31698:1;31694:20;31690:33;31679:45;31485:255;;;;:::o;31745:362::-;31865:19;;-1:-1:-1;;;;;;31902:37:1;;;31959:1;31951:10;;31948:153;;;-1:-1:-1;;;;;;32020:1:1;32016:11;;;32013:1;32009:19;32005:54;;;31997:63;;31993:98;;-1:-1:-1;31948:153:1;;31745:362;;;;:::o;32112:568::-;-1:-1:-1;;;;;32377:3:1;32373:28;32364:6;32359:3;32355:16;32351:51;32346:3;32339:64;32463:10;32458:3;32454:20;32445:6;32440:3;32436:16;32432:43;32428:1;32423:3;32419:11;32412:64;32506:6;32501:2;32496:3;32492:12;32485:28;32321:3;32542:6;32536:13;32558:75;32626:6;32621:2;32616:3;32612:12;32605:4;32597:6;32593:17;32558:75;:::i;:::-;32653:16;;;;32671:2;32649:25;;32112:568;-1:-1:-1;;;;;32112:568:1:o;32685:125::-;32750:9;;;32771:10;;;32768:36;;;32784:18;;:::i;33110:532::-;33351:6;33346:3;33339:19;-1:-1:-1;;;;;33414:3:1;33410:28;33401:6;33396:3;33392:16;33388:51;33383:2;33378:3;33374:12;33367:73;33470:6;33465:2;33460:3;33456:12;33449:28;33321:3;33506:6;33500:13;33522:73;33588:6;33583:2;33578:3;33574:12;33569:2;33561:6;33557:15;33522:73;:::i;:::-;33615:16;;;;33633:2;33611:25;;33110:532;-1:-1:-1;;;;;33110:532:1:o;33647:251::-;33717:6;33770:2;33758:9;33749:7;33745:23;33741:32;33738:52;;;33786:1;33783;33776:12;33738:52;33818:9;33812:16;33837:31;33862:5;33837:31;:::i;34279:287::-;34408:3;34446:6;34440:13;34462:66;34521:6;34516:3;34509:4;34501:6;34497:17;34462:66;:::i
Swarm Source
ipfs://b9efd82bc53ca84c3514103e346d5b0ee527ee1945cad2e6a246c69e4d1da1dd
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.