Source Code
Overview
MON Balance
MON Value
$0.00Latest 1 from a total of 1 transactions
| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer Ownersh... | 37120758 | 63 days ago | IN | 0 MON | 0.00622149 |
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers.
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Block | From | To | ||||
|---|---|---|---|---|---|---|---|
| 50825848 | 3 hrs ago | 0 MON | |||||
| 50825848 | 3 hrs ago | 0 MON | |||||
| 50825848 | 3 hrs ago | 0 MON | |||||
| 50825848 | 3 hrs ago | 0 MON | |||||
| 50825848 | 3 hrs ago | 0 MON | |||||
| 50825848 | 3 hrs ago | 0 MON | |||||
| 50825848 | 3 hrs ago | 0 MON | |||||
| 50816055 | 4 hrs ago | 0 MON | |||||
| 50816055 | 4 hrs ago | 0 MON | |||||
| 50816055 | 4 hrs ago | 0 MON | |||||
| 50816055 | 4 hrs ago | 0 MON | |||||
| 50816055 | 4 hrs ago | 0 MON | |||||
| 50816055 | 4 hrs ago | 0 MON | |||||
| 50816055 | 4 hrs ago | 0 MON | |||||
| 50813886 | 4 hrs ago | 0 MON | |||||
| 50813886 | 4 hrs ago | 0 MON | |||||
| 50813886 | 4 hrs ago | 0 MON | |||||
| 50813886 | 4 hrs ago | 0 MON | |||||
| 50813886 | 4 hrs ago | 0 MON | |||||
| 50813886 | 4 hrs ago | 0 MON | |||||
| 50813886 | 4 hrs ago | 0 MON | |||||
| 50811795 | 5 hrs ago | 0 MON | |||||
| 50811795 | 5 hrs ago | 0 MON | |||||
| 50811795 | 5 hrs ago | 0 MON | |||||
| 50811795 | 5 hrs ago | 0 MON |
Loading...
Loading
Contract Name:
BurnMintWithExternalMinterTokenPool
Compiler Version
v0.8.26+commit.8a97fa7a
Optimization Enabled:
Yes with 80000 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.24;
import {IExternalMinter} from "./interfaces/IExternalMinter.sol";
import {BurnMintExternalMinterTokenPoolAbstract} from "./BurnMintExternalMinterTokenPoolAbstract.sol";
import {TokenPool} from "@chainlink/contracts-ccip/contracts/pools/TokenPool.sol";
import {IERC20} from
"@chainlink/contracts/src/v0.8/vendor/openzeppelin-solidity/v4.8.3/contracts/token/ERC20/utils/SafeERC20.sol";
/// @title Token Pool for tokens that are owned by an external minter
/// @notice The BurnMintWithExternalMinterTokenPool contract is a contract that implements the TokenPoolAbstract contract.
/// @dev It is used to manage operations for token that is owned by a ExternalMinter contract.
/// On `lockOrBurn`, the contract will call the burn function through the ExternalMinter contract.
/// On `releaseOrMint`, the contract will call the mint function through the ExternalMinter contract.
contract BurnMintWithExternalMinterTokenPool is BurnMintExternalMinterTokenPoolAbstract {
/// @notice Sets the immutable values for {i_minter}.
/// @param minter The address of the minter contract
/// @param token The token to be managed by the pool
/// @param localTokenDecimals The decimals of the local token
/// @param allowlist The allowlist of addresses
/// @param rmnProxy The RMN proxy address
/// @param router The address of the CCIP router
constructor(
address minter,
IERC20 token,
uint8 localTokenDecimals,
address[] memory allowlist,
address rmnProxy,
address router
) TokenPool(token, localTokenDecimals, allowlist, rmnProxy, router) {
i_minter = IExternalMinter(minter);
// The token supplied to this constructor must match the token
// returned by the minter, otherwise the deployment parameters are inconsistent.
_validateTokenFromExternalMinter(token);
}
/// @notice Returns the type and version of this contract.
/// @return The type and version string.
function typeAndVersion() public pure virtual returns (string memory) {
return "BurnMintWithExternalMinterTokenPool 1.6.0";
}
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.24;
import {IExternalMinter} from "./interfaces/IExternalMinter.sol";
import {TokenPool} from "@chainlink/contracts-ccip/contracts/pools/TokenPool.sol";
import {IERC20} from
"@chainlink/contracts/src/v0.8/vendor/openzeppelin-solidity/v4.8.3/contracts/token/ERC20/IERC20.sol";
import {SafeERC20} from
"@chainlink/contracts/src/v0.8/vendor/openzeppelin-solidity/v4.8.3/contracts/token/ERC20/utils/SafeERC20.sol";
/// @title BurnMintExternalMinterTokenPoolAbstract
/// @notice Base functionality for BurnMint Token Pools with external minter.
/// @dev Contains shared minter management and token management functionality.
abstract contract BurnMintExternalMinterTokenPoolAbstract is TokenPool {
using SafeERC20 for IERC20;
error TokenMismatch(IERC20 expected, IERC20 actual);
/// @dev The external minter contract
IExternalMinter internal immutable i_minter;
/// @notice Get the address of the Minter contract.
/// @return The address of the Minter contract.
function getMinter() public view returns (address) {
return address(i_minter);
}
// ================================================================
// │ Token Management │
// ================================================================
/// @notice Burn the amount of ERC20 tokens through the Minter contract.
/// @param amount The amount of tokens to burn
function _lockOrBurn(
uint256 amount
) internal virtual override {
// Token approval is needed as the minter will transfer the tokens to itself before burning them.
getToken().safeApprove(address(i_minter), amount);
i_minter.burn(amount);
}
/// @notice Mint the amount of ERC20 tokens through the Minter contract.
/// @param receiver The address to mint tokens to
/// @param amount The amount of tokens to mint
function _releaseOrMint(address receiver, uint256 amount) internal virtual override {
IExternalMinter(getMinter()).mint(receiver, amount);
}
/// @notice Validate that the token matches the one from the external minter.
/// @param token The token to validate
function _validateTokenFromExternalMinter(
IERC20 token
) internal view virtual {
IERC20 minterToken = IERC20(IExternalMinter(getMinter()).getToken());
if (token != minterToken) {
revert TokenMismatch(token, minterToken);
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IExternalMinter {
function getToken() external view returns (address);
function mint(address recipient, uint256 amount) external returns (bool);
function burn(
uint256 amount
) external returns (bool);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import {Pool} from "../libraries/Pool.sol";
import {IERC165} from
"@chainlink/contracts/src/v0.8/vendor/openzeppelin-solidity/v5.0.2/contracts/utils/introspection/IERC165.sol";
/// @notice Shared public interface for multiple V1 pool types.
/// Each pool type handles a different child token model e.g. lock/unlock, mint/burn.
interface IPoolV1 is IERC165 {
/// @notice Lock tokens into the pool or burn the tokens.
/// @param lockOrBurnIn Encoded data fields for the processing of tokens on the source chain.
/// @return lockOrBurnOut Encoded data fields for the processing of tokens on the destination chain.
function lockOrBurn(
Pool.LockOrBurnInV1 calldata lockOrBurnIn
) external returns (Pool.LockOrBurnOutV1 memory lockOrBurnOut);
/// @notice Releases or mints tokens to the receiver address.
/// @param releaseOrMintIn All data required to release or mint tokens.
/// @return releaseOrMintOut The amount of tokens released or minted on the local chain, denominated
/// in the local token's decimals.
/// @dev The offRamp asserts that the balanceOf of the receiver has been incremented by exactly the number
/// of tokens that is returned in ReleaseOrMintOutV1.destinationAmount. If the amounts do not match, the tx reverts.
function releaseOrMint(
Pool.ReleaseOrMintInV1 calldata releaseOrMintIn
) external returns (Pool.ReleaseOrMintOutV1 memory);
/// @notice Checks whether a remote chain is supported in the token pool.
/// @param remoteChainSelector The selector of the remote chain.
/// @return true if the given chain is a permissioned remote chain.
function isSupportedChain(
uint64 remoteChainSelector
) external view returns (bool);
/// @notice Returns if the token pool supports the given token.
/// @param token The address of the token.
/// @return true if the token is supported by the pool.
function isSupportedToken(
address token
) external view returns (bool);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/// @notice This interface contains the only RMN-related functions that might be used on-chain by other CCIP contracts.
interface IRMN {
/// @notice A Merkle root tagged with the address of the commit store contract it is destined for.
struct TaggedRoot {
address commitStore;
bytes32 root;
}
/// @notice Callers MUST NOT cache the return value as a blessed tagged root could become unblessed.
function isBlessed(
TaggedRoot calldata taggedRoot
) external view returns (bool);
/// @notice Iff there is an active global or legacy curse, this function returns true.
function isCursed() external view returns (bool);
/// @notice Iff there is an active global curse, or an active curse for `subject`, this function returns true.
/// @param subject To check whether a particular chain is cursed, set to bytes16(uint128(chainSelector)).
function isCursed(
bytes16 subject
) external view returns (bool);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import {Client} from "../libraries/Client.sol";
interface IRouter {
error OnlyOffRamp();
/// @notice Route the message to its intended receiver contract.
/// @param message Client.Any2EVMMessage struct.
/// @param gasForCallExactCheck of params for exec.
/// @param gasLimit set of params for exec.
/// @param receiver set of params for exec.
/// @dev if the receiver is a contracts that signals support for CCIP execution through EIP-165.
/// the contract is called. If not, only tokens are transferred.
/// @return success A boolean value indicating whether the ccip message was received without errors.
/// @return retBytes A bytes array containing return data form CCIP receiver.
/// @return gasUsed the gas used by the external customer call. Does not include any overhead.
function routeMessage(
Client.Any2EVMMessage calldata message,
uint16 gasForCallExactCheck,
uint256 gasLimit,
address receiver
) external returns (bool success, bytes memory retBytes, uint256 gasUsed);
/// @notice Returns the configured onRamp for a specific destination chain.
/// @param destChainSelector The destination chain Id to get the onRamp for.
/// @return onRampAddress The address of the onRamp.
function getOnRamp(
uint64 destChainSelector
) external view returns (address onRampAddress);
/// @notice Return true if the given offRamp is a configured offRamp for the given source chain.
/// @param sourceChainSelector The source chain selector to check.
/// @param offRamp The address of the offRamp to check.
function isOffRamp(uint64 sourceChainSelector, address offRamp) external view returns (bool isOffRamp);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// End consumer library.
library Client {
/// @dev RMN depends on this struct, if changing, please notify the RMN maintainers.
struct EVMTokenAmount {
address token; // token address on the local chain.
uint256 amount; // Amount of tokens.
}
struct Any2EVMMessage {
bytes32 messageId; // MessageId corresponding to ccipSend on source.
uint64 sourceChainSelector; // Source chain selector.
bytes sender; // abi.decode(sender) if coming from an EVM chain.
bytes data; // payload sent in original message.
EVMTokenAmount[] destTokenAmounts; // Tokens and their amounts in their destination chain representation.
}
// If extraArgs is empty bytes, the default is 200k gas limit.
struct EVM2AnyMessage {
bytes receiver; // abi.encode(receiver address) for dest EVM chains.
bytes data; // Data payload.
EVMTokenAmount[] tokenAmounts; // Token transfers.
address feeToken; // Address of feeToken. address(0) means you will send msg.value.
bytes extraArgs; // Populate this with _argsToBytes(EVMExtraArgsV2).
}
// Tag to indicate only a gas limit. Only usable for EVM as destination chain.
bytes4 public constant EVM_EXTRA_ARGS_V1_TAG = 0x97a657c9;
struct EVMExtraArgsV1 {
uint256 gasLimit;
}
function _argsToBytes(
EVMExtraArgsV1 memory extraArgs
) internal pure returns (bytes memory bts) {
return abi.encodeWithSelector(EVM_EXTRA_ARGS_V1_TAG, extraArgs);
}
// Tag to indicate a gas limit (or dest chain equivalent processing units) and Out Of Order Execution. This tag is
// available for multiple chain families. If there is no chain family specific tag, this is the default available
// for a chain.
// Note: not available for Solana VM based chains.
bytes4 public constant GENERIC_EXTRA_ARGS_V2_TAG = 0x181dcf10;
/// @param gasLimit: gas limit for the callback on the destination chain.
/// @param allowOutOfOrderExecution: if true, it indicates that the message can be executed in any order relative to
/// other messages from the same sender. This value's default varies by chain. On some chains, a particular value is
/// enforced, meaning if the expected value is not set, the message request will revert.
/// @dev Fully compatible with the previously existing EVMExtraArgsV2.
struct GenericExtraArgsV2 {
uint256 gasLimit;
bool allowOutOfOrderExecution;
}
// Extra args tag for chains that use the Solana VM.
bytes4 public constant SVM_EXTRA_ARGS_V1_TAG = 0x1f3b3aba;
struct SVMExtraArgsV1 {
uint32 computeUnits;
uint64 accountIsWritableBitmap;
bool allowOutOfOrderExecution;
bytes32 tokenReceiver;
// Additional accounts needed for execution of CCIP receiver. Must be empty if message.receiver is zero.
// Token transfer related accounts are specified in the token pool lookup table on SVM.
bytes32[] accounts;
}
/// @dev The maximum number of accounts that can be passed in SVMExtraArgs.
uint256 public constant SVM_EXTRA_ARGS_MAX_ACCOUNTS = 64;
/// @dev The expected static payload size of a token transfer when Borsh encoded and submitted to SVM.
/// TokenPool extra data and offchain data sizes are dynamic, and should be accounted for separately.
uint256 public constant SVM_TOKEN_TRANSFER_DATA_OVERHEAD = (4 + 32) // source_pool
+ 32 // token_address
+ 4 // gas_amount
+ 4 // extra_data overhead
+ 32 // amount
+ 32 // size of the token lookup table account
+ 32 // token-related accounts in the lookup table, over-estimated to 32, typically between 11 - 13
+ 32 // token account belonging to the token receiver, e.g ATA, not included in the token lookup table
+ 32 // per-chain token pool config, not included in the token lookup table
+ 32 // per-chain token billing config, not always included in the token lookup table
+ 32; // OffRamp pool signer PDA, not included in the token lookup table
/// @dev Number of overhead accounts needed for message execution on SVM.
/// @dev These are message.receiver, and the OffRamp Signer PDA specific to the receiver.
uint256 public constant SVM_MESSAGING_ACCOUNTS_OVERHEAD = 2;
/// @dev The size of each SVM account address in bytes.
uint256 public constant SVM_ACCOUNT_BYTE_SIZE = 32;
function _argsToBytes(
GenericExtraArgsV2 memory extraArgs
) internal pure returns (bytes memory bts) {
return abi.encodeWithSelector(GENERIC_EXTRA_ARGS_V2_TAG, extraArgs);
}
function _svmArgsToBytes(
SVMExtraArgsV1 memory extraArgs
) internal pure returns (bytes memory bts) {
return abi.encodeWithSelector(SVM_EXTRA_ARGS_V1_TAG, extraArgs);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/// @notice This library contains various token pool functions to aid constructing the return data.
library Pool {
// The tag used to signal support for the pool v1 standard.
// bytes4(keccak256("CCIP_POOL_V1"))
bytes4 public constant CCIP_POOL_V1 = 0xaff2afbf;
// The number of bytes in the return data for a pool v1 releaseOrMint call.
// This should match the size of the ReleaseOrMintOutV1 struct.
uint16 public constant CCIP_POOL_V1_RET_BYTES = 32;
// The default max number of bytes in the return data for a pool v1 lockOrBurn call.
// This data can be used to send information to the destination chain token pool. Can be overwritten
// in the TokenTransferFeeConfig.destBytesOverhead if more data is required.
uint32 public constant CCIP_LOCK_OR_BURN_V1_RET_BYTES = 32;
struct LockOrBurnInV1 {
bytes receiver; // The recipient of the tokens on the destination chain, abi encoded.
uint64 remoteChainSelector; // ─╮ The chain ID of the destination chain.
address originalSender; // ─────╯ The original sender of the tx on the source chain.
uint256 amount; // The amount of tokens to lock or burn, denominated in the source token's decimals.
address localToken; // The address on this chain of the token to lock or burn.
}
struct LockOrBurnOutV1 {
// The address of the destination token, abi encoded in the case of EVM chains.
// This value is UNTRUSTED as any pool owner can return whatever value they want.
bytes destTokenAddress;
// Optional pool data to be transferred to the destination chain. Be default this is capped at
// CCIP_LOCK_OR_BURN_V1_RET_BYTES bytes. If more data is required, the TokenTransferFeeConfig.destBytesOverhead
// has to be set for the specific token.
bytes destPoolData;
}
struct ReleaseOrMintInV1 {
bytes originalSender; // The original sender of the tx on the source chain.
uint64 remoteChainSelector; // ───╮ The chain ID of the source chain.
address receiver; // ─────────────╯ The recipient of the tokens on the destination chain.
uint256 sourceDenominatedAmount; // The amount of tokens to release or mint, denominated in the source token's decimals.
address localToken; // The address on this chain of the token to release or mint.
/// @dev WARNING: sourcePoolAddress should be checked prior to any processing of funds. Make sure it matches the
/// expected pool address for the given remoteChainSelector.
bytes sourcePoolAddress; // The address of the source pool, abi encoded in the case of EVM chains.
bytes sourcePoolData; // The data received from the source pool to process the release or mint.
/// @dev WARNING: offchainTokenData is untrusted data.
bytes offchainTokenData; // The offchain data to process the release or mint.
}
struct ReleaseOrMintOutV1 {
// The number of tokens released or minted on the destination chain, denominated in the local token's decimals.
// This value is expected to be equal to the ReleaseOrMintInV1.amount in the case where the source and destination
// chain have the same number of decimals.
uint256 destinationAmount;
}
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.4;
/// @notice Implements Token Bucket rate limiting.
/// @dev uint128 is safe for rate limiter state.
/// - For USD value rate limiting, it can adequately store USD value in 18 decimals.
/// - For ERC20 token amount rate limiting, all tokens that will be listed will have at most a supply of uint128.max
/// tokens, and it will therefore not overflow the bucket. In exceptional scenarios where tokens consumed may be larger
/// than uint128, e.g. compromised issuer, an enabled RateLimiter will check and revert.
library RateLimiter {
error BucketOverfilled();
error TokenMaxCapacityExceeded(uint256 capacity, uint256 requested, address tokenAddress);
error TokenRateLimitReached(uint256 minWaitInSeconds, uint256 available, address tokenAddress);
error InvalidRateLimitRate(Config rateLimiterConfig);
error DisabledNonZeroRateLimit(Config config);
event ConfigChanged(Config config);
struct TokenBucket {
uint128 tokens; // ────╮ Current number of tokens that are in the bucket.
uint32 lastUpdated; // │ Timestamp in seconds of the last token refill, good for 100+ years.
bool isEnabled; // ────╯ Indication whether the rate limiting is enabled or not.
uint128 capacity; // ──╮ Maximum number of tokens that can be in the bucket.
uint128 rate; // ──────╯ Number of tokens per second that the bucket is refilled.
}
struct Config {
bool isEnabled; // Indication whether the rate limiting should be enabled.
uint128 capacity; // ──╮ Specifies the capacity of the rate limiter.
uint128 rate; // ─────╯ Specifies the rate of the rate limiter.
}
/// @notice _consume removes the given tokens from the pool, lowering the rate tokens allowed to be
/// consumed for subsequent calls.
/// @param requestTokens The total tokens to be consumed from the bucket.
/// @param tokenAddress The token to consume capacity for, use 0x0 to indicate aggregate value capacity.
/// @dev Reverts when requestTokens exceeds bucket capacity or available tokens in the bucket.
/// @dev emits removal of requestTokens if requestTokens is > 0.
function _consume(TokenBucket storage s_bucket, uint256 requestTokens, address tokenAddress) internal {
// If there is no value to remove or rate limiting is turned off, skip this step to reduce gas usage.
if (!s_bucket.isEnabled || requestTokens == 0) {
return;
}
uint256 tokens = s_bucket.tokens;
uint256 capacity = s_bucket.capacity;
uint256 timeDiff = block.timestamp - s_bucket.lastUpdated;
if (timeDiff != 0) {
if (tokens > capacity) revert BucketOverfilled();
// Refill tokens when arriving at a new block time.
tokens = _calculateRefill(capacity, tokens, timeDiff, s_bucket.rate);
s_bucket.lastUpdated = uint32(block.timestamp);
}
if (capacity < requestTokens) {
revert TokenMaxCapacityExceeded(capacity, requestTokens, tokenAddress);
}
if (tokens < requestTokens) {
uint256 rate = s_bucket.rate;
// Wait required until the bucket is refilled enough to accept this value, round up to next higher second.
// Consume is not guaranteed to succeed after wait time passes if there is competing traffic.
// This acts as a lower bound of wait time.
uint256 minWaitInSeconds = ((requestTokens - tokens) + (rate - 1)) / rate;
revert TokenRateLimitReached(minWaitInSeconds, tokens, tokenAddress);
}
tokens -= requestTokens;
// Downcast is safe here, as tokens is not larger than capacity.
s_bucket.tokens = uint128(tokens);
}
/// @notice Gets the token bucket with its values for the block it was requested at.
/// @return The token bucket.
function _currentTokenBucketState(
TokenBucket memory bucket
) internal view returns (TokenBucket memory) {
// We update the bucket to reflect the status at the exact time of the call. This means we might need to refill a
// part of the bucket based on the time that has passed since the last update.
bucket.tokens =
uint128(_calculateRefill(bucket.capacity, bucket.tokens, block.timestamp - bucket.lastUpdated, bucket.rate));
bucket.lastUpdated = uint32(block.timestamp);
return bucket;
}
/// @notice Sets the rate limited config.
/// @param s_bucket The token bucket.
/// @param config The new config.
function _setTokenBucketConfig(TokenBucket storage s_bucket, Config memory config) internal {
// First update the bucket to make sure the proper rate is used for all the time up until the config change.
uint256 timeDiff = block.timestamp - s_bucket.lastUpdated;
if (timeDiff != 0) {
s_bucket.tokens = uint128(_calculateRefill(s_bucket.capacity, s_bucket.tokens, timeDiff, s_bucket.rate));
s_bucket.lastUpdated = uint32(block.timestamp);
}
s_bucket.tokens = uint128(_min(config.capacity, s_bucket.tokens));
s_bucket.isEnabled = config.isEnabled;
s_bucket.capacity = config.capacity;
s_bucket.rate = config.rate;
emit ConfigChanged(config);
}
/// @notice Validates the token bucket config.
function _validateTokenBucketConfig(
Config memory config
) internal pure {
if (config.isEnabled) {
if (config.rate > config.capacity) {
revert InvalidRateLimitRate(config);
}
} else {
if (config.rate != 0 || config.capacity != 0) {
revert DisabledNonZeroRateLimit(config);
}
}
}
/// @notice Calculate refilled tokens.
/// @param capacity bucket capacity.
/// @param tokens current bucket tokens.
/// @param timeDiff block time difference since last refill.
/// @param rate bucket refill rate.
/// @return the value of tokens after refill.
function _calculateRefill(
uint256 capacity,
uint256 tokens,
uint256 timeDiff,
uint256 rate
) private pure returns (uint256) {
return _min(capacity, tokens + timeDiff * rate);
}
/// @notice Return the smallest of two integers.
/// @param a first int.
/// @param b second int.
/// @return smallest.
function _min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.24;
import {IPoolV1} from "../interfaces/IPool.sol";
import {IRMN} from "../interfaces/IRMN.sol";
import {IRouter} from "../interfaces/IRouter.sol";
import {Pool} from "../libraries/Pool.sol";
import {RateLimiter} from "../libraries/RateLimiter.sol";
import {Ownable2StepMsgSender} from "@chainlink/contracts/src/v0.8/shared/access/Ownable2StepMsgSender.sol";
import {IERC20} from
"@chainlink/contracts/src/v0.8/vendor/openzeppelin-solidity/v4.8.3/contracts/token/ERC20/IERC20.sol";
import {IERC20Metadata} from
"@chainlink/contracts/src/v0.8/vendor/openzeppelin-solidity/v4.8.3/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import {IERC165} from
"@chainlink/contracts/src/v0.8/vendor/openzeppelin-solidity/v5.0.2/contracts/utils/introspection/IERC165.sol";
import {EnumerableSet} from
"@chainlink/contracts/src/v0.8/vendor/openzeppelin-solidity/v5.0.2/contracts/utils/structs/EnumerableSet.sol";
/// @notice Base abstract class with common functions for all token pools.
/// A token pool serves as isolated place for holding tokens and token specific logic
/// that may execute as tokens move across the bridge.
/// @dev This pool supports different decimals on different chains but using this feature could impact the total number
/// of tokens in circulation. Since all of the tokens are locked/burned on the source, and a rounded amount is
/// minted/released on the destination, the number of tokens minted/released could be less than the number of tokens
/// burned/locked. This is because the source chain does not know about the destination token decimals. This is not a
/// problem if the decimals are the same on both chains.
///
/// Example:
/// Assume there is a token with 6 decimals on chain A and 3 decimals on chain B.
/// - 1.234567 tokens are burned on chain A.
/// - 1.234 tokens are minted on chain B.
/// When sending the 1.234 tokens back to chain A, you will receive 1.234000 tokens on chain A, effectively losing
/// 0.000567 tokens.
/// In the case of a burnMint pool on chain A, these funds are burned in the pool on chain A.
/// In the case of a lockRelease pool on chain A, these funds accumulate in the pool on chain A.
abstract contract TokenPool is IPoolV1, Ownable2StepMsgSender {
using EnumerableSet for EnumerableSet.Bytes32Set;
using EnumerableSet for EnumerableSet.AddressSet;
using EnumerableSet for EnumerableSet.UintSet;
using RateLimiter for RateLimiter.TokenBucket;
error CallerIsNotARampOnRouter(address caller);
error ZeroAddressNotAllowed();
error SenderNotAllowed(address sender);
error AllowListNotEnabled();
error NonExistentChain(uint64 remoteChainSelector);
error ChainNotAllowed(uint64 remoteChainSelector);
error CursedByRMN();
error ChainAlreadyExists(uint64 chainSelector);
error InvalidSourcePoolAddress(bytes sourcePoolAddress);
error InvalidToken(address token);
error Unauthorized(address caller);
error PoolAlreadyAdded(uint64 remoteChainSelector, bytes remotePoolAddress);
error InvalidRemotePoolForChain(uint64 remoteChainSelector, bytes remotePoolAddress);
error InvalidRemoteChainDecimals(bytes sourcePoolData);
error MismatchedArrayLengths();
error OverflowDetected(uint8 remoteDecimals, uint8 localDecimals, uint256 remoteAmount);
error InvalidDecimalArgs(uint8 expected, uint8 actual);
event LockedOrBurned(uint64 indexed remoteChainSelector, address token, address sender, uint256 amount);
event ReleasedOrMinted(
uint64 indexed remoteChainSelector, address token, address sender, address recipient, uint256 amount
);
event ChainAdded(
uint64 remoteChainSelector,
bytes remoteToken,
RateLimiter.Config outboundRateLimiterConfig,
RateLimiter.Config inboundRateLimiterConfig
);
event ChainConfigured(
uint64 remoteChainSelector,
RateLimiter.Config outboundRateLimiterConfig,
RateLimiter.Config inboundRateLimiterConfig
);
event ChainRemoved(uint64 remoteChainSelector);
event RemotePoolAdded(uint64 indexed remoteChainSelector, bytes remotePoolAddress);
event RemotePoolRemoved(uint64 indexed remoteChainSelector, bytes remotePoolAddress);
event AllowListAdd(address sender);
event AllowListRemove(address sender);
event RouterUpdated(address oldRouter, address newRouter);
event RateLimitAdminSet(address rateLimitAdmin);
event OutboundRateLimitConsumed(uint64 indexed remoteChainSelector, address token, uint256 amount);
event InboundRateLimitConsumed(uint64 indexed remoteChainSelector, address token, uint256 amount);
struct ChainUpdate {
uint64 remoteChainSelector; // Remote chain selector
bytes[] remotePoolAddresses; // Address of the remote pool, ABI encoded in the case of a remote EVM chain.
bytes remoteTokenAddress; // Address of the remote token, ABI encoded in the case of a remote EVM chain.
RateLimiter.Config outboundRateLimiterConfig; // Outbound rate limited config, meaning the rate limits for all of the onRamps for the given chain
RateLimiter.Config inboundRateLimiterConfig; // Inbound rate limited config, meaning the rate limits for all of the offRamps for the given chain
}
struct RemoteChainConfig {
RateLimiter.TokenBucket outboundRateLimiterConfig; // Outbound rate limited config, meaning the rate limits for all of the onRamps for the given chain
RateLimiter.TokenBucket inboundRateLimiterConfig; // Inbound rate limited config, meaning the rate limits for all of the offRamps for the given chain
bytes remoteTokenAddress; // Address of the remote token, ABI encoded in the case of a remote EVM chain.
EnumerableSet.Bytes32Set remotePools; // Set of remote pool hashes, ABI encoded in the case of a remote EVM chain.
}
/// @dev The bridgeable token that is managed by this pool. Pools could support multiple tokens at the same time if
/// required, but this implementation only supports one token.
IERC20 internal immutable i_token;
/// @dev The number of decimals of the token managed by this pool.
uint8 internal immutable i_tokenDecimals;
/// @dev The address of the RMN proxy
address internal immutable i_rmnProxy;
/// @dev The immutable flag that indicates if the pool is access-controlled.
bool internal immutable i_allowlistEnabled;
/// @dev A set of addresses allowed to trigger lockOrBurn as original senders.
/// Only takes effect if i_allowlistEnabled is true.
/// This can be used to ensure only token-issuer specified addresses can move tokens.
EnumerableSet.AddressSet internal s_allowlist;
/// @dev The address of the router
IRouter internal s_router;
/// @dev A set of allowed chain selectors. We want the allowlist to be enumerable to
/// be able to quickly determine (without parsing logs) who can access the pool.
/// @dev The chain selectors are in uint256 format because of the EnumerableSet implementation.
EnumerableSet.UintSet internal s_remoteChainSelectors;
mapping(uint64 remoteChainSelector => RemoteChainConfig) internal s_remoteChainConfigs;
/// @notice A mapping of hashed pool addresses to their unhashed form. This is used to be able to find the actually
/// configured pools and not just their hashed versions.
mapping(bytes32 poolAddressHash => bytes poolAddress) internal s_remotePoolAddresses;
/// @notice The address of the rate limiter admin.
/// @dev Can be address(0) if none is configured.
address internal s_rateLimitAdmin;
constructor(IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router) {
if (address(token) == address(0) || router == address(0) || rmnProxy == address(0)) revert ZeroAddressNotAllowed();
i_token = token;
i_rmnProxy = rmnProxy;
try IERC20Metadata(address(token)).decimals() returns (uint8 actualTokenDecimals) {
if (localTokenDecimals != actualTokenDecimals) {
revert InvalidDecimalArgs(localTokenDecimals, actualTokenDecimals);
}
} catch {
// The decimals function doesn't exist, which is possible since it's optional in the ERC20 spec. We skip the check and
// assume the supplied token decimals are correct.
}
i_tokenDecimals = localTokenDecimals;
s_router = IRouter(router);
// Pool can be set as permissioned or permissionless at deployment time only to save hot-path gas.
i_allowlistEnabled = allowlist.length > 0;
if (i_allowlistEnabled) {
_applyAllowListUpdates(new address[](0), allowlist);
}
}
/// @inheritdoc IPoolV1
function isSupportedToken(
address token
) public view virtual returns (bool) {
return token == address(i_token);
}
/// @notice Gets the IERC20 token that this pool can lock or burn.
/// @return token The IERC20 token representation.
function getToken() public view returns (IERC20 token) {
return i_token;
}
/// @notice Get RMN proxy address
/// @return rmnProxy Address of RMN proxy
function getRmnProxy() public view returns (address rmnProxy) {
return i_rmnProxy;
}
/// @notice Gets the pool's Router
/// @return router The pool's Router
function getRouter() public view virtual returns (address router) {
return address(s_router);
}
/// @notice Sets the pool's Router
/// @param newRouter The new Router
function setRouter(
address newRouter
) public onlyOwner {
if (newRouter == address(0)) revert ZeroAddressNotAllowed();
address oldRouter = address(s_router);
s_router = IRouter(newRouter);
emit RouterUpdated(oldRouter, newRouter);
}
/// @notice Signals which version of the pool interface is supported
function supportsInterface(
bytes4 interfaceId
) public pure virtual override returns (bool) {
return interfaceId == Pool.CCIP_POOL_V1 || interfaceId == type(IPoolV1).interfaceId
|| interfaceId == type(IERC165).interfaceId;
}
// ================================================================
// │ Lock or Burn │
// ================================================================
/// @notice Burn the token in the pool
/// @dev The _validateLockOrBurn check is an essential security check
function lockOrBurn(
Pool.LockOrBurnInV1 calldata lockOrBurnIn
) public virtual override returns (Pool.LockOrBurnOutV1 memory) {
_validateLockOrBurn(lockOrBurnIn);
_lockOrBurn(lockOrBurnIn.amount);
emit LockedOrBurned({
remoteChainSelector: lockOrBurnIn.remoteChainSelector,
token: address(i_token),
sender: msg.sender,
amount: lockOrBurnIn.amount
});
return Pool.LockOrBurnOutV1({
destTokenAddress: getRemoteToken(lockOrBurnIn.remoteChainSelector),
destPoolData: _encodeLocalDecimals()
});
}
/// @notice Contains the specific lock or burn token logic for a pool.
/// @dev overriding this method allows us to create pools with different lock/burn signatures
/// without duplicating the underlying logic.
function _lockOrBurn(
uint256 amount
) internal virtual {}
// ================================================================
// │ Release or Mint │
// ================================================================
/// @notice Mint tokens from the pool to the recipient
/// @dev The _validateReleaseOrMint check is an essential security check
function releaseOrMint(
Pool.ReleaseOrMintInV1 calldata releaseOrMintIn
) public virtual override returns (Pool.ReleaseOrMintOutV1 memory) {
// Calculate the local amount
uint256 localAmount = _calculateLocalAmount(
releaseOrMintIn.sourceDenominatedAmount, _parseRemoteDecimals(releaseOrMintIn.sourcePoolData)
);
_validateReleaseOrMint(releaseOrMintIn, localAmount);
// Mint to the receiver
_releaseOrMint(releaseOrMintIn.receiver, localAmount);
emit ReleasedOrMinted({
remoteChainSelector: releaseOrMintIn.remoteChainSelector,
token: address(i_token),
sender: msg.sender,
recipient: releaseOrMintIn.receiver,
amount: localAmount
});
return Pool.ReleaseOrMintOutV1({destinationAmount: localAmount});
}
/// @notice Contains the specific release or mint token logic for a pool.
/// @dev overriding this method allows us to create pools with different release/mint signatures
/// without duplicating the underlying logic.
function _releaseOrMint(address receiver, uint256 amount) internal virtual {}
// ================================================================
// │ Validation │
// ================================================================
/// @notice Validates the lock or burn input for correctness on
/// - token to be locked or burned
/// - RMN curse status
/// - allowlist status
/// - if the sender is a valid onRamp
/// - rate limit status
/// @param lockOrBurnIn The input to validate.
/// @dev This function should always be called before executing a lock or burn. Not doing so would allow
/// for various exploits.
function _validateLockOrBurn(
Pool.LockOrBurnInV1 calldata lockOrBurnIn
) internal {
if (!isSupportedToken(lockOrBurnIn.localToken)) revert InvalidToken(lockOrBurnIn.localToken);
if (IRMN(i_rmnProxy).isCursed(bytes16(uint128(lockOrBurnIn.remoteChainSelector)))) revert CursedByRMN();
_checkAllowList(lockOrBurnIn.originalSender);
_onlyOnRamp(lockOrBurnIn.remoteChainSelector);
_consumeOutboundRateLimit(lockOrBurnIn.remoteChainSelector, lockOrBurnIn.amount);
}
/// @notice Validates the release or mint input for correctness on
/// - token to be released or minted
/// - RMN curse status
/// - if the sender is a valid offRamp
/// - if the source pool is valid
/// - rate limit status
/// @param releaseOrMintIn The input to validate.
/// @param localAmount The local amount to be released or minted.
/// @dev This function should always be called before executing a release or mint. Not doing so would allow
/// for various exploits.
function _validateReleaseOrMint(Pool.ReleaseOrMintInV1 calldata releaseOrMintIn, uint256 localAmount) internal {
if (!isSupportedToken(releaseOrMintIn.localToken)) revert InvalidToken(releaseOrMintIn.localToken);
if (IRMN(i_rmnProxy).isCursed(bytes16(uint128(releaseOrMintIn.remoteChainSelector)))) revert CursedByRMN();
_onlyOffRamp(releaseOrMintIn.remoteChainSelector);
// Validates that the source pool address is configured on this pool.
if (!isRemotePool(releaseOrMintIn.remoteChainSelector, releaseOrMintIn.sourcePoolAddress)) {
revert InvalidSourcePoolAddress(releaseOrMintIn.sourcePoolAddress);
}
_consumeInboundRateLimit(releaseOrMintIn.remoteChainSelector, localAmount);
}
// ================================================================
// │ Token decimals │
// ================================================================
/// @notice Gets the IERC20 token decimals on the local chain.
function getTokenDecimals() public view virtual returns (uint8 decimals) {
return i_tokenDecimals;
}
function _encodeLocalDecimals() internal view virtual returns (bytes memory) {
return abi.encode(i_tokenDecimals);
}
function _parseRemoteDecimals(
bytes memory sourcePoolData
) internal view virtual returns (uint8) {
// Fallback to the local token decimals if the source pool data is empty. This allows for backwards compatibility.
if (sourcePoolData.length == 0) {
return i_tokenDecimals;
}
if (sourcePoolData.length != 32) {
revert InvalidRemoteChainDecimals(sourcePoolData);
}
uint256 remoteDecimals = abi.decode(sourcePoolData, (uint256));
if (remoteDecimals > type(uint8).max) {
revert InvalidRemoteChainDecimals(sourcePoolData);
}
return uint8(remoteDecimals);
}
/// @notice Calculates the local amount based on the remote amount and decimals.
/// @param remoteAmount The amount on the remote chain.
/// @param remoteDecimals The decimals of the token on the remote chain.
/// @return The local amount.
/// @dev This function protects against overflows. If there is a transaction that hits the overflow check, it is
/// probably incorrect as that means the amount cannot be represented on this chain. If the local decimals have been
/// wrongly configured, the token issuer could redeploy the pool with the correct decimals and manually re-execute the
/// CCIP tx to fix the issue.
function _calculateLocalAmount(uint256 remoteAmount, uint8 remoteDecimals) internal view virtual returns (uint256) {
if (remoteDecimals == i_tokenDecimals) {
return remoteAmount;
}
if (remoteDecimals > i_tokenDecimals) {
uint8 decimalsDiff = remoteDecimals - i_tokenDecimals;
if (decimalsDiff > 77) {
// This is a safety check to prevent overflow in the next calculation.
revert OverflowDetected(remoteDecimals, i_tokenDecimals, remoteAmount);
}
// Solidity rounds down so there is no risk of minting more tokens than the remote chain sent.
return remoteAmount / (10 ** decimalsDiff);
}
// This is a safety check to prevent overflow in the next calculation.
// More than 77 would never fit in a uint256 and would cause an overflow. We also check if the resulting amount
// would overflow.
uint8 diffDecimals = i_tokenDecimals - remoteDecimals;
if (diffDecimals > 77 || remoteAmount > type(uint256).max / (10 ** diffDecimals)) {
revert OverflowDetected(remoteDecimals, i_tokenDecimals, remoteAmount);
}
return remoteAmount * (10 ** diffDecimals);
}
// ================================================================
// │ Chain permissions │
// ================================================================
/// @notice Gets the pool address on the remote chain.
/// @param remoteChainSelector Remote chain selector.
/// @dev To support non-evm chains, this value is encoded into bytes
function getRemotePools(
uint64 remoteChainSelector
) public view returns (bytes[] memory) {
bytes32[] memory remotePoolHashes = s_remoteChainConfigs[remoteChainSelector].remotePools.values();
bytes[] memory remotePools = new bytes[](remotePoolHashes.length);
for (uint256 i = 0; i < remotePoolHashes.length; ++i) {
remotePools[i] = s_remotePoolAddresses[remotePoolHashes[i]];
}
return remotePools;
}
/// @notice Checks if the pool address is configured on the remote chain.
/// @param remoteChainSelector Remote chain selector.
/// @param remotePoolAddress The address of the remote pool.
function isRemotePool(uint64 remoteChainSelector, bytes memory remotePoolAddress) public view returns (bool) {
return s_remoteChainConfigs[remoteChainSelector].remotePools.contains(keccak256(remotePoolAddress));
}
/// @notice Gets the token address on the remote chain.
/// @param remoteChainSelector Remote chain selector.
/// @dev To support non-evm chains, this value is encoded into bytes
function getRemoteToken(
uint64 remoteChainSelector
) public view returns (bytes memory) {
return s_remoteChainConfigs[remoteChainSelector].remoteTokenAddress;
}
/// @notice Adds a remote pool for a given chain selector. This could be due to a pool being upgraded on the remote
/// chain. We don't simply want to replace the old pool as there could still be valid inflight messages from the old
/// pool. This function allows for multiple pools to be added for a single chain selector.
/// @param remoteChainSelector The remote chain selector for which the remote pool address is being added.
/// @param remotePoolAddress The address of the new remote pool.
function addRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner {
if (!isSupportedChain(remoteChainSelector)) revert NonExistentChain(remoteChainSelector);
_setRemotePool(remoteChainSelector, remotePoolAddress);
}
/// @notice Removes the remote pool address for a given chain selector.
/// @dev All inflight txs from the remote pool will be rejected after it is removed. To ensure no loss of funds, there
/// should be no inflight txs from the given pool.
function removeRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner {
if (!isSupportedChain(remoteChainSelector)) revert NonExistentChain(remoteChainSelector);
if (!s_remoteChainConfigs[remoteChainSelector].remotePools.remove(keccak256(remotePoolAddress))) {
revert InvalidRemotePoolForChain(remoteChainSelector, remotePoolAddress);
}
emit RemotePoolRemoved(remoteChainSelector, remotePoolAddress);
}
/// @inheritdoc IPoolV1
function isSupportedChain(
uint64 remoteChainSelector
) public view returns (bool) {
return s_remoteChainSelectors.contains(remoteChainSelector);
}
/// @notice Get list of allowed chains
/// @return list of chains.
function getSupportedChains() public view returns (uint64[] memory) {
uint256[] memory uint256ChainSelectors = s_remoteChainSelectors.values();
uint64[] memory chainSelectors = new uint64[](uint256ChainSelectors.length);
for (uint256 i = 0; i < uint256ChainSelectors.length; ++i) {
chainSelectors[i] = uint64(uint256ChainSelectors[i]);
}
return chainSelectors;
}
/// @notice Sets the permissions for a list of chains selectors. Actual senders for these chains
/// need to be allowed on the Router to interact with this pool.
/// @param remoteChainSelectorsToRemove A list of chain selectors to remove.
/// @param chainsToAdd A list of chains and their new permission status & rate limits. Rate limits
/// are only used when the chain is being added through `allowed` being true.
/// @dev Only callable by the owner
function applyChainUpdates(
uint64[] calldata remoteChainSelectorsToRemove,
ChainUpdate[] calldata chainsToAdd
) external virtual onlyOwner {
for (uint256 i = 0; i < remoteChainSelectorsToRemove.length; ++i) {
uint64 remoteChainSelectorToRemove = remoteChainSelectorsToRemove[i];
// If the chain doesn't exist, revert
if (!s_remoteChainSelectors.remove(remoteChainSelectorToRemove)) {
revert NonExistentChain(remoteChainSelectorToRemove);
}
// Remove all remote pool hashes for the chain
bytes32[] memory remotePools = s_remoteChainConfigs[remoteChainSelectorToRemove].remotePools.values();
for (uint256 j = 0; j < remotePools.length; ++j) {
s_remoteChainConfigs[remoteChainSelectorToRemove].remotePools.remove(remotePools[j]);
}
delete s_remoteChainConfigs[remoteChainSelectorToRemove];
emit ChainRemoved(remoteChainSelectorToRemove);
}
for (uint256 i = 0; i < chainsToAdd.length; ++i) {
ChainUpdate memory newChain = chainsToAdd[i];
RateLimiter._validateTokenBucketConfig(newChain.outboundRateLimiterConfig);
RateLimiter._validateTokenBucketConfig(newChain.inboundRateLimiterConfig);
if (newChain.remoteTokenAddress.length == 0) {
revert ZeroAddressNotAllowed();
}
// If the chain already exists, revert
if (!s_remoteChainSelectors.add(newChain.remoteChainSelector)) {
revert ChainAlreadyExists(newChain.remoteChainSelector);
}
RemoteChainConfig storage remoteChainConfig = s_remoteChainConfigs[newChain.remoteChainSelector];
remoteChainConfig.outboundRateLimiterConfig = RateLimiter.TokenBucket({
rate: newChain.outboundRateLimiterConfig.rate,
capacity: newChain.outboundRateLimiterConfig.capacity,
tokens: newChain.outboundRateLimiterConfig.capacity,
lastUpdated: uint32(block.timestamp),
isEnabled: newChain.outboundRateLimiterConfig.isEnabled
});
remoteChainConfig.inboundRateLimiterConfig = RateLimiter.TokenBucket({
rate: newChain.inboundRateLimiterConfig.rate,
capacity: newChain.inboundRateLimiterConfig.capacity,
tokens: newChain.inboundRateLimiterConfig.capacity,
lastUpdated: uint32(block.timestamp),
isEnabled: newChain.inboundRateLimiterConfig.isEnabled
});
remoteChainConfig.remoteTokenAddress = newChain.remoteTokenAddress;
for (uint256 j = 0; j < newChain.remotePoolAddresses.length; ++j) {
_setRemotePool(newChain.remoteChainSelector, newChain.remotePoolAddresses[j]);
}
emit ChainAdded(
newChain.remoteChainSelector,
newChain.remoteTokenAddress,
newChain.outboundRateLimiterConfig,
newChain.inboundRateLimiterConfig
);
}
}
/// @notice Adds a pool address to the allowed remote token pools for a particular chain.
/// @param remoteChainSelector The remote chain selector for which the remote pool address is being added.
/// @param remotePoolAddress The address of the new remote pool.
function _setRemotePool(uint64 remoteChainSelector, bytes memory remotePoolAddress) internal {
if (remotePoolAddress.length == 0) {
revert ZeroAddressNotAllowed();
}
bytes32 poolHash = keccak256(remotePoolAddress);
// Check if the pool already exists.
if (!s_remoteChainConfigs[remoteChainSelector].remotePools.add(poolHash)) {
revert PoolAlreadyAdded(remoteChainSelector, remotePoolAddress);
}
// Add the pool to the mapping to be able to un-hash it later.
s_remotePoolAddresses[poolHash] = remotePoolAddress;
emit RemotePoolAdded(remoteChainSelector, remotePoolAddress);
}
// ================================================================
// │ Rate limiting │
// ================================================================
/// @dev The inbound rate limits should be slightly higher than the outbound rate limits. This is because many chains
/// finalize blocks in batches. CCIP also commits messages in batches: the commit plugin bundles multiple messages in
/// a single merkle root.
/// Imagine the following scenario.
/// - Chain A has an inbound and outbound rate limit of 100 tokens capacity and 1 token per second refill rate.
/// - Chain B has an inbound and outbound rate limit of 100 tokens capacity and 1 token per second refill rate.
///
/// At time 0:
/// - Chain A sends 100 tokens to Chain B.
/// At time 5:
/// - Chain A sends 5 tokens to Chain B.
/// At time 6:
/// The epoch that contains blocks [0-5] is finalized.
/// Both transactions will be included in the same merkle root and become executable at the same time. This means
/// the token pool on chain B requires a capacity of 105 to successfully execute both messages at the same time.
/// The exact additional capacity required depends on the refill rate and the size of the source chain epochs and the
/// CCIP round time. For simplicity, a 5-10% buffer should be sufficient in most cases.
/// @notice Sets the rate limiter admin address.
/// @dev Only callable by the owner.
/// @param rateLimitAdmin The new rate limiter admin address.
function setRateLimitAdmin(
address rateLimitAdmin
) external onlyOwner {
s_rateLimitAdmin = rateLimitAdmin;
emit RateLimitAdminSet(rateLimitAdmin);
}
/// @notice Gets the rate limiter admin address.
function getRateLimitAdmin() external view returns (address) {
return s_rateLimitAdmin;
}
/// @notice Consumes outbound rate limiting capacity in this pool
function _consumeOutboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal {
s_remoteChainConfigs[remoteChainSelector].outboundRateLimiterConfig._consume(amount, address(i_token));
emit OutboundRateLimitConsumed({token: address(i_token), remoteChainSelector: remoteChainSelector, amount: amount});
}
/// @notice Consumes inbound rate limiting capacity in this pool
function _consumeInboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal {
s_remoteChainConfigs[remoteChainSelector].inboundRateLimiterConfig._consume(amount, address(i_token));
emit InboundRateLimitConsumed({token: address(i_token), remoteChainSelector: remoteChainSelector, amount: amount});
}
/// @notice Gets the token bucket with its values for the block it was requested at.
/// @return The token bucket.
function getCurrentOutboundRateLimiterState(
uint64 remoteChainSelector
) external view returns (RateLimiter.TokenBucket memory) {
return s_remoteChainConfigs[remoteChainSelector].outboundRateLimiterConfig._currentTokenBucketState();
}
/// @notice Gets the token bucket with its values for the block it was requested at.
/// @return The token bucket.
function getCurrentInboundRateLimiterState(
uint64 remoteChainSelector
) external view returns (RateLimiter.TokenBucket memory) {
return s_remoteChainConfigs[remoteChainSelector].inboundRateLimiterConfig._currentTokenBucketState();
}
/// @notice Sets multiple chain rate limiter configs.
/// @param remoteChainSelectors The remote chain selector for which the rate limits apply.
/// @param outboundConfigs The new outbound rate limiter config, meaning the onRamp rate limits for the given chain.
/// @param inboundConfigs The new inbound rate limiter config, meaning the offRamp rate limits for the given chain.
function setChainRateLimiterConfigs(
uint64[] calldata remoteChainSelectors,
RateLimiter.Config[] calldata outboundConfigs,
RateLimiter.Config[] calldata inboundConfigs
) external {
if (msg.sender != s_rateLimitAdmin && msg.sender != owner()) revert Unauthorized(msg.sender);
if (remoteChainSelectors.length != outboundConfigs.length || remoteChainSelectors.length != inboundConfigs.length) {
revert MismatchedArrayLengths();
}
for (uint256 i = 0; i < remoteChainSelectors.length; ++i) {
_setRateLimitConfig(remoteChainSelectors[i], outboundConfigs[i], inboundConfigs[i]);
}
}
/// @notice Sets the chain rate limiter config.
/// @param remoteChainSelector The remote chain selector for which the rate limits apply.
/// @param outboundConfig The new outbound rate limiter config, meaning the onRamp rate limits for the given chain.
/// @param inboundConfig The new inbound rate limiter config, meaning the offRamp rate limits for the given chain.
function setChainRateLimiterConfig(
uint64 remoteChainSelector,
RateLimiter.Config memory outboundConfig,
RateLimiter.Config memory inboundConfig
) external {
if (msg.sender != s_rateLimitAdmin && msg.sender != owner()) revert Unauthorized(msg.sender);
_setRateLimitConfig(remoteChainSelector, outboundConfig, inboundConfig);
}
function _setRateLimitConfig(
uint64 remoteChainSelector,
RateLimiter.Config memory outboundConfig,
RateLimiter.Config memory inboundConfig
) internal {
if (!isSupportedChain(remoteChainSelector)) revert NonExistentChain(remoteChainSelector);
RateLimiter._validateTokenBucketConfig(outboundConfig);
s_remoteChainConfigs[remoteChainSelector].outboundRateLimiterConfig._setTokenBucketConfig(outboundConfig);
RateLimiter._validateTokenBucketConfig(inboundConfig);
s_remoteChainConfigs[remoteChainSelector].inboundRateLimiterConfig._setTokenBucketConfig(inboundConfig);
emit ChainConfigured(remoteChainSelector, outboundConfig, inboundConfig);
}
// ================================================================
// │ Access │
// ================================================================
/// @notice Checks whether remote chain selector is configured on this contract, and if the msg.sender
/// is a permissioned onRamp for the given chain on the Router.
function _onlyOnRamp(
uint64 remoteChainSelector
) internal view {
if (!isSupportedChain(remoteChainSelector)) revert ChainNotAllowed(remoteChainSelector);
if (!(msg.sender == s_router.getOnRamp(remoteChainSelector))) revert CallerIsNotARampOnRouter(msg.sender);
}
/// @notice Checks whether remote chain selector is configured on this contract, and if the msg.sender
/// is a permissioned offRamp for the given chain on the Router.
function _onlyOffRamp(
uint64 remoteChainSelector
) internal view {
if (!isSupportedChain(remoteChainSelector)) revert ChainNotAllowed(remoteChainSelector);
if (!s_router.isOffRamp(remoteChainSelector, msg.sender)) revert CallerIsNotARampOnRouter(msg.sender);
}
// ================================================================
// │ Allowlist │
// ================================================================
function _checkAllowList(
address sender
) internal view {
if (i_allowlistEnabled) {
if (!s_allowlist.contains(sender)) {
revert SenderNotAllowed(sender);
}
}
}
/// @notice Gets whether the allowlist functionality is enabled.
/// @return true is enabled, false if not.
function getAllowListEnabled() external view returns (bool) {
return i_allowlistEnabled;
}
/// @notice Gets the allowed addresses.
/// @return The allowed addresses.
function getAllowList() external view returns (address[] memory) {
return s_allowlist.values();
}
/// @notice Apply updates to the allow list.
/// @param removes The addresses to be removed.
/// @param adds The addresses to be added.
function applyAllowListUpdates(address[] calldata removes, address[] calldata adds) external onlyOwner {
_applyAllowListUpdates(removes, adds);
}
/// @notice Internal version of applyAllowListUpdates to allow for reuse in the constructor.
function _applyAllowListUpdates(address[] memory removes, address[] memory adds) internal {
if (!i_allowlistEnabled) revert AllowListNotEnabled();
for (uint256 i = 0; i < removes.length; ++i) {
address toRemove = removes[i];
if (s_allowlist.remove(toRemove)) {
emit AllowListRemove(toRemove);
}
}
for (uint256 i = 0; i < adds.length; ++i) {
address toAdd = adds[i];
if (toAdd == address(0)) {
continue;
}
if (s_allowlist.add(toAdd)) {
emit AllowListAdd(toAdd);
}
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import {IOwnable} from "../interfaces/IOwnable.sol";
/// @notice A minimal contract that implements 2-step ownership transfer and nothing more. It's made to be minimal
/// to reduce the impact of the bytecode size on any contract that inherits from it.
contract Ownable2Step is IOwnable {
/// @notice The pending owner is the address to which ownership may be transferred.
address private s_pendingOwner;
/// @notice The owner is the current owner of the contract.
/// @dev The owner is the second storage variable so any implementing contract could pack other state with it
/// instead of the much less used s_pendingOwner.
address private s_owner;
error OwnerCannotBeZero();
error MustBeProposedOwner();
error CannotTransferToSelf();
error OnlyCallableByOwner();
event OwnershipTransferRequested(address indexed from, address indexed to);
event OwnershipTransferred(address indexed from, address indexed to);
constructor(address newOwner, address pendingOwner) {
if (newOwner == address(0)) {
revert OwnerCannotBeZero();
}
s_owner = newOwner;
if (pendingOwner != address(0)) {
_transferOwnership(pendingOwner);
}
}
/// @notice Get the current owner
function owner() public view override returns (address) {
return s_owner;
}
/// @notice Allows an owner to begin transferring ownership to a new address. The new owner needs to call
/// `acceptOwnership` to accept the transfer before any permissions are changed.
/// @param to The address to which ownership will be transferred.
function transferOwnership(address to) public override onlyOwner {
_transferOwnership(to);
}
/// @notice validate, transfer ownership, and emit relevant events
/// @param to The address to which ownership will be transferred.
function _transferOwnership(address to) private {
if (to == msg.sender) {
revert CannotTransferToSelf();
}
s_pendingOwner = to;
emit OwnershipTransferRequested(s_owner, to);
}
/// @notice Allows an ownership transfer to be completed by the recipient.
function acceptOwnership() external override {
if (msg.sender != s_pendingOwner) {
revert MustBeProposedOwner();
}
address oldOwner = s_owner;
s_owner = msg.sender;
s_pendingOwner = address(0);
emit OwnershipTransferred(oldOwner, msg.sender);
}
/// @notice validate access
function _validateOwnership() internal view {
if (msg.sender != s_owner) {
revert OnlyCallableByOwner();
}
}
/// @notice Reverts if called by anyone other than the contract owner.
modifier onlyOwner() {
_validateOwnership();
_;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import {Ownable2Step} from "./Ownable2Step.sol";
/// @notice Sets the msg.sender to be the owner of the contract and does not set a pending owner.
contract Ownable2StepMsgSender is Ownable2Step {
constructor() Ownable2Step(msg.sender, address(0)) {}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IOwnable {
function owner() external returns (address);
function transferOwnership(address recipient) external;
function acceptOwnership() external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(IERC20 token, address spender, uint256 value) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.
pragma solidity ^0.8.20;
/**
* @dev Library for managing
* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
* types.
*
* Sets have the following properties:
*
* - Elements are added, removed, and checked for existence in constant time
* (O(1)).
* - Elements are enumerated in O(n). No guarantees are made on the ordering.
*
* ```solidity
* contract Example {
* // Add the library methods
* using EnumerableSet for EnumerableSet.AddressSet;
*
* // Declare a set state variable
* EnumerableSet.AddressSet private mySet;
* }
* ```
*
* As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
* and `uint256` (`UintSet`) are supported.
*
* [WARNING]
* ====
* Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
* unusable.
* See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
*
* In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
* array of EnumerableSet.
* ====
*/
library EnumerableSet {
// To implement this library for multiple types with as little code
// repetition as possible, we write it in terms of a generic Set type with
// bytes32 values.
// The Set implementation uses private functions, and user-facing
// implementations (such as AddressSet) are just wrappers around the
// underlying Set.
// This means that we can only create new EnumerableSets for types that fit
// in bytes32.
struct Set {
// Storage of set values
bytes32[] _values;
// Position is the index of the value in the `values` array plus 1.
// Position 0 is used to mean a value is not in the set.
mapping(bytes32 value => uint256) _positions;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function _add(Set storage set, bytes32 value) private returns (bool) {
if (!_contains(set, value)) {
set._values.push(value);
// The value is stored at length-1, but we add 1 to all indexes
// and use 0 as a sentinel value
set._positions[value] = set._values.length;
return true;
} else {
return false;
}
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function _remove(Set storage set, bytes32 value) private returns (bool) {
// We cache the value's position to prevent multiple reads from the same storage slot
uint256 position = set._positions[value];
if (position != 0) {
// Equivalent to contains(set, value)
// To delete an element from the _values array in O(1), we swap the element to delete with the last one in
// the array, and then remove the last element (sometimes called as 'swap and pop').
// This modifies the order of the array, as noted in {at}.
uint256 valueIndex = position - 1;
uint256 lastIndex = set._values.length - 1;
if (valueIndex != lastIndex) {
bytes32 lastValue = set._values[lastIndex];
// Move the lastValue to the index where the value to delete is
set._values[valueIndex] = lastValue;
// Update the tracked position of the lastValue (that was just moved)
set._positions[lastValue] = position;
}
// Delete the slot where the moved value was stored
set._values.pop();
// Delete the tracked position for the deleted slot
delete set._positions[value];
return true;
} else {
return false;
}
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function _contains(Set storage set, bytes32 value) private view returns (bool) {
return set._positions[value] != 0;
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function _length(Set storage set) private view returns (uint256) {
return set._values.length;
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function _at(Set storage set, uint256 index) private view returns (bytes32) {
return set._values[index];
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function _values(Set storage set) private view returns (bytes32[] memory) {
return set._values;
}
// Bytes32Set
struct Bytes32Set {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _add(set._inner, value);
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _remove(set._inner, value);
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
return _contains(set._inner, value);
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(Bytes32Set storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
return _at(set._inner, index);
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
bytes32[] memory store = _values(set._inner);
bytes32[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
// AddressSet
struct AddressSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(AddressSet storage set, address value) internal returns (bool) {
return _add(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(AddressSet storage set, address value) internal returns (bool) {
return _remove(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(AddressSet storage set, address value) internal view returns (bool) {
return _contains(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(AddressSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(AddressSet storage set, uint256 index) internal view returns (address) {
return address(uint160(uint256(_at(set._inner, index))));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(AddressSet storage set) internal view returns (address[] memory) {
bytes32[] memory store = _values(set._inner);
address[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
// UintSet
struct UintSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(UintSet storage set, uint256 value) internal returns (bool) {
return _add(set._inner, bytes32(value));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(UintSet storage set, uint256 value) internal returns (bool) {
return _remove(set._inner, bytes32(value));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(UintSet storage set, uint256 value) internal view returns (bool) {
return _contains(set._inner, bytes32(value));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(UintSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(UintSet storage set, uint256 index) internal view returns (uint256) {
return uint256(_at(set._inner, index));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(UintSet storage set) internal view returns (uint256[] memory) {
bytes32[] memory store = _values(set._inner);
uint256[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
}{
"evmVersion": "paris",
"metadata": {
"appendCBOR": true,
"bytecodeHash": "none",
"useLiteralContent": false
},
"optimizer": {
"enabled": true,
"runs": 80000
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"remappings": [
"@chainlink/contracts/=node_modules/@chainlink/contracts/",
"@chainlink/contracts-ccip/contracts/=node_modules/@chainlink/contracts-ccip/chains/evm/contracts/",
"forge-std/=node_modules/@chainlink/contracts/src/v0.8/vendor/forge-std/src/",
"@openzeppelin/contracts-upgradeable/=node_modules/@openzeppelin/contracts-upgradeable/",
"@openzeppelin/contracts/=node_modules/@openzeppelin/contracts/"
],
"viaIR": true
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint8","name":"localTokenDecimals","type":"uint8"},{"internalType":"address[]","name":"allowlist","type":"address[]"},{"internalType":"address","name":"rmnProxy","type":"address"},{"internalType":"address","name":"router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AllowListNotEnabled","type":"error"},{"inputs":[],"name":"BucketOverfilled","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"CallerIsNotARampOnRouter","type":"error"},{"inputs":[],"name":"CannotTransferToSelf","type":"error"},{"inputs":[{"internalType":"uint64","name":"chainSelector","type":"uint64"}],"name":"ChainAlreadyExists","type":"error"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"}],"name":"ChainNotAllowed","type":"error"},{"inputs":[],"name":"CursedByRMN","type":"error"},{"inputs":[{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.Config","name":"config","type":"tuple"}],"name":"DisabledNonZeroRateLimit","type":"error"},{"inputs":[{"internalType":"uint8","name":"expected","type":"uint8"},{"internalType":"uint8","name":"actual","type":"uint8"}],"name":"InvalidDecimalArgs","type":"error"},{"inputs":[{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.Config","name":"rateLimiterConfig","type":"tuple"}],"name":"InvalidRateLimitRate","type":"error"},{"inputs":[{"internalType":"bytes","name":"sourcePoolData","type":"bytes"}],"name":"InvalidRemoteChainDecimals","type":"error"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"internalType":"bytes","name":"remotePoolAddress","type":"bytes"}],"name":"InvalidRemotePoolForChain","type":"error"},{"inputs":[{"internalType":"bytes","name":"sourcePoolAddress","type":"bytes"}],"name":"InvalidSourcePoolAddress","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"InvalidToken","type":"error"},{"inputs":[],"name":"MismatchedArrayLengths","type":"error"},{"inputs":[],"name":"MustBeProposedOwner","type":"error"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"}],"name":"NonExistentChain","type":"error"},{"inputs":[],"name":"OnlyCallableByOwner","type":"error"},{"inputs":[{"internalType":"uint8","name":"remoteDecimals","type":"uint8"},{"internalType":"uint8","name":"localDecimals","type":"uint8"},{"internalType":"uint256","name":"remoteAmount","type":"uint256"}],"name":"OverflowDetected","type":"error"},{"inputs":[],"name":"OwnerCannotBeZero","type":"error"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"internalType":"bytes","name":"remotePoolAddress","type":"bytes"}],"name":"PoolAlreadyAdded","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"SenderNotAllowed","type":"error"},{"inputs":[{"internalType":"uint256","name":"capacity","type":"uint256"},{"internalType":"uint256","name":"requested","type":"uint256"},{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"TokenMaxCapacityExceeded","type":"error"},{"inputs":[{"internalType":"contract IERC20","name":"expected","type":"address"},{"internalType":"contract IERC20","name":"actual","type":"address"}],"name":"TokenMismatch","type":"error"},{"inputs":[{"internalType":"uint256","name":"minWaitInSeconds","type":"uint256"},{"internalType":"uint256","name":"available","type":"uint256"},{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"TokenRateLimitReached","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"ZeroAddressNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"}],"name":"AllowListAdd","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"}],"name":"AllowListRemove","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"remoteToken","type":"bytes"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"indexed":false,"internalType":"struct RateLimiter.Config","name":"outboundRateLimiterConfig","type":"tuple"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"indexed":false,"internalType":"struct RateLimiter.Config","name":"inboundRateLimiterConfig","type":"tuple"}],"name":"ChainAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"indexed":false,"internalType":"struct RateLimiter.Config","name":"outboundRateLimiterConfig","type":"tuple"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"indexed":false,"internalType":"struct RateLimiter.Config","name":"inboundRateLimiterConfig","type":"tuple"}],"name":"ChainConfigured","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"remoteChainSelector","type":"uint64"}],"name":"ChainRemoved","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"indexed":false,"internalType":"struct RateLimiter.Config","name":"config","type":"tuple"}],"name":"ConfigChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"InboundRateLimitConsumed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"LockedOrBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"OutboundRateLimitConsumed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"OwnershipTransferRequested","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"rateLimitAdmin","type":"address"}],"name":"RateLimitAdminSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ReleasedOrMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"remotePoolAddress","type":"bytes"}],"name":"RemotePoolAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"remotePoolAddress","type":"bytes"}],"name":"RemotePoolRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldRouter","type":"address"},{"indexed":false,"internalType":"address","name":"newRouter","type":"address"}],"name":"RouterUpdated","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"internalType":"bytes","name":"remotePoolAddress","type":"bytes"}],"name":"addRemotePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"removes","type":"address[]"},{"internalType":"address[]","name":"adds","type":"address[]"}],"name":"applyAllowListUpdates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64[]","name":"remoteChainSelectorsToRemove","type":"uint64[]"},{"components":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"internalType":"bytes[]","name":"remotePoolAddresses","type":"bytes[]"},{"internalType":"bytes","name":"remoteTokenAddress","type":"bytes"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.Config","name":"outboundRateLimiterConfig","type":"tuple"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.Config","name":"inboundRateLimiterConfig","type":"tuple"}],"internalType":"struct TokenPool.ChainUpdate[]","name":"chainsToAdd","type":"tuple[]"}],"name":"applyChainUpdates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllowList","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllowListEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"}],"name":"getCurrentInboundRateLimiterState","outputs":[{"components":[{"internalType":"uint128","name":"tokens","type":"uint128"},{"internalType":"uint32","name":"lastUpdated","type":"uint32"},{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.TokenBucket","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"}],"name":"getCurrentOutboundRateLimiterState","outputs":[{"components":[{"internalType":"uint128","name":"tokens","type":"uint128"},{"internalType":"uint32","name":"lastUpdated","type":"uint32"},{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.TokenBucket","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRateLimitAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"}],"name":"getRemotePools","outputs":[{"internalType":"bytes[]","name":"","type":"bytes[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"}],"name":"getRemoteToken","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRmnProxy","outputs":[{"internalType":"address","name":"rmnProxy","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRouter","outputs":[{"internalType":"address","name":"router","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSupportedChains","outputs":[{"internalType":"uint64[]","name":"","type":"uint64[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getToken","outputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenDecimals","outputs":[{"internalType":"uint8","name":"decimals","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"internalType":"bytes","name":"remotePoolAddress","type":"bytes"}],"name":"isRemotePool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"}],"name":"isSupportedChain","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"isSupportedToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"bytes","name":"receiver","type":"bytes"},{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"internalType":"address","name":"originalSender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"localToken","type":"address"}],"internalType":"struct Pool.LockOrBurnInV1","name":"lockOrBurnIn","type":"tuple"}],"name":"lockOrBurn","outputs":[{"components":[{"internalType":"bytes","name":"destTokenAddress","type":"bytes"},{"internalType":"bytes","name":"destPoolData","type":"bytes"}],"internalType":"struct Pool.LockOrBurnOutV1","name":"","type":"tuple"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"bytes","name":"originalSender","type":"bytes"},{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"sourceDenominatedAmount","type":"uint256"},{"internalType":"address","name":"localToken","type":"address"},{"internalType":"bytes","name":"sourcePoolAddress","type":"bytes"},{"internalType":"bytes","name":"sourcePoolData","type":"bytes"},{"internalType":"bytes","name":"offchainTokenData","type":"bytes"}],"internalType":"struct Pool.ReleaseOrMintInV1","name":"releaseOrMintIn","type":"tuple"}],"name":"releaseOrMint","outputs":[{"components":[{"internalType":"uint256","name":"destinationAmount","type":"uint256"}],"internalType":"struct Pool.ReleaseOrMintOutV1","name":"","type":"tuple"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"internalType":"bytes","name":"remotePoolAddress","type":"bytes"}],"name":"removeRemotePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.Config","name":"outboundConfig","type":"tuple"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.Config","name":"inboundConfig","type":"tuple"}],"name":"setChainRateLimiterConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64[]","name":"remoteChainSelectors","type":"uint64[]"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.Config[]","name":"outboundConfigs","type":"tuple[]"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.Config[]","name":"inboundConfigs","type":"tuple[]"}],"name":"setChainRateLimiterConfigs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"rateLimitAdmin","type":"address"}],"name":"setRateLimitAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"typeAndVersion","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"}]Contract Creation Code
610120806040523461029c57614e2d803803809161001d82856104b1565b8339810160c08282031261029c57610034826104d4565b60208301516001600160a01b0381169391929184820361029c5761005a604082016104e8565b60608201519091906001600160401b03811161029c5781019380601f8601121561029c578451946001600160401b03861161049b578560051b9060208201966100a660405198896104b1565b875260208088019282010192831161029c57602001905b828210610483575050506100df60a06100d8608084016104d4565b92016104d4565b92331561047257600180546001600160a01b0319163317905586158015610461575b8015610450575b61043f5760805260c05260405163313ce56760e01b8152602081600481895afa60009181610403575b506103d8575b5060a052600480546001600160a01b0319166001600160a01b03929092169190911790558051151560e08190526102b5575b506001600160a01b03166101008190526040516321df0da760e01b815290602090829060049082905afa9081156102a95760009161026a575b506001600160a01b031690818103610253576040516147969081610697823960805181818161169a0152818161188c0152818161265d0152818161283001528181612b280152612ba0015260a051818181611aca01528181612ab3015281816135960152613619015260c051818181610c630152818161173501526126f9015260e051818181610bf30152818161177901526123de0152610100518181816101bf0152818161191301526129230152f35b63f902523f60e01b60005260045260245260446000fd5b90506020813d6020116102a1575b81610285602093836104b1565b8101031261029c57610296906104d4565b386101a2565b600080fd5b3d9150610278565b6040513d6000823e3d90fd5b90602090604051906102c783836104b1565b60008252600036813760e051156103c75760005b8251811015610342576001906001600160a01b036102f982866104f6565b51168561030582610538565b610312575b5050016102db565b7f800671136ab6cfee9fbe5ed1fb7ca417811aca3cf864800d127b927adedf756691604051908152a1388561030a565b5092905060005b81518110156103bd576001906001600160a01b0361036782856104f6565b511680156103b7578461037982610636565b610387575b50505b01610349565b7f2640d4d76caf8bf478aabfa982fa4e1c4eb71a37f93cd15e80dbc657911546d891604051908152a1388461037e565b50610381565b5050506020610169565b6335f4a7b360e01b60005260046000fd5b60ff1660ff82168181036103ec5750610137565b6332ad3e0760e11b60005260045260245260446000fd5b9091506020813d602011610437575b8161041f602093836104b1565b8101031261029c57610430906104e8565b9038610131565b3d9150610412565b6342bcdf7f60e11b60005260046000fd5b506001600160a01b03821615610108565b506001600160a01b03841615610101565b639b15e16f60e01b60005260046000fd5b60208091610490846104d4565b8152019101906100bd565b634e487b7160e01b600052604160045260246000fd5b601f909101601f19168101906001600160401b0382119082101761049b57604052565b51906001600160a01b038216820361029c57565b519060ff8216820361029c57565b805182101561050a5760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b805482101561050a5760005260206000200190600090565b600081815260036020526040902054801561062f57600019810181811161061957600254600019810191908211610619578181036105c8575b50505060025480156105b2576000190161058c816002610520565b8154906000199060031b1b19169055600255600052600360205260006040812055600190565b634e487b7160e01b600052603160045260246000fd5b6106016105d96105ea936002610520565b90549060031b1c9283926002610520565b819391549060031b91821b91600019901b19161790565b90556000526003602052604060002055388080610571565b634e487b7160e01b600052601160045260246000fd5b5050600090565b80600052600360205260406000205415600014610690576002546801000000000000000081101561049b576106776105ea8260018594016002556002610520565b9055600254906000526003602052604060002055600190565b5060009056fe608080604052600436101561001357600080fd5b60003560e01c90816301ffc9a714612c6857508063181f5a7714612bc457806321df0da714612b55578063240028e814612ad757806324f65ee714612a7b57806339077537146125895780634c5ef0ed1461252657806354c8a4f3146123ac57806362ddd3c4146123295780636d3d1a58146122d757806379ba5097146121ee5780637d54534e146121435780638926f54f146120e05780638da5cb5b1461208e578063962d402014611f1a5780639a4575b9146115f3578063a42a7b8b14611467578063a7cd63b714611395578063acfecf9114611270578063af58d59f14611208578063b0f479a1146111b6578063b794658014611160578063c0d786551461105f578063c4bffe2b14610f11578063c75eea9c14610e4a578063cf7401f314610c87578063dc0bd97114610c18578063e0351e1314610bbd578063e8a1da17146102d8578063f2fde38b146101e85763f36675171461017457600080fd5b346101e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b600080fd5b346101e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e35773ffffffffffffffffffffffffffffffffffffffff610234612db4565b61023c61373b565b163381146102ae57807fffffffffffffffffffffffff0000000000000000000000000000000000000000600054161760005573ffffffffffffffffffffffffffffffffffffffff600154167fed8889f560326eb138920d842192f0eb3dd22b4f139c87a2c57538e05bae1278600080a3005b7fdad89dca0000000000000000000000000000000000000000000000000000000060005260046000fd5b346101e3576102e636612f8e565b9190926102f161373b565b6000905b828210610a145750505060009063ffffffff4216907ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffee184360301925b81811015610a12576000918160051b86013585811215610a0e5786019061012082360312610a0e576040519561036687612e55565b823567ffffffffffffffff81168103610a0a578752602083013567ffffffffffffffff8111610a0a5783019536601f88011215610a0a578635966103a9886131df565b976103b7604051998a612e8d565b8089526020808a019160051b83010190368211610a065760208301905b8282106109d3575050505060208801968752604084013567ffffffffffffffff81116109cf576104079036908601612f3f565b926040890193845261043161041f36606088016130cf565b9560608b0196875260c03691016130cf565b9660808a019788526104438651613b88565b61044d8851613b88565b845151156109a75761046967ffffffffffffffff8b51166143c7565b156109705767ffffffffffffffff8a511681526007602052604081206105a987516fffffffffffffffffffffffffffffffff604082015116906105646fffffffffffffffffffffffffffffffff602083015116915115158360806040516104cf81612e55565b858152602081018c905260408101849052606081018690520152855474ff000000000000000000000000000000000000000091151560a01b919091167fffffffffffffffffffffff0000000000000000000000000000000000000000009091166fffffffffffffffffffffffffffffffff84161773ffffffff0000000000000000000000000000000060808b901b1617178555565b60809190911b7fffffffffffffffffffffffffffffffff00000000000000000000000000000000166fffffffffffffffffffffffffffffffff91909116176001830155565b6106cf89516fffffffffffffffffffffffffffffffff6040820151169061068a6fffffffffffffffffffffffffffffffff602083015116915115158360806040516105f381612e55565b858152602081018c9052604081018490526060810186905201526002860180547fffffffffffffffffffffff000000000000000000000000000000000000000000166fffffffffffffffffffffffffffffffff85161773ffffffff0000000000000000000000000000000060808c901b161791151560a01b74ff000000000000000000000000000000000000000016919091179055565b60809190911b7fffffffffffffffffffffffffffffffff00000000000000000000000000000000166fffffffffffffffffffffffffffffffff91909116176003830155565b6004865191019080519067ffffffffffffffff8211610943576106f283546132c2565b601f8111610908575b50602090601f831160011461086957610749929185918361085e575b50507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8260011b9260031b1c19161790565b90555b88518051821015610781579061077b6001926107748367ffffffffffffffff8f5116926132ae565b5190613786565b0161074c565b5050977f8d340f17e19058004c20453540862a9c62778504476f6756755cb33bcd6c38c293919997509561084f67ffffffffffffffff600197969498511692519351915161081b6107e660405196879687526101006020880152610100870190612d55565b9360408601906fffffffffffffffffffffffffffffffff60408092805115158552826020820151166020860152015116910152565b60a08401906fffffffffffffffffffffffffffffffff60408092805115158552826020820151166020860152015116910152565b0390a101939193929092610331565b015190508f80610717565b83855281852091907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08416865b8181106108f057509084600195949392106108b9575b505050811b01905561074c565b01517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88460031b161c191690558e80806108ac565b92936020600181928786015181550195019301610896565b6109339084865260208620601f850160051c81019160208610610939575b601f0160051c01906134c9565b8e6106fb565b9091508190610926565b6024847f4e487b710000000000000000000000000000000000000000000000000000000081526041600452fd5b60249067ffffffffffffffff8b51167f1d5ad3c5000000000000000000000000000000000000000000000000000000008252600452fd5b807f8579befe0000000000000000000000000000000000000000000000000000000060049252fd5b8680fd5b813567ffffffffffffffff8111610a02576020916109f78392833691890101612f3f565b8152019101906103d4565b8a80fd5b8880fd5b8580fd5b8380fd5b005b909267ffffffffffffffff610a35610a3086868699979961325f565b61318d565b1692610a40846140fb565b15610b8f57836000526007602052610a5e6005604060002001613f02565b9260005b8451811015610a9a57600190866000526007602052610a936005604060002001610a8c83896132ae565b5190614226565b5001610a62565b5093909491959250806000526007602052600560406000206000815560006001820155600060028201556000600382015560048101610ad981546132c2565b9081610b4c575b5050018054906000815581610b2b575b5050907f5204aec90a3c794d8e90fded8b46ae9c7c552803e7e832e0c1d358396d8599166020600193604051908152a10190919392936102f5565b6000526020600020908101905b81811015610af05760008155600101610b38565b81601f60009311600114610b645750555b8880610ae0565b81835260208320610b7f91601f01861c8101906001016134c9565b8082528160208120915555610b5d565b837f1e670e4b0000000000000000000000000000000000000000000000000000000060005260045260246000fd5b346101e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e35760206040517f000000000000000000000000000000000000000000000000000000000000000015158152f35b346101e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b346101e35760e07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357610cbe612dd7565b60607fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdc3601126101e357604051610cf481612e71565b60243580151581036101e35781526044356fffffffffffffffffffffffffffffffff811681036101e35760208201526064356fffffffffffffffffffffffffffffffff811681036101e357604082015260607fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7c3601126101e35760405190610d7b82612e71565b60843580151581036101e357825260a4356fffffffffffffffffffffffffffffffff811681036101e357602083015260c4356fffffffffffffffffffffffffffffffff811681036101e357604083015273ffffffffffffffffffffffffffffffffffffffff6009541633141580610e28575b610dfa57610a12926139c6565b7f8e4a23d6000000000000000000000000000000000000000000000000000000006000523360045260246000fd5b5073ffffffffffffffffffffffffffffffffffffffff60015416331415610ded565b346101e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e35767ffffffffffffffff610e8a612dd7565b610e92613416565b50166000526007602052610f0d610eb4610eaf6040600020613441565b613b03565b6040519182918291909160806fffffffffffffffffffffffffffffffff8160a084019582815116855263ffffffff6020820151166020860152604081015115156040860152826060820151166060860152015116910152565b0390f35b346101e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e3576040516005548082528160208101600560005260206000209260005b818110611046575050610f7192500382612e8d565b805190610f96610f80836131df565b92610f8e6040519485612e8d565b8084526131df565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe060208401920136833760005b8151811015610ff6578067ffffffffffffffff610fe3600193856132ae565b5116610fef82876132ae565b5201610fc4565b5050906040519182916020830190602084525180915260408301919060005b818110611023575050500390f35b825167ffffffffffffffff16845285945060209384019390920191600101611015565b8454835260019485019486945060209093019201610f5c565b346101e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357611096612db4565b61109e61373b565b73ffffffffffffffffffffffffffffffffffffffff811690811561113657600480547fffffffffffffffffffffffff000000000000000000000000000000000000000081169390931790556040805173ffffffffffffffffffffffffffffffffffffffff93841681529190921660208201527f02dc5c233404867c793b749c6d644beb2277536d18a7e7974d3f238e4c6f16849190a1005b7f8579befe0000000000000000000000000000000000000000000000000000000060005260046000fd5b346101e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357610f0d6111a261119d612dd7565b6134a7565b604051918291602083526020830190612d55565b346101e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357602073ffffffffffffffffffffffffffffffffffffffff60045416604051908152f35b346101e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e35767ffffffffffffffff611248612dd7565b611250613416565b50166000526007602052610f0d610eb4610eaf6002604060002001613441565b346101e35767ffffffffffffffff61128736612ffe565b92909161129261373b565b16906112ab826000526006602052604060002054151590565b15611367578160005260076020526112dc60056040600020016112cf368685612f08565b6020815191012090614226565b15611320577f52d00ee4d9bd51b40168f2afc5848837288ce258784ad914278791464b3f4d76919261131b6040519283926020845260208401916133d7565b0390a2005b611363906040519384937f74f23c7c00000000000000000000000000000000000000000000000000000000855260048501526040602485015260448401916133d7565b0390fd5b507f1e670e4b0000000000000000000000000000000000000000000000000000000060005260045260246000fd5b346101e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e35760405160025490818152602081018092600260005260206000209060005b81811061145157505050816113f8910382612e8d565b6040519182916020830190602084525180915260408301919060005b818110611422575050500390f35b825173ffffffffffffffffffffffffffffffffffffffff16845285945060209384019390920191600101611414565b82548452602090930192600192830192016113e2565b346101e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e35767ffffffffffffffff6114a7612dd7565b1660005260076020526114c06005604060002001613f02565b8051907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe06115066114f0846131df565b936114fe6040519586612e8d565b8085526131df565b0160005b8181106115e257505060005b815181101561155e578061152c600192846132ae565b5160005260086020526115426040600020613315565b61154c82866132ae565b5261155781856132ae565b5001611516565b826040518091602082016020835281518091526040830190602060408260051b8601019301916000905b82821061159757505050500390f35b919360206115d2827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc060019597998495030186528851612d55565b9601920192018594939192611588565b80606060208093870101520161150a565b346101e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e35760043567ffffffffffffffff81116101e35760a07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc82360301126101e3576060602060405161167081612e39565b8281520152608481016116828161316c565b73ffffffffffffffffffffffffffffffffffffffff807f000000000000000000000000000000000000000000000000000000000000000016911603611ece57506024810177ffffffffffffffff000000000000000000000000000000006116e88261318d565b60801b16604051907f2cbc26bb000000000000000000000000000000000000000000000000000000008252600482015260208160248173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa908115611d5e57600091611eaf575b50611e85576117776044830161316c565b7f0000000000000000000000000000000000000000000000000000000000000000611e2f575b5067ffffffffffffffff6117b08261318d565b166117c8816000526006602052604060002054151590565b15611e0257602073ffffffffffffffffffffffffffffffffffffffff60045416916024604051809481937fa8d87a3b00000000000000000000000000000000000000000000000000000000835260048301525afa908115611d5e57600091611d98575b5073ffffffffffffffffffffffffffffffffffffffff163303611d6a5767ffffffffffffffff91606461185d8361318d565b910135928391168060005260076020526118b4604060002073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016958691614476565b6040805173ffffffffffffffffffffffffffffffffffffffff86168152602081018490527fff0133389f9bb82d5b9385826160eaf2328039f6fa950eeb8cf0836da81789449190a273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169281158015611cc4575b15611c40576040517f095ea7b3000000000000000000000000000000000000000000000000000000006020820190815273ffffffffffffffffffffffffffffffffffffffff86166024830152604480830185905282529490611a16906119a4606482612e8d565b6000806040988951936119b78b86612e8d565b602085527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65646020860152519082885af13d15611c38573d906119f882612ece565b91611a058a519384612e8d565b82523d6000602084013e5b856146bd565b805180611b97575b5050602060009160248751809481937f42966c680000000000000000000000000000000000000000000000000000000083528860048401525af18015611b8c5793610f0d937ff33bc26b4413b0e7f19f1ea739fdf99098c0061f1f87d954b11f5293fad9ae106060611ac29561119d95611b2c9a99611b5d575b5067ffffffffffffffff611aab8661318d565b1693895191825233602083015289820152a261318d565b9180519060ff7f000000000000000000000000000000000000000000000000000000000000000016602083015260208252611afd8183612e8d565b805193611b0985612e39565b845260208401918252805194859460208652518260208701526060860190612d55565b9151907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08584030190850152612d55565b611b7e9060203d602011611b85575b611b768183612e8d565b810190613723565b508a611a98565b503d611b6c565b85513d6000823e3d90fd5b90602080611ba9938301019101613723565b15611bb5578580611a1e565b608485517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152fd5b606090611a10565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152fd5b506040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff85166024820152602081604481855afa908115611d5e57600091611d2c575b501561193d565b90506020813d602011611d56575b81611d4760209383612e8d565b810103126101e3575185611d25565b3d9150611d3a565b6040513d6000823e3d90fd5b7f728fe07b000000000000000000000000000000000000000000000000000000006000523360045260246000fd5b6020813d602011611dfa575b81611db160209383612e8d565b81010312611df657519073ffffffffffffffffffffffffffffffffffffffff82168203611df3575073ffffffffffffffffffffffffffffffffffffffff61182b565b80fd5b5080fd5b3d9150611da4565b7fa9902c7e0000000000000000000000000000000000000000000000000000000060005260045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff1680600052600360205260406000205461179d577fd0d259760000000000000000000000000000000000000000000000000000000060005260045260246000fd5b7f53ad11d80000000000000000000000000000000000000000000000000000000060005260046000fd5b611ec8915060203d602011611b8557611b768183612e8d565b83611766565b611eec73ffffffffffffffffffffffffffffffffffffffff9161316c565b7f961c9a4f000000000000000000000000000000000000000000000000000000006000521660045260246000fd5b346101e35760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e35760043567ffffffffffffffff81116101e357611f69903690600401612f5d565b9060243567ffffffffffffffff81116101e357611f8a903690600401613081565b9060443567ffffffffffffffff81116101e357611fab903690600401613081565b73ffffffffffffffffffffffffffffffffffffffff600954163314158061206c575b610dfa57838614801590612062575b6120385760005b868110611fec57005b80612032612000610a306001948b8b61325f565b61200b83898961329e565b61202c61202461201c86898b61329e565b9236906130cf565b9136906130cf565b916139c6565b01611fe3565b7f568efce20000000000000000000000000000000000000000000000000000000060005260046000fd5b5080861415611fdc565b5073ffffffffffffffffffffffffffffffffffffffff60015416331415611fcd565b346101e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357602073ffffffffffffffffffffffffffffffffffffffff60015416604051908152f35b346101e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357602061213967ffffffffffffffff612125612dd7565b166000526006602052604060002054151590565b6040519015158152f35b346101e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e3577f44676b5284b809a22248eba0da87391d79098be38bb03154be88a58bf4d09174602073ffffffffffffffffffffffffffffffffffffffff6121b2612db4565b6121ba61373b565b16807fffffffffffffffffffffffff00000000000000000000000000000000000000006009541617600955604051908152a1005b346101e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e35760005473ffffffffffffffffffffffffffffffffffffffff811633036122ad577fffffffffffffffffffffffff00000000000000000000000000000000000000006001549133828416176001551660005573ffffffffffffffffffffffffffffffffffffffff3391167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3005b7f02b543c60000000000000000000000000000000000000000000000000000000060005260046000fd5b346101e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357602073ffffffffffffffffffffffffffffffffffffffff60095416604051908152f35b346101e35761233736612ffe565b61234292919261373b565b67ffffffffffffffff8216612364816000526006602052604060002054151590565b1561237f5750610a1292612379913691612f08565b90613786565b7f1e670e4b0000000000000000000000000000000000000000000000000000000060005260045260246000fd5b346101e3576123d46123dc6123c036612f8e565b94916123cd93919361373b565b36916131f7565b9236916131f7565b7f0000000000000000000000000000000000000000000000000000000000000000156124fc5760005b8251811015612478578073ffffffffffffffffffffffffffffffffffffffff612430600193866132ae565b511661243b81613f65565b612447575b5001612405565b60207f800671136ab6cfee9fbe5ed1fb7ca417811aca3cf864800d127b927adedf756691604051908152a184612440565b5060005b8151811015610a12578073ffffffffffffffffffffffffffffffffffffffff6124a7600193856132ae565b511680156124f6576124b881614367565b6124c5575b505b0161247c565b60207f2640d4d76caf8bf478aabfa982fa4e1c4eb71a37f93cd15e80dbc657911546d891604051908152a1836124bd565b506124bf565b7f35f4a7b30000000000000000000000000000000000000000000000000000000060005260046000fd5b346101e35760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e35761255d612dd7565b60243567ffffffffffffffff81116101e357602091612583612139923690600401612f3f565b906131a2565b346101e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e35760043567ffffffffffffffff81116101e35780600401906101007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc82360301126101e357600060405161260a81612dee565b5261263761262d61262861262160c485018661311b565b3691612f08565b613522565b6064830135613616565b90608481016126458161316c565b73ffffffffffffffffffffffffffffffffffffffff807f000000000000000000000000000000000000000000000000000000000000000016911603611ece5750602481019277ffffffffffffffff000000000000000000000000000000006126ac8561318d565b60801b16604051907f2cbc26bb000000000000000000000000000000000000000000000000000000008252600482015260208160248173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa908115611d5e57600091612a5c575b50611e855767ffffffffffffffff6127418561318d565b16612759816000526006602052604060002054151590565b15611e0257602073ffffffffffffffffffffffffffffffffffffffff60045416916044604051809481937f83826b2b00000000000000000000000000000000000000000000000000000000835260048301523360248301525afa908115611d5e57600091612a3d575b5015611d6a576127d18461318d565b906127e760a4840192612583612621858561311b565b156129f65750506044829167ffffffffffffffff6128048661318d565b16806000526007602052612858600260406000200173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016958691614476565b6040805173ffffffffffffffffffffffffffffffffffffffff86168152602081018790527f50f6fbee3ceedce6b7fd7eaef18244487867e6718aec7208187efb6b7908c14c9190a201926129086020846128b18761316c565b60405193849283927f40c10f19000000000000000000000000000000000000000000000000000000008452600484016020909392919373ffffffffffffffffffffffffffffffffffffffff60408201951681520152565b0381600073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165af18015611d5e5760209573ffffffffffffffffffffffffffffffffffffffff6129a96129a37ffc5e3a5bddc11d92c2dc20fae6f7d5eb989f056be35239f7de7e86150609abc09660809667ffffffffffffffff966129d9575b5061318d565b9261316c565b60405196875233898801521660408601528560608601521692a2806040516129d081612dee565b52604051908152f35b6129ef908c3d8e11611b8557611b768183612e8d565b508b61299d565b612a00925061311b565b6113636040519283927f24eb47e50000000000000000000000000000000000000000000000000000000084526020600485015260248401916133d7565b612a56915060203d602011611b8557611b768183612e8d565b856127c2565b612a75915060203d602011611b8557611b768183612e8d565b8561272a565b346101e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357602060405160ff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b346101e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e3576020612b10612db4565b73ffffffffffffffffffffffffffffffffffffffff807f0000000000000000000000000000000000000000000000000000000000000000169116146040519015158152f35b346101e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b346101e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357610f0d604051612c04606082612e8d565b602981527f4275726e4d696e745769746845787465726e616c4d696e746572546f6b656e5060208201527f6f6f6c20312e362e3000000000000000000000000000000000000000000000006040820152604051918291602083526020830190612d55565b346101e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357600435907fffffffff0000000000000000000000000000000000000000000000000000000082168092036101e357817faff2afbf0000000000000000000000000000000000000000000000000000000060209314908115612d2b575b8115612d01575b5015158152f35b7f01ffc9a70000000000000000000000000000000000000000000000000000000091501483612cfa565b7f0e64dd290000000000000000000000000000000000000000000000000000000081149150612cf3565b919082519283825260005b848110612d9f5750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8460006020809697860101520116010190565b80602080928401015182828601015201612d60565b6004359073ffffffffffffffffffffffffffffffffffffffff821682036101e357565b6004359067ffffffffffffffff821682036101e357565b6020810190811067ffffffffffffffff821117612e0a57604052565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040810190811067ffffffffffffffff821117612e0a57604052565b60a0810190811067ffffffffffffffff821117612e0a57604052565b6060810190811067ffffffffffffffff821117612e0a57604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117612e0a57604052565b67ffffffffffffffff8111612e0a57601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b929192612f1482612ece565b91612f226040519384612e8d565b8294818452818301116101e3578281602093846000960137010152565b9080601f830112156101e357816020612f5a93359101612f08565b90565b9181601f840112156101e35782359167ffffffffffffffff83116101e3576020808501948460051b0101116101e357565b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8201126101e35760043567ffffffffffffffff81116101e35781612fd791600401612f5d565b929092916024359067ffffffffffffffff82116101e357612ffa91600401612f5d565b9091565b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8201126101e35760043567ffffffffffffffff811681036101e3579160243567ffffffffffffffff81116101e357826023820112156101e35780600401359267ffffffffffffffff84116101e357602484830101116101e3576024019190565b9181601f840112156101e35782359167ffffffffffffffff83116101e357602080850194606085020101116101e357565b35906fffffffffffffffffffffffffffffffff821682036101e357565b91908260609103126101e3576040516130e781612e71565b809280359081151582036101e3576040613116918193855261310b602082016130b2565b6020860152016130b2565b910152565b9035907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1813603018212156101e3570180359067ffffffffffffffff82116101e3576020019181360383136101e357565b3573ffffffffffffffffffffffffffffffffffffffff811681036101e35790565b3567ffffffffffffffff811681036101e35790565b9067ffffffffffffffff612f5a92166000526007602052600560406000200190602081519101209060019160005201602052604060002054151590565b67ffffffffffffffff8111612e0a5760051b60200190565b9291613202826131df565b936132106040519586612e8d565b602085848152019260051b81019182116101e357915b81831061323257505050565b823573ffffffffffffffffffffffffffffffffffffffff811681036101e357815260209283019201613226565b919081101561326f5760051b0190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b919081101561326f576060020190565b805182101561326f5760209160051b010190565b90600182811c9216801561330b575b60208310146132dc57565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b91607f16916132d1565b9060405191826000825492613329846132c2565b80845293600181169081156133975750600114613350575b5061334e92500383612e8d565b565b90506000929192526020600020906000915b81831061337b57505090602061334e9282010138613341565b6020919350806001915483858901015201910190918492613362565b6020935061334e9592507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0091501682840152151560051b82010138613341565b601f82602094937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0938186528686013760008582860101520116010190565b6040519061342382612e55565b60006080838281528260208201528260408201528260608201520152565b9060405161344e81612e55565b60806001829460ff81546fffffffffffffffffffffffffffffffff8116865263ffffffff81861c16602087015260a01c161515604085015201546fffffffffffffffffffffffffffffffff81166060840152811c910152565b67ffffffffffffffff166000526007602052612f5a6004604060002001613315565b8181106134d4575050565b600081556001016134c9565b818102929181159184041417156134f357565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80518015613592576020036135545780516020828101918301839003126101e357519060ff8211613554575060ff1690565b611363906040519182917f953576f7000000000000000000000000000000000000000000000000000000008352602060048401526024830190612d55565b50507f000000000000000000000000000000000000000000000000000000000000000090565b9060ff8091169116039060ff82116134f357565b60ff16604d81116134f357600a0a90565b81156135e7570490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b907f00000000000000000000000000000000000000000000000000000000000000009060ff82169060ff81169282841461371c578284116136f2579061365b916135b8565b91604d60ff84161180156136b9575b6136835750509061367d612f5a926135cc565b906134e0565b9091507fa9cb113d0000000000000000000000000000000000000000000000000000000060005260045260245260445260646000fd5b506136c3836135cc565b80156135e7577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04841161366a565b6136fb916135b8565b91604d60ff84161161368357505090613716612f5a926135cc565b906135dd565b5050505090565b908160209103126101e3575180151581036101e35790565b73ffffffffffffffffffffffffffffffffffffffff60015416330361375c57565b7f2b5c74de0000000000000000000000000000000000000000000000000000000060005260046000fd5b908051156111365767ffffffffffffffff815160208301209216918260005260076020526137bb816005604060002001614421565b156139825760005260086020526040600020815167ffffffffffffffff8111612e0a576137e882546132c2565b601f8111613950575b506020601f821160011461388a5791613864827f7d628c9a1796743d365ab521a8b2a4686e419b3269919dc9145ea2ce853b54ea959361387a9560009161387f575b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8260011b9260031b1c19161790565b9055604051918291602083526020830190612d55565b0390a2565b905084015138613833565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe082169083600052806000209160005b81811061393857509261387a9492600192827f7d628c9a1796743d365ab521a8b2a4686e419b3269919dc9145ea2ce853b54ea989610613901575b5050811b0190556111a2565b8501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88460031b161c1916905538806138f5565b9192602060018192868a0151815501940192016138ba565b61397c90836000526020600020601f840160051c8101916020851061093957601f0160051c01906134c9565b386137f1565b50906113636040519283927f393b8ad20000000000000000000000000000000000000000000000000000000084526004840152604060248401526044830190612d55565b67ffffffffffffffff166000818152600660205260409020549092919015613ac85791613ac560e092613a9185613a1d7f0350d63aa5f270e01729d00d627eeb8f3429772b1818c016c66a588a864f912b97613b88565b846000526007602052613a34816040600020613ccf565b613a3d83613b88565b846000526007602052613a57836002604060002001613ccf565b60405194855260208501906fffffffffffffffffffffffffffffffff60408092805115158552826020820151166020860152015116910152565b60808301906fffffffffffffffffffffffffffffffff60408092805115158552826020820151166020860152015116910152565ba1565b827f1e670e4b0000000000000000000000000000000000000000000000000000000060005260045260246000fd5b919082039182116134f357565b613b0b613416565b506fffffffffffffffffffffffffffffffff6060820151166fffffffffffffffffffffffffffffffff8083511691613b686020850193613b62613b5563ffffffff87511642613af6565b85608089015116906134e0565b9061435a565b80821015613b8157505b16825263ffffffff4216905290565b9050613b72565b805115613c28576fffffffffffffffffffffffffffffffff6040820151166fffffffffffffffffffffffffffffffff60208301511610613bc55750565b606490613c26604051917f8020d12400000000000000000000000000000000000000000000000000000000835260048301906fffffffffffffffffffffffffffffffff60408092805115158552826020820151166020860152015116910152565bfd5b6fffffffffffffffffffffffffffffffff60408201511615801590613cb0575b613c4f5750565b606490613c26604051917fd68af9cc00000000000000000000000000000000000000000000000000000000835260048301906fffffffffffffffffffffffffffffffff60408092805115158552826020820151166020860152015116910152565b506fffffffffffffffffffffffffffffffff6020820151161515613c48565b7f9ea3374b67bf275e6bb9c8ae68f9cae023e1c528b4b27e092f0bb209d3531c1991613e086060928054613d0c63ffffffff8260801c1642613af6565b9081613e47575b50506fffffffffffffffffffffffffffffffff6001816020860151169282815416808510600014613e3f57508280855b16167fffffffffffffffffffffffffffffffff00000000000000000000000000000000825416178155613dbc8651151582907fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff74ff0000000000000000000000000000000000000000835492151560a01b169116179055565b60408601517fffffffffffffffffffffffffffffffff0000000000000000000000000000000060809190911b16939092166fffffffffffffffffffffffffffffffff1692909217910155565b613ac560405180926fffffffffffffffffffffffffffffffff60408092805115158552826020820151166020860152015116910152565b838091613d43565b6fffffffffffffffffffffffffffffffff91613e7c839283613e756001880154948286169560801c906134e0565b911661435a565b80821015613efb57505b83547fffffffffffffffffffffffff00000000ffffffffffffffffffffffffffffffff9290911692909216167fffffffffffffffffffffffff0000000000000000000000000000000000000000909116174260801b73ffffffff00000000000000000000000000000000161781553880613d13565b9050613e86565b906040519182815491828252602082019060005260206000209260005b818110613f3457505061334e92500383612e8d565b8454835260019485019487945060209093019201613f1f565b805482101561326f5760005260206000200190600090565b60008181526003602052604090205480156140f4577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81018181116134f357600254907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82019182116134f357818103614085575b5050506002548015614056577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01614013816002613f4d565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82549160031b1b19169055600255600052600360205260006040812055600190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6140dc6140966140a7936002613f4d565b90549060031b1c9283926002613f4d565b81939154907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9060031b92831b921b19161790565b90556000526003602052604060002055388080613fda565b5050600090565b60008181526006602052604090205480156140f4577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81018181116134f357600554907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82019182116134f3578181036141ec575b5050506005548015614056577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016141a9816005613f4d565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82549160031b1b19169055600555600052600660205260006040812055600190565b61420e6141fd6140a7936005613f4d565b90549060031b1c9283926005613f4d565b90556000526006602052604060002055388080614170565b9060018201918160005282602052604060002054801515600014614351577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81018181116134f3578254907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82019182116134f35781810361431a575b50505080548015614056577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01906142db8282613f4d565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82549160031b1b191690555560005260205260006040812055600190565b61433a61432a6140a79386613f4d565b90549060031b1c92839286613f4d565b9055600052836020526040600020553880806142a3565b50505050600090565b919082018092116134f357565b806000526003602052604060002054156000146143c15760025468010000000000000000811015612e0a576143a86140a78260018594016002556002613f4d565b9055600254906000526003602052604060002055600190565b50600090565b806000526006602052604060002054156000146143c15760055468010000000000000000811015612e0a576144086140a78260018594016005556005613f4d565b9055600554906000526006602052604060002055600190565b60008281526001820160205260409020546140f45780549068010000000000000000821015612e0a578261445f6140a7846001809601855584613f4d565b905580549260005201602052604060002055600190565b9182549060ff8260a01c161580156146b5575b6146af576fffffffffffffffffffffffffffffffff821691600185019081546144ce63ffffffff6fffffffffffffffffffffffffffffffff83169360801c1642613af6565b9081614611575b50508481106145c5575083831061452f5750506145046fffffffffffffffffffffffffffffffff928392613af6565b16167fffffffffffffffffffffffffffffffff00000000000000000000000000000000825416179055565b5460801c9161453e8185613af6565b927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101908082116134f35761458c6145919273ffffffffffffffffffffffffffffffffffffffff9661435a565b6135dd565b7fd0c8d23a000000000000000000000000000000000000000000000000000000006000526004526024521660445260646000fd5b828573ffffffffffffffffffffffffffffffffffffffff927f1a76572a000000000000000000000000000000000000000000000000000000006000526004526024521660445260646000fd5b8286929396116146855761462c92613b629160801c906134e0565b808410156146805750825b85547fffffffffffffffffffffffff00000000ffffffffffffffffffffffffffffffff164260801b73ffffffff00000000000000000000000000000000161786559238806144d5565b614637565b7f9725942a0000000000000000000000000000000000000000000000000000000060005260046000fd5b50505050565b508215614489565b9192901561473857508151156146d1575090565b3b156146da5790565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152fd5b82519091501561474b5750805190602001fd5b611363906040519182917f08c379a0000000000000000000000000000000000000000000000000000000008352602060048401526024830190612d5556fea164736f6c634300081a000a000000000000000000000000f4a53c1f548b8a1de318e9cc33eafcd8fa17b99d000000000000000000000000111111d2bf19e43c34263401e0cad979ed1cdb61000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000099dfca5d88f4d9c023531f4403966b8d61562acd00000000000000000000000033566fe5976aaa420f3d5c64996641fc3858cadb0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608080604052600436101561001357600080fd5b60003560e01c90816301ffc9a714612c6857508063181f5a7714612bc457806321df0da714612b55578063240028e814612ad757806324f65ee714612a7b57806339077537146125895780634c5ef0ed1461252657806354c8a4f3146123ac57806362ddd3c4146123295780636d3d1a58146122d757806379ba5097146121ee5780637d54534e146121435780638926f54f146120e05780638da5cb5b1461208e578063962d402014611f1a5780639a4575b9146115f3578063a42a7b8b14611467578063a7cd63b714611395578063acfecf9114611270578063af58d59f14611208578063b0f479a1146111b6578063b794658014611160578063c0d786551461105f578063c4bffe2b14610f11578063c75eea9c14610e4a578063cf7401f314610c87578063dc0bd97114610c18578063e0351e1314610bbd578063e8a1da17146102d8578063f2fde38b146101e85763f36675171461017457600080fd5b346101e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357602060405173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000f4a53c1f548b8a1de318e9cc33eafcd8fa17b99d168152f35b600080fd5b346101e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e35773ffffffffffffffffffffffffffffffffffffffff610234612db4565b61023c61373b565b163381146102ae57807fffffffffffffffffffffffff0000000000000000000000000000000000000000600054161760005573ffffffffffffffffffffffffffffffffffffffff600154167fed8889f560326eb138920d842192f0eb3dd22b4f139c87a2c57538e05bae1278600080a3005b7fdad89dca0000000000000000000000000000000000000000000000000000000060005260046000fd5b346101e3576102e636612f8e565b9190926102f161373b565b6000905b828210610a145750505060009063ffffffff4216907ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffee184360301925b81811015610a12576000918160051b86013585811215610a0e5786019061012082360312610a0e576040519561036687612e55565b823567ffffffffffffffff81168103610a0a578752602083013567ffffffffffffffff8111610a0a5783019536601f88011215610a0a578635966103a9886131df565b976103b7604051998a612e8d565b8089526020808a019160051b83010190368211610a065760208301905b8282106109d3575050505060208801968752604084013567ffffffffffffffff81116109cf576104079036908601612f3f565b926040890193845261043161041f36606088016130cf565b9560608b0196875260c03691016130cf565b9660808a019788526104438651613b88565b61044d8851613b88565b845151156109a75761046967ffffffffffffffff8b51166143c7565b156109705767ffffffffffffffff8a511681526007602052604081206105a987516fffffffffffffffffffffffffffffffff604082015116906105646fffffffffffffffffffffffffffffffff602083015116915115158360806040516104cf81612e55565b858152602081018c905260408101849052606081018690520152855474ff000000000000000000000000000000000000000091151560a01b919091167fffffffffffffffffffffff0000000000000000000000000000000000000000009091166fffffffffffffffffffffffffffffffff84161773ffffffff0000000000000000000000000000000060808b901b1617178555565b60809190911b7fffffffffffffffffffffffffffffffff00000000000000000000000000000000166fffffffffffffffffffffffffffffffff91909116176001830155565b6106cf89516fffffffffffffffffffffffffffffffff6040820151169061068a6fffffffffffffffffffffffffffffffff602083015116915115158360806040516105f381612e55565b858152602081018c9052604081018490526060810186905201526002860180547fffffffffffffffffffffff000000000000000000000000000000000000000000166fffffffffffffffffffffffffffffffff85161773ffffffff0000000000000000000000000000000060808c901b161791151560a01b74ff000000000000000000000000000000000000000016919091179055565b60809190911b7fffffffffffffffffffffffffffffffff00000000000000000000000000000000166fffffffffffffffffffffffffffffffff91909116176003830155565b6004865191019080519067ffffffffffffffff8211610943576106f283546132c2565b601f8111610908575b50602090601f831160011461086957610749929185918361085e575b50507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8260011b9260031b1c19161790565b90555b88518051821015610781579061077b6001926107748367ffffffffffffffff8f5116926132ae565b5190613786565b0161074c565b5050977f8d340f17e19058004c20453540862a9c62778504476f6756755cb33bcd6c38c293919997509561084f67ffffffffffffffff600197969498511692519351915161081b6107e660405196879687526101006020880152610100870190612d55565b9360408601906fffffffffffffffffffffffffffffffff60408092805115158552826020820151166020860152015116910152565b60a08401906fffffffffffffffffffffffffffffffff60408092805115158552826020820151166020860152015116910152565b0390a101939193929092610331565b015190508f80610717565b83855281852091907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08416865b8181106108f057509084600195949392106108b9575b505050811b01905561074c565b01517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88460031b161c191690558e80806108ac565b92936020600181928786015181550195019301610896565b6109339084865260208620601f850160051c81019160208610610939575b601f0160051c01906134c9565b8e6106fb565b9091508190610926565b6024847f4e487b710000000000000000000000000000000000000000000000000000000081526041600452fd5b60249067ffffffffffffffff8b51167f1d5ad3c5000000000000000000000000000000000000000000000000000000008252600452fd5b807f8579befe0000000000000000000000000000000000000000000000000000000060049252fd5b8680fd5b813567ffffffffffffffff8111610a02576020916109f78392833691890101612f3f565b8152019101906103d4565b8a80fd5b8880fd5b8580fd5b8380fd5b005b909267ffffffffffffffff610a35610a3086868699979961325f565b61318d565b1692610a40846140fb565b15610b8f57836000526007602052610a5e6005604060002001613f02565b9260005b8451811015610a9a57600190866000526007602052610a936005604060002001610a8c83896132ae565b5190614226565b5001610a62565b5093909491959250806000526007602052600560406000206000815560006001820155600060028201556000600382015560048101610ad981546132c2565b9081610b4c575b5050018054906000815581610b2b575b5050907f5204aec90a3c794d8e90fded8b46ae9c7c552803e7e832e0c1d358396d8599166020600193604051908152a10190919392936102f5565b6000526020600020908101905b81811015610af05760008155600101610b38565b81601f60009311600114610b645750555b8880610ae0565b81835260208320610b7f91601f01861c8101906001016134c9565b8082528160208120915555610b5d565b837f1e670e4b0000000000000000000000000000000000000000000000000000000060005260045260246000fd5b346101e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e35760206040517f000000000000000000000000000000000000000000000000000000000000000015158152f35b346101e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357602060405173ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000099dfca5d88f4d9c023531f4403966b8d61562acd168152f35b346101e35760e07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357610cbe612dd7565b60607fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdc3601126101e357604051610cf481612e71565b60243580151581036101e35781526044356fffffffffffffffffffffffffffffffff811681036101e35760208201526064356fffffffffffffffffffffffffffffffff811681036101e357604082015260607fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7c3601126101e35760405190610d7b82612e71565b60843580151581036101e357825260a4356fffffffffffffffffffffffffffffffff811681036101e357602083015260c4356fffffffffffffffffffffffffffffffff811681036101e357604083015273ffffffffffffffffffffffffffffffffffffffff6009541633141580610e28575b610dfa57610a12926139c6565b7f8e4a23d6000000000000000000000000000000000000000000000000000000006000523360045260246000fd5b5073ffffffffffffffffffffffffffffffffffffffff60015416331415610ded565b346101e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e35767ffffffffffffffff610e8a612dd7565b610e92613416565b50166000526007602052610f0d610eb4610eaf6040600020613441565b613b03565b6040519182918291909160806fffffffffffffffffffffffffffffffff8160a084019582815116855263ffffffff6020820151166020860152604081015115156040860152826060820151166060860152015116910152565b0390f35b346101e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e3576040516005548082528160208101600560005260206000209260005b818110611046575050610f7192500382612e8d565b805190610f96610f80836131df565b92610f8e6040519485612e8d565b8084526131df565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe060208401920136833760005b8151811015610ff6578067ffffffffffffffff610fe3600193856132ae565b5116610fef82876132ae565b5201610fc4565b5050906040519182916020830190602084525180915260408301919060005b818110611023575050500390f35b825167ffffffffffffffff16845285945060209384019390920191600101611015565b8454835260019485019486945060209093019201610f5c565b346101e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357611096612db4565b61109e61373b565b73ffffffffffffffffffffffffffffffffffffffff811690811561113657600480547fffffffffffffffffffffffff000000000000000000000000000000000000000081169390931790556040805173ffffffffffffffffffffffffffffffffffffffff93841681529190921660208201527f02dc5c233404867c793b749c6d644beb2277536d18a7e7974d3f238e4c6f16849190a1005b7f8579befe0000000000000000000000000000000000000000000000000000000060005260046000fd5b346101e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357610f0d6111a261119d612dd7565b6134a7565b604051918291602083526020830190612d55565b346101e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357602073ffffffffffffffffffffffffffffffffffffffff60045416604051908152f35b346101e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e35767ffffffffffffffff611248612dd7565b611250613416565b50166000526007602052610f0d610eb4610eaf6002604060002001613441565b346101e35767ffffffffffffffff61128736612ffe565b92909161129261373b565b16906112ab826000526006602052604060002054151590565b15611367578160005260076020526112dc60056040600020016112cf368685612f08565b6020815191012090614226565b15611320577f52d00ee4d9bd51b40168f2afc5848837288ce258784ad914278791464b3f4d76919261131b6040519283926020845260208401916133d7565b0390a2005b611363906040519384937f74f23c7c00000000000000000000000000000000000000000000000000000000855260048501526040602485015260448401916133d7565b0390fd5b507f1e670e4b0000000000000000000000000000000000000000000000000000000060005260045260246000fd5b346101e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e35760405160025490818152602081018092600260005260206000209060005b81811061145157505050816113f8910382612e8d565b6040519182916020830190602084525180915260408301919060005b818110611422575050500390f35b825173ffffffffffffffffffffffffffffffffffffffff16845285945060209384019390920191600101611414565b82548452602090930192600192830192016113e2565b346101e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e35767ffffffffffffffff6114a7612dd7565b1660005260076020526114c06005604060002001613f02565b8051907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe06115066114f0846131df565b936114fe6040519586612e8d565b8085526131df565b0160005b8181106115e257505060005b815181101561155e578061152c600192846132ae565b5160005260086020526115426040600020613315565b61154c82866132ae565b5261155781856132ae565b5001611516565b826040518091602082016020835281518091526040830190602060408260051b8601019301916000905b82821061159757505050500390f35b919360206115d2827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc060019597998495030186528851612d55565b9601920192018594939192611588565b80606060208093870101520161150a565b346101e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e35760043567ffffffffffffffff81116101e35760a07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc82360301126101e3576060602060405161167081612e39565b8281520152608481016116828161316c565b73ffffffffffffffffffffffffffffffffffffffff807f000000000000000000000000111111d2bf19e43c34263401e0cad979ed1cdb6116911603611ece57506024810177ffffffffffffffff000000000000000000000000000000006116e88261318d565b60801b16604051907f2cbc26bb000000000000000000000000000000000000000000000000000000008252600482015260208160248173ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000099dfca5d88f4d9c023531f4403966b8d61562acd165afa908115611d5e57600091611eaf575b50611e85576117776044830161316c565b7f0000000000000000000000000000000000000000000000000000000000000000611e2f575b5067ffffffffffffffff6117b08261318d565b166117c8816000526006602052604060002054151590565b15611e0257602073ffffffffffffffffffffffffffffffffffffffff60045416916024604051809481937fa8d87a3b00000000000000000000000000000000000000000000000000000000835260048301525afa908115611d5e57600091611d98575b5073ffffffffffffffffffffffffffffffffffffffff163303611d6a5767ffffffffffffffff91606461185d8361318d565b910135928391168060005260076020526118b4604060002073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000111111d2bf19e43c34263401e0cad979ed1cdb6116958691614476565b6040805173ffffffffffffffffffffffffffffffffffffffff86168152602081018490527fff0133389f9bb82d5b9385826160eaf2328039f6fa950eeb8cf0836da81789449190a273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000f4a53c1f548b8a1de318e9cc33eafcd8fa17b99d169281158015611cc4575b15611c40576040517f095ea7b3000000000000000000000000000000000000000000000000000000006020820190815273ffffffffffffffffffffffffffffffffffffffff86166024830152604480830185905282529490611a16906119a4606482612e8d565b6000806040988951936119b78b86612e8d565b602085527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65646020860152519082885af13d15611c38573d906119f882612ece565b91611a058a519384612e8d565b82523d6000602084013e5b856146bd565b805180611b97575b5050602060009160248751809481937f42966c680000000000000000000000000000000000000000000000000000000083528860048401525af18015611b8c5793610f0d937ff33bc26b4413b0e7f19f1ea739fdf99098c0061f1f87d954b11f5293fad9ae106060611ac29561119d95611b2c9a99611b5d575b5067ffffffffffffffff611aab8661318d565b1693895191825233602083015289820152a261318d565b9180519060ff7f000000000000000000000000000000000000000000000000000000000000000616602083015260208252611afd8183612e8d565b805193611b0985612e39565b845260208401918252805194859460208652518260208701526060860190612d55565b9151907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08584030190850152612d55565b611b7e9060203d602011611b85575b611b768183612e8d565b810190613723565b508a611a98565b503d611b6c565b85513d6000823e3d90fd5b90602080611ba9938301019101613723565b15611bb5578580611a1e565b608485517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152fd5b606090611a10565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152fd5b506040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff85166024820152602081604481855afa908115611d5e57600091611d2c575b501561193d565b90506020813d602011611d56575b81611d4760209383612e8d565b810103126101e3575185611d25565b3d9150611d3a565b6040513d6000823e3d90fd5b7f728fe07b000000000000000000000000000000000000000000000000000000006000523360045260246000fd5b6020813d602011611dfa575b81611db160209383612e8d565b81010312611df657519073ffffffffffffffffffffffffffffffffffffffff82168203611df3575073ffffffffffffffffffffffffffffffffffffffff61182b565b80fd5b5080fd5b3d9150611da4565b7fa9902c7e0000000000000000000000000000000000000000000000000000000060005260045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff1680600052600360205260406000205461179d577fd0d259760000000000000000000000000000000000000000000000000000000060005260045260246000fd5b7f53ad11d80000000000000000000000000000000000000000000000000000000060005260046000fd5b611ec8915060203d602011611b8557611b768183612e8d565b83611766565b611eec73ffffffffffffffffffffffffffffffffffffffff9161316c565b7f961c9a4f000000000000000000000000000000000000000000000000000000006000521660045260246000fd5b346101e35760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e35760043567ffffffffffffffff81116101e357611f69903690600401612f5d565b9060243567ffffffffffffffff81116101e357611f8a903690600401613081565b9060443567ffffffffffffffff81116101e357611fab903690600401613081565b73ffffffffffffffffffffffffffffffffffffffff600954163314158061206c575b610dfa57838614801590612062575b6120385760005b868110611fec57005b80612032612000610a306001948b8b61325f565b61200b83898961329e565b61202c61202461201c86898b61329e565b9236906130cf565b9136906130cf565b916139c6565b01611fe3565b7f568efce20000000000000000000000000000000000000000000000000000000060005260046000fd5b5080861415611fdc565b5073ffffffffffffffffffffffffffffffffffffffff60015416331415611fcd565b346101e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357602073ffffffffffffffffffffffffffffffffffffffff60015416604051908152f35b346101e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357602061213967ffffffffffffffff612125612dd7565b166000526006602052604060002054151590565b6040519015158152f35b346101e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e3577f44676b5284b809a22248eba0da87391d79098be38bb03154be88a58bf4d09174602073ffffffffffffffffffffffffffffffffffffffff6121b2612db4565b6121ba61373b565b16807fffffffffffffffffffffffff00000000000000000000000000000000000000006009541617600955604051908152a1005b346101e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e35760005473ffffffffffffffffffffffffffffffffffffffff811633036122ad577fffffffffffffffffffffffff00000000000000000000000000000000000000006001549133828416176001551660005573ffffffffffffffffffffffffffffffffffffffff3391167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3005b7f02b543c60000000000000000000000000000000000000000000000000000000060005260046000fd5b346101e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357602073ffffffffffffffffffffffffffffffffffffffff60095416604051908152f35b346101e35761233736612ffe565b61234292919261373b565b67ffffffffffffffff8216612364816000526006602052604060002054151590565b1561237f5750610a1292612379913691612f08565b90613786565b7f1e670e4b0000000000000000000000000000000000000000000000000000000060005260045260246000fd5b346101e3576123d46123dc6123c036612f8e565b94916123cd93919361373b565b36916131f7565b9236916131f7565b7f0000000000000000000000000000000000000000000000000000000000000000156124fc5760005b8251811015612478578073ffffffffffffffffffffffffffffffffffffffff612430600193866132ae565b511661243b81613f65565b612447575b5001612405565b60207f800671136ab6cfee9fbe5ed1fb7ca417811aca3cf864800d127b927adedf756691604051908152a184612440565b5060005b8151811015610a12578073ffffffffffffffffffffffffffffffffffffffff6124a7600193856132ae565b511680156124f6576124b881614367565b6124c5575b505b0161247c565b60207f2640d4d76caf8bf478aabfa982fa4e1c4eb71a37f93cd15e80dbc657911546d891604051908152a1836124bd565b506124bf565b7f35f4a7b30000000000000000000000000000000000000000000000000000000060005260046000fd5b346101e35760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e35761255d612dd7565b60243567ffffffffffffffff81116101e357602091612583612139923690600401612f3f565b906131a2565b346101e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e35760043567ffffffffffffffff81116101e35780600401906101007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc82360301126101e357600060405161260a81612dee565b5261263761262d61262861262160c485018661311b565b3691612f08565b613522565b6064830135613616565b90608481016126458161316c565b73ffffffffffffffffffffffffffffffffffffffff807f000000000000000000000000111111d2bf19e43c34263401e0cad979ed1cdb6116911603611ece5750602481019277ffffffffffffffff000000000000000000000000000000006126ac8561318d565b60801b16604051907f2cbc26bb000000000000000000000000000000000000000000000000000000008252600482015260208160248173ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000099dfca5d88f4d9c023531f4403966b8d61562acd165afa908115611d5e57600091612a5c575b50611e855767ffffffffffffffff6127418561318d565b16612759816000526006602052604060002054151590565b15611e0257602073ffffffffffffffffffffffffffffffffffffffff60045416916044604051809481937f83826b2b00000000000000000000000000000000000000000000000000000000835260048301523360248301525afa908115611d5e57600091612a3d575b5015611d6a576127d18461318d565b906127e760a4840192612583612621858561311b565b156129f65750506044829167ffffffffffffffff6128048661318d565b16806000526007602052612858600260406000200173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000111111d2bf19e43c34263401e0cad979ed1cdb6116958691614476565b6040805173ffffffffffffffffffffffffffffffffffffffff86168152602081018790527f50f6fbee3ceedce6b7fd7eaef18244487867e6718aec7208187efb6b7908c14c9190a201926129086020846128b18761316c565b60405193849283927f40c10f19000000000000000000000000000000000000000000000000000000008452600484016020909392919373ffffffffffffffffffffffffffffffffffffffff60408201951681520152565b0381600073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000f4a53c1f548b8a1de318e9cc33eafcd8fa17b99d165af18015611d5e5760209573ffffffffffffffffffffffffffffffffffffffff6129a96129a37ffc5e3a5bddc11d92c2dc20fae6f7d5eb989f056be35239f7de7e86150609abc09660809667ffffffffffffffff966129d9575b5061318d565b9261316c565b60405196875233898801521660408601528560608601521692a2806040516129d081612dee565b52604051908152f35b6129ef908c3d8e11611b8557611b768183612e8d565b508b61299d565b612a00925061311b565b6113636040519283927f24eb47e50000000000000000000000000000000000000000000000000000000084526020600485015260248401916133d7565b612a56915060203d602011611b8557611b768183612e8d565b856127c2565b612a75915060203d602011611b8557611b768183612e8d565b8561272a565b346101e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357602060405160ff7f0000000000000000000000000000000000000000000000000000000000000006168152f35b346101e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e3576020612b10612db4565b73ffffffffffffffffffffffffffffffffffffffff807f000000000000000000000000111111d2bf19e43c34263401e0cad979ed1cdb61169116146040519015158152f35b346101e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357602060405173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000111111d2bf19e43c34263401e0cad979ed1cdb61168152f35b346101e35760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357610f0d604051612c04606082612e8d565b602981527f4275726e4d696e745769746845787465726e616c4d696e746572546f6b656e5060208201527f6f6f6c20312e362e3000000000000000000000000000000000000000000000006040820152604051918291602083526020830190612d55565b346101e35760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101e357600435907fffffffff0000000000000000000000000000000000000000000000000000000082168092036101e357817faff2afbf0000000000000000000000000000000000000000000000000000000060209314908115612d2b575b8115612d01575b5015158152f35b7f01ffc9a70000000000000000000000000000000000000000000000000000000091501483612cfa565b7f0e64dd290000000000000000000000000000000000000000000000000000000081149150612cf3565b919082519283825260005b848110612d9f5750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8460006020809697860101520116010190565b80602080928401015182828601015201612d60565b6004359073ffffffffffffffffffffffffffffffffffffffff821682036101e357565b6004359067ffffffffffffffff821682036101e357565b6020810190811067ffffffffffffffff821117612e0a57604052565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040810190811067ffffffffffffffff821117612e0a57604052565b60a0810190811067ffffffffffffffff821117612e0a57604052565b6060810190811067ffffffffffffffff821117612e0a57604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117612e0a57604052565b67ffffffffffffffff8111612e0a57601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b929192612f1482612ece565b91612f226040519384612e8d565b8294818452818301116101e3578281602093846000960137010152565b9080601f830112156101e357816020612f5a93359101612f08565b90565b9181601f840112156101e35782359167ffffffffffffffff83116101e3576020808501948460051b0101116101e357565b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8201126101e35760043567ffffffffffffffff81116101e35781612fd791600401612f5d565b929092916024359067ffffffffffffffff82116101e357612ffa91600401612f5d565b9091565b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8201126101e35760043567ffffffffffffffff811681036101e3579160243567ffffffffffffffff81116101e357826023820112156101e35780600401359267ffffffffffffffff84116101e357602484830101116101e3576024019190565b9181601f840112156101e35782359167ffffffffffffffff83116101e357602080850194606085020101116101e357565b35906fffffffffffffffffffffffffffffffff821682036101e357565b91908260609103126101e3576040516130e781612e71565b809280359081151582036101e3576040613116918193855261310b602082016130b2565b6020860152016130b2565b910152565b9035907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1813603018212156101e3570180359067ffffffffffffffff82116101e3576020019181360383136101e357565b3573ffffffffffffffffffffffffffffffffffffffff811681036101e35790565b3567ffffffffffffffff811681036101e35790565b9067ffffffffffffffff612f5a92166000526007602052600560406000200190602081519101209060019160005201602052604060002054151590565b67ffffffffffffffff8111612e0a5760051b60200190565b9291613202826131df565b936132106040519586612e8d565b602085848152019260051b81019182116101e357915b81831061323257505050565b823573ffffffffffffffffffffffffffffffffffffffff811681036101e357815260209283019201613226565b919081101561326f5760051b0190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b919081101561326f576060020190565b805182101561326f5760209160051b010190565b90600182811c9216801561330b575b60208310146132dc57565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b91607f16916132d1565b9060405191826000825492613329846132c2565b80845293600181169081156133975750600114613350575b5061334e92500383612e8d565b565b90506000929192526020600020906000915b81831061337b57505090602061334e9282010138613341565b6020919350806001915483858901015201910190918492613362565b6020935061334e9592507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0091501682840152151560051b82010138613341565b601f82602094937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0938186528686013760008582860101520116010190565b6040519061342382612e55565b60006080838281528260208201528260408201528260608201520152565b9060405161344e81612e55565b60806001829460ff81546fffffffffffffffffffffffffffffffff8116865263ffffffff81861c16602087015260a01c161515604085015201546fffffffffffffffffffffffffffffffff81166060840152811c910152565b67ffffffffffffffff166000526007602052612f5a6004604060002001613315565b8181106134d4575050565b600081556001016134c9565b818102929181159184041417156134f357565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80518015613592576020036135545780516020828101918301839003126101e357519060ff8211613554575060ff1690565b611363906040519182917f953576f7000000000000000000000000000000000000000000000000000000008352602060048401526024830190612d55565b50507f000000000000000000000000000000000000000000000000000000000000000690565b9060ff8091169116039060ff82116134f357565b60ff16604d81116134f357600a0a90565b81156135e7570490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b907f00000000000000000000000000000000000000000000000000000000000000069060ff82169060ff81169282841461371c578284116136f2579061365b916135b8565b91604d60ff84161180156136b9575b6136835750509061367d612f5a926135cc565b906134e0565b9091507fa9cb113d0000000000000000000000000000000000000000000000000000000060005260045260245260445260646000fd5b506136c3836135cc565b80156135e7577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04841161366a565b6136fb916135b8565b91604d60ff84161161368357505090613716612f5a926135cc565b906135dd565b5050505090565b908160209103126101e3575180151581036101e35790565b73ffffffffffffffffffffffffffffffffffffffff60015416330361375c57565b7f2b5c74de0000000000000000000000000000000000000000000000000000000060005260046000fd5b908051156111365767ffffffffffffffff815160208301209216918260005260076020526137bb816005604060002001614421565b156139825760005260086020526040600020815167ffffffffffffffff8111612e0a576137e882546132c2565b601f8111613950575b506020601f821160011461388a5791613864827f7d628c9a1796743d365ab521a8b2a4686e419b3269919dc9145ea2ce853b54ea959361387a9560009161387f575b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8260011b9260031b1c19161790565b9055604051918291602083526020830190612d55565b0390a2565b905084015138613833565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe082169083600052806000209160005b81811061393857509261387a9492600192827f7d628c9a1796743d365ab521a8b2a4686e419b3269919dc9145ea2ce853b54ea989610613901575b5050811b0190556111a2565b8501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88460031b161c1916905538806138f5565b9192602060018192868a0151815501940192016138ba565b61397c90836000526020600020601f840160051c8101916020851061093957601f0160051c01906134c9565b386137f1565b50906113636040519283927f393b8ad20000000000000000000000000000000000000000000000000000000084526004840152604060248401526044830190612d55565b67ffffffffffffffff166000818152600660205260409020549092919015613ac85791613ac560e092613a9185613a1d7f0350d63aa5f270e01729d00d627eeb8f3429772b1818c016c66a588a864f912b97613b88565b846000526007602052613a34816040600020613ccf565b613a3d83613b88565b846000526007602052613a57836002604060002001613ccf565b60405194855260208501906fffffffffffffffffffffffffffffffff60408092805115158552826020820151166020860152015116910152565b60808301906fffffffffffffffffffffffffffffffff60408092805115158552826020820151166020860152015116910152565ba1565b827f1e670e4b0000000000000000000000000000000000000000000000000000000060005260045260246000fd5b919082039182116134f357565b613b0b613416565b506fffffffffffffffffffffffffffffffff6060820151166fffffffffffffffffffffffffffffffff8083511691613b686020850193613b62613b5563ffffffff87511642613af6565b85608089015116906134e0565b9061435a565b80821015613b8157505b16825263ffffffff4216905290565b9050613b72565b805115613c28576fffffffffffffffffffffffffffffffff6040820151166fffffffffffffffffffffffffffffffff60208301511610613bc55750565b606490613c26604051917f8020d12400000000000000000000000000000000000000000000000000000000835260048301906fffffffffffffffffffffffffffffffff60408092805115158552826020820151166020860152015116910152565bfd5b6fffffffffffffffffffffffffffffffff60408201511615801590613cb0575b613c4f5750565b606490613c26604051917fd68af9cc00000000000000000000000000000000000000000000000000000000835260048301906fffffffffffffffffffffffffffffffff60408092805115158552826020820151166020860152015116910152565b506fffffffffffffffffffffffffffffffff6020820151161515613c48565b7f9ea3374b67bf275e6bb9c8ae68f9cae023e1c528b4b27e092f0bb209d3531c1991613e086060928054613d0c63ffffffff8260801c1642613af6565b9081613e47575b50506fffffffffffffffffffffffffffffffff6001816020860151169282815416808510600014613e3f57508280855b16167fffffffffffffffffffffffffffffffff00000000000000000000000000000000825416178155613dbc8651151582907fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff74ff0000000000000000000000000000000000000000835492151560a01b169116179055565b60408601517fffffffffffffffffffffffffffffffff0000000000000000000000000000000060809190911b16939092166fffffffffffffffffffffffffffffffff1692909217910155565b613ac560405180926fffffffffffffffffffffffffffffffff60408092805115158552826020820151166020860152015116910152565b838091613d43565b6fffffffffffffffffffffffffffffffff91613e7c839283613e756001880154948286169560801c906134e0565b911661435a565b80821015613efb57505b83547fffffffffffffffffffffffff00000000ffffffffffffffffffffffffffffffff9290911692909216167fffffffffffffffffffffffff0000000000000000000000000000000000000000909116174260801b73ffffffff00000000000000000000000000000000161781553880613d13565b9050613e86565b906040519182815491828252602082019060005260206000209260005b818110613f3457505061334e92500383612e8d565b8454835260019485019487945060209093019201613f1f565b805482101561326f5760005260206000200190600090565b60008181526003602052604090205480156140f4577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81018181116134f357600254907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82019182116134f357818103614085575b5050506002548015614056577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01614013816002613f4d565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82549160031b1b19169055600255600052600360205260006040812055600190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6140dc6140966140a7936002613f4d565b90549060031b1c9283926002613f4d565b81939154907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9060031b92831b921b19161790565b90556000526003602052604060002055388080613fda565b5050600090565b60008181526006602052604090205480156140f4577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81018181116134f357600554907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82019182116134f3578181036141ec575b5050506005548015614056577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016141a9816005613f4d565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82549160031b1b19169055600555600052600660205260006040812055600190565b61420e6141fd6140a7936005613f4d565b90549060031b1c9283926005613f4d565b90556000526006602052604060002055388080614170565b9060018201918160005282602052604060002054801515600014614351577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81018181116134f3578254907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82019182116134f35781810361431a575b50505080548015614056577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01906142db8282613f4d565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82549160031b1b191690555560005260205260006040812055600190565b61433a61432a6140a79386613f4d565b90549060031b1c92839286613f4d565b9055600052836020526040600020553880806142a3565b50505050600090565b919082018092116134f357565b806000526003602052604060002054156000146143c15760025468010000000000000000811015612e0a576143a86140a78260018594016002556002613f4d565b9055600254906000526003602052604060002055600190565b50600090565b806000526006602052604060002054156000146143c15760055468010000000000000000811015612e0a576144086140a78260018594016005556005613f4d565b9055600554906000526006602052604060002055600190565b60008281526001820160205260409020546140f45780549068010000000000000000821015612e0a578261445f6140a7846001809601855584613f4d565b905580549260005201602052604060002055600190565b9182549060ff8260a01c161580156146b5575b6146af576fffffffffffffffffffffffffffffffff821691600185019081546144ce63ffffffff6fffffffffffffffffffffffffffffffff83169360801c1642613af6565b9081614611575b50508481106145c5575083831061452f5750506145046fffffffffffffffffffffffffffffffff928392613af6565b16167fffffffffffffffffffffffffffffffff00000000000000000000000000000000825416179055565b5460801c9161453e8185613af6565b927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101908082116134f35761458c6145919273ffffffffffffffffffffffffffffffffffffffff9661435a565b6135dd565b7fd0c8d23a000000000000000000000000000000000000000000000000000000006000526004526024521660445260646000fd5b828573ffffffffffffffffffffffffffffffffffffffff927f1a76572a000000000000000000000000000000000000000000000000000000006000526004526024521660445260646000fd5b8286929396116146855761462c92613b629160801c906134e0565b808410156146805750825b85547fffffffffffffffffffffffff00000000ffffffffffffffffffffffffffffffff164260801b73ffffffff00000000000000000000000000000000161786559238806144d5565b614637565b7f9725942a0000000000000000000000000000000000000000000000000000000060005260046000fd5b50505050565b508215614489565b9192901561473857508151156146d1575090565b3b156146da5790565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152fd5b82519091501561474b5750805190602001fd5b611363906040519182917f08c379a0000000000000000000000000000000000000000000000000000000008352602060048401526024830190612d5556fea164736f6c634300081a000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f4a53c1f548b8a1de318e9cc33eafcd8fa17b99d000000000000000000000000111111d2bf19e43c34263401e0cad979ed1cdb61000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000c000000000000000000000000099dfca5d88f4d9c023531f4403966b8d61562acd00000000000000000000000033566fe5976aaa420f3d5c64996641fc3858cadb0000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : minter (address): 0xF4a53C1F548B8A1DE318e9Cc33eAfCD8fa17b99d
Arg [1] : token (address): 0x111111d2bf19e43C34263401e0CAd979eD1cdb61
Arg [2] : localTokenDecimals (uint8): 6
Arg [3] : allowlist (address[]):
Arg [4] : rmnProxy (address): 0x99dFCa5d88f4D9C023531F4403966b8d61562AcD
Arg [5] : router (address): 0x33566fE5976AAa420F3d5C64996641Fc3858CaDB
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000f4a53c1f548b8a1de318e9cc33eafcd8fa17b99d
Arg [1] : 000000000000000000000000111111d2bf19e43c34263401e0cad979ed1cdb61
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 00000000000000000000000099dfca5d88f4d9c023531f4403966b8d61562acd
Arg [5] : 00000000000000000000000033566fe5976aaa420f3d5c64996641fc3858cadb
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in MON
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.