Source Code
Overview
POL Balance
More Info
ContractCreator
Multichain Info
N/A
Loading...
Loading
Contract Name:
BurnMintTokenPool
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 200 runs
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.24;
import {ITypeAndVersion} from "@chainlink/contracts/src/v0.8/shared/interfaces/ITypeAndVersion.sol";
import {IBurnMintERC20} from "@chainlink/contracts/src/v0.8/shared/token/ERC20/IBurnMintERC20.sol";
import {BurnMintTokenPoolAbstract} from "./BurnMintTokenPoolAbstract.sol";
import {TokenPool} from "./TokenPool.sol";
/// @notice This pool mints and burns a 3rd-party token.
/// @dev Pool whitelisting mode is set in the constructor and cannot be modified later.
/// It either accepts any address as originalSender, or only accepts whitelisted originalSender.
/// The only way to change whitelisting mode is to deploy a new pool.
/// If that is expected, please make sure the token's burner/minter roles are adjustable.
/// @dev This contract is a variant of BurnMintTokenPool that uses `burn(amount)`.
contract BurnMintTokenPool is BurnMintTokenPoolAbstract, ITypeAndVersion {
string public constant override typeAndVersion = "BurnMintTokenPool 1.6.3-dev";
constructor(
IBurnMintERC20 token,
uint8 localTokenDecimals,
address[] memory allowlist,
address rmnProxy,
address router
) TokenPool(token, localTokenDecimals, allowlist, rmnProxy, router) {}
/// @inheritdoc TokenPool
function _lockOrBurn(
uint256 amount
) internal virtual override {
IBurnMintERC20(address(i_token)).burn(amount);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface ITypeAndVersion {
function typeAndVersion() external pure returns (string memory);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import {IERC20} from "@openzeppelin/[email protected]/token/ERC20/IERC20.sol";
interface IBurnMintERC20 is IERC20 {
/// @notice Mints new tokens for a given address.
/// @param account The address to mint the new tokens to.
/// @param amount The number of tokens to be minted.
/// @dev this function increases the total supply.
function mint(address account, uint256 amount) external;
/// @notice Burns tokens from the sender.
/// @param amount The number of tokens to be burned.
/// @dev this function decreases the total supply.
function burn(
uint256 amount
) external;
/// @notice Burns tokens from a given address..
/// @param account The address to burn tokens from.
/// @param amount The number of tokens to be burned.
/// @dev this function decreases the total supply.
function burn(address account, uint256 amount) external;
/// @notice Burns tokens from a given address..
/// @param account The address to burn tokens from.
/// @param amount The number of tokens to be burned.
/// @dev this function decreases the total supply.
function burnFrom(address account, uint256 amount) external;
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.24;
import {IBurnMintERC20} from "@chainlink/contracts/src/v0.8/shared/token/ERC20/IBurnMintERC20.sol";
import {TokenPool} from "./TokenPool.sol";
abstract contract BurnMintTokenPoolAbstract is TokenPool {
/// @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 override {
IBurnMintERC20(address(i_token)).mint(receiver, amount);
}
}// 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 "@openzeppelin/[email protected]/token/ERC20/IERC20.sol";
import {IERC20Metadata} from "@openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol";
import {IERC165} from "@openzeppelin/[email protected]/utils/introspection/IERC165.sol";
import {EnumerableSet} from "@openzeppelin/[email protected]/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 ZeroAddressInvalid();
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 ZeroAddressInvalid();
}
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 ZeroAddressInvalid();
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 ZeroAddressInvalid();
}
// 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 ZeroAddressInvalid();
}
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.
/// @dev This function is marked virtual as other token pools may inherit from this contract, but do
/// not receive calls from the ramps directly, instead receiving them from a proxy contract. In that
/// situation this function must be overridden and the ramp-check removed and replaced with a different
/// access-control scheme.
function _onlyOnRamp(
uint64 remoteChainSelector
) internal view virtual {
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.
/// @dev This function is marked virtual as other token pools may inherit from this contract, but do
/// not receive calls from the ramps directly, instead receiving them from a proxy contract. In that
/// situation this function must be overridden and the ramp-check removed and replaced with a different
/// access-control scheme.
function _onlyOffRamp(
uint64 remoteChainSelector
) internal view virtual {
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
// 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
pragma solidity ^0.8.0;
import {Pool} from "../libraries/Pool.sol";
import {IERC165} from "@openzeppelin/[email protected]/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;
/// @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 tag used to signal support for the pool v1 standard.
// bytes4(keccak256("CCIP_POOL_V2"))
bytes4 public constant CCIP_POOL_V2 = 0xf208a58f;
// 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: 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
// 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 (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;
}
}// 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 Sui VM.
bytes4 public constant SUI_EXTRA_ARGS_V1_TAG = 0x21ea4ca9;
// 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;
struct SuiExtraArgsV1 {
uint256 gasLimit;
bool allowOutOfOrderExecution;
bytes32 tokenReceiver;
bytes32[] receiverObjectIds;
}
/// @dev The expected static payload size of a token transfer when Borsh encoded and submitted to SUI.
/// TokenPool extra data and offchain data sizes are dynamic, and should be accounted for separately.
uint256 public constant SUI_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
/// @dev Number of overhead accounts needed for message execution on SUI.
/// @dev This is the message.receiver.
uint256 public constant SUI_MESSAGING_ACCOUNTS_OVERHEAD = 1;
/// @dev The maximum number of receiver object ids that can be passed in SuiExtraArgs.
uint256 public constant SUI_EXTRA_ARGS_MAX_RECEIVER_OBJECT_IDS = 64;
/// @dev The size of each SUI account address in bytes.
uint256 public constant SUI_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);
}
function _suiArgsToBytes(
SuiExtraArgsV1 memory extraArgs
) internal pure returns (bytes memory bts) {
return abi.encodeWithSelector(SUI_EXTRA_ARGS_V1_TAG, extraArgs);
}
/// @notice The CCV struct is used to represent a cross-chain verifier.
struct CCV {
/// @param The ccvAddress is the address of the verifier contract on the source chain
address ccvAddress;
/// @param args The args are the arguments that the verifier contract expects. They are opaque to CCIP and are only
/// used in the CCV.
bytes args;
}
bytes4 public constant GENERIC_EXTRA_ARGS_V3_TAG = 0x302326cb;
struct EVMExtraArgsV3 {
CCV[] requiredCCV;
CCV[] optionalCCV;
uint8 optionalThreshold;
/// @notice The finality config, 0 means the default finality that the CCV considers final. Any non-zero value means
/// a block depth.
uint16 finalityConfig;
address executor;
bytes executorArgs;
bytes tokenArgs;
}
function _argsToBytes(
EVMExtraArgsV3 memory extraArgs
) internal pure returns (bytes memory bts) {
return abi.encodeWithSelector(GENERIC_EXTRA_ARGS_V3_TAG, extraArgs);
}
}// 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.0;
interface IOwnable {
function owner() external returns (address);
function transferOwnership(
address recipient
) external;
function acceptOwnership() external;
}{
"remappings": [
"@chainlink/contracts-ccip/=node_modules/@chainlink/contracts-ccip/",
"@chainlink/contracts/=node_modules/@chainlink/contracts/",
"@openzeppelin/contracts/=node_modules/@openzeppelin/contracts/",
"@openzeppelin/[email protected]/=node_modules/@openzeppelin/contracts-4.8.3/",
"@openzeppelin/[email protected]/=node_modules/@openzeppelin/contracts-5.0.2/",
"forge-std/=lib/forge-std/src/"
],
"optimizer": {
"enabled": true,
"runs": 200
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "cancun",
"viaIR": false
}Contract ABI
API[{"inputs":[{"internalType":"contract IBurnMintERC20","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":"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":"ZeroAddressInvalid","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":"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":"view","type":"function"}]Contract Creation Code
61010060405234801562000011575f80fd5b5060405162003d9438038062003d94833981016040819052620000349162000580565b8484848484335f816200005a57604051639b15e16f60e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b03848116919091179091558116156200008d576200008d81620001e8565b50506001600160a01b0385161580620000ad57506001600160a01b038116155b80620000c057506001600160a01b038216155b15620000df57604051630a64406560e11b815260040160405180910390fd5b6001600160a01b03808616608081905290831660c0526040805163313ce56760e01b8152905163313ce567916004808201926020929091908290030181865afa9250505080156200014f575060408051601f3d908101601f191682019092526200014c918101906200069b565b60015b156200018f578060ff168560ff16146200018d576040516332ad3e0760e11b815260ff80871660048301528216602482015260440160405180910390fd5b505b60ff841660a052600480546001600160a01b0319166001600160a01b038316179055825115801560e052620001d857604080515f815260208101909152620001d8908462000261565b50505050505050505050620006ff565b336001600160a01b038216036200021257604051636d6c4ee560e11b815260040160405180910390fd5b5f80546001600160a01b0319166001600160a01b03838116918217835560015460405192939116917fed8889f560326eb138920d842192f0eb3dd22b4f139c87a2c57538e05bae12789190a350565b60e05162000282576040516335f4a7b360e01b815260040160405180910390fd5b5f5b82518110156200030b575f838281518110620002a457620002a4620006b7565b60209081029190910101519050620002be600282620003b9565b1562000301576040516001600160a01b03821681527f800671136ab6cfee9fbe5ed1fb7ca417811aca3cf864800d127b927adedf75669060200160405180910390a15b5060010162000284565b505f5b8151811015620003b4575f8282815181106200032e576200032e620006b7565b602002602001015190505f6001600160a01b0316816001600160a01b031603620003595750620003ab565b62000366600282620003d8565b15620003a9576040516001600160a01b03821681527f2640d4d76caf8bf478aabfa982fa4e1c4eb71a37f93cd15e80dbc657911546d89060200160405180910390a15b505b6001016200030e565b505050565b5f620003cf836001600160a01b038416620003ee565b90505b92915050565b5f620003cf836001600160a01b038416620004e2565b5f8181526001830160205260408120548015620004d8575f62000413600183620006cb565b85549091505f906200042890600190620006cb565b90508082146200048e575f865f0182815481106200044a576200044a620006b7565b905f5260205f200154905080875f0184815481106200046d576200046d620006b7565b5f918252602080832090910192909255918252600188019052604090208390555b8554869080620004a257620004a2620006eb565b600190038181905f5260205f20015f90559055856001015f8681526020019081526020015f205f905560019350505050620003d2565b5f915050620003d2565b5f8181526001830160205260408120546200052957508154600181810184555f848152602080822090930184905584548482528286019093526040902091909155620003d2565b505f620003d2565b6001600160a01b038116811462000546575f80fd5b50565b805160ff811681146200055a575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b80516200055a8162000531565b5f805f805f60a0868803121562000595575f80fd5b8551620005a28162000531565b94506020620005b387820162000549565b60408801519095506001600160401b0380821115620005d0575f80fd5b818901915089601f830112620005e4575f80fd5b815181811115620005f957620005f96200055f565b8060051b604051601f19603f830116810181811085821117156200062157620006216200055f565b60405291825284820192508381018501918c8311156200063f575f80fd5b938501935b828510156200066857620006588562000573565b8452938501939285019262000644565b8098505050505050506200067f6060870162000573565b91506200068f6080870162000573565b90509295509295909350565b5f60208284031215620006ac575f80fd5b620003cf8262000549565b634e487b7160e01b5f52603260045260245ffd5b81810381811115620003d257634e487b7160e01b5f52601160045260245ffd5b634e487b7160e01b5f52603160045260245ffd5b60805160a05160c05160e0516135ce620007c65f395f818161051901528181611a6f015261237e01525f81816104f30152818161182d0152611d8d01525f81816102c701528181610b070152818161158c015281816116120152818161164601528181611678015281816116c40152818161171c015261178601525f8181610248015281816102900152818161067a01528181610a69015281816119ce01528181611eb1015281816121a8015281816121da015281816124cb01526124fd01526135ce5ff3fe608060405234801561000f575f80fd5b50600436106101d1575f3560e01c80639a4575b9116100fe578063c0d786551161009e578063dc0bd9711161006e578063dc0bd971146104f1578063e0351e1314610517578063e8a1da171461053d578063f2fde38b14610550575f80fd5b8063c0d78655146104a3578063c4bffe2b146104b6578063c75eea9c146104cb578063cf7401f3146104de575f80fd5b8063acfecf91116100d9578063acfecf9114610406578063af58d59f14610419578063b0f479a11461047f578063b794658014610490575f80fd5b80639a4575b9146103b1578063a42a7b8b146103d1578063a7cd63b7146103f1575f80fd5b806354c8a4f3116101745780637d54534e116101445780637d54534e146103675780638926f54f1461037a5780638da5cb5b1461038d578063962d40201461039e575f80fd5b806354c8a4f31461032657806362ddd3c41461033b5780636d3d1a581461034e57806379ba50971461035f575f80fd5b8063240028e8116101af578063240028e81461028057806324f65ee7146102c057806339077537146102f15780634c5ef0ed14610313575f80fd5b806301ffc9a7146101d5578063181f5a77146101fd57806321df0da714610246575b5f80fd5b6101e86101e336600461294e565b610563565b60405190151581526020015b60405180910390f35b6102396040518060400160405280601b81526020017f4275726e4d696e74546f6b656e506f6f6c20312e362e332d646576000000000081525081565b6040516101f491906129b8565b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020016101f4565b6101e861028e3660046129de565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0390811691161490565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000001681526020016101f4565b6103046102ff3660046129f9565b6105b4565b604051905181526020016101f4565b6101e8610321366004612b22565b6106ef565b610339610334366004612bb3565b610727565b005b610339610349366004612c19565b6107a0565b6009546001600160a01b0316610268565b610339610822565b6103396103753660046129de565b6108a3565b6101e8610388366004612c94565b6108ff565b6001546001600160a01b0316610268565b6103396103ac366004612ced565b610914565b6103c46103bf366004612d7f565b610a21565b6040516101f49190612db5565b6103e46103df366004612c94565b610b4c565b6040516101f49190612ded565b6103f9610cae565b6040516101f49190612e4f565b610339610414366004612c19565b610cbf565b61042c610427366004612c94565b610da1565b6040516101f4919081516001600160801b03908116825260208084015163ffffffff1690830152604080840151151590830152606080840151821690830152608092830151169181019190915260a00190565b6004546001600160a01b0316610268565b61023961049e366004612c94565b610e4c565b6103396104b13660046129de565b610ef8565b6104be610f88565b6040516101f49190612e9b565b61042c6104d9366004612c94565b61103b565b6103396104ec366004612f6c565b6110e3565b7f0000000000000000000000000000000000000000000000000000000000000000610268565b7f00000000000000000000000000000000000000000000000000000000000000006101e8565b61033961054b366004612bb3565b611134565b61033961055e3660046129de565b61156c565b5f6001600160e01b0319821663aff2afbf60e01b148061059357506001600160e01b03198216630e64dd2960e01b145b806105ae57506001600160e01b031982166301ffc9a760e01b145b92915050565b60408051602081019091525f81525f61061960608401356106146105db60c0870187612fae565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061158092505050565b61160f565b905061062583826117d7565b61063e61063860608501604086016129de565b826119a8565b61064e6040840160208501612c94565b6001600160401b03167ffc5e3a5bddc11d92c2dc20fae6f7d5eb989f056be35239f7de7e86150609abc07f0000000000000000000000000000000000000000000000000000000000000000336106aa60608801604089016129de565b604080516001600160a01b03948516815292841660208401529216818301526060810185905290519081900360800190a2604080516020810190915290815292915050565b80516020808301919091206001600160401b0384165f90815260079092526040822061072091600590910190611a29565b9392505050565b61072f611a40565b61079a8484808060200260200160405190810160405280939291908181526020018383602002808284375f92019190915250506040805160208088028281018201909352878252909350879250869182918501908490808284375f92019190915250611a6d92505050565b50505050565b6107a8611a40565b6107b1836108ff565b6107de57604051631e670e4b60e01b81526001600160401b03841660048201526024015b60405180910390fd5b61081d8383838080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250611bd192505050565b505050565b5f546001600160a01b0316331461084c5760405163015aa1e360e11b815260040160405180910390fd5b600180546001600160a01b0319808216339081179093555f805490911681556040516001600160a01b03909216929183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a350565b6108ab611a40565b600980546001600160a01b0319166001600160a01b0383169081179091556040519081527f44676b5284b809a22248eba0da87391d79098be38bb03154be88a58bf4d091749060200160405180910390a150565b5f6105ae60056001600160401b038416611a29565b6009546001600160a01b0316331480159061093a57506001546001600160a01b03163314155b1561095a5760405163472511eb60e11b81523360048201526024016107d5565b84831415806109695750848114155b1561098757604051632b477e7160e11b815260040160405180910390fd5b5f5b85811015610a1857610a108787838181106109a6576109a6612ff0565b90506020020160208101906109bb9190612c94565b8686848181106109cd576109cd612ff0565b9050606002018036038101906109e39190613004565b8585858181106109f5576109f5612ff0565b905060600201803603810190610a0b9190613004565b611c94565b600101610989565b50505050505050565b6040805180820190915260608082526020820152610a3e82611d5c565b610a4b8260600135611e9b565b610a5b6040830160208401612c94565b604080516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152336020820152606080860135928201929092526001600160401b0392909216917ff33bc26b4413b0e7f19f1ea739fdf99098c0061f1f87d954b11f5293fad9ae10910160405180910390a26040518060400160405280610af784602001602081019061049e9190612c94565b8152602001610b446040805160ff7f000000000000000000000000000000000000000000000000000000000000000016602082015260609101604051602081830303815290604052905090565b905292915050565b6001600160401b0381165f90815260076020526040812060609190610b7390600501611f0c565b90505f81516001600160401b03811115610b8f57610b8f612a4b565b604051908082528060200260200182016040528015610bc257816020015b6060815260200190600190039081610bad5790505b5090505f5b8251811015610ca65760085f848381518110610be557610be5612ff0565b602002602001015181526020019081526020015f208054610c059061301e565b80601f0160208091040260200160405190810160405280929190818152602001828054610c319061301e565b8015610c7c5780601f10610c5357610100808354040283529160200191610c7c565b820191905f5260205f20905b815481529060010190602001808311610c5f57829003601f168201915b5050505050828281518110610c9357610c93612ff0565b6020908102919091010152600101610bc7565b509392505050565b6060610cba6002611f0c565b905090565b610cc7611a40565b610cd0836108ff565b610cf857604051631e670e4b60e01b81526001600160401b03841660048201526024016107d5565b610d368282604051610d0b929190613056565b60408051918290039091206001600160401b0386165f90815260076020529190912060050190611f18565b610d5957828282604051631d3c8f1f60e21b81526004016107d59392919061308d565b826001600160401b03167f52d00ee4d9bd51b40168f2afc5848837288ce258784ad914278791464b3f4d768383604051610d949291906130af565b60405180910390a2505050565b6040805160a0810182525f808252602082018190529181018290526060810182905260808101919091526001600160401b0382165f90815260076020908152604091829020825160a08101845260028201546001600160801b038082168352600160801b80830463ffffffff1695840195909552600160a01b90910460ff1615159482019490945260039091015480841660608301529190910490911660808201526105ae90611f23565b6001600160401b0381165f908152600760205260409020600401805460609190610e759061301e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea19061301e565b8015610eec5780601f10610ec357610100808354040283529160200191610eec565b820191905f5260205f20905b815481529060010190602001808311610ecf57829003601f168201915b50505050509050919050565b610f00611a40565b6001600160a01b038116610f2757604051630a64406560e11b815260040160405180910390fd5b600480546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527f02dc5c233404867c793b749c6d644beb2277536d18a7e7974d3f238e4c6f1684910160405180910390a15050565b60605f610f956005611f0c565b90505f81516001600160401b03811115610fb157610fb1612a4b565b604051908082528060200260200182016040528015610fda578160200160208202803683370190505b5090505f5b825181101561103457828181518110610ffa57610ffa612ff0565b602002602001015182828151811061101457611014612ff0565b6001600160401b0390921660209283029190910190910152600101610fdf565b5092915050565b6040805160a0810182525f808252602082018190529181018290526060810182905260808101919091526001600160401b0382165f90815260076020908152604091829020825160a08101845281546001600160801b038082168352600160801b80830463ffffffff1695840195909552600160a01b90910460ff1615159482019490945260019091015480841660608301529190910490911660808201526105ae90611f23565b6009546001600160a01b0316331480159061110957506001546001600160a01b03163314155b156111295760405163472511eb60e11b81523360048201526024016107d5565b61081d838383611c94565b61113c611a40565b5f5b838110156112e9575f85858381811061115957611159612ff0565b905060200201602081019061116e9190612c94565b905061118460056001600160401b038316611f18565b6111ac57604051631e670e4b60e01b81526001600160401b03821660048201526024016107d5565b6001600160401b0381165f9081526007602052604081206111cf90600501611f0c565b90505f5b81518110156112365761122d8282815181106111f1576111f1612ff0565b602002602001015160075f866001600160401b03166001600160401b031681526020019081526020015f20600501611f1890919063ffffffff16565b506001016111d3565b506001600160401b0382165f90815260076020526040812080546001600160a81b03199081168255600182018390556002820180549091169055600381018290559061128560048301826128e8565b600582015f8181611296828261291f565b50506040516001600160401b03871681527f5204aec90a3c794d8e90fded8b46ae9c7c552803e7e832e0c1d358396d859916945060200192506112d7915050565b60405180910390a1505060010161113e565b505f5b81811015611565575f83838381811061130757611307612ff0565b905060200281019061131991906130c2565b611322906130e1565b90506113318160600151611faf565b61133e8160800151611faf565b8060400151515f0361136357604051630a64406560e11b815260040160405180910390fd5b805161137a906005906001600160401b031661203a565b6113a5578051604051631d5ad3c560e01b81526001600160401b0390911660048201526024016107d5565b80516001600160401b03165f90815260076020908152604091829020825160a08082018552606080870180518601516001600160801b0390811680865263ffffffff42168689018190528351511515878b0181905284518a0151841686890181905294518b0151841660809889018190528954600160a01b92830260ff60a01b19600160801b8087026001600160a01b031994851690981788178216929092178d5592810290971760018c01558c519889018d52898e0180518d01518716808b528a8e019590955280515115158a8f018190528151909d01518716988a01899052518d0151909516979098018790526002890180549a9091029990931617179094169590951790925590920290911760038201559082015160048201906114cc9082613243565b505f5b82602001515181101561150e57611506835f0151846020015183815181106114f9576114f9612ff0565b6020026020010151611bd1565b6001016114cf565b507f8d340f17e19058004c20453540862a9c62778504476f6756755cb33bcd6c38c2825f01518360400151846060015185608001516040516115539493929190613328565b60405180910390a150506001016112ec565b5050505050565b611574611a40565b61157d81612045565b50565b5f81515f036115b057507f0000000000000000000000000000000000000000000000000000000000000000919050565b81516020146115d4578160405163953576f760e01b81526004016107d591906129b8565b5f828060200190518101906115e99190613367565b905060ff8111156105ae578260405163953576f760e01b81526004016107d591906129b8565b5f7f000000000000000000000000000000000000000000000000000000000000000060ff168260ff16036116445750816105ae565b7f000000000000000000000000000000000000000000000000000000000000000060ff168260ff161115611715575f61169d7f000000000000000000000000000000000000000000000000000000000000000084613392565b9050604d8160ff1611156116f85760405163a9cb113d60e01b815260ff80851660048301527f0000000000000000000000000000000000000000000000000000000000000000166024820152604481018590526064016107d5565b61170381600a61348b565b61170d9085613499565b9150506105ae565b5f611740837f0000000000000000000000000000000000000000000000000000000000000000613392565b9050604d8160ff161180611768575061175a81600a61348b565b611765905f19613499565b84115b156117ba5760405163a9cb113d60e01b815260ff80851660048301527f0000000000000000000000000000000000000000000000000000000000000000166024820152604481018590526064016107d5565b6117c581600a61348b565b6117cf90856134b8565b949350505050565b6117ea61028e60a08401608085016129de565b611823576117fe60a08301608084016129de565b60405163961c9a4f60e01b81526001600160a01b0390911660048201526024016107d5565b6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016632cbc26bb6118626040850160208601612c94565b60405160e083901b6001600160e01b031916815260809190911b67ffffffffffffffff60801b166004820152602401602060405180830381865afa1580156118ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118d091906134cf565b156118ee57604051630a75a23b60e31b815260040160405180910390fd5b6119066119016040840160208501612c94565b6120bd565b61195f6119196040840160208501612c94565b61192660a0850185612fae565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506106ef92505050565b61198b5761197060a0830183612fae565b6040516324eb47e560e01b81526004016107d59291906130af565b6119a461199e6040840160208501612c94565b82612187565b5050565b6040516340c10f1960e01b81526001600160a01b038381166004830152602482018390527f000000000000000000000000000000000000000000000000000000000000000016906340c10f19906044015f604051808303815f87803b158015611a0f575f80fd5b505af1158015611a21573d5f803e3d5ffd5b505050505050565b5f8181526001830160205260408120541515610720565b6001546001600160a01b03163314611a6b576040516315ae3a6f60e11b815260040160405180910390fd5b565b7f0000000000000000000000000000000000000000000000000000000000000000611aab576040516335f4a7b360e01b815260040160405180910390fd5b5f5b8251811015611b32575f838281518110611ac957611ac9612ff0565b60200260200101519050611ae781600261223e90919063ffffffff16565b15611b29576040516001600160a01b03821681527f800671136ab6cfee9fbe5ed1fb7ca417811aca3cf864800d127b927adedf75669060200160405180910390a15b50600101611aad565b505f5b815181101561081d575f828281518110611b5157611b51612ff0565b602002602001015190505f6001600160a01b0316816001600160a01b031603611b7a5750611bc9565b611b85600282612252565b15611bc7576040516001600160a01b03821681527f2640d4d76caf8bf478aabfa982fa4e1c4eb71a37f93cd15e80dbc657911546d89060200160405180910390a15b505b600101611b35565b80515f03611bf257604051630a64406560e11b815260040160405180910390fd5b80516020808301919091206001600160401b0384165f90815260079092526040909120611c22906005018261203a565b611c43578282604051631c9dc56960e11b81526004016107d59291906134ea565b5f818152600860205260409020611c5a8382613243565b50826001600160401b03167f7d628c9a1796743d365ab521a8b2a4686e419b3269919dc9145ea2ce853b54ea83604051610d9491906129b8565b611c9d836108ff565b611cc557604051631e670e4b60e01b81526001600160401b03841660048201526024016107d5565b611cce82611faf565b6001600160401b0383165f908152600760205260409020611cef9083612266565b611cf881611faf565b6001600160401b0383165f908152600760205260409020611d1c9060020182612266565b7f0350d63aa5f270e01729d00d627eeb8f3429772b1818c016c66a588a864f912b838383604051611d4f9392919061350b565b60405180910390a1505050565b611d6f61028e60a08301608084016129de565b611d83576117fe60a08201608083016129de565b6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016632cbc26bb611dc26040840160208501612c94565b60405160e083901b6001600160e01b031916815260809190911b67ffffffffffffffff60801b166004820152602401602060405180830381865afa158015611e0c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e3091906134cf565b15611e4e57604051630a75a23b60e31b815260040160405180910390fd5b611e66611e6160608301604084016129de565b61237c565b611e7e611e796040830160208401612c94565b6123d5565b61157d611e916040830160208401612c94565b82606001356124ad565b604051630852cd8d60e31b8152600481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906342966c68906024015f604051808303815f87803b158015611efa575f80fd5b505af1158015611565573d5f803e3d5ffd5b60605f61072083612559565b5f61072083836125b1565b6040805160a0810182525f80825260208201819052918101829052606081018290526080810191909152611f9482606001516001600160801b0316835f01516001600160801b0316846020015163ffffffff1642611f819190613535565b85608001516001600160801b0316612694565b6001600160801b031682525063ffffffff4216602082015290565b805115611ff35780602001516001600160801b031681604001516001600160801b0316111561157d5780604051632008344960e21b81526004016107d59190613548565b60408101516001600160801b031615158061201a575060208101516001600160801b031615155b1561157d57806040516335a2be7360e21b81526004016107d59190613548565b5f61072083836126bb565b336001600160a01b0382160361206e57604051636d6c4ee560e11b815260040160405180910390fd5b5f80546001600160a01b0319166001600160a01b03838116918217835560015460405192939116917fed8889f560326eb138920d842192f0eb3dd22b4f139c87a2c57538e05bae12789190a350565b6120c6816108ff565b6120ee576040516354c8163f60e11b81526001600160401b03821660048201526024016107d5565b600480546040516383826b2b60e01b81526001600160401b038416928101929092523360248301526001600160a01b0316906383826b2b90604401602060405180830381865afa158015612144573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061216891906134cf565b61157d5760405163728fe07b60e01b81523360048201526024016107d5565b6001600160401b0382165f9081526007602052604090206121cc90600201827f0000000000000000000000000000000000000000000000000000000000000000612707565b604080516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152602081018390526001600160401b038416917f50f6fbee3ceedce6b7fd7eaef18244487867e6718aec7208187efb6b7908c14c91015b60405180910390a25050565b5f610720836001600160a01b0384166125b1565b5f610720836001600160a01b0384166126bb565b81545f9061228190600160801b900463ffffffff1642613535565b905080156122df57600183015483546122b3916001600160801b03808216928116918591600160801b90910416612694565b83546001600160801b03919091166001600160a01b031990911617600160801b4263ffffffff16021783555b602082015183546122fc916001600160801b0390811691166128b2565b835483511515600160a01b0274ff00000000ffffffffffffffffffffffffffffffff199091166001600160801b039283161717845560208301516040808501518316600160801b0291909216176001850155517f9ea3374b67bf275e6bb9c8ae68f9cae023e1c528b4b27e092f0bb209d3531c1990611d4f908490613548565b7f00000000000000000000000000000000000000000000000000000000000000001561157d576123ad6002826128c7565b61157d576040516368692cbb60e11b81526001600160a01b03821660048201526024016107d5565b6123de816108ff565b612406576040516354c8163f60e11b81526001600160401b03821660048201526024016107d5565b6004805460405163a8d87a3b60e01b81526001600160401b038416928101929092526001600160a01b03169063a8d87a3b90602401602060405180830381865afa158015612456573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061247a9190613556565b6001600160a01b0316336001600160a01b03161461157d5760405163728fe07b60e01b81523360048201526024016107d5565b6001600160401b0382165f9081526007602052604090206124ef90827f0000000000000000000000000000000000000000000000000000000000000000612707565b604080516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152602081018390526001600160401b038416917fff0133389f9bb82d5b9385826160eaf2328039f6fa950eeb8cf0836da81789449101612232565b6060815f01805480602002602001604051908101604052809291908181526020018280548015610eec57602002820191905f5260205f20905b8154815260200190600101908083116125925750505050509050919050565b5f818152600183016020526040812054801561268b575f6125d3600183613535565b85549091505f906125e690600190613535565b9050808214612645575f865f01828154811061260457612604612ff0565b905f5260205f200154905080875f01848154811061262457612624612ff0565b5f918252602080832090910192909255918252600188019052604090208390555b855486908061265657612656613571565b600190038181905f5260205f20015f90559055856001015f8681526020019081526020015f205f9055600193505050506105ae565b5f9150506105ae565b5f6126b2856126a384866134b8565b6126ad9087613585565b6128b2565b95945050505050565b5f81815260018301602052604081205461270057508154600181810184555f8481526020808220909301849055845484825282860190935260409020919091556105ae565b505f6105ae565b8254600160a01b900460ff16158061271d575081155b1561272757505050565b825460018401546001600160801b03808316929116905f9061275690600160801b900463ffffffff1642613535565b905080156127c2578183111561277f57604051634b92ca1560e11b815260040160405180910390fd5b60018601546127a390839085908490600160801b90046001600160801b0316612694565b865463ffffffff60801b1916600160801b4263ffffffff160217875592505b848210156127fc57604051630d3b2b9560e11b815260048101839052602481018690526001600160a01b03851660448201526064016107d5565b8483101561287c57600186810154600160801b90046001600160801b0316905f9082906128299082613535565b612833878a613535565b61283d9190613585565b6128479190613499565b604051636864691d60e11b815260048101829052602481018790526001600160a01b03881660448201529091506064016107d5565b6128868584613535565b86546fffffffffffffffffffffffffffffffff19166001600160801b0391909116179095555050505050565b5f8183106128c05781610720565b5090919050565b6001600160a01b0381165f9081526001830160205260408120541515610720565b5080546128f49061301e565b5f825580601f10612903575050565b601f0160209004905f5260205f209081019061157d9190612936565b5080545f8255905f5260205f209081019061157d91905b5b8082111561294a575f8155600101612937565b5090565b5f6020828403121561295e575f80fd5b81356001600160e01b031981168114610720575f80fd5b5f81518084525f5b818110156129995760208185018101518683018201520161297d565b505f602082860101526020601f19601f83011685010191505092915050565b602081525f6107206020830184612975565b6001600160a01b038116811461157d575f80fd5b5f602082840312156129ee575f80fd5b8135610720816129ca565b5f60208284031215612a09575f80fd5b81356001600160401b03811115612a1e575f80fd5b82016101008185031215610720575f80fd5b80356001600160401b0381168114612a46575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b60405160a081016001600160401b0381118282101715612a8157612a81612a4b565b60405290565b604051601f8201601f191681016001600160401b0381118282101715612aaf57612aaf612a4b565b604052919050565b5f82601f830112612ac6575f80fd5b81356001600160401b03811115612adf57612adf612a4b565b612af2601f8201601f1916602001612a87565b818152846020838601011115612b06575f80fd5b816020850160208301375f918101602001919091529392505050565b5f8060408385031215612b33575f80fd5b612b3c83612a30565b915060208301356001600160401b03811115612b56575f80fd5b612b6285828601612ab7565b9150509250929050565b5f8083601f840112612b7c575f80fd5b5081356001600160401b03811115612b92575f80fd5b6020830191508360208260051b8501011115612bac575f80fd5b9250929050565b5f805f8060408587031215612bc6575f80fd5b84356001600160401b0380821115612bdc575f80fd5b612be888838901612b6c565b90965094506020870135915080821115612c00575f80fd5b50612c0d87828801612b6c565b95989497509550505050565b5f805f60408486031215612c2b575f80fd5b612c3484612a30565b925060208401356001600160401b0380821115612c4f575f80fd5b818601915086601f830112612c62575f80fd5b813581811115612c70575f80fd5b876020828501011115612c81575f80fd5b6020830194508093505050509250925092565b5f60208284031215612ca4575f80fd5b61072082612a30565b5f8083601f840112612cbd575f80fd5b5081356001600160401b03811115612cd3575f80fd5b602083019150836020606083028501011115612bac575f80fd5b5f805f805f8060608789031215612d02575f80fd5b86356001600160401b0380821115612d18575f80fd5b612d248a838b01612b6c565b90985096506020890135915080821115612d3c575f80fd5b612d488a838b01612cad565b90965094506040890135915080821115612d60575f80fd5b50612d6d89828a01612cad565b979a9699509497509295939492505050565b5f60208284031215612d8f575f80fd5b81356001600160401b03811115612da4575f80fd5b820160a08185031215610720575f80fd5b602081525f825160406020840152612dd06060840182612975565b90506020840151601f198483030160408501526126b28282612975565b5f60208083016020845280855180835260408601915060408160051b8701019250602087015f5b82811015612e4257603f19888603018452612e30858351612975565b94509285019290850190600101612e14565b5092979650505050505050565b602080825282518282018190525f9190848201906040850190845b81811015612e8f5783516001600160a01b031683529284019291840191600101612e6a565b50909695505050505050565b602080825282518282018190525f9190848201906040850190845b81811015612e8f5783516001600160401b031683529284019291840191600101612eb6565b801515811461157d575f80fd5b80356001600160801b0381168114612a46575f80fd5b5f60608284031215612f0e575f80fd5b604051606081018181106001600160401b0382111715612f3057612f30612a4b565b6040529050808235612f4181612edb565b8152612f4f60208401612ee8565b6020820152612f6060408401612ee8565b60408201525092915050565b5f805f60e08486031215612f7e575f80fd5b612f8784612a30565b9250612f968560208601612efe565b9150612fa58560808601612efe565b90509250925092565b5f808335601e19843603018112612fc3575f80fd5b8301803591506001600160401b03821115612fdc575f80fd5b602001915036819003821315612bac575f80fd5b634e487b7160e01b5f52603260045260245ffd5b5f60608284031215613014575f80fd5b6107208383612efe565b600181811c9082168061303257607f821691505b60208210810361305057634e487b7160e01b5f52602260045260245ffd5b50919050565b818382375f9101908152919050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b6001600160401b0384168152604060208201525f6126b2604083018486613065565b602081525f6117cf602083018486613065565b5f823561011e198336030181126130d7575f80fd5b9190910192915050565b5f61012082360312156130f2575f80fd5b6130fa612a5f565b61310383612a30565b81526020808401356001600160401b038082111561311f575f80fd5b9085019036601f830112613131575f80fd5b81358181111561314357613143612a4b565b8060051b613152858201612a87565b918252838101850191858101903684111561316b575f80fd5b86860192505b838310156131a557823585811115613187575f80fd5b6131953689838a0101612ab7565b8352509186019190860190613171565b80878901525050505060408601359250808311156131c1575f80fd5b50506131cf36828601612ab7565b6040830152506131e23660608501612efe565b60608201526131f43660c08501612efe565b608082015292915050565b601f82111561081d57805f5260205f20601f840160051c810160208510156132245750805b601f840160051c820191505b81811015611565575f8155600101613230565b81516001600160401b0381111561325c5761325c612a4b565b6132708161326a845461301e565b846131ff565b602080601f8311600181146132a3575f841561328c5750858301515b5f19600386901b1c1916600185901b178555611a21565b5f85815260208120601f198616915b828110156132d1578886015182559484019460019091019084016132b2565b50858210156132ee57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b8051151582526020808201516001600160801b039081169184019190915260409182015116910152565b5f6101006001600160401b038716835280602084015261334a81840187612975565b91505061335a60408301856132fe565b6126b260a08301846132fe565b5f60208284031215613377575f80fd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b60ff82811682821603908111156105ae576105ae61337e565b600181815b808511156133e557815f19048211156133cb576133cb61337e565b808516156133d857918102915b93841c93908002906133b0565b509250929050565b5f826133fb575060016105ae565b8161340757505f6105ae565b816001811461341d576002811461342757613443565b60019150506105ae565b60ff8411156134385761343861337e565b50506001821b6105ae565b5060208310610133831016604e8410600b8410161715613466575081810a6105ae565b61347083836133ab565b805f19048211156134835761348361337e565b029392505050565b5f61072060ff8416836133ed565b5f826134b357634e487b7160e01b5f52601260045260245ffd5b500490565b80820281158282048414176105ae576105ae61337e565b5f602082840312156134df575f80fd5b815161072081612edb565b6001600160401b0383168152604060208201525f6117cf6040830184612975565b6001600160401b038416815260e0810161352860208301856132fe565b6117cf60808301846132fe565b818103818111156105ae576105ae61337e565b606081016105ae82846132fe565b5f60208284031215613566575f80fd5b8151610720816129ca565b634e487b7160e01b5f52603160045260245ffd5b808201808211156105ae576105ae61337e56fea2646970667358221220df80e6a7b87004603611f5d67e938fb5c503537958c3a4b38e27ee9ca293d8d464736f6c63430008180033000000000000000000000000b9582a609cde986037a5b3a1c2b4e2078c3af045000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000a00000000000000000000000007c1e545a40750ee8761282382d51e017bac68cbb0000000000000000000000009c32fcb86bf0f4a1a8921a9fe46de3198bb884b20000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101d1575f3560e01c80639a4575b9116100fe578063c0d786551161009e578063dc0bd9711161006e578063dc0bd971146104f1578063e0351e1314610517578063e8a1da171461053d578063f2fde38b14610550575f80fd5b8063c0d78655146104a3578063c4bffe2b146104b6578063c75eea9c146104cb578063cf7401f3146104de575f80fd5b8063acfecf91116100d9578063acfecf9114610406578063af58d59f14610419578063b0f479a11461047f578063b794658014610490575f80fd5b80639a4575b9146103b1578063a42a7b8b146103d1578063a7cd63b7146103f1575f80fd5b806354c8a4f3116101745780637d54534e116101445780637d54534e146103675780638926f54f1461037a5780638da5cb5b1461038d578063962d40201461039e575f80fd5b806354c8a4f31461032657806362ddd3c41461033b5780636d3d1a581461034e57806379ba50971461035f575f80fd5b8063240028e8116101af578063240028e81461028057806324f65ee7146102c057806339077537146102f15780634c5ef0ed14610313575f80fd5b806301ffc9a7146101d5578063181f5a77146101fd57806321df0da714610246575b5f80fd5b6101e86101e336600461294e565b610563565b60405190151581526020015b60405180910390f35b6102396040518060400160405280601b81526020017f4275726e4d696e74546f6b656e506f6f6c20312e362e332d646576000000000081525081565b6040516101f491906129b8565b7f000000000000000000000000b9582a609cde986037a5b3a1c2b4e2078c3af0455b6040516001600160a01b0390911681526020016101f4565b6101e861028e3660046129de565b7f000000000000000000000000b9582a609cde986037a5b3a1c2b4e2078c3af0456001600160a01b0390811691161490565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000121681526020016101f4565b6103046102ff3660046129f9565b6105b4565b604051905181526020016101f4565b6101e8610321366004612b22565b6106ef565b610339610334366004612bb3565b610727565b005b610339610349366004612c19565b6107a0565b6009546001600160a01b0316610268565b610339610822565b6103396103753660046129de565b6108a3565b6101e8610388366004612c94565b6108ff565b6001546001600160a01b0316610268565b6103396103ac366004612ced565b610914565b6103c46103bf366004612d7f565b610a21565b6040516101f49190612db5565b6103e46103df366004612c94565b610b4c565b6040516101f49190612ded565b6103f9610cae565b6040516101f49190612e4f565b610339610414366004612c19565b610cbf565b61042c610427366004612c94565b610da1565b6040516101f4919081516001600160801b03908116825260208084015163ffffffff1690830152604080840151151590830152606080840151821690830152608092830151169181019190915260a00190565b6004546001600160a01b0316610268565b61023961049e366004612c94565b610e4c565b6103396104b13660046129de565b610ef8565b6104be610f88565b6040516101f49190612e9b565b61042c6104d9366004612c94565b61103b565b6103396104ec366004612f6c565b6110e3565b7f0000000000000000000000007c1e545a40750ee8761282382d51e017bac68cbb610268565b7f00000000000000000000000000000000000000000000000000000000000000006101e8565b61033961054b366004612bb3565b611134565b61033961055e3660046129de565b61156c565b5f6001600160e01b0319821663aff2afbf60e01b148061059357506001600160e01b03198216630e64dd2960e01b145b806105ae57506001600160e01b031982166301ffc9a760e01b145b92915050565b60408051602081019091525f81525f61061960608401356106146105db60c0870187612fae565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061158092505050565b61160f565b905061062583826117d7565b61063e61063860608501604086016129de565b826119a8565b61064e6040840160208501612c94565b6001600160401b03167ffc5e3a5bddc11d92c2dc20fae6f7d5eb989f056be35239f7de7e86150609abc07f000000000000000000000000b9582a609cde986037a5b3a1c2b4e2078c3af045336106aa60608801604089016129de565b604080516001600160a01b03948516815292841660208401529216818301526060810185905290519081900360800190a2604080516020810190915290815292915050565b80516020808301919091206001600160401b0384165f90815260079092526040822061072091600590910190611a29565b9392505050565b61072f611a40565b61079a8484808060200260200160405190810160405280939291908181526020018383602002808284375f92019190915250506040805160208088028281018201909352878252909350879250869182918501908490808284375f92019190915250611a6d92505050565b50505050565b6107a8611a40565b6107b1836108ff565b6107de57604051631e670e4b60e01b81526001600160401b03841660048201526024015b60405180910390fd5b61081d8383838080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250611bd192505050565b505050565b5f546001600160a01b0316331461084c5760405163015aa1e360e11b815260040160405180910390fd5b600180546001600160a01b0319808216339081179093555f805490911681556040516001600160a01b03909216929183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a350565b6108ab611a40565b600980546001600160a01b0319166001600160a01b0383169081179091556040519081527f44676b5284b809a22248eba0da87391d79098be38bb03154be88a58bf4d091749060200160405180910390a150565b5f6105ae60056001600160401b038416611a29565b6009546001600160a01b0316331480159061093a57506001546001600160a01b03163314155b1561095a5760405163472511eb60e11b81523360048201526024016107d5565b84831415806109695750848114155b1561098757604051632b477e7160e11b815260040160405180910390fd5b5f5b85811015610a1857610a108787838181106109a6576109a6612ff0565b90506020020160208101906109bb9190612c94565b8686848181106109cd576109cd612ff0565b9050606002018036038101906109e39190613004565b8585858181106109f5576109f5612ff0565b905060600201803603810190610a0b9190613004565b611c94565b600101610989565b50505050505050565b6040805180820190915260608082526020820152610a3e82611d5c565b610a4b8260600135611e9b565b610a5b6040830160208401612c94565b604080516001600160a01b037f000000000000000000000000b9582a609cde986037a5b3a1c2b4e2078c3af045168152336020820152606080860135928201929092526001600160401b0392909216917ff33bc26b4413b0e7f19f1ea739fdf99098c0061f1f87d954b11f5293fad9ae10910160405180910390a26040518060400160405280610af784602001602081019061049e9190612c94565b8152602001610b446040805160ff7f000000000000000000000000000000000000000000000000000000000000001216602082015260609101604051602081830303815290604052905090565b905292915050565b6001600160401b0381165f90815260076020526040812060609190610b7390600501611f0c565b90505f81516001600160401b03811115610b8f57610b8f612a4b565b604051908082528060200260200182016040528015610bc257816020015b6060815260200190600190039081610bad5790505b5090505f5b8251811015610ca65760085f848381518110610be557610be5612ff0565b602002602001015181526020019081526020015f208054610c059061301e565b80601f0160208091040260200160405190810160405280929190818152602001828054610c319061301e565b8015610c7c5780601f10610c5357610100808354040283529160200191610c7c565b820191905f5260205f20905b815481529060010190602001808311610c5f57829003601f168201915b5050505050828281518110610c9357610c93612ff0565b6020908102919091010152600101610bc7565b509392505050565b6060610cba6002611f0c565b905090565b610cc7611a40565b610cd0836108ff565b610cf857604051631e670e4b60e01b81526001600160401b03841660048201526024016107d5565b610d368282604051610d0b929190613056565b60408051918290039091206001600160401b0386165f90815260076020529190912060050190611f18565b610d5957828282604051631d3c8f1f60e21b81526004016107d59392919061308d565b826001600160401b03167f52d00ee4d9bd51b40168f2afc5848837288ce258784ad914278791464b3f4d768383604051610d949291906130af565b60405180910390a2505050565b6040805160a0810182525f808252602082018190529181018290526060810182905260808101919091526001600160401b0382165f90815260076020908152604091829020825160a08101845260028201546001600160801b038082168352600160801b80830463ffffffff1695840195909552600160a01b90910460ff1615159482019490945260039091015480841660608301529190910490911660808201526105ae90611f23565b6001600160401b0381165f908152600760205260409020600401805460609190610e759061301e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea19061301e565b8015610eec5780601f10610ec357610100808354040283529160200191610eec565b820191905f5260205f20905b815481529060010190602001808311610ecf57829003601f168201915b50505050509050919050565b610f00611a40565b6001600160a01b038116610f2757604051630a64406560e11b815260040160405180910390fd5b600480546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527f02dc5c233404867c793b749c6d644beb2277536d18a7e7974d3f238e4c6f1684910160405180910390a15050565b60605f610f956005611f0c565b90505f81516001600160401b03811115610fb157610fb1612a4b565b604051908082528060200260200182016040528015610fda578160200160208202803683370190505b5090505f5b825181101561103457828181518110610ffa57610ffa612ff0565b602002602001015182828151811061101457611014612ff0565b6001600160401b0390921660209283029190910190910152600101610fdf565b5092915050565b6040805160a0810182525f808252602082018190529181018290526060810182905260808101919091526001600160401b0382165f90815260076020908152604091829020825160a08101845281546001600160801b038082168352600160801b80830463ffffffff1695840195909552600160a01b90910460ff1615159482019490945260019091015480841660608301529190910490911660808201526105ae90611f23565b6009546001600160a01b0316331480159061110957506001546001600160a01b03163314155b156111295760405163472511eb60e11b81523360048201526024016107d5565b61081d838383611c94565b61113c611a40565b5f5b838110156112e9575f85858381811061115957611159612ff0565b905060200201602081019061116e9190612c94565b905061118460056001600160401b038316611f18565b6111ac57604051631e670e4b60e01b81526001600160401b03821660048201526024016107d5565b6001600160401b0381165f9081526007602052604081206111cf90600501611f0c565b90505f5b81518110156112365761122d8282815181106111f1576111f1612ff0565b602002602001015160075f866001600160401b03166001600160401b031681526020019081526020015f20600501611f1890919063ffffffff16565b506001016111d3565b506001600160401b0382165f90815260076020526040812080546001600160a81b03199081168255600182018390556002820180549091169055600381018290559061128560048301826128e8565b600582015f8181611296828261291f565b50506040516001600160401b03871681527f5204aec90a3c794d8e90fded8b46ae9c7c552803e7e832e0c1d358396d859916945060200192506112d7915050565b60405180910390a1505060010161113e565b505f5b81811015611565575f83838381811061130757611307612ff0565b905060200281019061131991906130c2565b611322906130e1565b90506113318160600151611faf565b61133e8160800151611faf565b8060400151515f0361136357604051630a64406560e11b815260040160405180910390fd5b805161137a906005906001600160401b031661203a565b6113a5578051604051631d5ad3c560e01b81526001600160401b0390911660048201526024016107d5565b80516001600160401b03165f90815260076020908152604091829020825160a08082018552606080870180518601516001600160801b0390811680865263ffffffff42168689018190528351511515878b0181905284518a0151841686890181905294518b0151841660809889018190528954600160a01b92830260ff60a01b19600160801b8087026001600160a01b031994851690981788178216929092178d5592810290971760018c01558c519889018d52898e0180518d01518716808b528a8e019590955280515115158a8f018190528151909d01518716988a01899052518d0151909516979098018790526002890180549a9091029990931617179094169590951790925590920290911760038201559082015160048201906114cc9082613243565b505f5b82602001515181101561150e57611506835f0151846020015183815181106114f9576114f9612ff0565b6020026020010151611bd1565b6001016114cf565b507f8d340f17e19058004c20453540862a9c62778504476f6756755cb33bcd6c38c2825f01518360400151846060015185608001516040516115539493929190613328565b60405180910390a150506001016112ec565b5050505050565b611574611a40565b61157d81612045565b50565b5f81515f036115b057507f0000000000000000000000000000000000000000000000000000000000000012919050565b81516020146115d4578160405163953576f760e01b81526004016107d591906129b8565b5f828060200190518101906115e99190613367565b905060ff8111156105ae578260405163953576f760e01b81526004016107d591906129b8565b5f7f000000000000000000000000000000000000000000000000000000000000001260ff168260ff16036116445750816105ae565b7f000000000000000000000000000000000000000000000000000000000000001260ff168260ff161115611715575f61169d7f000000000000000000000000000000000000000000000000000000000000001284613392565b9050604d8160ff1611156116f85760405163a9cb113d60e01b815260ff80851660048301527f0000000000000000000000000000000000000000000000000000000000000012166024820152604481018590526064016107d5565b61170381600a61348b565b61170d9085613499565b9150506105ae565b5f611740837f0000000000000000000000000000000000000000000000000000000000000012613392565b9050604d8160ff161180611768575061175a81600a61348b565b611765905f19613499565b84115b156117ba5760405163a9cb113d60e01b815260ff80851660048301527f0000000000000000000000000000000000000000000000000000000000000012166024820152604481018590526064016107d5565b6117c581600a61348b565b6117cf90856134b8565b949350505050565b6117ea61028e60a08401608085016129de565b611823576117fe60a08301608084016129de565b60405163961c9a4f60e01b81526001600160a01b0390911660048201526024016107d5565b6001600160a01b037f0000000000000000000000007c1e545a40750ee8761282382d51e017bac68cbb16632cbc26bb6118626040850160208601612c94565b60405160e083901b6001600160e01b031916815260809190911b67ffffffffffffffff60801b166004820152602401602060405180830381865afa1580156118ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118d091906134cf565b156118ee57604051630a75a23b60e31b815260040160405180910390fd5b6119066119016040840160208501612c94565b6120bd565b61195f6119196040840160208501612c94565b61192660a0850185612fae565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506106ef92505050565b61198b5761197060a0830183612fae565b6040516324eb47e560e01b81526004016107d59291906130af565b6119a461199e6040840160208501612c94565b82612187565b5050565b6040516340c10f1960e01b81526001600160a01b038381166004830152602482018390527f000000000000000000000000b9582a609cde986037a5b3a1c2b4e2078c3af04516906340c10f19906044015f604051808303815f87803b158015611a0f575f80fd5b505af1158015611a21573d5f803e3d5ffd5b505050505050565b5f8181526001830160205260408120541515610720565b6001546001600160a01b03163314611a6b576040516315ae3a6f60e11b815260040160405180910390fd5b565b7f0000000000000000000000000000000000000000000000000000000000000000611aab576040516335f4a7b360e01b815260040160405180910390fd5b5f5b8251811015611b32575f838281518110611ac957611ac9612ff0565b60200260200101519050611ae781600261223e90919063ffffffff16565b15611b29576040516001600160a01b03821681527f800671136ab6cfee9fbe5ed1fb7ca417811aca3cf864800d127b927adedf75669060200160405180910390a15b50600101611aad565b505f5b815181101561081d575f828281518110611b5157611b51612ff0565b602002602001015190505f6001600160a01b0316816001600160a01b031603611b7a5750611bc9565b611b85600282612252565b15611bc7576040516001600160a01b03821681527f2640d4d76caf8bf478aabfa982fa4e1c4eb71a37f93cd15e80dbc657911546d89060200160405180910390a15b505b600101611b35565b80515f03611bf257604051630a64406560e11b815260040160405180910390fd5b80516020808301919091206001600160401b0384165f90815260079092526040909120611c22906005018261203a565b611c43578282604051631c9dc56960e11b81526004016107d59291906134ea565b5f818152600860205260409020611c5a8382613243565b50826001600160401b03167f7d628c9a1796743d365ab521a8b2a4686e419b3269919dc9145ea2ce853b54ea83604051610d9491906129b8565b611c9d836108ff565b611cc557604051631e670e4b60e01b81526001600160401b03841660048201526024016107d5565b611cce82611faf565b6001600160401b0383165f908152600760205260409020611cef9083612266565b611cf881611faf565b6001600160401b0383165f908152600760205260409020611d1c9060020182612266565b7f0350d63aa5f270e01729d00d627eeb8f3429772b1818c016c66a588a864f912b838383604051611d4f9392919061350b565b60405180910390a1505050565b611d6f61028e60a08301608084016129de565b611d83576117fe60a08201608083016129de565b6001600160a01b037f0000000000000000000000007c1e545a40750ee8761282382d51e017bac68cbb16632cbc26bb611dc26040840160208501612c94565b60405160e083901b6001600160e01b031916815260809190911b67ffffffffffffffff60801b166004820152602401602060405180830381865afa158015611e0c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e3091906134cf565b15611e4e57604051630a75a23b60e31b815260040160405180910390fd5b611e66611e6160608301604084016129de565b61237c565b611e7e611e796040830160208401612c94565b6123d5565b61157d611e916040830160208401612c94565b82606001356124ad565b604051630852cd8d60e31b8152600481018290527f000000000000000000000000b9582a609cde986037a5b3a1c2b4e2078c3af0456001600160a01b0316906342966c68906024015f604051808303815f87803b158015611efa575f80fd5b505af1158015611565573d5f803e3d5ffd5b60605f61072083612559565b5f61072083836125b1565b6040805160a0810182525f80825260208201819052918101829052606081018290526080810191909152611f9482606001516001600160801b0316835f01516001600160801b0316846020015163ffffffff1642611f819190613535565b85608001516001600160801b0316612694565b6001600160801b031682525063ffffffff4216602082015290565b805115611ff35780602001516001600160801b031681604001516001600160801b0316111561157d5780604051632008344960e21b81526004016107d59190613548565b60408101516001600160801b031615158061201a575060208101516001600160801b031615155b1561157d57806040516335a2be7360e21b81526004016107d59190613548565b5f61072083836126bb565b336001600160a01b0382160361206e57604051636d6c4ee560e11b815260040160405180910390fd5b5f80546001600160a01b0319166001600160a01b03838116918217835560015460405192939116917fed8889f560326eb138920d842192f0eb3dd22b4f139c87a2c57538e05bae12789190a350565b6120c6816108ff565b6120ee576040516354c8163f60e11b81526001600160401b03821660048201526024016107d5565b600480546040516383826b2b60e01b81526001600160401b038416928101929092523360248301526001600160a01b0316906383826b2b90604401602060405180830381865afa158015612144573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061216891906134cf565b61157d5760405163728fe07b60e01b81523360048201526024016107d5565b6001600160401b0382165f9081526007602052604090206121cc90600201827f000000000000000000000000b9582a609cde986037a5b3a1c2b4e2078c3af045612707565b604080516001600160a01b037f000000000000000000000000b9582a609cde986037a5b3a1c2b4e2078c3af045168152602081018390526001600160401b038416917f50f6fbee3ceedce6b7fd7eaef18244487867e6718aec7208187efb6b7908c14c91015b60405180910390a25050565b5f610720836001600160a01b0384166125b1565b5f610720836001600160a01b0384166126bb565b81545f9061228190600160801b900463ffffffff1642613535565b905080156122df57600183015483546122b3916001600160801b03808216928116918591600160801b90910416612694565b83546001600160801b03919091166001600160a01b031990911617600160801b4263ffffffff16021783555b602082015183546122fc916001600160801b0390811691166128b2565b835483511515600160a01b0274ff00000000ffffffffffffffffffffffffffffffff199091166001600160801b039283161717845560208301516040808501518316600160801b0291909216176001850155517f9ea3374b67bf275e6bb9c8ae68f9cae023e1c528b4b27e092f0bb209d3531c1990611d4f908490613548565b7f00000000000000000000000000000000000000000000000000000000000000001561157d576123ad6002826128c7565b61157d576040516368692cbb60e11b81526001600160a01b03821660048201526024016107d5565b6123de816108ff565b612406576040516354c8163f60e11b81526001600160401b03821660048201526024016107d5565b6004805460405163a8d87a3b60e01b81526001600160401b038416928101929092526001600160a01b03169063a8d87a3b90602401602060405180830381865afa158015612456573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061247a9190613556565b6001600160a01b0316336001600160a01b03161461157d5760405163728fe07b60e01b81523360048201526024016107d5565b6001600160401b0382165f9081526007602052604090206124ef90827f000000000000000000000000b9582a609cde986037a5b3a1c2b4e2078c3af045612707565b604080516001600160a01b037f000000000000000000000000b9582a609cde986037a5b3a1c2b4e2078c3af045168152602081018390526001600160401b038416917fff0133389f9bb82d5b9385826160eaf2328039f6fa950eeb8cf0836da81789449101612232565b6060815f01805480602002602001604051908101604052809291908181526020018280548015610eec57602002820191905f5260205f20905b8154815260200190600101908083116125925750505050509050919050565b5f818152600183016020526040812054801561268b575f6125d3600183613535565b85549091505f906125e690600190613535565b9050808214612645575f865f01828154811061260457612604612ff0565b905f5260205f200154905080875f01848154811061262457612624612ff0565b5f918252602080832090910192909255918252600188019052604090208390555b855486908061265657612656613571565b600190038181905f5260205f20015f90559055856001015f8681526020019081526020015f205f9055600193505050506105ae565b5f9150506105ae565b5f6126b2856126a384866134b8565b6126ad9087613585565b6128b2565b95945050505050565b5f81815260018301602052604081205461270057508154600181810184555f8481526020808220909301849055845484825282860190935260409020919091556105ae565b505f6105ae565b8254600160a01b900460ff16158061271d575081155b1561272757505050565b825460018401546001600160801b03808316929116905f9061275690600160801b900463ffffffff1642613535565b905080156127c2578183111561277f57604051634b92ca1560e11b815260040160405180910390fd5b60018601546127a390839085908490600160801b90046001600160801b0316612694565b865463ffffffff60801b1916600160801b4263ffffffff160217875592505b848210156127fc57604051630d3b2b9560e11b815260048101839052602481018690526001600160a01b03851660448201526064016107d5565b8483101561287c57600186810154600160801b90046001600160801b0316905f9082906128299082613535565b612833878a613535565b61283d9190613585565b6128479190613499565b604051636864691d60e11b815260048101829052602481018790526001600160a01b03881660448201529091506064016107d5565b6128868584613535565b86546fffffffffffffffffffffffffffffffff19166001600160801b0391909116179095555050505050565b5f8183106128c05781610720565b5090919050565b6001600160a01b0381165f9081526001830160205260408120541515610720565b5080546128f49061301e565b5f825580601f10612903575050565b601f0160209004905f5260205f209081019061157d9190612936565b5080545f8255905f5260205f209081019061157d91905b5b8082111561294a575f8155600101612937565b5090565b5f6020828403121561295e575f80fd5b81356001600160e01b031981168114610720575f80fd5b5f81518084525f5b818110156129995760208185018101518683018201520161297d565b505f602082860101526020601f19601f83011685010191505092915050565b602081525f6107206020830184612975565b6001600160a01b038116811461157d575f80fd5b5f602082840312156129ee575f80fd5b8135610720816129ca565b5f60208284031215612a09575f80fd5b81356001600160401b03811115612a1e575f80fd5b82016101008185031215610720575f80fd5b80356001600160401b0381168114612a46575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b60405160a081016001600160401b0381118282101715612a8157612a81612a4b565b60405290565b604051601f8201601f191681016001600160401b0381118282101715612aaf57612aaf612a4b565b604052919050565b5f82601f830112612ac6575f80fd5b81356001600160401b03811115612adf57612adf612a4b565b612af2601f8201601f1916602001612a87565b818152846020838601011115612b06575f80fd5b816020850160208301375f918101602001919091529392505050565b5f8060408385031215612b33575f80fd5b612b3c83612a30565b915060208301356001600160401b03811115612b56575f80fd5b612b6285828601612ab7565b9150509250929050565b5f8083601f840112612b7c575f80fd5b5081356001600160401b03811115612b92575f80fd5b6020830191508360208260051b8501011115612bac575f80fd5b9250929050565b5f805f8060408587031215612bc6575f80fd5b84356001600160401b0380821115612bdc575f80fd5b612be888838901612b6c565b90965094506020870135915080821115612c00575f80fd5b50612c0d87828801612b6c565b95989497509550505050565b5f805f60408486031215612c2b575f80fd5b612c3484612a30565b925060208401356001600160401b0380821115612c4f575f80fd5b818601915086601f830112612c62575f80fd5b813581811115612c70575f80fd5b876020828501011115612c81575f80fd5b6020830194508093505050509250925092565b5f60208284031215612ca4575f80fd5b61072082612a30565b5f8083601f840112612cbd575f80fd5b5081356001600160401b03811115612cd3575f80fd5b602083019150836020606083028501011115612bac575f80fd5b5f805f805f8060608789031215612d02575f80fd5b86356001600160401b0380821115612d18575f80fd5b612d248a838b01612b6c565b90985096506020890135915080821115612d3c575f80fd5b612d488a838b01612cad565b90965094506040890135915080821115612d60575f80fd5b50612d6d89828a01612cad565b979a9699509497509295939492505050565b5f60208284031215612d8f575f80fd5b81356001600160401b03811115612da4575f80fd5b820160a08185031215610720575f80fd5b602081525f825160406020840152612dd06060840182612975565b90506020840151601f198483030160408501526126b28282612975565b5f60208083016020845280855180835260408601915060408160051b8701019250602087015f5b82811015612e4257603f19888603018452612e30858351612975565b94509285019290850190600101612e14565b5092979650505050505050565b602080825282518282018190525f9190848201906040850190845b81811015612e8f5783516001600160a01b031683529284019291840191600101612e6a565b50909695505050505050565b602080825282518282018190525f9190848201906040850190845b81811015612e8f5783516001600160401b031683529284019291840191600101612eb6565b801515811461157d575f80fd5b80356001600160801b0381168114612a46575f80fd5b5f60608284031215612f0e575f80fd5b604051606081018181106001600160401b0382111715612f3057612f30612a4b565b6040529050808235612f4181612edb565b8152612f4f60208401612ee8565b6020820152612f6060408401612ee8565b60408201525092915050565b5f805f60e08486031215612f7e575f80fd5b612f8784612a30565b9250612f968560208601612efe565b9150612fa58560808601612efe565b90509250925092565b5f808335601e19843603018112612fc3575f80fd5b8301803591506001600160401b03821115612fdc575f80fd5b602001915036819003821315612bac575f80fd5b634e487b7160e01b5f52603260045260245ffd5b5f60608284031215613014575f80fd5b6107208383612efe565b600181811c9082168061303257607f821691505b60208210810361305057634e487b7160e01b5f52602260045260245ffd5b50919050565b818382375f9101908152919050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b6001600160401b0384168152604060208201525f6126b2604083018486613065565b602081525f6117cf602083018486613065565b5f823561011e198336030181126130d7575f80fd5b9190910192915050565b5f61012082360312156130f2575f80fd5b6130fa612a5f565b61310383612a30565b81526020808401356001600160401b038082111561311f575f80fd5b9085019036601f830112613131575f80fd5b81358181111561314357613143612a4b565b8060051b613152858201612a87565b918252838101850191858101903684111561316b575f80fd5b86860192505b838310156131a557823585811115613187575f80fd5b6131953689838a0101612ab7565b8352509186019190860190613171565b80878901525050505060408601359250808311156131c1575f80fd5b50506131cf36828601612ab7565b6040830152506131e23660608501612efe565b60608201526131f43660c08501612efe565b608082015292915050565b601f82111561081d57805f5260205f20601f840160051c810160208510156132245750805b601f840160051c820191505b81811015611565575f8155600101613230565b81516001600160401b0381111561325c5761325c612a4b565b6132708161326a845461301e565b846131ff565b602080601f8311600181146132a3575f841561328c5750858301515b5f19600386901b1c1916600185901b178555611a21565b5f85815260208120601f198616915b828110156132d1578886015182559484019460019091019084016132b2565b50858210156132ee57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b8051151582526020808201516001600160801b039081169184019190915260409182015116910152565b5f6101006001600160401b038716835280602084015261334a81840187612975565b91505061335a60408301856132fe565b6126b260a08301846132fe565b5f60208284031215613377575f80fd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b60ff82811682821603908111156105ae576105ae61337e565b600181815b808511156133e557815f19048211156133cb576133cb61337e565b808516156133d857918102915b93841c93908002906133b0565b509250929050565b5f826133fb575060016105ae565b8161340757505f6105ae565b816001811461341d576002811461342757613443565b60019150506105ae565b60ff8411156134385761343861337e565b50506001821b6105ae565b5060208310610133831016604e8410600b8410161715613466575081810a6105ae565b61347083836133ab565b805f19048211156134835761348361337e565b029392505050565b5f61072060ff8416836133ed565b5f826134b357634e487b7160e01b5f52601260045260245ffd5b500490565b80820281158282048414176105ae576105ae61337e565b5f602082840312156134df575f80fd5b815161072081612edb565b6001600160401b0383168152604060208201525f6117cf6040830184612975565b6001600160401b038416815260e0810161352860208301856132fe565b6117cf60808301846132fe565b818103818111156105ae576105ae61337e565b606081016105ae82846132fe565b5f60208284031215613566575f80fd5b8151610720816129ca565b634e487b7160e01b5f52603160045260245ffd5b808201808211156105ae576105ae61337e56fea2646970667358221220df80e6a7b87004603611f5d67e938fb5c503537958c3a4b38e27ee9ca293d8d464736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b9582a609cde986037a5b3a1c2b4e2078c3af045000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000a00000000000000000000000007c1e545a40750ee8761282382d51e017bac68cbb0000000000000000000000009c32fcb86bf0f4a1a8921a9fe46de3198bb884b20000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : token (address): 0xB9582a609cDe986037A5b3A1c2B4E2078c3aF045
Arg [1] : localTokenDecimals (uint8): 18
Arg [2] : allowlist (address[]):
Arg [3] : rmnProxy (address): 0x7c1e545A40750Ee8761282382D51E017BAC68CBB
Arg [4] : router (address): 0x9C32fCB86BF0f4a1A8921a9Fe46de3198bb884B2
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 000000000000000000000000b9582a609cde986037a5b3a1c2b4e2078c3af045
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000007c1e545a40750ee8761282382d51e017bac68cbb
Arg [4] : 0000000000000000000000009c32fcb86bf0f4a1a8921a9fe46de3198bb884b2
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
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.