ETH Price: $3,366.49 (-3.44%)

Contract

0xa6EedFdba0ecAEAF243CcaBaA29A5CA3df77499D
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer207868602024-09-19 19:54:2397 days ago1726775663IN
0xa6EedFdb...3df77499D
0 ETH0.0006126913.09965071
Approve164859932023-01-25 19:42:35700 days ago1674675755IN
0xa6EedFdb...3df77499D
0 ETH0.001852840
Approve164859872023-01-25 19:41:23700 days ago1674675683IN
0xa6EedFdb...3df77499D
0 ETH0.0041936490
Approve164859872023-01-25 19:41:23700 days ago1674675683IN
0xa6EedFdb...3df77499D
0 ETH0.0041936490
Approve164859862023-01-25 19:41:11700 days ago1674675671IN
0xa6EedFdb...3df77499D
0 ETH0.0024026490
Approve164859862023-01-25 19:41:11700 days ago1674675671IN
0xa6EedFdb...3df77499D
0 ETH0.0041936490
Approve164859852023-01-25 19:40:59700 days ago1674675659IN
0xa6EedFdb...3df77499D
0 ETH0.0010868723.35560582
Approve164859852023-01-25 19:40:59700 days ago1674675659IN
0xa6EedFdb...3df77499D
0 ETH0.0010868723.35560582
Approve164859832023-01-25 19:40:35700 days ago1674675635IN
0xa6EedFdb...3df77499D
0 ETH0.0006808525.50411881
Approve164859742023-01-25 19:38:47700 days ago1674675527IN
0xa6EedFdb...3df77499D
0 ETH0.0010795523.19823357
Approve164859712023-01-25 19:38:11700 days ago1674675491IN
0xa6EedFdb...3df77499D
0 ETH0.0013978830
Approve164859672023-01-25 19:37:23700 days ago1674675443IN
0xa6EedFdb...3df77499D
0 ETH0.0011791125.30509462
Approve164859662023-01-25 19:37:11700 days ago1674675431IN
0xa6EedFdb...3df77499D
0 ETH0.0011792925.341584
Approve164859662023-01-25 19:37:11700 days ago1674675431IN
0xa6EedFdb...3df77499D
0 ETH0.0015515833.341584
Approve164859632023-01-25 19:36:35700 days ago1674675395IN
0xa6EedFdb...3df77499D
0 ETH0.0011438524.54834456
Approve164859602023-01-25 19:35:59700 days ago1674675359IN
0xa6EedFdb...3df77499D
0 ETH0.0012460126.74084556
Approve164859592023-01-25 19:35:47700 days ago1674675347IN
0xa6EedFdb...3df77499D
0 ETH0.0015409633.21618793
Approve164859592023-01-25 19:35:47700 days ago1674675347IN
0xa6EedFdb...3df77499D
0 ETH0.002329850
Approve164859542023-01-25 19:34:47700 days ago1674675287IN
0xa6EedFdb...3df77499D
0 ETH0.0011482824.67513407
Approve164859532023-01-25 19:34:35700 days ago1674675275IN
0xa6EedFdb...3df77499D
0 ETH0.0011720325.18553162
Approve164859522023-01-25 19:34:23700 days ago1674675263IN
0xa6EedFdb...3df77499D
0 ETH0.0012554126.94248133
Approve164859512023-01-25 19:34:11700 days ago1674675251IN
0xa6EedFdb...3df77499D
0 ETH0.0011796725.3497725
Approve164859512023-01-25 19:34:11700 days ago1674675251IN
0xa6EedFdb...3df77499D
0 ETH0.0037276880
Approve164859502023-01-25 19:33:59700 days ago1674675239IN
0xa6EedFdb...3df77499D
0 ETH0.0012500626.82781298
Approve164859482023-01-25 19:33:35700 days ago1674675215IN
0xa6EedFdb...3df77499D
0 ETH0.0011915725.60536794
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
CathedrafinanceERC20

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 16: CathedrafinanceERC20.sol
//SPDX-License-Identifier: MIT

pragma solidity 0.8.7;

import {ERC20} from "./ERC20.sol";
import {IERC165} from "./IERC165.sol";
import {ICathedrafinanceERC20} from "./ICathedrafinanceERC20.sol";
import "./OFTCore.sol";

/// @title Cathedrafinance
/// @author Cathedrafinance Dev
/// @notice ERC20 implementation ontop of Layer Zero
/// @notice Ownable is inherited through OFTCore
/// which needs to be maintained either with a governance system or
/// multisig in order to update its Layer Zero configurations.

contract CathedrafinanceERC20 is OFTCore, ERC20, ICathedrafinanceERC20 {
    error NotOwner();
    error MinterSet();

    /// @notice address who is available to mint tokens, set to the treasury
    /// in order to implement the bonding curve.

    address public minter;

    constructor(address _lzEndpoint)
        ERC20("Cathedrafinance", "ICTF")
        OFTCore(_lzEndpoint)
    {}

    function mint(address _to, uint256 _amount) external override onlyMinter {
        _mint(_to, _amount);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(OFTCore, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(ICathedrafinanceERC20).interfaceId ||
            interfaceId == type(IERC20).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function circulatingSupply()
        public
        view
        virtual
        override
        returns (uint256)
    {
        return totalSupply();
    }

    function _debitFrom(
        address _from,
        uint16,
        bytes memory,
        uint256 _amount
    ) internal virtual override {
        address spender = _msgSender();
        if (_from != spender) {
            _spendAllowance(_from, spender, _amount);
        }
        _burn(_from, _amount);
    }

    function _creditTo(
        uint16,
        address _toAddress,
        uint256 _amount
    ) internal virtual override {
        _mint(_toAddress, _amount);
    }

    function setMinter(address _minter) external onlyOwner {
        minter = _minter;
    }

    modifier onlyMinter() {
        require(
            msg.sender == minter || msg.sender == owner(),
            "Only minter can call this"
        );
        _;
    }
}

File 2 of 16: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 3 of 16: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 4 of 16: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 5 of 16: ICathedrafinanceERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IOFTCore.sol";
import "./IERC20.sol";

/**
 * @dev Interface of the OFT standard
 */
interface ICathedrafinanceERC20 is IOFTCore, IERC20 {
    function mint(address _to, uint256 amount_) external;
}

File 6 of 16: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @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);
}

File 7 of 16: IERC20.sol
// 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);
}

File 8 of 16: IERC20Metadata.sol
// 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);
}

File 9 of 16: ILayerZeroEndpoint.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

import "./ILayerZeroUserApplicationConfig.sol";

interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig {
    // @notice send a LayerZero message to the specified address at a LayerZero endpoint.
    // @param _dstChainId - the destination chain identifier
    // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains
    // @param _payload - a custom bytes payload to send to the destination contract
    // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address
    // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction
    // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination
    function send(
        uint16 _dstChainId,
        bytes calldata _destination,
        bytes calldata _payload,
        address payable _refundAddress,
        address _zroPaymentAddress,
        bytes calldata _adapterParams
    )
        external
        payable;

    // @notice used by the messaging library to publish verified payload
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source contract (as bytes) at the source chain
    // @param _dstAddress - the address on destination chain
    // @param _nonce - the unbound message ordering nonce
    // @param _gasLimit - the gas limit for external contract execution
    // @param _payload - verified payload to send to the destination contract
    function receivePayload(
        uint16 _srcChainId,
        bytes calldata _srcAddress,
        address _dstAddress,
        uint64 _nonce,
        uint256 _gasLimit,
        bytes calldata _payload
    )
        external;

    // @notice get the inboundNonce of a lzApp from a source chain which could be EVM or non-EVM chain
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64);

    // @notice get the outboundNonce from this source chain which, consequently, is always an EVM
    // @param _srcAddress - the source chain contract address
    function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64);

    // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery
    // @param _dstChainId - the destination chain identifier
    // @param _userApplication - the user app address on this EVM chain
    // @param _payload - the custom message to send over LayerZero
    // @param _payInZRO - if false, user app pays the protocol fee in native token
    // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain
    function estimateFees(
        uint16 _dstChainId,
        address _userApplication,
        bytes calldata _payload,
        bool _payInZRO,
        bytes calldata _adapterParam
    )
        external
        view
        returns (uint256 nativeFee, uint256 zroFee);

    // @notice get this Endpoint's immutable source identifier
    function getChainId() external view returns (uint16);

    // @notice the interface to retry failed message on this Endpoint destination
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    // @param _payload - the payload to be retried
    function retryPayload(uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload) external;

    // @notice query if any STORED payload (message blocking) at the endpoint.
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool);

    // @notice query if the _libraryAddress is valid for sending msgs.
    // @param _userApplication - the user app address on this EVM chain
    function getSendLibraryAddress(address _userApplication) external view returns (address);

    // @notice query if the _libraryAddress is valid for receiving msgs.
    // @param _userApplication - the user app address on this EVM chain
    function getReceiveLibraryAddress(address _userApplication) external view returns (address);

    // @notice query if the non-reentrancy guard for send() is on
    // @return true if the guard is on. false otherwise
    function isSendingPayload() external view returns (bool);

    // @notice query if the non-reentrancy guard for receive() is on
    // @return true if the guard is on. false otherwise
    function isReceivingPayload() external view returns (bool);

    // @notice get the configuration of the LayerZero messaging library of the specified version
    // @param _version - messaging library version
    // @param _chainId - the chainId for the pending config change
    // @param _userApplication - the contract address of the user application
    // @param _configType - type of configuration. every messaging library has its own convention.
    function getConfig(uint16 _version, uint16 _chainId, address _userApplication, uint256 _configType)
        external
        view
        returns (bytes memory);

    // @notice get the send() LayerZero messaging library version
    // @param _userApplication - the contract address of the user application
    function getSendVersion(address _userApplication) external view returns (uint16);

    // @notice get the lzReceive() LayerZero messaging library version
    // @param _userApplication - the contract address of the user application
    function getReceiveVersion(address _userApplication) external view returns (uint16);
}

File 10 of 16: ILayerZeroReceiver.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

interface ILayerZeroReceiver {
    // @notice LayerZero endpoint will invoke this function to deliver the message on the destination
    // @param _srcChainId - the source endpoint identifier
    // @param _srcAddress - the source sending contract address from the source chain
    // @param _nonce - the ordered message nonce
    // @param _payload - the signed payload is the UA bytes has encoded to be sent
    function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload)
        external;
}

File 11 of 16: ILayerZeroUserApplicationConfig.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

interface ILayerZeroUserApplicationConfig {
    // @notice set the configuration of the LayerZero messaging library of the specified version
    // @param _version - messaging library version
    // @param _chainId - the chainId for the pending config change
    // @param _configType - type of configuration. every messaging library has its own convention.
    // @param _config - configuration in the bytes. can encode arbitrary content.
    function setConfig(uint16 _version, uint16 _chainId, uint256 _configType, bytes calldata _config) external;

    // @notice set the send() LayerZero messaging library version to _version
    // @param _version - new messaging library version
    function setSendVersion(uint16 _version) external;

    // @notice set the lzReceive() LayerZero messaging library version to _version
    // @param _version - new messaging library version
    function setReceiveVersion(uint16 _version) external;

    // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload
    // @param _srcChainId - the chainId of the source chain
    // @param _srcAddress - the contract address of the source contract at the source chain
    function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external;
}

File 12 of 16: IOFTCore.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC165.sol";

/**
 * @dev Interface of the IOFT core standard
 */
interface IOFTCore is IERC165 {
    /**
     * @dev estimate send token `_tokenId` to (`_dstChainId`, `_toAddress`)
     * _dstChainId - L0 defined chain id to send tokens too
     * _toAddress - dynamic bytes array which contains the address to whom you are sending tokens to on the dstChain
     * _amount - amount of the tokens to transfer
     * _useZro - indicates to use zro to pay L0 fees
     * _adapterParam - flexible bytes array to indicate messaging adapter services in L0
     */
    function estimateSendFee(
        uint16 _dstChainId,
        bytes calldata _toAddress,
        uint256 _amount,
        bool _useZro,
        bytes calldata _adapterParams
    ) external view returns (uint256 nativeFee, uint256 zroFee);

    /**
     * @dev send `_amount` amount of token to (`_dstChainId`, `_toAddress`) from `_from`
     * `_from` the owner of token
     * `_dstChainId` the destination chain identifier
     * `_toAddress` can be any size depending on the `dstChainId`.
     * `_amount` the quantity of tokens in wei
     * `_refundAddress` the address LayerZero refunds if too much message fee is sent
     * `_zroPaymentAddress` set to address(0x0) if not paying in ZRO (LayerZero Token)
     * `_adapterParams` is a flexible bytes array to indicate messaging adapter services
     */
    function sendFrom(
        address _from,
        uint16 _dstChainId,
        bytes calldata _toAddress,
        uint256 _amount,
        address payable _refundAddress,
        address _zroPaymentAddress,
        bytes calldata _adapterParams
    ) external payable;

    /**
     * @dev returns the circulating amount of tokens on current chain
     */
    function circulatingSupply() external view returns (uint256);

    /**
     * @dev Emitted when `_amount` tokens are moved from the `_sender` to (`_dstChainId`, `_toAddress`)
     * `_nonce` is the outbound nonce
     */
    event SendToChain(
        address indexed _sender,
        uint16 indexed _dstChainId,
        bytes indexed _toAddress,
        uint256 _amount,
        uint64 _nonce
    );

    /**
     * @dev Emitted when `_amount` tokens are received from `_srcChainId` into the `_toAddress` on the local chain.
     * `_nonce` is the inbound nonce.
     */
    event ReceiveFromChain(
        uint16 indexed _srcChainId,
        bytes indexed _srcAddress,
        address indexed _toAddress,
        uint256 _amount,
        uint64 _nonce
    );
}

File 13 of 16: LzApp.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Ownable.sol";
import "./ILayerZeroReceiver.sol";
import "./ILayerZeroUserApplicationConfig.sol";
import "./ILayerZeroEndpoint.sol";

/*
 * a generic LzReceiver implementation
 */
abstract contract LzApp is
    Ownable,
    ILayerZeroReceiver,
    ILayerZeroUserApplicationConfig
{
    ILayerZeroEndpoint public immutable lzEndpoint;

    mapping(uint16 => bytes) public trustedRemoteLookup;

    event SetTrustedRemote(uint16 _srcChainId, bytes _srcAddress);

    constructor(address _endpoint) {
        lzEndpoint = ILayerZeroEndpoint(_endpoint);
    }

    function lzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) public virtual override {
        // lzReceive must be called by the endpoint for security
        require(
            _msgSender() == address(lzEndpoint),
            "LzApp: invalid endpoint caller"
        );

        bytes memory trustedRemote = trustedRemoteLookup[_srcChainId];
        // if will still block the message pathway from (srcChainId, srcAddress). should not receive message from untrusted remote.
        require(
            _srcAddress.length == trustedRemote.length &&
                keccak256(_srcAddress) == keccak256(trustedRemote),
            "LzApp: invalid source sending contract"
        );

        _blockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    // abstract function - the default behaviour of LayerZero is blocking. See: NonblockingLzApp if you dont need to enforce ordered messaging
    function _blockingLzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) internal virtual;

    function _lzSend(
        uint16 _dstChainId,
        bytes memory _payload,
        address payable _refundAddress,
        address _zroPaymentAddress,
        bytes memory _adapterParams
    ) internal virtual {
        bytes memory trustedRemote = trustedRemoteLookup[_dstChainId];
        require(
            trustedRemote.length != 0,
            "LzApp: destination chain is not a trusted source"
        );
        lzEndpoint.send{value: msg.value}(
            _dstChainId,
            trustedRemote,
            _payload,
            _refundAddress,
            _zroPaymentAddress,
            _adapterParams
        );
    }

    //---------------------------UserApplication config----------------------------------------
    function getConfig(
        uint16 _version,
        uint16 _chainId,
        address,
        uint256 _configType
    ) external view returns (bytes memory) {
        return
            lzEndpoint.getConfig(
                _version,
                _chainId,
                address(this),
                _configType
            );
    }

    // generic config for LayerZero user Application
    function setConfig(
        uint16 _version,
        uint16 _chainId,
        uint256 _configType,
        bytes calldata _config
    ) external override onlyOwner {
        lzEndpoint.setConfig(_version, _chainId, _configType, _config);
    }

    function setSendVersion(uint16 _version) external override onlyOwner {
        lzEndpoint.setSendVersion(_version);
    }

    function setReceiveVersion(uint16 _version) external override onlyOwner {
        lzEndpoint.setReceiveVersion(_version);
    }

    function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress)
        external
        override
        onlyOwner
    {
        lzEndpoint.forceResumeReceive(_srcChainId, _srcAddress);
    }

    // allow owner to set it multiple times.
    function setTrustedRemote(uint16 _srcChainId, bytes calldata _srcAddress)
        external
        virtual
        onlyOwner
    {
        trustedRemoteLookup[_srcChainId] = _srcAddress;
        emit SetTrustedRemote(_srcChainId, _srcAddress);
    }

    //--------------------------- VIEW FUNCTION ----------------------------------------

    function isTrustedRemote(uint16 _srcChainId, bytes calldata _srcAddress)
        external
        view
        returns (bool)
    {
        bytes memory trustedSource = trustedRemoteLookup[_srcChainId];
        return keccak256(trustedSource) == keccak256(_srcAddress);
    }
}

File 14 of 16: NonblockingLzApp.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./LzApp.sol";

/*
 * the default LayerZero messaging behaviour is blocking, i.e. any failed message will block the channel
 * this abstract class try-catch all fail messages and store locally for future retry. hence, non-blocking
 * NOTE: if the srcAddress is not configured properly, it will still block the message pathway from (srcChainId, srcAddress)
 */
abstract contract NonblockingLzApp is LzApp {
    constructor(address _endpoint) LzApp(_endpoint) {}

    mapping(uint16 => mapping(bytes => mapping(uint64 => bytes32))) public failedMessages;

    event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload);

    // overriding the virtual function in LzReceiver
    function _blockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload)
        internal
        virtual
        override
    {
        // try-catch all errors/exceptions
        try this.nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload) {
            // do nothing
        } catch {
            // error / exception
            failedMessages[_srcChainId][_srcAddress][_nonce] = keccak256(_payload);
            emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload);
        }
    }

    function nonblockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload)
        public
        virtual
    {
        // only internal transaction
        require(_msgSender() == address(this), "NonblockingLzApp: caller must be LzApp");
        _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    //@notice override this function
    function _nonblockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload)
        internal
        virtual;

    function retryMessage(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload)
        public
        payable
        virtual
    {
        // assert there is message to retry
        bytes32 payloadHash = failedMessages[_srcChainId][_srcAddress][_nonce];
        require(payloadHash != bytes32(0), "NonblockingLzApp: no stored message");
        require(keccak256(_payload) == payloadHash, "NonblockingLzApp: invalid payload");
        // clear the stored message
        failedMessages[_srcChainId][_srcAddress][_nonce] = bytes32(0);
        // execute the message. revert if it fails again
        _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }
}

File 15 of 16: OFTCore.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./NonblockingLzApp.sol";
import "./IOFTCore.sol";
import "./ERC165.sol";

abstract contract OFTCore is NonblockingLzApp, ERC165, IOFTCore {
    constructor(address _lzEndpoint) NonblockingLzApp(_lzEndpoint) {}

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC165, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IOFTCore).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function estimateSendFee(
        uint16 _dstChainId,
        bytes memory _toAddress,
        uint256 _amount,
        bool _useZro,
        bytes memory _adapterParams
    ) public view virtual override returns (uint256 nativeFee, uint256 zroFee) {
        // mock the payload for send()
        bytes memory payload = abi.encode(_toAddress, _amount);
        return
            lzEndpoint.estimateFees(
                _dstChainId,
                address(this),
                payload,
                _useZro,
                _adapterParams
            );
    }

    function sendFrom(
        address _from,
        uint16 _dstChainId,
        bytes memory _toAddress,
        uint256 _amount,
        address payable _refundAddress,
        address _zroPaymentAddress,
        bytes memory _adapterParams
    ) public payable virtual override {
        _send(
            _from,
            _dstChainId,
            _toAddress,
            _amount,
            _refundAddress,
            _zroPaymentAddress,
            _adapterParams
        );
    }

    function _nonblockingLzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) internal virtual override {
        // decode and load the toAddress
        (bytes memory toAddressBytes, uint256 amount) = abi.decode(
            _payload,
            (bytes, uint256)
        );
        address toAddress;
        assembly {
            toAddress := mload(add(toAddressBytes, 20))
        }

        _creditTo(_srcChainId, toAddress, amount);

        emit ReceiveFromChain(
            _srcChainId,
            _srcAddress,
            toAddress,
            amount,
            _nonce
        );
    }

    function _send(
        address _from,
        uint16 _dstChainId,
        bytes memory _toAddress,
        uint256 _amount,
        address payable _refundAddress,
        address _zroPaymentAddress,
        bytes memory _adapterParams
    ) internal virtual {
        _debitFrom(_from, _dstChainId, _toAddress, _amount);

        bytes memory payload = abi.encode(_toAddress, _amount);
        _lzSend(
            _dstChainId,
            payload,
            _refundAddress,
            _zroPaymentAddress,
            _adapterParams
        );

        uint64 nonce = lzEndpoint.getOutboundNonce(_dstChainId, address(this));
        emit SendToChain(_from, _dstChainId, _toAddress, _amount, nonce);
    }

    function _debitFrom(
        address _from,
        uint16 _dstChainId,
        bytes memory _toAddress,
        uint256 _amount
    ) internal virtual;

    function _creditTo(
        uint16 _srcChainId,
        address _toAddress,
        uint256 _amount
    ) internal virtual;
}

File 16 of 16: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_lzEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"MinterSet","type":"error"},{"inputs":[],"name":"NotOwner","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":true,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":true,"internalType":"address","name":"_toAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"}],"name":"ReceiveFromChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_sender","type":"address"},{"indexed":true,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":true,"internalType":"bytes","name":"_toAddress","type":"bytes"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"}],"name":"SendToChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"SetTrustedRemote","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"failedMessages","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"forceResumeReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"_configType","type":"uint256"}],"name":"getConfig","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"isTrustedRemote","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lzEndpoint","outputs":[{"internalType":"contract ILayerZeroEndpoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"nonblockingLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address payable","name":"_refundAddress","type":"address"},{"internalType":"address","name":"_zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"sendFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_configType","type":"uint256"},{"internalType":"bytes","name":"_config","type":"bytes"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setReceiveVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setSendVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"}]

60a06040523480156200001157600080fd5b5060405162002b9138038062002b918339810160408190526200003491620001d7565b6040518060400160405280600f81526020016e436174686564726166696e616e636560881b8152506040518060400160405280600481526020016324a1aa2360e11b8152508280806200009662000090620000dd60201b60201c565b620000e1565b60601b6001600160601b03191660805250508151620000bd90600690602085019062000131565b508051620000d390600790602084019062000131565b5050505062000246565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200013f9062000209565b90600052602060002090601f016020900481019282620001635760008555620001ae565b82601f106200017e57805160ff1916838001178555620001ae565b82800160010185558215620001ae579182015b82811115620001ae57825182559160200191906001019062000191565b50620001bc929150620001c0565b5090565b5b80821115620001bc5760008155600101620001c1565b600060208284031215620001ea57600080fd5b81516001600160a01b03811681146200020257600080fd5b9392505050565b600181811c908216806200021e57607f821691505b602082108114156200024057634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c6128ed620002a4600039600081816105a50152818161069d0152818161095c01528181610a1801528181610ab201528181610cf901528181610fa1015281816112e9015281816119900152611cbb01526128ed6000f3fe6080604052600436106101f85760003560e01c806366ad5c8a1161010d578063a9059cbb116100a0578063dd62ed3e1161006f578063dd62ed3e146105fa578063eb8d72b71461061a578063f2fde38b1461063a578063f5ecbdbc1461065a578063fca3b5aa1461067a57600080fd5b8063a9059cbb14610573578063b353aaa714610593578063cbed8b9c146105c7578063d1deba1f146105e757600080fd5b80638da5cb5b116100dc5780638da5cb5b1461050b5780639358928b1461052957806395d89b411461053e578063a457c2d71461055357600080fd5b806366ad5c8a1461048057806370a08231146104a0578063715018a6146104d65780637533d788146104eb57600080fd5b806323b872dd116101905780633d8b38f61161015f5780633d8b38f6146103be57806340c10f19146103de57806342d65a8d146103fe578063519056361461041e5780635b8c41e61461043157600080fd5b806323b872dd1461032d5780632a205e3d1461034d578063313ce56714610382578063395093511461039e57600080fd5b806307e0db17116101cc57806307e0db17146102ae578063095ea7b3146102ce57806310ddb137146102ee57806318160ddd1461030e57600080fd5b80621d3567146101fd57806301ffc9a71461021f57806306fdde03146102545780630754617214610276575b600080fd5b34801561020957600080fd5b5061021d6102183660046123b5565b61069a565b005b34801561022b57600080fd5b5061023f61023a3660046121ac565b610841565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610887565b60405161024b91906125ba565b34801561028257600080fd5b50600854610296906001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b5061021d6102c9366004612250565b610919565b3480156102da57600080fd5b5061023f6102e9366004612180565b6109bd565b3480156102fa57600080fd5b5061021d610309366004612250565b6109d5565b34801561031a57600080fd5b506005545b60405190815260200161024b565b34801561033957600080fd5b5061023f610348366004612086565b610a4f565b34801561035957600080fd5b5061036d6103683660046122bd565b610a73565b6040805192835260208301919091520161024b565b34801561038e57600080fd5b506040516012815260200161024b565b3480156103aa57600080fd5b5061023f6103b9366004612180565b610b4d565b3480156103ca57600080fd5b5061023f6103d936600461226b565b610b6f565b3480156103ea57600080fd5b5061021d6103f9366004612180565b610c3b565b34801561040a57600080fd5b5061021d61041936600461226b565b610cb8565b61021d61042c3660046120c7565b610d69565b34801561043d57600080fd5b5061031f61044c366004612354565b6002602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205481565b34801561048c57600080fd5b5061021d61049b3660046123b5565b610d78565b3480156104ac57600080fd5b5061031f6104bb366004612029565b6001600160a01b031660009081526003602052604090205490565b3480156104e257600080fd5b5061021d610de8565b3480156104f757600080fd5b50610269610506366004612250565b610e1e565b34801561051757600080fd5b506000546001600160a01b0316610296565b34801561053557600080fd5b5061031f610eb8565b34801561054a57600080fd5b50610269610ec8565b34801561055f57600080fd5b5061023f61056e366004612180565b610ed7565b34801561057f57600080fd5b5061023f61058e366004612180565b610f52565b34801561059f57600080fd5b506102967f000000000000000000000000000000000000000000000000000000000000000081565b3480156105d357600080fd5b5061021d6105e236600461248a565b610f60565b61021d6105f53660046123b5565b611017565b34801561060657600080fd5b5061031f61061536600461204d565b611169565b34801561062657600080fd5b5061021d61063536600461226b565b611194565b34801561064657600080fd5b5061021d610655366004612029565b61121d565b34801561066657600080fd5b5061026961067536600461243d565b6112b8565b34801561068657600080fd5b5061021d610695366004612029565b611378565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316146107175760405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000060448201526064015b60405180910390fd5b61ffff84166000908152600160205260408120805461073590612826565b80601f016020809104026020016040519081016040528092919081815260200182805461076190612826565b80156107ae5780601f10610783576101008083540402835291602001916107ae565b820191906000526020600020905b81548152906001019060200180831161079157829003601f168201915b50505050509050805184511480156107d3575080805190602001208480519060200120145b61082e5760405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b606482015260840161070e565b61083a858585856113c4565b5050505050565b60006001600160e01b031982166340c10f1960e01b148061087257506001600160e01b031982166336372b0760e01b145b806108815750610881826114b5565b92915050565b60606006805461089690612826565b80601f01602080910402602001604051908101604052809291908181526020018280546108c290612826565b801561090f5780601f106108e45761010080835404028352916020019161090f565b820191906000526020600020905b8154815290600101906020018083116108f257829003601f168201915b5050505050905090565b6000546001600160a01b031633146109435760405162461bcd60e51b815260040161070e906125ef565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906307e0db17906024015b600060405180830381600087803b1580156109a957600080fd5b505af115801561083a573d6000803e3d6000fd5b6000336109cb8185856114ea565b5060019392505050565b6000546001600160a01b031633146109ff5760405162461bcd60e51b815260040161070e906125ef565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906310ddb1379060240161098f565b600033610a5d85828561160e565b610a68858585611682565b506001949350505050565b60008060008686604051602001610a8b9291906125cd565b60408051601f198184030181529082905263040a7bb160e41b825291506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb1090610aef908b90309086908b908b90600401612624565b604080518083038186803b158015610b0657600080fd5b505afa158015610b1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3e91906124f8565b92509250509550959350505050565b6000336109cb818585610b608383611169565b610b6a91906127cb565b6114ea565b61ffff831660009081526001602052604081208054829190610b9090612826565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbc90612826565b8015610c095780601f10610bde57610100808354040283529160200191610c09565b820191906000526020600020905b815481529060010190602001808311610bec57829003601f168201915b505050505090508383604051610c2092919061258e565b60405180910390208180519060200120149150509392505050565b6008546001600160a01b0316331480610c5e57506000546001600160a01b031633145b610caa5760405162461bcd60e51b815260206004820152601960248201527f4f6e6c79206d696e7465722063616e2063616c6c207468697300000000000000604482015260640161070e565b610cb48282611850565b5050565b6000546001600160a01b03163314610ce25760405162461bcd60e51b815260040161070e906125ef565b6040516342d65a8d60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906342d65a8d90610d3290869086908690600401612678565b600060405180830381600087803b158015610d4c57600080fd5b505af1158015610d60573d6000803e3d6000fd5b50505050505050565b610d608787878787878761192f565b333014610dd65760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b606482015260840161070e565b610de284848484611a86565b50505050565b6000546001600160a01b03163314610e125760405162461bcd60e51b815260040161070e906125ef565b610e1c6000611b21565b565b60016020526000908152604090208054610e3790612826565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6390612826565b8015610eb05780601f10610e8557610100808354040283529160200191610eb0565b820191906000526020600020905b815481529060010190602001808311610e9357829003601f168201915b505050505081565b6000610ec360055490565b905090565b60606007805461089690612826565b60003381610ee58286611169565b905083811015610f455760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161070e565b610a6882868684036114ea565b6000336109cb818585611682565b6000546001600160a01b03163314610f8a5760405162461bcd60e51b815260040161070e906125ef565b6040516332fb62e760e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063cbed8b9c90610fde9088908890889088908890600401612746565b600060405180830381600087803b158015610ff857600080fd5b505af115801561100c573d6000803e3d6000fd5b505050505050505050565b61ffff8416600090815260026020526040808220905161103890869061259e565b90815260408051602092819003830190206001600160401b038616600090815292529020549050806110b85760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b606482015260840161070e565b8151602083012081146111175760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b606482015260840161070e565b61ffff8516600090815260026020526040808220905161113890879061259e565b90815260408051602092819003830190206001600160401b0387166000908152925290205561083a85858585611a86565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6000546001600160a01b031633146111be5760405162461bcd60e51b815260040161070e906125ef565b61ffff831660009081526001602052604090206111dc908383611e8e565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab83838360405161121093929190612678565b60405180910390a1505050565b6000546001600160a01b031633146112475760405162461bcd60e51b815260040161070e906125ef565b6001600160a01b0381166112ac5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161070e565b6112b581611b21565b50565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f5ecbdbc9060840160006040518083038186803b15801561133357600080fd5b505afa158015611347573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261136f91908101906121d6565b95945050505050565b6000546001600160a01b031633146113a25760405162461bcd60e51b815260040161070e906125ef565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b604051633356ae4560e11b815230906366ad5c8a906113ed9087908790879087906004016126fd565b600060405180830381600087803b15801561140757600080fd5b505af1925050508015611418575060015b610de2578080519060200120600260008661ffff1661ffff1681526020019081526020016000208460405161144d919061259e565b9081526040805191829003602090810183206001600160401b0387166000908152915220919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d906114a89086908690869086906126fd565b60405180910390a1610de2565b60006001600160e01b031982166301d1d13560e71b148061088157506301ffc9a760e01b6001600160e01b0319831614610881565b6001600160a01b03831661154c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161070e565b6001600160a01b0382166115ad5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161070e565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061161a8484611169565b90506000198114610de257818110156116755760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161070e565b610de284848484036114ea565b6001600160a01b0383166116e65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161070e565b6001600160a01b0382166117485760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161070e565b6001600160a01b038316600090815260036020526040902054818110156117c05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161070e565b6001600160a01b038085166000908152600360205260408082208585039055918516815290812080548492906117f79084906127cb565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161184391815260200190565b60405180910390a3610de2565b6001600160a01b0382166118a65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161070e565b80600560008282546118b891906127cb565b90915550506001600160a01b038216600090815260036020526040812080548392906118e59084906127cb565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b61193b87878787611b76565b600085856040516020016119509291906125cd565b604051602081830303815290604052905061196e8782868686611b9c565b604051630f428ae960e31b815261ffff881660048201523060248201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690637a1457489060440160206040518083038186803b1580156119da57600080fd5b505afa1580156119ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a12919061251c565b905086604051611a22919061259e565b604080519182900382208883526001600160401b03841660208401529161ffff8b16916001600160a01b038d16917f024797cc77ce15dc717112d54fb1df125fdfd8c81344fb046c5e074427ce1543910160405180910390a4505050505050505050565b60008082806020019051810190611a9d919061220a565b60148201519193509150611ab2878284611d36565b806001600160a01b031686604051611aca919061259e565b604080519182900382208583526001600160401b03891660208401529161ffff8b16917f64e10c37f404d128982dce114f5d233c14c5c7f6d8db93099e3d99dacb9e27ba910160405180910390a450505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b505050565b336001600160a01b0385168114611b9257611b9285828461160e565b61083a8583611d40565b61ffff851660009081526001602052604081208054611bba90612826565b80601f0160208091040260200160405190810160405280929190818152602001828054611be690612826565b8015611c335780601f10611c0857610100808354040283529160200191611c33565b820191906000526020600020905b815481529060010190602001808311611c1657829003601f168201915b50505050509050805160001415611ca55760405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b606482015260840161070e565b60405162c5803160e81b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063c5803100903490611cfc908a9086908b908b908b908b90600401612696565b6000604051808303818588803b158015611d1557600080fd5b505af1158015611d29573d6000803e3d6000fd5b5050505050505050505050565b611b718282611850565b6001600160a01b038216611da05760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161070e565b6001600160a01b03821660009081526003602052604090205481811015611e145760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161070e565b6001600160a01b0383166000908152600360205260408120838303905560058054849290611e439084906127e3565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b828054611e9a90612826565b90600052602060002090601f016020900481019282611ebc5760008555611f02565b82601f10611ed55782800160ff19823516178555611f02565b82800160010185558215611f02579182015b82811115611f02578235825591602001919060010190611ee7565b50611f0e929150611f12565b5090565b5b80821115611f0e5760008155600101611f13565b60008083601f840112611f3957600080fd5b5081356001600160401b03811115611f5057600080fd5b602083019150836020828501011115611f6857600080fd5b9250929050565b600082601f830112611f8057600080fd5b8135611f93611f8e826127a4565b612774565b818152846020838601011115611fa857600080fd5b816020850160208301376000918101602001919091529392505050565b600082601f830112611fd657600080fd5b8151611fe4611f8e826127a4565b818152846020838601011115611ff957600080fd5b61200a8260208301602087016127fa565b949350505050565b803561ffff8116811461202457600080fd5b919050565b60006020828403121561203b57600080fd5b81356120468161288d565b9392505050565b6000806040838503121561206057600080fd5b823561206b8161288d565b9150602083013561207b8161288d565b809150509250929050565b60008060006060848603121561209b57600080fd5b83356120a68161288d565b925060208401356120b68161288d565b929592945050506040919091013590565b600080600080600080600060e0888a0312156120e257600080fd5b87356120ed8161288d565b96506120fb60208901612012565b955060408801356001600160401b038082111561211757600080fd5b6121238b838c01611f6f565b965060608a0135955060808a0135915061213c8261288d565b90935060a08901359061214e8261288d565b90925060c0890135908082111561216457600080fd5b506121718a828b01611f6f565b91505092959891949750929550565b6000806040838503121561219357600080fd5b823561219e8161288d565b946020939093013593505050565b6000602082840312156121be57600080fd5b81356001600160e01b03198116811461204657600080fd5b6000602082840312156121e857600080fd5b81516001600160401b038111156121fe57600080fd5b61200a84828501611fc5565b6000806040838503121561221d57600080fd5b82516001600160401b0381111561223357600080fd5b61223f85828601611fc5565b925050602083015190509250929050565b60006020828403121561226257600080fd5b61204682612012565b60008060006040848603121561228057600080fd5b61228984612012565b925060208401356001600160401b038111156122a457600080fd5b6122b086828701611f27565b9497909650939450505050565b600080600080600060a086880312156122d557600080fd5b6122de86612012565b945060208601356001600160401b03808211156122fa57600080fd5b61230689838a01611f6f565b95506040880135945060608801359150811515821461232457600080fd5b9092506080870135908082111561233a57600080fd5b5061234788828901611f6f565b9150509295509295909350565b60008060006060848603121561236957600080fd5b61237284612012565b925060208401356001600160401b0381111561238d57600080fd5b61239986828701611f6f565b92505060408401356123aa816128a2565b809150509250925092565b600080600080608085870312156123cb57600080fd5b6123d485612012565b935060208501356001600160401b03808211156123f057600080fd5b6123fc88838901611f6f565b94506040870135915061240e826128a2565b9092506060860135908082111561242457600080fd5b5061243187828801611f6f565b91505092959194509250565b6000806000806080858703121561245357600080fd5b61245c85612012565b935061246a60208601612012565b9250604085013561247a8161288d565b9396929550929360600135925050565b6000806000806000608086880312156124a257600080fd5b6124ab86612012565b94506124b960208701612012565b93506040860135925060608601356001600160401b038111156124db57600080fd5b6124e788828901611f27565b969995985093965092949392505050565b6000806040838503121561250b57600080fd5b505080516020909101519092909150565b60006020828403121561252e57600080fd5b8151612046816128a2565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6000815180845261257a8160208601602086016127fa565b601f01601f19169290920160200192915050565b8183823760009101908152919050565b600082516125b08184602087016127fa565b9190910192915050565b6020815260006120466020830184612562565b6040815260006125e06040830185612562565b90508260208301529392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b61ffff861681526001600160a01b038516602082015260a06040820181905260009061265290830186612562565b8415156060840152828103608084015261266c8185612562565b98975050505050505050565b61ffff8416815260406020820152600061136f604083018486612539565b61ffff8716815260c0602082015260006126b360c0830188612562565b82810360408401526126c58188612562565b6001600160a01b0387811660608601528616608085015283810360a085015290506126f08185612562565b9998505050505050505050565b61ffff8516815260806020820152600061271a6080830186612562565b6001600160401b0385166040840152828103606084015261273b8185612562565b979650505050505050565b600061ffff80881683528087166020840152508460408301526080606083015261273b608083018486612539565b604051601f8201601f191681016001600160401b038111828210171561279c5761279c612877565b604052919050565b60006001600160401b038211156127bd576127bd612877565b50601f01601f191660200190565b600082198211156127de576127de612861565b500190565b6000828210156127f5576127f5612861565b500390565b60005b838110156128155781810151838201526020016127fd565b83811115610de25750506000910152565b600181811c9082168061283a57607f821691505b6020821081141561285b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146112b557600080fd5b6001600160401b03811681146112b557600080fdfea26469706673582212201a2510de5068b5f4319ad07f30f1160b88c69d222b3724d0eeddc98f80de2ce764736f6c6343000807003300000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675

Deployed Bytecode

0x6080604052600436106101f85760003560e01c806366ad5c8a1161010d578063a9059cbb116100a0578063dd62ed3e1161006f578063dd62ed3e146105fa578063eb8d72b71461061a578063f2fde38b1461063a578063f5ecbdbc1461065a578063fca3b5aa1461067a57600080fd5b8063a9059cbb14610573578063b353aaa714610593578063cbed8b9c146105c7578063d1deba1f146105e757600080fd5b80638da5cb5b116100dc5780638da5cb5b1461050b5780639358928b1461052957806395d89b411461053e578063a457c2d71461055357600080fd5b806366ad5c8a1461048057806370a08231146104a0578063715018a6146104d65780637533d788146104eb57600080fd5b806323b872dd116101905780633d8b38f61161015f5780633d8b38f6146103be57806340c10f19146103de57806342d65a8d146103fe578063519056361461041e5780635b8c41e61461043157600080fd5b806323b872dd1461032d5780632a205e3d1461034d578063313ce56714610382578063395093511461039e57600080fd5b806307e0db17116101cc57806307e0db17146102ae578063095ea7b3146102ce57806310ddb137146102ee57806318160ddd1461030e57600080fd5b80621d3567146101fd57806301ffc9a71461021f57806306fdde03146102545780630754617214610276575b600080fd5b34801561020957600080fd5b5061021d6102183660046123b5565b61069a565b005b34801561022b57600080fd5b5061023f61023a3660046121ac565b610841565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610887565b60405161024b91906125ba565b34801561028257600080fd5b50600854610296906001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b5061021d6102c9366004612250565b610919565b3480156102da57600080fd5b5061023f6102e9366004612180565b6109bd565b3480156102fa57600080fd5b5061021d610309366004612250565b6109d5565b34801561031a57600080fd5b506005545b60405190815260200161024b565b34801561033957600080fd5b5061023f610348366004612086565b610a4f565b34801561035957600080fd5b5061036d6103683660046122bd565b610a73565b6040805192835260208301919091520161024b565b34801561038e57600080fd5b506040516012815260200161024b565b3480156103aa57600080fd5b5061023f6103b9366004612180565b610b4d565b3480156103ca57600080fd5b5061023f6103d936600461226b565b610b6f565b3480156103ea57600080fd5b5061021d6103f9366004612180565b610c3b565b34801561040a57600080fd5b5061021d61041936600461226b565b610cb8565b61021d61042c3660046120c7565b610d69565b34801561043d57600080fd5b5061031f61044c366004612354565b6002602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205481565b34801561048c57600080fd5b5061021d61049b3660046123b5565b610d78565b3480156104ac57600080fd5b5061031f6104bb366004612029565b6001600160a01b031660009081526003602052604090205490565b3480156104e257600080fd5b5061021d610de8565b3480156104f757600080fd5b50610269610506366004612250565b610e1e565b34801561051757600080fd5b506000546001600160a01b0316610296565b34801561053557600080fd5b5061031f610eb8565b34801561054a57600080fd5b50610269610ec8565b34801561055f57600080fd5b5061023f61056e366004612180565b610ed7565b34801561057f57600080fd5b5061023f61058e366004612180565b610f52565b34801561059f57600080fd5b506102967f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67581565b3480156105d357600080fd5b5061021d6105e236600461248a565b610f60565b61021d6105f53660046123b5565b611017565b34801561060657600080fd5b5061031f61061536600461204d565b611169565b34801561062657600080fd5b5061021d61063536600461226b565b611194565b34801561064657600080fd5b5061021d610655366004612029565b61121d565b34801561066657600080fd5b5061026961067536600461243d565b6112b8565b34801561068657600080fd5b5061021d610695366004612029565b611378565b337f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b0316146107175760405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000060448201526064015b60405180910390fd5b61ffff84166000908152600160205260408120805461073590612826565b80601f016020809104026020016040519081016040528092919081815260200182805461076190612826565b80156107ae5780601f10610783576101008083540402835291602001916107ae565b820191906000526020600020905b81548152906001019060200180831161079157829003601f168201915b50505050509050805184511480156107d3575080805190602001208480519060200120145b61082e5760405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b606482015260840161070e565b61083a858585856113c4565b5050505050565b60006001600160e01b031982166340c10f1960e01b148061087257506001600160e01b031982166336372b0760e01b145b806108815750610881826114b5565b92915050565b60606006805461089690612826565b80601f01602080910402602001604051908101604052809291908181526020018280546108c290612826565b801561090f5780601f106108e45761010080835404028352916020019161090f565b820191906000526020600020905b8154815290600101906020018083116108f257829003601f168201915b5050505050905090565b6000546001600160a01b031633146109435760405162461bcd60e51b815260040161070e906125ef565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b0316906307e0db17906024015b600060405180830381600087803b1580156109a957600080fd5b505af115801561083a573d6000803e3d6000fd5b6000336109cb8185856114ea565b5060019392505050565b6000546001600160a01b031633146109ff5760405162461bcd60e51b815260040161070e906125ef565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b0316906310ddb1379060240161098f565b600033610a5d85828561160e565b610a68858585611682565b506001949350505050565b60008060008686604051602001610a8b9291906125cd565b60408051601f198184030181529082905263040a7bb160e41b825291506001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67516906340a7bb1090610aef908b90309086908b908b90600401612624565b604080518083038186803b158015610b0657600080fd5b505afa158015610b1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3e91906124f8565b92509250509550959350505050565b6000336109cb818585610b608383611169565b610b6a91906127cb565b6114ea565b61ffff831660009081526001602052604081208054829190610b9090612826565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbc90612826565b8015610c095780601f10610bde57610100808354040283529160200191610c09565b820191906000526020600020905b815481529060010190602001808311610bec57829003601f168201915b505050505090508383604051610c2092919061258e565b60405180910390208180519060200120149150509392505050565b6008546001600160a01b0316331480610c5e57506000546001600160a01b031633145b610caa5760405162461bcd60e51b815260206004820152601960248201527f4f6e6c79206d696e7465722063616e2063616c6c207468697300000000000000604482015260640161070e565b610cb48282611850565b5050565b6000546001600160a01b03163314610ce25760405162461bcd60e51b815260040161070e906125ef565b6040516342d65a8d60e01b81526001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67516906342d65a8d90610d3290869086908690600401612678565b600060405180830381600087803b158015610d4c57600080fd5b505af1158015610d60573d6000803e3d6000fd5b50505050505050565b610d608787878787878761192f565b333014610dd65760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b606482015260840161070e565b610de284848484611a86565b50505050565b6000546001600160a01b03163314610e125760405162461bcd60e51b815260040161070e906125ef565b610e1c6000611b21565b565b60016020526000908152604090208054610e3790612826565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6390612826565b8015610eb05780601f10610e8557610100808354040283529160200191610eb0565b820191906000526020600020905b815481529060010190602001808311610e9357829003601f168201915b505050505081565b6000610ec360055490565b905090565b60606007805461089690612826565b60003381610ee58286611169565b905083811015610f455760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161070e565b610a6882868684036114ea565b6000336109cb818585611682565b6000546001600160a01b03163314610f8a5760405162461bcd60e51b815260040161070e906125ef565b6040516332fb62e760e21b81526001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675169063cbed8b9c90610fde9088908890889088908890600401612746565b600060405180830381600087803b158015610ff857600080fd5b505af115801561100c573d6000803e3d6000fd5b505050505050505050565b61ffff8416600090815260026020526040808220905161103890869061259e565b90815260408051602092819003830190206001600160401b038616600090815292529020549050806110b85760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b606482015260840161070e565b8151602083012081146111175760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b606482015260840161070e565b61ffff8516600090815260026020526040808220905161113890879061259e565b90815260408051602092819003830190206001600160401b0387166000908152925290205561083a85858585611a86565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6000546001600160a01b031633146111be5760405162461bcd60e51b815260040161070e906125ef565b61ffff831660009081526001602052604090206111dc908383611e8e565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab83838360405161121093929190612678565b60405180910390a1505050565b6000546001600160a01b031633146112475760405162461bcd60e51b815260040161070e906125ef565b6001600160a01b0381166112ac5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161070e565b6112b581611b21565b50565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b03169063f5ecbdbc9060840160006040518083038186803b15801561133357600080fd5b505afa158015611347573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261136f91908101906121d6565b95945050505050565b6000546001600160a01b031633146113a25760405162461bcd60e51b815260040161070e906125ef565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b604051633356ae4560e11b815230906366ad5c8a906113ed9087908790879087906004016126fd565b600060405180830381600087803b15801561140757600080fd5b505af1925050508015611418575060015b610de2578080519060200120600260008661ffff1661ffff1681526020019081526020016000208460405161144d919061259e565b9081526040805191829003602090810183206001600160401b0387166000908152915220919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d906114a89086908690869086906126fd565b60405180910390a1610de2565b60006001600160e01b031982166301d1d13560e71b148061088157506301ffc9a760e01b6001600160e01b0319831614610881565b6001600160a01b03831661154c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161070e565b6001600160a01b0382166115ad5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161070e565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061161a8484611169565b90506000198114610de257818110156116755760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161070e565b610de284848484036114ea565b6001600160a01b0383166116e65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161070e565b6001600160a01b0382166117485760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161070e565b6001600160a01b038316600090815260036020526040902054818110156117c05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161070e565b6001600160a01b038085166000908152600360205260408082208585039055918516815290812080548492906117f79084906127cb565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161184391815260200190565b60405180910390a3610de2565b6001600160a01b0382166118a65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161070e565b80600560008282546118b891906127cb565b90915550506001600160a01b038216600090815260036020526040812080548392906118e59084906127cb565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b61193b87878787611b76565b600085856040516020016119509291906125cd565b604051602081830303815290604052905061196e8782868686611b9c565b604051630f428ae960e31b815261ffff881660048201523060248201526000907f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b031690637a1457489060440160206040518083038186803b1580156119da57600080fd5b505afa1580156119ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a12919061251c565b905086604051611a22919061259e565b604080519182900382208883526001600160401b03841660208401529161ffff8b16916001600160a01b038d16917f024797cc77ce15dc717112d54fb1df125fdfd8c81344fb046c5e074427ce1543910160405180910390a4505050505050505050565b60008082806020019051810190611a9d919061220a565b60148201519193509150611ab2878284611d36565b806001600160a01b031686604051611aca919061259e565b604080519182900382208583526001600160401b03891660208401529161ffff8b16917f64e10c37f404d128982dce114f5d233c14c5c7f6d8db93099e3d99dacb9e27ba910160405180910390a450505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b505050565b336001600160a01b0385168114611b9257611b9285828461160e565b61083a8583611d40565b61ffff851660009081526001602052604081208054611bba90612826565b80601f0160208091040260200160405190810160405280929190818152602001828054611be690612826565b8015611c335780601f10611c0857610100808354040283529160200191611c33565b820191906000526020600020905b815481529060010190602001808311611c1657829003601f168201915b50505050509050805160001415611ca55760405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b606482015260840161070e565b60405162c5803160e81b81526001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675169063c5803100903490611cfc908a9086908b908b908b908b90600401612696565b6000604051808303818588803b158015611d1557600080fd5b505af1158015611d29573d6000803e3d6000fd5b5050505050505050505050565b611b718282611850565b6001600160a01b038216611da05760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161070e565b6001600160a01b03821660009081526003602052604090205481811015611e145760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161070e565b6001600160a01b0383166000908152600360205260408120838303905560058054849290611e439084906127e3565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b828054611e9a90612826565b90600052602060002090601f016020900481019282611ebc5760008555611f02565b82601f10611ed55782800160ff19823516178555611f02565b82800160010185558215611f02579182015b82811115611f02578235825591602001919060010190611ee7565b50611f0e929150611f12565b5090565b5b80821115611f0e5760008155600101611f13565b60008083601f840112611f3957600080fd5b5081356001600160401b03811115611f5057600080fd5b602083019150836020828501011115611f6857600080fd5b9250929050565b600082601f830112611f8057600080fd5b8135611f93611f8e826127a4565b612774565b818152846020838601011115611fa857600080fd5b816020850160208301376000918101602001919091529392505050565b600082601f830112611fd657600080fd5b8151611fe4611f8e826127a4565b818152846020838601011115611ff957600080fd5b61200a8260208301602087016127fa565b949350505050565b803561ffff8116811461202457600080fd5b919050565b60006020828403121561203b57600080fd5b81356120468161288d565b9392505050565b6000806040838503121561206057600080fd5b823561206b8161288d565b9150602083013561207b8161288d565b809150509250929050565b60008060006060848603121561209b57600080fd5b83356120a68161288d565b925060208401356120b68161288d565b929592945050506040919091013590565b600080600080600080600060e0888a0312156120e257600080fd5b87356120ed8161288d565b96506120fb60208901612012565b955060408801356001600160401b038082111561211757600080fd5b6121238b838c01611f6f565b965060608a0135955060808a0135915061213c8261288d565b90935060a08901359061214e8261288d565b90925060c0890135908082111561216457600080fd5b506121718a828b01611f6f565b91505092959891949750929550565b6000806040838503121561219357600080fd5b823561219e8161288d565b946020939093013593505050565b6000602082840312156121be57600080fd5b81356001600160e01b03198116811461204657600080fd5b6000602082840312156121e857600080fd5b81516001600160401b038111156121fe57600080fd5b61200a84828501611fc5565b6000806040838503121561221d57600080fd5b82516001600160401b0381111561223357600080fd5b61223f85828601611fc5565b925050602083015190509250929050565b60006020828403121561226257600080fd5b61204682612012565b60008060006040848603121561228057600080fd5b61228984612012565b925060208401356001600160401b038111156122a457600080fd5b6122b086828701611f27565b9497909650939450505050565b600080600080600060a086880312156122d557600080fd5b6122de86612012565b945060208601356001600160401b03808211156122fa57600080fd5b61230689838a01611f6f565b95506040880135945060608801359150811515821461232457600080fd5b9092506080870135908082111561233a57600080fd5b5061234788828901611f6f565b9150509295509295909350565b60008060006060848603121561236957600080fd5b61237284612012565b925060208401356001600160401b0381111561238d57600080fd5b61239986828701611f6f565b92505060408401356123aa816128a2565b809150509250925092565b600080600080608085870312156123cb57600080fd5b6123d485612012565b935060208501356001600160401b03808211156123f057600080fd5b6123fc88838901611f6f565b94506040870135915061240e826128a2565b9092506060860135908082111561242457600080fd5b5061243187828801611f6f565b91505092959194509250565b6000806000806080858703121561245357600080fd5b61245c85612012565b935061246a60208601612012565b9250604085013561247a8161288d565b9396929550929360600135925050565b6000806000806000608086880312156124a257600080fd5b6124ab86612012565b94506124b960208701612012565b93506040860135925060608601356001600160401b038111156124db57600080fd5b6124e788828901611f27565b969995985093965092949392505050565b6000806040838503121561250b57600080fd5b505080516020909101519092909150565b60006020828403121561252e57600080fd5b8151612046816128a2565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6000815180845261257a8160208601602086016127fa565b601f01601f19169290920160200192915050565b8183823760009101908152919050565b600082516125b08184602087016127fa565b9190910192915050565b6020815260006120466020830184612562565b6040815260006125e06040830185612562565b90508260208301529392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b61ffff861681526001600160a01b038516602082015260a06040820181905260009061265290830186612562565b8415156060840152828103608084015261266c8185612562565b98975050505050505050565b61ffff8416815260406020820152600061136f604083018486612539565b61ffff8716815260c0602082015260006126b360c0830188612562565b82810360408401526126c58188612562565b6001600160a01b0387811660608601528616608085015283810360a085015290506126f08185612562565b9998505050505050505050565b61ffff8516815260806020820152600061271a6080830186612562565b6001600160401b0385166040840152828103606084015261273b8185612562565b979650505050505050565b600061ffff80881683528087166020840152508460408301526080606083015261273b608083018486612539565b604051601f8201601f191681016001600160401b038111828210171561279c5761279c612877565b604052919050565b60006001600160401b038211156127bd576127bd612877565b50601f01601f191660200190565b600082198211156127de576127de612861565b500190565b6000828210156127f5576127f5612861565b500390565b60005b838110156128155781810151838201526020016127fd565b83811115610de25750506000910152565b600181811c9082168061283a57607f821691505b6020821081141561285b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146112b557600080fd5b6001600160401b03811681146112b557600080fdfea26469706673582212201a2510de5068b5f4319ad07f30f1160b88c69d222b3724d0eeddc98f80de2ce764736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675

-----Decoded View---------------
Arg [0] : _lzEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675


Deployed Bytecode Sourcemap

515:1777:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;628:843:12;;;;;;;;;;-1:-1:-1;628:843:12;;;;;:::i;:::-;;:::i;:::-;;1023:350:0;;;;;;;;;;-1:-1:-1;1023:350:0;;;;;:::i;:::-;;:::i;:::-;;;10860:14:16;;10853:22;10835:41;;10823:2;10808:18;1023:350:0;;;;;;;;2135:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;765:21:0:-;;;;;;;;;;-1:-1:-1;765:21:0;;;;-1:-1:-1;;;;;765:21:0;;;;;;-1:-1:-1;;;;;10651:32:16;;;10633:51;;10621:2;10606:18;765:21:0;10487:203:16;3178:121:12;;;;;;;;;;-1:-1:-1;3178:121:12;;;;;:::i;:::-;;:::i;4412:197:3:-;;;;;;;;;;-1:-1:-1;4412:197:3;;;;;:::i;:::-;;:::i;3305:127:12:-;;;;;;;;;;-1:-1:-1;3305:127:12;;;;;:::i;:::-;;:::i;3223:106:3:-;;;;;;;;;;-1:-1:-1;3310:12:3;;3223:106;;;11033:25:16;;;11021:2;11006:18;3223:106:3;10887:177:16;5171:286:3;;;;;;;;;;-1:-1:-1;5171:286:3;;;;;:::i;:::-;;:::i;568:567:14:-;;;;;;;;;;-1:-1:-1;568:567:14;;;;;:::i;:::-;;:::i;:::-;;;;23696:25:16;;;23752:2;23737:18;;23730:34;;;;23669:18;568:567:14;23522:248:16;3072:91:3;;;;;;;;;;-1:-1:-1;3072:91:3;;3154:2;24193:36:16;;24181:2;24166:18;3072:91:3;24051:184:16;5852:234:3;;;;;;;;;;-1:-1:-1;5852:234:3;;;;;:::i;:::-;;:::i;4038:275:12:-;;;;;;;;;;-1:-1:-1;4038:275:12;;;;;:::i;:::-;;:::i;908:109:0:-;;;;;;;;;;-1:-1:-1;908:109:0;;;;;:::i;:::-;;:::i;3438:204:12:-;;;;;;;;;;-1:-1:-1;3438:204:12;;;;;:::i;:::-;;:::i;1141:487:14:-;;;;;;:::i;:::-;;:::i;531:85:13:-;;;;;;;;;;-1:-1:-1;531:85:13;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1325:358;;;;;;;;;;-1:-1:-1;1325:358:13;;;;;:::i;:::-;;:::i;3387:125:3:-;;;;;;;;;;-1:-1:-1;3387:125:3;;;;;:::i;:::-;-1:-1:-1;;;;;3487:18:3;3461:7;3487:18;;;:9;:18;;;;;;;3387:125;1661:101:15;;;;;;;;;;;;;:::i;406:51:12:-;;;;;;;;;;-1:-1:-1;406:51:12;;;;;:::i;:::-;;:::i;1029:85:15:-;;;;;;;;;;-1:-1:-1;1075:7:15;1101:6;-1:-1:-1;;;;;1101:6:15;1029:85;;1379:157:0;;;;;;;;;;;;;:::i;2346:102:3:-;;;;;;;;;;;;;:::i;6573:427::-;;;;;;;;;;-1:-1:-1;6573:427:3;;;;;:::i;:::-;;:::i;3708:189::-;;;;;;;;;;-1:-1:-1;3708:189:3;;;;;:::i;:::-;;:::i;353:46:12:-;;;;;;;;;;;;;;;2929:243;;;;;;;;;;-1:-1:-1;2929:243:12;;;;;:::i;:::-;;:::i;1880:700:13:-;;;;;;:::i;:::-;;:::i;3955:149:3:-;;;;;;;;;;-1:-1:-1;3955:149:3;;;;;:::i;:::-;;:::i;3693:249:12:-;;;;;;;;;;-1:-1:-1;3693:249:12;;;;;:::i;:::-;;:::i;1911:198:15:-;;;;;;;;;;-1:-1:-1;1911:198:15;;;;;:::i;:::-;;:::i;2530:340:12:-;;;;;;;;;;-1:-1:-1;2530:340:12;;;;;:::i;:::-;;:::i;2029:88:0:-;;;;;;;;;;-1:-1:-1;2029:88:0;;;;;:::i;:::-;;:::i;628:843:12:-;719:10:1;913::12;-1:-1:-1;;;;;889:35:12;;868:112;;;;-1:-1:-1;;;868:112:12;;17378:2:16;868:112:12;;;17360:21:16;17417:2;17397:18;;;17390:30;17456:32;17436:18;;;17429:60;17506:18;;868:112:12;;;;;;;;;1020:32;;;991:26;1020:32;;;:19;:32;;;;;991:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1237:13;:20;1215:11;:18;:42;:112;;;;;1313:13;1303:24;;;;;;1287:11;1277:22;;;;;;:50;1215:112;1194:197;;;;-1:-1:-1;;;1194:197:12;;18544:2:16;1194:197:12;;;18526:21:16;18583:2;18563:18;;;18556:30;18622:34;18602:18;;;18595:62;-1:-1:-1;;;18673:18:16;;;18666:36;18719:19;;1194:197:12;18342:402:16;1194:197:12;1402:62;1421:11;1434;1447:6;1455:8;1402:18;:62::i;:::-;793:678;628:843;;;;:::o;1023:350:0:-;1166:4;-1:-1:-1;;;;;;1205:54:0;;-1:-1:-1;;;1205:54:0;;:109;;-1:-1:-1;;;;;;;1275:39:0;;-1:-1:-1;;;1275:39:0;1205:109;:161;;;;1330:36;1354:11;1330:23;:36::i;:::-;1186:180;1023:350;-1:-1:-1;;1023:350:0:o;2135:98:3:-;2189:13;2221:5;2214:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2135:98;:::o;3178:121:12:-;1075:7:15;1101:6;-1:-1:-1;;;;;1101:6:15;719:10:1;1241:23:15;1233:68;;;;-1:-1:-1;;;1233:68:15;;;;;;;:::i;:::-;3257:35:12::1;::::0;-1:-1:-1;;;3257:35:12;;19689:6:16;19677:19;;3257:35:12::1;::::0;::::1;19659:38:16::0;3257:10:12::1;-1:-1:-1::0;;;;;3257:25:12::1;::::0;::::1;::::0;19632:18:16;;3257:35:12::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;4412:197:3::0;4495:4;719:10:1;4549:32:3;719:10:1;4565:7:3;4574:6;4549:8;:32::i;:::-;-1:-1:-1;4598:4:3;;4412:197;-1:-1:-1;;;4412:197:3:o;3305:127:12:-;1075:7:15;1101:6;-1:-1:-1;;;;;1101:6:15;719:10:1;1241:23:15;1233:68;;;;-1:-1:-1;;;1233:68:15;;;;;;;:::i;:::-;3387:38:12::1;::::0;-1:-1:-1;;;3387:38:12;;19689:6:16;19677:19;;3387:38:12::1;::::0;::::1;19659::16::0;3387:10:12::1;-1:-1:-1::0;;;;;3387:28:12::1;::::0;::::1;::::0;19632:18:16;;3387:38:12::1;19515:188:16::0;5171:286:3;5298:4;719:10:1;5354:38:3;5370:4;719:10:1;5385:6:3;5354:15;:38::i;:::-;5402:27;5412:4;5418:2;5422:6;5402:9;:27::i;:::-;-1:-1:-1;5446:4:3;;5171:286;-1:-1:-1;;;;5171:286:3:o;568:567:14:-;782:17;801:14;866:20;900:10;912:7;889:31;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;889:31:14;;;;;;;;;;-1:-1:-1;;;949:179:14;;889:31;-1:-1:-1;;;;;;949:10:14;:23;;;;:179;;990:11;;1027:4;;889:31;;1075:7;;1100:14;;949:179;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;930:198;;;;;568:567;;;;;;;;:::o;5852:234:3:-;5940:4;719:10:1;5994:64:3;719:10:1;6010:7:3;6047:10;6019:25;719:10:1;6010:7:3;6019:9;:25::i;:::-;:38;;;;:::i;:::-;5994:8;:64::i;4038:275:12:-;4207:32;;;4158:4;4207:32;;;:19;:32;;;;;4178:61;;4158:4;;4207:32;4178:61;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4294:11;;4284:22;;;;;;;:::i;:::-;;;;;;;;4266:13;4256:24;;;;;;:50;4249:57;;;4038:275;;;;;:::o;908:109:0:-;2190:6;;-1:-1:-1;;;;;2190:6:0;2176:10;:20;;:45;;-1:-1:-1;1075:7:15;1101:6;-1:-1:-1;;;;;1101:6:15;2200:10:0;:21;2176:45;2155:117;;;;-1:-1:-1;;;2155:117:0;;13459:2:16;2155:117:0;;;13441:21:16;13498:2;13478:18;;;13471:30;13537:27;13517:18;;;13510:55;13582:18;;2155:117:0;13257:349:16;2155:117:0;991:19:::1;997:3;1002:7;991:5;:19::i;:::-;908:109:::0;;:::o;3438:204:12:-;1075:7:15;1101:6;-1:-1:-1;;;;;1101:6:15;719:10:1;1241:23:15;1233:68;;;;-1:-1:-1;;;1233:68:15;;;;;;;:::i;:::-;3580:55:12::1;::::0;-1:-1:-1;;;3580:55:12;;-1:-1:-1;;;;;3580:10:12::1;:29;::::0;::::1;::::0;:55:::1;::::0;3610:11;;3623;;;;3580:55:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;3438:204:::0;;;:::o;1141:487:14:-;1429:192;1448:5;1467:11;1492:10;1516:7;1537:14;1565:18;1597:14;1429:5;:192::i;1325:358:13:-;719:10:1;1553:4:13;1529:29;1521:80;;;;-1:-1:-1;;;1521:80:13;;12245:2:16;1521:80:13;;;12227:21:16;12284:2;12264:18;;;12257:30;12323:34;12303:18;;;12296:62;-1:-1:-1;;;12374:18:16;;;12367:36;12420:19;;1521:80:13;12043:402:16;1521:80:13;1611:65;1633:11;1646;1659:6;1667:8;1611:21;:65::i;:::-;1325:358;;;;:::o;1661:101:15:-;1075:7;1101:6;-1:-1:-1;;;;;1101:6:15;719:10:1;1241:23:15;1233:68;;;;-1:-1:-1;;;1233:68:15;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;406:51:12:-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1379:157:0:-;1486:7;1516:13;3310:12:3;;;3223:106;1516:13:0;1509:20;;1379:157;:::o;2346:102:3:-;2402:13;2434:7;2427:14;;;;;:::i;6573:427::-;6666:4;719:10:1;6666:4:3;6747:25;719:10:1;6764:7:3;6747:9;:25::i;:::-;6720:52;;6810:15;6790:16;:35;;6782:85;;;;-1:-1:-1;;;6782:85:3;;18951:2:16;6782:85:3;;;18933:21:16;18990:2;18970:18;;;18963:30;19029:34;19009:18;;;19002:62;-1:-1:-1;;;19080:18:16;;;19073:35;19125:19;;6782:85:3;18749:401:16;6782:85:3;6901:60;6910:5;6917:7;6945:15;6926:16;:34;6901:8;:60::i;3708:189::-;3787:4;719:10:1;3841:28:3;719:10:1;3858:2:3;3862:6;3841:9;:28::i;2929:243:12:-;1075:7:15;1101:6;-1:-1:-1;;;;;1101:6:15;719:10:1;1241:23:15;1233:68;;;;-1:-1:-1;;;1233:68:15;;;;;;;:::i;:::-;3103:62:12::1;::::0;-1:-1:-1;;;3103:62:12;;-1:-1:-1;;;;;3103:10:12::1;:20;::::0;::::1;::::0;:62:::1;::::0;3124:8;;3134;;3144:11;;3157:7;;;;3103:62:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;2929:243:::0;;;;;:::o;1880:700:13:-;2113:27;;;2091:19;2113:27;;;:14;:27;;;;;;:40;;;;2141:11;;2113:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2113:48:13;;;;;;;;;;;;-1:-1:-1;2113:48:13;2171:73;;;;-1:-1:-1;;;2171:73:13;;14623:2:16;2171:73:13;;;14605:21:16;14662:2;14642:18;;;14635:30;14701:34;14681:18;;;14674:62;-1:-1:-1;;;14752:18:16;;;14745:33;14795:19;;2171:73:13;14421:399:16;2171:73:13;2262:19;;;;;;:34;;2254:80;;;;-1:-1:-1;;;2254:80:13;;18142:2:16;2254:80:13;;;18124:21:16;18181:2;18161:18;;;18154:30;18220:34;18200:18;;;18193:62;-1:-1:-1;;;18271:18:16;;;18264:31;18312:19;;2254:80:13;17940:397:16;2254:80:13;2380:27;;;2439:1;2380:27;;;:14;:27;;;;;;:40;;;;2408:11;;2380:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2380:48:13;;;;;;;;;;:61;2508:65;2530:11;2543;2380:48;2564:8;2508:21;:65::i;3955:149:3:-;-1:-1:-1;;;;;4070:18:3;;;4044:7;4070:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3955:149::o;3693:249:12:-;1075:7:15;1101:6;-1:-1:-1;;;;;1101:6:15;719:10:1;1241:23:15;1233:68;;;;-1:-1:-1;;;1233:68:15;;;;;;;:::i;:::-;3832:32:12::1;::::0;::::1;;::::0;;;:19:::1;:32;::::0;;;;:46:::1;::::0;3867:11;;3832:46:::1;:::i;:::-;;3893:42;3910:11;3923;;3893:42;;;;;;;;:::i;:::-;;;;;;;;3693:249:::0;;;:::o;1911:198:15:-;1075:7;1101:6;-1:-1:-1;;;;;1101:6:15;719:10:1;1241:23:15;1233:68;;;;-1:-1:-1;;;1233:68:15;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:15;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:15;;13813:2:16;1991:73:15::1;::::0;::::1;13795:21:16::0;13852:2;13832:18;;;13825:30;13891:34;13871:18;;;13864:62;-1:-1:-1;;;13942:18:16;;;13935:36;13988:19;;1991:73:15::1;13611:402:16::0;1991:73:15::1;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;2530:340:12:-;2717:146;;-1:-1:-1;;;2717:146:12;;22613:6:16;22646:15;;;2717:146:12;;;22628:34:16;22698:15;;22678:18;;;22671:43;2815:4:12;22730:18:16;;;22723:60;22799:18;;;22792:34;;;2674:12:12;;2717:10;-1:-1:-1;;;;;2717:20:12;;;;22575:19:16;;2717:146:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2717:146:12;;;;;;;;;;;;:::i;:::-;2698:165;2530:340;-1:-1:-1;;;;;2530:340:12:o;2029:88:0:-;1075:7:15;1101:6;-1:-1:-1;;;;;1101:6:15;719:10:1;1241:23:15;1233:68;;;;-1:-1:-1;;;1233:68:15;;;;;;;:::i;:::-;2094:6:0::1;:16:::0;;-1:-1:-1;;;;;;2094:16:0::1;-1:-1:-1::0;;;;;2094:16:0;;;::::1;::::0;;;::::1;::::0;;2029:88::o;772:547:13:-;995:69;;-1:-1:-1;;;995:69:13;;:4;;:25;;:69;;1021:11;;1034;;1047:6;;1055:8;;995:69;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;991:322;;1217:8;1207:19;;;;;;1156:14;:27;1171:11;1156:27;;;;;;;;;;;;;;;1184:11;1156:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1156:48:13;;;;;;;;;:70;;;;1245:57;;;;1259:11;;1272;;1197:6;;1293:8;;1245:57;:::i;:::-;;;;;;;;991:322;;281:281:14;423:4;-1:-1:-1;;;;;;462:41:14;;-1:-1:-1;;;462:41:14;;:93;;-1:-1:-1;;;;;;;;;;937:40:2;;;519:36:14;829:155:2;10098:370:3;-1:-1:-1;;;;;10229:19:3;;10221:68;;;;-1:-1:-1;;;10221:68:3;;17737:2:16;10221:68:3;;;17719:21:16;17776:2;17756:18;;;17749:30;17815:34;17795:18;;;17788:62;-1:-1:-1;;;17866:18:16;;;17859:34;17910:19;;10221:68:3;17535:400:16;10221:68:3;-1:-1:-1;;;;;10307:21:3;;10299:68;;;;-1:-1:-1;;;10299:68:3;;14220:2:16;10299:68:3;;;14202:21:16;14259:2;14239:18;;;14232:30;14298:34;14278:18;;;14271:62;-1:-1:-1;;;14349:18:16;;;14342:32;14391:19;;10299:68:3;14018:398:16;10299:68:3;-1:-1:-1;;;;;10378:18:3;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10429:32;;11033:25:16;;;10429:32:3;;11006:18:16;10429:32:3;;;;;;;10098:370;;;:::o;10749:441::-;10879:24;10906:25;10916:5;10923:7;10906:9;:25::i;:::-;10879:52;;-1:-1:-1;;10945:16:3;:37;10941:243;;11026:6;11006:16;:26;;10998:68;;;;-1:-1:-1;;;10998:68:3;;15027:2:16;10998:68:3;;;15009:21:16;15066:2;15046:18;;;15039:30;15105:31;15085:18;;;15078:59;15154:18;;10998:68:3;14825:353:16;10998:68:3;11108:51;11117:5;11124:7;11152:6;11133:16;:25;11108:8;:51::i;7463:651::-;-1:-1:-1;;;;;7589:18:3;;7581:68;;;;-1:-1:-1;;;7581:68:3;;16972:2:16;7581:68:3;;;16954:21:16;17011:2;16991:18;;;16984:30;17050:34;17030:18;;;17023:62;-1:-1:-1;;;17101:18:16;;;17094:35;17146:19;;7581:68:3;16770:401:16;7581:68:3;-1:-1:-1;;;;;7667:16:3;;7659:64;;;;-1:-1:-1;;;7659:64:3;;12652:2:16;7659:64:3;;;12634:21:16;12691:2;12671:18;;;12664:30;12730:34;12710:18;;;12703:62;-1:-1:-1;;;12781:18:16;;;12774:33;12824:19;;7659:64:3;12450:399:16;7659:64:3;-1:-1:-1;;;;;7805:15:3;;7783:19;7805:15;;;:9;:15;;;;;;7838:21;;;;7830:72;;;;-1:-1:-1;;;7830:72:3;;15385:2:16;7830:72:3;;;15367:21:16;15424:2;15404:18;;;15397:30;15463:34;15443:18;;;15436:62;-1:-1:-1;;;15514:18:16;;;15507:36;15560:19;;7830:72:3;15183:402:16;7830:72:3;-1:-1:-1;;;;;7936:15:3;;;;;;;:9;:15;;;;;;7954:20;;;7936:38;;7994:13;;;;;;;;:23;;7968:6;;7936:15;7994:23;;7968:6;;7994:23;:::i;:::-;;;;;;;;8048:2;-1:-1:-1;;;;;8033:26:3;8042:4;-1:-1:-1;;;;;8033:26:3;;8052:6;8033:26;;;;11033:25:16;;11021:2;11006:18;;10887:177;8033:26:3;;;;;;;;8070:37;11774:121;8390:389;-1:-1:-1;;;;;8473:21:3;;8465:65;;;;-1:-1:-1;;;8465:65:3;;19357:2:16;8465:65:3;;;19339:21:16;19396:2;19376:18;;;19369:30;19435:33;19415:18;;;19408:61;19486:18;;8465:65:3;19155:355:16;8465:65:3;8617:6;8601:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8633:18:3;;;;;;:9;:18;;;;;:28;;8655:6;;8633:18;:28;;8655:6;;8633:28;:::i;:::-;;;;-1:-1:-1;;8676:37:3;;11033:25:16;;;-1:-1:-1;;;;;8676:37:3;;;8693:1;;8676:37;;11021:2:16;11006:18;8676:37:3;;;;;;;908:109:0;;:::o;2316:709:14:-;2586:51;2597:5;2604:11;2617:10;2629:7;2586:10;:51::i;:::-;2648:20;2682:10;2694:7;2671:31;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2648:54;;2712:151;2733:11;2758:7;2779:14;2807:18;2839:14;2712:7;:151::i;:::-;2889:55;;-1:-1:-1;;;2889:55:14;;19910:6:16;19898:19;;2889:55:14;;;19880:38:16;2938:4:14;19934:18:16;;;19927:60;2874:12:14;;2889:10;-1:-1:-1;;;;;2889:27:14;;;;19853:18:16;;2889:55:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2874:70;;2991:10;2959:59;;;;;;:::i;:::-;;;;;;;;;;23947:25:16;;;-1:-1:-1;;;;;24008:31:16;;24003:2;23988:18;;23981:59;2959::14;;;;;-1:-1:-1;;;;;2959:59:14;;;;;23920:18:16;2959:59:14;;;;;;;2576:449;;2316:709;;;;;;;:::o;1634:676::-;1865:27;1894:14;1936:8;1912:72;;;;;;;;;;;;:::i;:::-;2083:2;2063:23;;2057:30;1864:120;;-1:-1:-1;1864:120:14;-1:-1:-1;2107:41:14;2117:11;2057:30;1864:120;2107:9;:41::i;:::-;2244:9;-1:-1:-1;;;;;2164:139:14;2219:11;2164:139;;;;;;:::i;:::-;;;;;;;;;;23947:25:16;;;-1:-1:-1;;;;;24008:31:16;;24003:2;23988:18;;23981:59;2164:139:14;;;;;;;23920:18:16;2164:139:14;;;;;;;1813:497;;;1634:676;;;;:::o;2263:187:15:-;2336:16;2355:6;;-1:-1:-1;;;;;2371:17:15;;;-1:-1:-1;;;;;;2371:17:15;;;;;;2403:40;;2355:6;;;;;;;2403:40;;2336:16;2403:40;2326:124;2263:187;:::o;11774:121:3:-;;;;:::o;1542:312:0:-;719:10:1;-1:-1:-1;;;;;1734:16:0;;;;1730:87;;1766:40;1782:5;1789:7;1798;1766:15;:40::i;:::-;1826:21;1832:5;1839:7;1826:5;:21::i;1793:635:12:-;2044:32;;;2015:26;2044:32;;;:19;:32;;;;;2015:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2107:13;:20;2131:1;2107:25;;2086:120;;;;-1:-1:-1;;;2086:120:12;;15792:2:16;2086:120:12;;;15774:21:16;15831:2;15811:18;;;15804:30;15870:34;15850:18;;;15843:62;-1:-1:-1;;;15921:18:16;;;15914:46;15977:19;;2086:120:12;15590:412:16;2086:120:12;2216:205;;-1:-1:-1;;;2216:205:12;;-1:-1:-1;;;;;2216:10:12;:15;;;;2239:9;;2216:205;;2263:11;;2288:13;;2315:8;;2337:14;;2365:18;;2397:14;;2216:205;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2005:423;1793:635;;;;;:::o;1860:163:0:-;1990:26;1996:10;2008:7;1990:5;:26::i;9099:576:3:-;-1:-1:-1;;;;;9182:21:3;;9174:67;;;;-1:-1:-1;;;9174:67:3;;16570:2:16;9174:67:3;;;16552:21:16;16609:2;16589:18;;;16582:30;16648:34;16628:18;;;16621:62;-1:-1:-1;;;16699:18:16;;;16692:31;16740:19;;9174:67:3;16368:397:16;9174:67:3;-1:-1:-1;;;;;9337:18:3;;9312:22;9337:18;;;:9;:18;;;;;;9373:24;;;;9365:71;;;;-1:-1:-1;;;9365:71:3;;13056:2:16;9365:71:3;;;13038:21:16;13095:2;13075:18;;;13068:30;13134:34;13114:18;;;13107:62;-1:-1:-1;;;13185:18:16;;;13178:32;13227:19;;9365:71:3;12854:398:16;9365:71:3;-1:-1:-1;;;;;9470:18:3;;;;;;:9;:18;;;;;9491:23;;;9470:44;;9534:12;:22;;9508:6;;9470:18;9534:22;;9508:6;;9534:22;:::i;:::-;;;;-1:-1:-1;;9572:37:3;;11033:25:16;;;9598:1:3;;-1:-1:-1;;;;;9572:37:3;;;;;11021:2:16;11006:18;9572:37:3;;;;;;;11774:121;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:347:16;65:8;75:6;129:3;122:4;114:6;110:17;106:27;96:55;;147:1;144;137:12;96:55;-1:-1:-1;170:20:16;;-1:-1:-1;;;;;202:30:16;;199:50;;;245:1;242;235:12;199:50;282:4;274:6;270:17;258:29;;334:3;327:4;318:6;310;306:19;302:30;299:39;296:59;;;351:1;348;341:12;296:59;14:347;;;;;:::o;366:462::-;408:5;461:3;454:4;446:6;442:17;438:27;428:55;;479:1;476;469:12;428:55;515:6;502:20;546:48;562:31;590:2;562:31;:::i;:::-;546:48;:::i;:::-;619:2;610:7;603:19;665:3;658:4;653:2;645:6;641:15;637:26;634:35;631:55;;;682:1;679;672:12;631:55;747:2;740:4;732:6;728:17;721:4;712:7;708:18;695:55;795:1;770:16;;;788:4;766:27;759:38;;;;774:7;366:462;-1:-1:-1;;;366:462:16:o;833:428::-;886:5;939:3;932:4;924:6;920:17;916:27;906:55;;957:1;954;947:12;906:55;986:6;980:13;1017:48;1033:31;1061:2;1033:31;:::i;1017:48::-;1090:2;1081:7;1074:19;1136:3;1129:4;1124:2;1116:6;1112:15;1108:26;1105:35;1102:55;;;1153:1;1150;1143:12;1102:55;1166:64;1227:2;1220:4;1211:7;1207:18;1200:4;1192:6;1188:17;1166:64;:::i;:::-;1248:7;833:428;-1:-1:-1;;;;833:428:16:o;1266:159::-;1333:20;;1393:6;1382:18;;1372:29;;1362:57;;1415:1;1412;1405:12;1362:57;1266:159;;;:::o;1430:247::-;1489:6;1542:2;1530:9;1521:7;1517:23;1513:32;1510:52;;;1558:1;1555;1548:12;1510:52;1597:9;1584:23;1616:31;1641:5;1616:31;:::i;:::-;1666:5;1430:247;-1:-1:-1;;;1430:247:16:o;1682:388::-;1750:6;1758;1811:2;1799:9;1790:7;1786:23;1782:32;1779:52;;;1827:1;1824;1817:12;1779:52;1866:9;1853:23;1885:31;1910:5;1885:31;:::i;:::-;1935:5;-1:-1:-1;1992:2:16;1977:18;;1964:32;2005:33;1964:32;2005:33;:::i;:::-;2057:7;2047:17;;;1682:388;;;;;:::o;2075:456::-;2152:6;2160;2168;2221:2;2209:9;2200:7;2196:23;2192:32;2189:52;;;2237:1;2234;2227:12;2189:52;2276:9;2263:23;2295:31;2320:5;2295:31;:::i;:::-;2345:5;-1:-1:-1;2402:2:16;2387:18;;2374:32;2415:33;2374:32;2415:33;:::i;:::-;2075:456;;2467:7;;-1:-1:-1;;;2521:2:16;2506:18;;;;2493:32;;2075:456::o;2536:1108::-;2674:6;2682;2690;2698;2706;2714;2722;2775:3;2763:9;2754:7;2750:23;2746:33;2743:53;;;2792:1;2789;2782:12;2743:53;2831:9;2818:23;2850:31;2875:5;2850:31;:::i;:::-;2900:5;-1:-1:-1;2924:37:16;2957:2;2942:18;;2924:37;:::i;:::-;2914:47;;3012:2;3001:9;2997:18;2984:32;-1:-1:-1;;;;;3076:2:16;3068:6;3065:14;3062:34;;;3092:1;3089;3082:12;3062:34;3115:49;3156:7;3147:6;3136:9;3132:22;3115:49;:::i;:::-;3105:59;;3211:2;3200:9;3196:18;3183:32;3173:42;;3267:3;3256:9;3252:19;3239:33;3224:48;;3281:33;3306:7;3281:33;:::i;:::-;3333:7;;-1:-1:-1;3392:3:16;3377:19;;3364:33;;3406;3364;3406;:::i;:::-;3458:7;;-1:-1:-1;3518:3:16;3503:19;;3490:33;;3535:16;;;3532:36;;;3564:1;3561;3554:12;3532:36;;3587:51;3630:7;3619:8;3608:9;3604:24;3587:51;:::i;:::-;3577:61;;;2536:1108;;;;;;;;;;:::o;3649:315::-;3717:6;3725;3778:2;3766:9;3757:7;3753:23;3749:32;3746:52;;;3794:1;3791;3784:12;3746:52;3833:9;3820:23;3852:31;3877:5;3852:31;:::i;:::-;3902:5;3954:2;3939:18;;;;3926:32;;-1:-1:-1;;;3649:315:16:o;3969:286::-;4027:6;4080:2;4068:9;4059:7;4055:23;4051:32;4048:52;;;4096:1;4093;4086:12;4048:52;4122:23;;-1:-1:-1;;;;;;4174:32:16;;4164:43;;4154:71;;4221:1;4218;4211:12;4260:335;4339:6;4392:2;4380:9;4371:7;4367:23;4363:32;4360:52;;;4408:1;4405;4398:12;4360:52;4441:9;4435:16;-1:-1:-1;;;;;4466:6:16;4463:30;4460:50;;;4506:1;4503;4496:12;4460:50;4529:60;4581:7;4572:6;4561:9;4557:22;4529:60;:::i;4600:396::-;4688:6;4696;4749:2;4737:9;4728:7;4724:23;4720:32;4717:52;;;4765:1;4762;4755:12;4717:52;4798:9;4792:16;-1:-1:-1;;;;;4823:6:16;4820:30;4817:50;;;4863:1;4860;4853:12;4817:50;4886:60;4938:7;4929:6;4918:9;4914:22;4886:60;:::i;:::-;4876:70;;;4986:2;4975:9;4971:18;4965:25;4955:35;;4600:396;;;;;:::o;5001:184::-;5059:6;5112:2;5100:9;5091:7;5087:23;5083:32;5080:52;;;5128:1;5125;5118:12;5080:52;5151:28;5169:9;5151:28;:::i;5190:481::-;5268:6;5276;5284;5337:2;5325:9;5316:7;5312:23;5308:32;5305:52;;;5353:1;5350;5343:12;5305:52;5376:28;5394:9;5376:28;:::i;:::-;5366:38;;5455:2;5444:9;5440:18;5427:32;-1:-1:-1;;;;;5474:6:16;5471:30;5468:50;;;5514:1;5511;5504:12;5468:50;5553:58;5603:7;5594:6;5583:9;5579:22;5553:58;:::i;:::-;5190:481;;5630:8;;-1:-1:-1;5527:84:16;;-1:-1:-1;;;;5190:481:16:o;5676:842::-;5785:6;5793;5801;5809;5817;5870:3;5858:9;5849:7;5845:23;5841:33;5838:53;;;5887:1;5884;5877:12;5838:53;5910:28;5928:9;5910:28;:::i;:::-;5900:38;;5989:2;5978:9;5974:18;5961:32;-1:-1:-1;;;;;6053:2:16;6045:6;6042:14;6039:34;;;6069:1;6066;6059:12;6039:34;6092:49;6133:7;6124:6;6113:9;6109:22;6092:49;:::i;:::-;6082:59;;6188:2;6177:9;6173:18;6160:32;6150:42;;6242:2;6231:9;6227:18;6214:32;6201:45;;6289:5;6282:13;6275:21;6268:5;6265:32;6255:60;;6311:1;6308;6301:12;6255:60;6334:5;;-1:-1:-1;6392:3:16;6377:19;;6364:33;;6409:16;;;6406:36;;;6438:1;6435;6428:12;6406:36;;6461:51;6504:7;6493:8;6482:9;6478:24;6461:51;:::i;:::-;6451:61;;;5676:842;;;;;;;;:::o;6523:525::-;6607:6;6615;6623;6676:2;6664:9;6655:7;6651:23;6647:32;6644:52;;;6692:1;6689;6682:12;6644:52;6715:28;6733:9;6715:28;:::i;:::-;6705:38;;6794:2;6783:9;6779:18;6766:32;-1:-1:-1;;;;;6813:6:16;6810:30;6807:50;;;6853:1;6850;6843:12;6807:50;6876:49;6917:7;6908:6;6897:9;6893:22;6876:49;:::i;:::-;6866:59;;;6975:2;6964:9;6960:18;6947:32;6988:30;7012:5;6988:30;:::i;:::-;7037:5;7027:15;;;6523:525;;;;;:::o;7053:745::-;7155:6;7163;7171;7179;7232:3;7220:9;7211:7;7207:23;7203:33;7200:53;;;7249:1;7246;7239:12;7200:53;7272:28;7290:9;7272:28;:::i;:::-;7262:38;;7351:2;7340:9;7336:18;7323:32;-1:-1:-1;;;;;7415:2:16;7407:6;7404:14;7401:34;;;7431:1;7428;7421:12;7401:34;7454:49;7495:7;7486:6;7475:9;7471:22;7454:49;:::i;:::-;7444:59;;7553:2;7542:9;7538:18;7525:32;7512:45;;7566:30;7590:5;7566:30;:::i;:::-;7615:5;;-1:-1:-1;7673:2:16;7658:18;;7645:32;;7689:16;;;7686:36;;;7718:1;7715;7708:12;7686:36;;7741:51;7784:7;7773:8;7762:9;7758:24;7741:51;:::i;:::-;7731:61;;;7053:745;;;;;;;:::o;7803:460::-;7887:6;7895;7903;7911;7964:3;7952:9;7943:7;7939:23;7935:33;7932:53;;;7981:1;7978;7971:12;7932:53;8004:28;8022:9;8004:28;:::i;:::-;7994:38;;8051:37;8084:2;8073:9;8069:18;8051:37;:::i;:::-;8041:47;;8138:2;8127:9;8123:18;8110:32;8151:31;8176:5;8151:31;:::i;:::-;7803:460;;;;-1:-1:-1;8201:5:16;;8253:2;8238:18;8225:32;;-1:-1:-1;;7803:460:16:o;8268:622::-;8363:6;8371;8379;8387;8395;8448:3;8436:9;8427:7;8423:23;8419:33;8416:53;;;8465:1;8462;8455:12;8416:53;8488:28;8506:9;8488:28;:::i;:::-;8478:38;;8535:37;8568:2;8557:9;8553:18;8535:37;:::i;:::-;8525:47;;8619:2;8608:9;8604:18;8591:32;8581:42;;8674:2;8663:9;8659:18;8646:32;-1:-1:-1;;;;;8693:6:16;8690:30;8687:50;;;8733:1;8730;8723:12;8687:50;8772:58;8822:7;8813:6;8802:9;8798:22;8772:58;:::i;:::-;8268:622;;;;-1:-1:-1;8268:622:16;;-1:-1:-1;8849:8:16;;8746:84;8268:622;-1:-1:-1;;;8268:622:16:o;8895:245::-;8974:6;8982;9035:2;9023:9;9014:7;9010:23;9006:32;9003:52;;;9051:1;9048;9041:12;9003:52;-1:-1:-1;;9074:16:16;;9130:2;9115:18;;;9109:25;9074:16;;9109:25;;-1:-1:-1;8895:245:16:o;9145:249::-;9214:6;9267:2;9255:9;9246:7;9242:23;9238:32;9235:52;;;9283:1;9280;9273:12;9235:52;9315:9;9309:16;9334:30;9358:5;9334:30;:::i;9399:266::-;9487:6;9482:3;9475:19;9539:6;9532:5;9525:4;9520:3;9516:14;9503:43;-1:-1:-1;9591:1:16;9566:16;;;9584:4;9562:27;;;9555:38;;;;9647:2;9626:15;;;-1:-1:-1;;9622:29:16;9613:39;;;9609:50;;9399:266::o;9670:257::-;9711:3;9749:5;9743:12;9776:6;9771:3;9764:19;9792:63;9848:6;9841:4;9836:3;9832:14;9825:4;9818:5;9814:16;9792:63;:::i;:::-;9909:2;9888:15;-1:-1:-1;;9884:29:16;9875:39;;;;9916:4;9871:50;;9670:257;-1:-1:-1;;9670:257:16:o;9932:271::-;10115:6;10107;10102:3;10089:33;10071:3;10141:16;;10166:13;;;10141:16;9932:271;-1:-1:-1;9932:271:16:o;10208:274::-;10337:3;10375:6;10369:13;10391:53;10437:6;10432:3;10425:4;10417:6;10413:17;10391:53;:::i;:::-;10460:16;;;;;10208:274;-1:-1:-1;;10208:274:16:o;11069:217::-;11216:2;11205:9;11198:21;11179:4;11236:44;11276:2;11265:9;11261:18;11253:6;11236:44;:::i;11291:288::-;11466:2;11455:9;11448:21;11429:4;11486:44;11526:2;11515:9;11511:18;11503:6;11486:44;:::i;:::-;11478:52;;11566:6;11561:2;11550:9;11546:18;11539:34;11291:288;;;;;:::o;16007:356::-;16209:2;16191:21;;;16228:18;;;16221:30;16287:34;16282:2;16267:18;;16260:62;16354:2;16339:18;;16007:356::o;19998:640::-;20279:6;20267:19;;20249:38;;-1:-1:-1;;;;;20323:32:16;;20318:2;20303:18;;20296:60;20343:3;20387:2;20372:18;;20365:31;;;-1:-1:-1;;20419:45:16;;20444:19;;20436:6;20419:45;:::i;:::-;20514:6;20507:14;20500:22;20495:2;20484:9;20480:18;20473:50;20572:9;20564:6;20560:22;20554:3;20543:9;20539:19;20532:51;20600:32;20625:6;20617;20600:32;:::i;:::-;20592:40;19998:640;-1:-1:-1;;;;;;;;19998:640:16:o;20643:326::-;20838:6;20830;20826:19;20815:9;20808:38;20882:2;20877;20866:9;20862:18;20855:30;20789:4;20902:61;20959:2;20948:9;20944:18;20936:6;20928;20902:61;:::i;20974:837::-;21323:6;21315;21311:19;21300:9;21293:38;21367:3;21362:2;21351:9;21347:18;21340:31;21274:4;21394:45;21434:3;21423:9;21419:19;21411:6;21394:45;:::i;:::-;21487:9;21479:6;21475:22;21470:2;21459:9;21455:18;21448:50;21521:32;21546:6;21538;21521:32;:::i;:::-;-1:-1:-1;;;;;21627:15:16;;;21622:2;21607:18;;21600:43;21680:15;;21674:3;21659:19;;21652:44;21733:22;;;21580:3;21712:19;;21705:51;21507:46;-1:-1:-1;21773:32:16;21507:46;21790:6;21773:32;:::i;:::-;21765:40;20974:837;-1:-1:-1;;;;;;;;;20974:837:16:o;21816:555::-;22073:6;22065;22061:19;22050:9;22043:38;22117:3;22112:2;22101:9;22097:18;22090:31;22024:4;22144:45;22184:3;22173:9;22169:19;22161:6;22144:45;:::i;:::-;-1:-1:-1;;;;;22229:6:16;22225:31;22220:2;22209:9;22205:18;22198:59;22305:9;22297:6;22293:22;22288:2;22277:9;22273:18;22266:50;22333:32;22358:6;22350;22333:32;:::i;:::-;22325:40;21816:555;-1:-1:-1;;;;;;;21816:555:16:o;22837:498::-;23037:4;23066:6;23111:2;23103:6;23099:15;23088:9;23081:34;23163:2;23155:6;23151:15;23146:2;23135:9;23131:18;23124:43;;23203:6;23198:2;23187:9;23183:18;23176:34;23246:3;23241:2;23230:9;23226:18;23219:31;23267:62;23324:3;23313:9;23309:19;23301:6;23293;23267:62;:::i;24240:275::-;24311:2;24305:9;24376:2;24357:13;;-1:-1:-1;;24353:27:16;24341:40;;-1:-1:-1;;;;;24396:34:16;;24432:22;;;24393:62;24390:88;;;24458:18;;:::i;:::-;24494:2;24487:22;24240:275;;-1:-1:-1;24240:275:16:o;24520:186::-;24568:4;-1:-1:-1;;;;;24593:6:16;24590:30;24587:56;;;24623:18;;:::i;:::-;-1:-1:-1;24689:2:16;24668:15;-1:-1:-1;;24664:29:16;24695:4;24660:40;;24520:186::o;24711:128::-;24751:3;24782:1;24778:6;24775:1;24772:13;24769:39;;;24788:18;;:::i;:::-;-1:-1:-1;24824:9:16;;24711:128::o;24844:125::-;24884:4;24912:1;24909;24906:8;24903:34;;;24917:18;;:::i;:::-;-1:-1:-1;24954:9:16;;24844:125::o;24974:258::-;25046:1;25056:113;25070:6;25067:1;25064:13;25056:113;;;25146:11;;;25140:18;25127:11;;;25120:39;25092:2;25085:10;25056:113;;;25187:6;25184:1;25181:13;25178:48;;;-1:-1:-1;;25222:1:16;25204:16;;25197:27;24974:258::o;25237:380::-;25316:1;25312:12;;;;25359;;;25380:61;;25434:4;25426:6;25422:17;25412:27;;25380:61;25487:2;25479:6;25476:14;25456:18;25453:38;25450:161;;;25533:10;25528:3;25524:20;25521:1;25514:31;25568:4;25565:1;25558:15;25596:4;25593:1;25586:15;25450:161;;25237:380;;;:::o;25622:127::-;25683:10;25678:3;25674:20;25671:1;25664:31;25714:4;25711:1;25704:15;25738:4;25735:1;25728:15;25754:127;25815:10;25810:3;25806:20;25803:1;25796:31;25846:4;25843:1;25836:15;25870:4;25867:1;25860:15;25886:131;-1:-1:-1;;;;;25961:31:16;;25951:42;;25941:70;;26007:1;26004;25997:12;26022:129;-1:-1:-1;;;;;26100:5:16;26096:30;26089:5;26086:41;26076:69;;26141:1;26138;26131:12

Swarm Source

ipfs://1a2510de5068b5f4319ad07f30f1160b88c69d222b3724d0eeddc98f80de2ce7

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.