Latest 25 from a total of 486 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 16091787 | 3 hrs ago | IN | 0 ETH | 0.00001064 | ||||
Approve | 16076560 | 16 hrs ago | IN | 0 ETH | 0.00000231 | ||||
Approve | 16033331 | 2 days ago | IN | 0 ETH | 0.00000324 | ||||
Approve | 16022381 | 2 days ago | IN | 0 ETH | 0.00000086 | ||||
Approve | 16012404 | 2 days ago | IN | 0 ETH | 0.00000075 | ||||
Approve | 15991000 | 3 days ago | IN | 0 ETH | 0.00000114 | ||||
Approve | 15988713 | 3 days ago | IN | 0 ETH | 0.00000139 | ||||
Approve | 15988695 | 3 days ago | IN | 0 ETH | 0.00000138 | ||||
Approve | 15982510 | 3 days ago | IN | 0 ETH | 0.00000119 | ||||
Send From | 15982383 | 3 days ago | IN | 0.00013839 ETH | 0.00000727 | ||||
Approve | 15982377 | 3 days ago | IN | 0 ETH | 0.00000138 | ||||
Approve | 15966808 | 4 days ago | IN | 0 ETH | 0.00000153 | ||||
Transfer | 15964988 | 4 days ago | IN | 0 ETH | 0.00000114 | ||||
Approve | 15964589 | 4 days ago | IN | 0 ETH | 0.00000154 | ||||
Approve | 15963226 | 4 days ago | IN | 0 ETH | 0.00000186 | ||||
Approve | 15943982 | 5 days ago | IN | 0 ETH | 0.00000745 | ||||
Approve | 15943768 | 5 days ago | IN | 0 ETH | 0.00000601 | ||||
Approve | 15939155 | 5 days ago | IN | 0 ETH | 0.00000231 | ||||
Approve | 15930934 | 5 days ago | IN | 0 ETH | 0.00000153 | ||||
Approve | 15905280 | 6 days ago | IN | 0 ETH | 0.00000123 | ||||
Approve | 15881221 | 7 days ago | IN | 0 ETH | 0.00000139 | ||||
Approve | 15878982 | 7 days ago | IN | 0 ETH | 0.00001656 | ||||
Approve | 15876887 | 7 days ago | IN | 0 ETH | 0.00000076 | ||||
Approve | 15851353 | 8 days ago | IN | 0 ETH | 0.00000232 | ||||
Approve | 15849104 | 8 days ago | IN | 0 ETH | 0.00000131 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
15982383 | 3 days ago | 0.00013839 ETH | ||||
15797626 | 10 days ago | 0.000064 ETH | ||||
15281389 | 28 days ago | 0.00009519 ETH | ||||
14660893 | 50 days ago | 0.0000527 ETH | ||||
14529150 | 54 days ago | 0.00031745 ETH | ||||
14438545 | 57 days ago | 0.0001026 ETH | ||||
14406039 | 59 days ago | 0.0001012 ETH | ||||
14365237 | 60 days ago | 0.00014192 ETH | ||||
14215420 | 65 days ago | 0.00010803 ETH | ||||
14001786 | 73 days ago | 0.0013158 ETH | ||||
13889396 | 77 days ago | 0.00007042 ETH | ||||
13383640 | 94 days ago | 0.00009751 ETH | ||||
13329933 | 96 days ago | 0.00009955 ETH | ||||
13305040 | 97 days ago | 0.00010455 ETH | ||||
13121603 | 103 days ago | 0.00000904 ETH | ||||
12896503 | 111 days ago | 0.00006785 ETH | ||||
12779271 | 115 days ago | 0.00010409 ETH | ||||
12756605 | 116 days ago | 0.00008928 ETH | ||||
12753880 | 116 days ago | 0.00004653 ETH | ||||
12747576 | 117 days ago | 0.00010352 ETH | ||||
12735883 | 117 days ago | 0.00006765 ETH | ||||
12655572 | 120 days ago | 0.00007538 ETH | ||||
12513447 | 125 days ago | 0.00063228 ETH | ||||
12490315 | 126 days ago | 0.00004796 ETH | ||||
12355834 | 130 days ago | 0.00011311 ETH |
Loading...
Loading
Contract Name:
GravitaDebtToken
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/** *Submitted for verification at zkevm.polygonscan.com on 2023-08-02 */ // Sources flattened with hardhat v2.14.1 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // 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 @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // 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 @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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 @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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 `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * 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 @openzeppelin/contracts/utils/introspection/[email protected] // 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 @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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 contracts/token/oft/v2/fee/Fee.sol pragma solidity ^0.8.0; abstract contract Fee is Ownable { uint public constant BP_DENOMINATOR = 10_000; mapping(uint16 => FeeConfig) public chainIdToFeeBps; uint16 public defaultFeeBp; address public feeOwner; // defaults to owner struct FeeConfig { uint16 feeBP; bool enabled; } event SetFeeBp(uint16 dstchainId, bool enabled, uint16 feeBp); event SetDefaultFeeBp(uint16 feeBp); event SetFeeOwner(address feeOwner); constructor() { feeOwner = owner(); } function setDefaultFeeBp(uint16 _feeBp) public virtual onlyOwner { require(_feeBp <= BP_DENOMINATOR, "Fee: fee bp must be <= BP_DENOMINATOR"); defaultFeeBp = _feeBp; emit SetDefaultFeeBp(defaultFeeBp); } function setFeeBp(uint16 _dstChainId, bool _enabled, uint16 _feeBp) public virtual onlyOwner { require(_feeBp <= BP_DENOMINATOR, "Fee: fee bp must be <= BP_DENOMINATOR"); chainIdToFeeBps[_dstChainId] = FeeConfig({feeBP: _feeBp, enabled: _enabled}); emit SetFeeBp(_dstChainId, _enabled, _feeBp); } function setFeeOwner(address _feeOwner) public virtual onlyOwner { require(_feeOwner != address(0x0), "Fee: feeOwner cannot be 0x"); feeOwner = _feeOwner; emit SetFeeOwner(_feeOwner); } function quoteOFTFee(uint16 _dstChainId, uint _amount) public view virtual returns (uint fee) { FeeConfig memory config = chainIdToFeeBps[_dstChainId]; if (config.enabled) { fee = (_amount * config.feeBP) / BP_DENOMINATOR; } else if (defaultFeeBp > 0) { fee = (_amount * defaultFeeBp) / BP_DENOMINATOR; } else { fee = 0; } } function _payOFTFee(address _from, uint16 _dstChainId, uint _amount) internal virtual returns (uint amount, uint fee) { fee = quoteOFTFee(_dstChainId, _amount); unchecked { amount = _amount - fee; } if (fee > 0) { _transferFrom(_from, feeOwner, fee); } } function _transferFrom(address _from, address _to, uint _amount) internal virtual returns (uint); } // File contracts/token/oft/v2/ICommonOFT.sol pragma solidity >=0.5.0; /** * @dev Interface of the IOFT core standard */ interface ICommonOFT is IERC165 { struct LzCallParams { address payable refundAddress; address zroPaymentAddress; bytes adapterParams; } /** * @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, bytes32 _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee); function estimateSendAndCallFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee); /** * @dev returns the circulating amount of tokens on current chain */ function circulatingSupply() external view returns (uint); /** * @dev returns the address of the ERC20 token */ function token() external view returns (address); } // File contracts/token/oft/v2/fee/IOFTWithFee.sol pragma solidity >=0.5.0; /** * @dev Interface of the IOFT core standard */ interface IOFTWithFee is ICommonOFT { /** * @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 * `_minAmount` the minimum amount of tokens to receive on dstChain * `_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, bytes32 _toAddress, uint _amount, uint _minAmount, LzCallParams calldata _callParams) external payable; function sendAndCall(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, uint _minAmount, bytes calldata _payload, uint64 _dstGasForCall, LzCallParams calldata _callParams) external payable; } // File contracts/interfaces/ILayerZeroUserApplicationConfig.sol 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, uint _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 contracts/interfaces/ILayerZeroEndpoint.sol pragma solidity >=0.5.0; 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, uint _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 (uint nativeFee, uint 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, uint _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 contracts/interfaces/ILayerZeroReceiver.sol 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 contracts/util/BytesLib.sol /* * @title Solidity Bytes Arrays Utils * @author Gonçalo Sá <[email protected]> * * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity. * The library lets you concatenate, slice and type cast bytes arrays both in memory and storage. */ pragma solidity >=0.8.0 <0.9.0; library BytesLib { function concat( bytes memory _preBytes, bytes memory _postBytes ) internal pure returns (bytes memory) { bytes memory tempBytes; assembly { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // Store the length of the first bytes array at the beginning of // the memory for tempBytes. let length := mload(_preBytes) mstore(tempBytes, length) // Maintain a memory counter for the current write location in the // temp bytes array by adding the 32 bytes for the array length to // the starting location. let mc := add(tempBytes, 0x20) // Stop copying when the memory counter reaches the length of the // first bytes array. let end := add(mc, length) for { // Initialize a copy counter to the start of the _preBytes data, // 32 bytes into its memory. let cc := add(_preBytes, 0x20) } lt(mc, end) { // Increase both counters by 32 bytes each iteration. mc := add(mc, 0x20) cc := add(cc, 0x20) } { // Write the _preBytes data into the tempBytes memory 32 bytes // at a time. mstore(mc, mload(cc)) } // Add the length of _postBytes to the current length of tempBytes // and store it as the new length in the first 32 bytes of the // tempBytes memory. length := mload(_postBytes) mstore(tempBytes, add(length, mload(tempBytes))) // Move the memory counter back from a multiple of 0x20 to the // actual end of the _preBytes data. mc := end // Stop copying when the memory counter reaches the new combined // length of the arrays. end := add(mc, length) for { let cc := add(_postBytes, 0x20) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } // Update the free-memory pointer by padding our last write location // to 32 bytes: add 31 bytes to the end of tempBytes to move to the // next 32 byte block, then round down to the nearest multiple of // 32. If the sum of the length of the two arrays is zero then add // one before rounding down to leave a blank 32 bytes (the length block with 0). mstore(0x40, and( add(add(end, iszero(add(length, mload(_preBytes)))), 31), not(31) // Round down to the nearest 32 bytes. )) } return tempBytes; } function concatStorage(bytes storage _preBytes, bytes memory _postBytes) internal { assembly { // Read the first 32 bytes of _preBytes storage, which is the length // of the array. (We don't need to use the offset into the slot // because arrays use the entire slot.) let fslot := sload(_preBytes.slot) // Arrays of 31 bytes or less have an even value in their slot, // while longer arrays have an odd value. The actual length is // the slot divided by two for odd values, and the lowest order // byte divided by two for even values. // If the slot is even, bitwise and the slot with 255 and divide by // two to get the length. If the slot is odd, bitwise and the slot // with -1 and divide by two. let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) let newlength := add(slength, mlength) // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage switch add(lt(slength, 32), lt(newlength, 32)) case 2 { // Since the new array still fits in the slot, we just need to // update the contents of the slot. // uint256(bytes_storage) = uint256(bytes_storage) + uint256(bytes_memory) + new_length sstore( _preBytes.slot, // all the modifications to the slot are inside this // next block add( // we can just add to the slot contents because the // bytes we want to change are the LSBs fslot, add( mul( div( // load the bytes from memory mload(add(_postBytes, 0x20)), // zero all bytes to the right exp(0x100, sub(32, mlength)) ), // and now shift left the number of bytes to // leave space for the length in the slot exp(0x100, sub(32, newlength)) ), // increase length by the double of the memory // bytes length mul(mlength, 2) ) ) ) } case 1 { // The stored value fits in the slot, but the combined value // will exceed it. // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // The contents of the _postBytes array start 32 bytes into // the structure. Our first read should obtain the `submod` // bytes that can fit into the unused space in the last word // of the stored array. To get this, we read 32 bytes starting // from `submod`, so the data we read overlaps with the array // contents by `submod` bytes. Masking the lowest-order // `submod` bytes allows us to add that value directly to the // stored value. let submod := sub(32, slength) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore( sc, add( and( fslot, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00 ), and(mload(mc), mask) ) ) for { mc := add(mc, 0x20) sc := add(sc, 1) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } default { // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) // Start copying to the last used word of the stored array. let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // Copy over the first `submod` bytes of the new data as in // case 1 above. let slengthmod := mod(slength, 32) let mlengthmod := mod(mlength, 32) let submod := sub(32, slengthmod) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore(sc, add(sload(sc), and(mload(mc), mask))) for { sc := add(sc, 1) mc := add(mc, 0x20) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } } } function slice( bytes memory _bytes, uint256 _start, uint256 _length ) internal pure returns (bytes memory) { require(_length + 31 >= _length, "slice_overflow"); require(_bytes.length >= _start + _length, "slice_outOfBounds"); bytes memory tempBytes; assembly { switch iszero(_length) case 0 { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // The first word of the slice result is potentially a partial // word read from the original array. To read it, we calculate // the length of that partial word and start copying that many // bytes into the array. The first word we copy will start with // data we don't care about, but the last `lengthmod` bytes will // land at the beginning of the contents of the new array. When // we're done copying, we overwrite the full first word with // the actual length of the slice. let lengthmod := and(_length, 31) // The multiplication in the next line is necessary // because when slicing multiples of 32 bytes (lengthmod == 0) // the following copy loop was copying the origin's length // and then ending prematurely not copying everything it should. let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod))) let end := add(mc, _length) for { // The multiplication in the next line has the same exact purpose // as the one above. let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } mstore(tempBytes, _length) //update free-memory pointer //allocating the array padded to 32 bytes like the compiler does now mstore(0x40, and(add(mc, 31), not(31))) } //if we want a zero-length slice let's just return a zero-length array default { tempBytes := mload(0x40) //zero out the 32 bytes slice we are about to return //we need to do it because Solidity does not garbage collect mstore(tempBytes, 0) mstore(0x40, add(tempBytes, 0x20)) } } return tempBytes; } function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) { require(_bytes.length >= _start + 20, "toAddress_outOfBounds"); address tempAddress; assembly { tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000) } return tempAddress; } function toUint8(bytes memory _bytes, uint256 _start) internal pure returns (uint8) { require(_bytes.length >= _start + 1 , "toUint8_outOfBounds"); uint8 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x1), _start)) } return tempUint; } function toUint16(bytes memory _bytes, uint256 _start) internal pure returns (uint16) { require(_bytes.length >= _start + 2, "toUint16_outOfBounds"); uint16 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x2), _start)) } return tempUint; } function toUint32(bytes memory _bytes, uint256 _start) internal pure returns (uint32) { require(_bytes.length >= _start + 4, "toUint32_outOfBounds"); uint32 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x4), _start)) } return tempUint; } function toUint64(bytes memory _bytes, uint256 _start) internal pure returns (uint64) { require(_bytes.length >= _start + 8, "toUint64_outOfBounds"); uint64 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x8), _start)) } return tempUint; } function toUint96(bytes memory _bytes, uint256 _start) internal pure returns (uint96) { require(_bytes.length >= _start + 12, "toUint96_outOfBounds"); uint96 tempUint; assembly { tempUint := mload(add(add(_bytes, 0xc), _start)) } return tempUint; } function toUint128(bytes memory _bytes, uint256 _start) internal pure returns (uint128) { require(_bytes.length >= _start + 16, "toUint128_outOfBounds"); uint128 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x10), _start)) } return tempUint; } function toUint256(bytes memory _bytes, uint256 _start) internal pure returns (uint256) { require(_bytes.length >= _start + 32, "toUint256_outOfBounds"); uint256 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x20), _start)) } return tempUint; } function toBytes32(bytes memory _bytes, uint256 _start) internal pure returns (bytes32) { require(_bytes.length >= _start + 32, "toBytes32_outOfBounds"); bytes32 tempBytes32; assembly { tempBytes32 := mload(add(add(_bytes, 0x20), _start)) } return tempBytes32; } function equal(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bool) { bool success = true; assembly { let length := mload(_preBytes) // if lengths don't match the arrays are not equal switch eq(length, mload(_postBytes)) case 1 { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 let mc := add(_preBytes, 0x20) let end := add(mc, length) for { let cc := add(_postBytes, 0x20) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) } eq(add(lt(mc, end), cb), 2) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { // if any of these checks fails then arrays are not equal if iszero(eq(mload(mc), mload(cc))) { // unsuccess: success := 0 cb := 0 } } } default { // unsuccess: success := 0 } } return success; } function equalStorage( bytes storage _preBytes, bytes memory _postBytes ) internal view returns (bool) { bool success = true; assembly { // we know _preBytes_offset is 0 let fslot := sload(_preBytes.slot) // Decode the length of the stored array like in concatStorage(). let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) // if lengths don't match the arrays are not equal switch eq(slength, mlength) case 1 { // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage if iszero(iszero(slength)) { switch lt(slength, 32) case 1 { // blank the last byte which is the length fslot := mul(div(fslot, 0x100), 0x100) if iszero(eq(fslot, mload(add(_postBytes, 0x20)))) { // unsuccess: success := 0 } } default { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := keccak256(0x0, 0x20) let mc := add(_postBytes, 0x20) let end := add(mc, mlength) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) for {} eq(add(lt(mc, end), cb), 2) { sc := add(sc, 1) mc := add(mc, 0x20) } { if iszero(eq(sload(sc), mload(mc))) { // unsuccess: success := 0 cb := 0 } } } } } default { // unsuccess: success := 0 } } return success; } } // File contracts/lzApp/LzApp.sol pragma solidity ^0.8.0; /* * a generic LzReceiver implementation */ abstract contract LzApp is Ownable, ILayerZeroReceiver, ILayerZeroUserApplicationConfig { using BytesLib for bytes; // ua can not send payload larger than this by default, but it can be changed by the ua owner uint constant public DEFAULT_PAYLOAD_SIZE_LIMIT = 10_000; ILayerZeroEndpoint public immutable lzEndpoint; mapping(uint16 => bytes) public trustedRemoteLookup; mapping(uint16 => mapping(uint16 => uint)) public minDstGasLookup; mapping(uint16 => uint) public payloadSizeLimitLookup; address public precrime; event SetPrecrime(address precrime); event SetTrustedRemote(uint16 _remoteChainId, bytes _path); event SetTrustedRemoteAddress(uint16 _remoteChainId, bytes _remoteAddress); event SetMinDstGas(uint16 _dstChainId, uint16 _type, uint _minDstGas); constructor(address _endpoint) { lzEndpoint = ILayerZeroEndpoint(_endpoint); } function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _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 && trustedRemote.length > 0 && 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, uint _nativeFee) internal virtual { bytes memory trustedRemote = trustedRemoteLookup[_dstChainId]; require(trustedRemote.length != 0, "LzApp: destination chain is not a trusted source"); _checkPayloadSize(_dstChainId, _payload.length); lzEndpoint.send{value: _nativeFee}(_dstChainId, trustedRemote, _payload, _refundAddress, _zroPaymentAddress, _adapterParams); } function _checkGasLimit(uint16 _dstChainId, uint16 _type, bytes memory _adapterParams, uint _extraGas) internal view virtual { uint providedGasLimit = _getGasLimit(_adapterParams); uint minGasLimit = minDstGasLookup[_dstChainId][_type] + _extraGas; require(minGasLimit > 0, "LzApp: minGasLimit not set"); require(providedGasLimit >= minGasLimit, "LzApp: gas limit is too low"); } function _getGasLimit(bytes memory _adapterParams) internal pure virtual returns (uint gasLimit) { require(_adapterParams.length >= 34, "LzApp: invalid adapterParams"); assembly { gasLimit := mload(add(_adapterParams, 34)) } } function _checkPayloadSize(uint16 _dstChainId, uint _payloadSize) internal view virtual { uint payloadSizeLimit = payloadSizeLimitLookup[_dstChainId]; if (payloadSizeLimit == 0) { // use default if not set payloadSizeLimit = DEFAULT_PAYLOAD_SIZE_LIMIT; } require(_payloadSize <= payloadSizeLimit, "LzApp: payload size is too large"); } //---------------------------UserApplication config---------------------------------------- function getConfig(uint16 _version, uint16 _chainId, address, uint _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, uint _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); } // _path = abi.encodePacked(remoteAddress, localAddress) // this function set the trusted path for the cross-chain communication function setTrustedRemote(uint16 _remoteChainId, bytes calldata _path) external onlyOwner { trustedRemoteLookup[_remoteChainId] = _path; emit SetTrustedRemote(_remoteChainId, _path); } function setTrustedRemoteAddress(uint16 _remoteChainId, bytes calldata _remoteAddress) external onlyOwner { trustedRemoteLookup[_remoteChainId] = abi.encodePacked(_remoteAddress, address(this)); emit SetTrustedRemoteAddress(_remoteChainId, _remoteAddress); } function getTrustedRemoteAddress(uint16 _remoteChainId) external view returns (bytes memory) { bytes memory path = trustedRemoteLookup[_remoteChainId]; require(path.length != 0, "LzApp: no trusted path record"); return path.slice(0, path.length - 20); // the last 20 bytes should be address(this) } function setPrecrime(address _precrime) external onlyOwner { precrime = _precrime; emit SetPrecrime(_precrime); } function setMinDstGas(uint16 _dstChainId, uint16 _packetType, uint _minGas) external onlyOwner { require(_minGas > 0, "LzApp: invalid minGas"); minDstGasLookup[_dstChainId][_packetType] = _minGas; emit SetMinDstGas(_dstChainId, _packetType, _minGas); } // if the size is 0, it means default size limit function setPayloadSizeLimit(uint16 _dstChainId, uint _size) external onlyOwner { payloadSizeLimitLookup[_dstChainId] = _size; } //--------------------------- VIEW FUNCTION ---------------------------------------- function isTrustedRemote(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool) { bytes memory trustedSource = trustedRemoteLookup[_srcChainId]; return keccak256(trustedSource) == keccak256(_srcAddress); } } // File contracts/util/ExcessivelySafeCall.sol pragma solidity >=0.7.6; library ExcessivelySafeCall { uint256 constant LOW_28_MASK = 0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff; /// @notice Use when you _really_ really _really_ don't trust the called /// contract. This prevents the called contract from causing reversion of /// the caller in as many ways as we can. /// @dev The main difference between this and a solidity low-level call is /// that we limit the number of bytes that the callee can cause to be /// copied to caller memory. This prevents stupid things like malicious /// contracts returning 10,000,000 bytes causing a local OOG when copying /// to memory. /// @param _target The address to call /// @param _gas The amount of gas to forward to the remote contract /// @param _maxCopy The maximum number of bytes of returndata to copy /// to memory. /// @param _calldata The data to send to the remote contract /// @return success and returndata, as `.call()`. Returndata is capped to /// `_maxCopy` bytes. function excessivelySafeCall( address _target, uint256 _gas, uint16 _maxCopy, bytes memory _calldata ) internal returns (bool, bytes memory) { // set up for assembly call uint256 _toCopy; bool _success; bytes memory _returnData = new bytes(_maxCopy); // dispatch message to recipient // by assembly calling "handle" function // we call via assembly to avoid memcopying a very large returndata // returned by a malicious contract assembly { _success := call( _gas, // gas _target, // recipient 0, // ether value add(_calldata, 0x20), // inloc mload(_calldata), // inlen 0, // outloc 0 // outlen ) // limit our copy to 256 bytes _toCopy := returndatasize() if gt(_toCopy, _maxCopy) { _toCopy := _maxCopy } // Store the length of the copied bytes mstore(_returnData, _toCopy) // copy the bytes from returndata[0:_toCopy] returndatacopy(add(_returnData, 0x20), 0, _toCopy) } return (_success, _returnData); } /// @notice Use when you _really_ really _really_ don't trust the called /// contract. This prevents the called contract from causing reversion of /// the caller in as many ways as we can. /// @dev The main difference between this and a solidity low-level call is /// that we limit the number of bytes that the callee can cause to be /// copied to caller memory. This prevents stupid things like malicious /// contracts returning 10,000,000 bytes causing a local OOG when copying /// to memory. /// @param _target The address to call /// @param _gas The amount of gas to forward to the remote contract /// @param _maxCopy The maximum number of bytes of returndata to copy /// to memory. /// @param _calldata The data to send to the remote contract /// @return success and returndata, as `.call()`. Returndata is capped to /// `_maxCopy` bytes. function excessivelySafeStaticCall( address _target, uint256 _gas, uint16 _maxCopy, bytes memory _calldata ) internal view returns (bool, bytes memory) { // set up for assembly call uint256 _toCopy; bool _success; bytes memory _returnData = new bytes(_maxCopy); // dispatch message to recipient // by assembly calling "handle" function // we call via assembly to avoid memcopying a very large returndata // returned by a malicious contract assembly { _success := staticcall( _gas, // gas _target, // recipient add(_calldata, 0x20), // inloc mload(_calldata), // inlen 0, // outloc 0 // outlen ) // limit our copy to 256 bytes _toCopy := returndatasize() if gt(_toCopy, _maxCopy) { _toCopy := _maxCopy } // Store the length of the copied bytes mstore(_returnData, _toCopy) // copy the bytes from returndata[0:_toCopy] returndatacopy(add(_returnData, 0x20), 0, _toCopy) } return (_success, _returnData); } /** * @notice Swaps function selectors in encoded contract calls * @dev Allows reuse of encoded calldata for functions with identical * argument types but different names. It simply swaps out the first 4 bytes * for the new selector. This function modifies memory in place, and should * only be used with caution. * @param _newSelector The new 4-byte selector * @param _buf The encoded contract args */ function swapSelector(bytes4 _newSelector, bytes memory _buf) internal pure { require(_buf.length >= 4); uint256 _mask = LOW_28_MASK; assembly { // load the first word of let _word := mload(add(_buf, 0x20)) // mask out the top 4 bytes // /x _word := and(_word, _mask) _word := or(_newSelector, _word) mstore(add(_buf, 0x20), _word) } } } // File contracts/lzApp/NonblockingLzApp.sol pragma solidity ^0.8.0; /* * 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 { using ExcessivelySafeCall for address; constructor(address _endpoint) LzApp(_endpoint) {} mapping(uint16 => mapping(bytes => mapping(uint64 => bytes32))) public failedMessages; event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload, bytes _reason); event RetryMessageSuccess(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _payloadHash); // overriding the virtual function in LzReceiver function _blockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual override { (bool success, bytes memory reason) = address(this).excessivelySafeCall(gasleft(), 150, abi.encodeWithSelector(this.nonblockingLzReceive.selector, _srcChainId, _srcAddress, _nonce, _payload)); // try-catch all errors/exceptions if (!success) { _storeFailedMessage(_srcChainId, _srcAddress, _nonce, _payload, reason); } } function _storeFailedMessage(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload, bytes memory _reason) internal virtual { failedMessages[_srcChainId][_srcAddress][_nonce] = keccak256(_payload); emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload, _reason); } function nonblockingLzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _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 calldata _srcAddress, uint64 _nonce, bytes calldata _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); emit RetryMessageSuccess(_srcChainId, _srcAddress, _nonce, payloadHash); } } // File contracts/token/oft/v2/IOFTReceiverV2.sol pragma solidity >=0.5.0; interface IOFTReceiverV2 { /** * @dev Called by the OFT contract when tokens are received from source chain. * @param _srcChainId The chain id of the source chain. * @param _srcAddress The address of the OFT token contract on the source chain. * @param _nonce The nonce of the transaction on the source chain. * @param _from The address of the account who calls the sendAndCall() on the source chain. * @param _amount The amount of tokens to transfer. * @param _payload Additional data with no specified format. */ function onOFTReceived(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes32 _from, uint _amount, bytes calldata _payload) external; } // File contracts/token/oft/v2/OFTCoreV2.sol pragma solidity ^0.8.0; abstract contract OFTCoreV2 is NonblockingLzApp { using BytesLib for bytes; using ExcessivelySafeCall for address; uint public constant NO_EXTRA_GAS = 0; // packet type uint8 public constant PT_SEND = 0; uint8 public constant PT_SEND_AND_CALL = 1; uint8 public constant sharedDecimals = 6; bool public useCustomAdapterParams; mapping(uint16 => mapping(bytes => mapping(uint64 => bool))) public creditedPackets; /** * @dev Emitted when `_amount` tokens are moved from the `_sender` to (`_dstChainId`, `_toAddress`) * `_nonce` is the outbound nonce */ event SendToChain(uint16 indexed _dstChainId, address indexed _from, bytes32 indexed _toAddress, uint _amount); /** * @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, address indexed _to, uint _amount); event SetUseCustomAdapterParams(bool _useCustomAdapterParams); event CallOFTReceivedSuccess(uint16 indexed _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _hash); event NonContractAddress(address _address); // _sharedDecimals should be the minimum decimals on all chains constructor(address _lzEndpoint) NonblockingLzApp(_lzEndpoint) { require(_lzEndpoint != address(0), "Invalid address"); } /************************************************************************ * public functions ************************************************************************/ function callOnOFTReceived(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes32 _from, address _to, uint _amount, bytes calldata _payload, uint _gasForCall) public virtual { require(_msgSender() == address(this), "OFTCore: caller must be OFTCore"); // send _amount = _transferFrom(address(this), _to, _amount); emit ReceiveFromChain(_srcChainId, _to, _amount); // call if (!_isContract(_to)) { emit NonContractAddress(_to); return; } IOFTReceiverV2(_to).onOFTReceived{gas: _gasForCall}(_srcChainId, _srcAddress, _nonce, _from, _amount, _payload); } function setUseCustomAdapterParams(bool _useCustomAdapterParams) public virtual onlyOwner { useCustomAdapterParams = _useCustomAdapterParams; emit SetUseCustomAdapterParams(_useCustomAdapterParams); } /************************************************************************ * internal functions ************************************************************************/ function _estimateSendFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bool _useZro, bytes memory _adapterParams) internal view virtual returns (uint nativeFee, uint zroFee) { // mock the payload for sendFrom() bytes memory payload = _encodeSendPayload(_toAddress, _ld2sd(_amount)); return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams); } function _estimateSendAndCallFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes memory _payload, uint64 _dstGasForCall, bool _useZro, bytes memory _adapterParams) internal view virtual returns (uint nativeFee, uint zroFee) { // mock the payload for sendAndCall() bytes memory payload = _encodeSendAndCallPayload(msg.sender, _toAddress, _ld2sd(_amount), _payload, _dstGasForCall); return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams); } function _nonblockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual override { uint8 packetType = _payload.toUint8(0); if (packetType == PT_SEND) { _sendAck(_srcChainId, _srcAddress, _nonce, _payload); } else if (packetType == PT_SEND_AND_CALL) { _sendAndCallAck(_srcChainId, _srcAddress, _nonce, _payload); } else { revert("OFTCore: unknown packet type"); } } function _send(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams) internal virtual returns (uint amount) { _checkAdapterParams(_dstChainId, PT_SEND, _adapterParams, NO_EXTRA_GAS); (amount, ) = _removeDust(_amount); amount = _debitFrom(_from, _dstChainId, _toAddress, amount); // amount returned should not have dust require(amount > 0, "OFTCore: amount too small"); bytes memory lzPayload = _encodeSendPayload(_toAddress, _ld2sd(amount)); _lzSend(_dstChainId, lzPayload, _refundAddress, _zroPaymentAddress, _adapterParams, msg.value); emit SendToChain(_dstChainId, _from, _toAddress, amount); } function _sendAck(uint16 _srcChainId, bytes memory, uint64, bytes memory _payload) internal virtual { (address to, uint64 amountSD) = _decodeSendPayload(_payload); if (to == address(0)) { to = address(0xdead); } uint amount = _sd2ld(amountSD); amount = _creditTo(_srcChainId, to, amount); emit ReceiveFromChain(_srcChainId, to, amount); } function _sendAndCall(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes memory _payload, uint64 _dstGasForCall, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams) internal virtual returns (uint amount) { _checkAdapterParams(_dstChainId, PT_SEND_AND_CALL, _adapterParams, _dstGasForCall); (amount, ) = _removeDust(_amount); amount = _debitFrom(_from, _dstChainId, _toAddress, amount); require(amount > 0, "OFTCore: amount too small"); // encode the msg.sender into the payload instead of _from bytes memory lzPayload = _encodeSendAndCallPayload(msg.sender, _toAddress, _ld2sd(amount), _payload, _dstGasForCall); _lzSend(_dstChainId, lzPayload, _refundAddress, _zroPaymentAddress, _adapterParams, msg.value); emit SendToChain(_dstChainId, _from, _toAddress, amount); } function _sendAndCallAck(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual { (bytes32 from, address to, uint64 amountSD, bytes memory payloadForCall, uint64 gasForCall) = _decodeSendAndCallPayload(_payload); mapping(uint64 => bool) storage nonces = creditedPackets[_srcChainId][_srcAddress]; bool credited = nonces[_nonce]; uint amount = _sd2ld(amountSD); // credit to this contract first, and then transfer to receiver only if callOnOFTReceived() succeeds if (!credited) { amount = _creditTo(_srcChainId, address(this), amount); nonces[_nonce] = true; } // workaround for stack too deep uint16 srcChainId = _srcChainId; bytes memory srcAddress = _srcAddress; uint64 nonce = _nonce; bytes memory payload = _payload; bytes32 from_ = from; address to_ = to; uint amount_ = amount; bytes memory payloadForCall_ = payloadForCall; // no gas limit for the call if retry uint gas = credited ? gasleft() : gasForCall; (bool success, bytes memory reason) = address(this).excessivelySafeCall(gasleft(), 150, abi.encodeWithSelector(this.callOnOFTReceived.selector, srcChainId, srcAddress, nonce, from_, to_, amount_, payloadForCall_, gas)); if (success) { bytes32 hash = keccak256(payload); emit CallOFTReceivedSuccess(srcChainId, srcAddress, nonce, hash); } else { // store the failed message into the nonblockingLzApp _storeFailedMessage(srcChainId, srcAddress, nonce, payload, reason); } } function _isContract(address _account) internal view returns (bool) { return _account.code.length > 0; } function _checkAdapterParams(uint16 _dstChainId, uint16 _pkType, bytes memory _adapterParams, uint _extraGas) internal virtual { if (useCustomAdapterParams) { _checkGasLimit(_dstChainId, _pkType, _adapterParams, _extraGas); } else { require(_adapterParams.length == 0, "OFTCore: _adapterParams must be empty."); } } function _ld2sd(uint _amount) internal view virtual returns (uint64) { uint amountSD = _amount / _ld2sdRate(); require(amountSD <= type(uint64).max, "OFTCore: amountSD overflow"); return uint64(amountSD); } function _sd2ld(uint64 _amountSD) internal view virtual returns (uint) { return _amountSD * _ld2sdRate(); } function _removeDust(uint _amount) internal view virtual returns (uint amountAfter, uint dust) { dust = _amount % _ld2sdRate(); amountAfter = _amount - dust; } function _encodeSendPayload(bytes32 _toAddress, uint64 _amountSD) internal view virtual returns (bytes memory) { return abi.encodePacked(PT_SEND, _toAddress, _amountSD); } function _decodeSendPayload(bytes memory _payload) internal view virtual returns (address to, uint64 amountSD) { require(_payload.toUint8(0) == PT_SEND && _payload.length == 41, "OFTCore: invalid payload"); to = _payload.toAddress(13); // drop the first 12 bytes of bytes32 amountSD = _payload.toUint64(33); } function _encodeSendAndCallPayload(address _from, bytes32 _toAddress, uint64 _amountSD, bytes memory _payload, uint64 _dstGasForCall) internal view virtual returns (bytes memory) { return abi.encodePacked(PT_SEND_AND_CALL, _toAddress, _amountSD, _addressToBytes32(_from), _dstGasForCall, _payload); } function _decodeSendAndCallPayload(bytes memory _payload) internal view virtual returns (bytes32 from, address to, uint64 amountSD, bytes memory payload, uint64 dstGasForCall) { require(_payload.toUint8(0) == PT_SEND_AND_CALL, "OFTCore: invalid payload"); to = _payload.toAddress(13); // drop the first 12 bytes of bytes32 amountSD = _payload.toUint64(33); from = _payload.toBytes32(41); dstGasForCall = _payload.toUint64(73); payload = _payload.slice(81, _payload.length - 81); } function _addressToBytes32(address _address) internal pure virtual returns (bytes32) { return bytes32(uint(uint160(_address))); } function _debitFrom(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount) internal virtual returns (uint); function _creditTo(uint16 _srcChainId, address _toAddress, uint _amount) internal virtual returns (uint); function _transferFrom(address _from, address _to, uint _amount) internal virtual returns (uint); function _ld2sdRate() internal view virtual returns (uint); } // File contracts/token/oft/v2/fee/BaseOFTWithFee.sol pragma solidity ^0.8.0; abstract contract BaseOFTWithFee is OFTCoreV2, Fee, ERC165, IOFTWithFee { constructor(address _lzEndpoint) OFTCoreV2(_lzEndpoint) {} /************************************************************************ * public functions ************************************************************************/ function sendFrom(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, uint _minAmount, LzCallParams calldata _callParams) public payable virtual override { (_amount, ) = _payOFTFee(_from, _dstChainId, _amount); _amount = _send(_from, _dstChainId, _toAddress, _amount, _callParams.refundAddress, _callParams.zroPaymentAddress, _callParams.adapterParams); require(_amount >= _minAmount, "BaseOFTWithFee: amount is less than minAmount"); } function sendAndCall(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, uint _minAmount, bytes calldata _payload, uint64 _dstGasForCall, LzCallParams calldata _callParams) public payable virtual override { (_amount, ) = _payOFTFee(_from, _dstChainId, _amount); _amount = _sendAndCall(_from, _dstChainId, _toAddress, _amount, _payload, _dstGasForCall, _callParams.refundAddress, _callParams.zroPaymentAddress, _callParams.adapterParams); require(_amount >= _minAmount, "BaseOFTWithFee: amount is less than minAmount"); } /************************************************************************ * public view functions ************************************************************************/ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IOFTWithFee).interfaceId || super.supportsInterface(interfaceId); } function estimateSendFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams) public view virtual override returns (uint nativeFee, uint zroFee) { return _estimateSendFee(_dstChainId, _toAddress, _amount, _useZro, _adapterParams); } function estimateSendAndCallFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, bool _useZro, bytes calldata _adapterParams) public view virtual override returns (uint nativeFee, uint zroFee) { return _estimateSendAndCallFee(_dstChainId, _toAddress, _amount, _payload, _dstGasForCall, _useZro, _adapterParams); } function circulatingSupply() public view virtual override returns (uint); function token() public view virtual override returns (address); function _transferFrom(address _from, address _to, uint _amount) internal virtual override(Fee, OFTCoreV2) returns (uint); } // File contracts/token/oft/v2/OFTV2.sol pragma solidity ^0.8.0; contract OFTV2 is BaseOFTWithFee, ERC20 { event EmergencyStopMintingCollateral(address _asset, bool state); event WhitelistChanged(address _whitelisted, bool whitelisted); event GravitaAddressesChanged(address _borrowerOperationsAddress, address _stabilityPoolAddress, address _vesselManagerAddress); mapping(address => bool) public emergencyStopMintingCollateral; uint internal immutable ld2sdRate; address public borrowerOperationsAddress; address public stabilityPoolAddress; address public vesselManagerAddress; // stores SC addresses that are allowed to mint/burn the token (FeeCollector, AMO strategies) mapping(address => bool) public whitelistedContracts; constructor(string memory _name, string memory _symbol, address _lzEndpoint) ERC20(_name, _symbol) BaseOFTWithFee(_lzEndpoint) { uint8 decimals = decimals(); ld2sdRate = 10 ** (decimals - sharedDecimals); } function _requireCallerIsBorrowerOperations() internal view { require(msg.sender == borrowerOperationsAddress, "DebtToken: Caller is not BorrowerOperations"); } function _requireCallerIsBOorVesselMorSP() internal view { require(msg.sender == borrowerOperationsAddress || msg.sender == vesselManagerAddress || msg.sender == stabilityPoolAddress, "DebtToken: Caller is neither BorrowerOperations nor VesselManager nor StabilityPool"); } function _requireCallerIsWhitelistedContract() internal view { require(whitelistedContracts[msg.sender], "DebtToken: Caller is not a whitelisted SC"); } /************************************************************************ * public functions ************************************************************************/ function emergencyStopMinting(address _asset, bool status) external onlyOwner { emergencyStopMintingCollateral[_asset] = status; emit EmergencyStopMintingCollateral(_asset, status); } function circulatingSupply() public view virtual override returns (uint) { return totalSupply(); } function token() public view virtual override returns (address) { return address(this); } function mint(address _asset, address _account, uint256 _amount) external { _requireCallerIsBorrowerOperations(); require(!emergencyStopMintingCollateral[_asset], "Mint is blocked on this collateral"); _mint(_account, _amount); } function burn(address _account, uint256 _amount) external { _requireCallerIsBOorVesselMorSP(); _burn(_account, _amount); } function mintFromWhitelistedContract(uint256 _amount) external { _requireCallerIsWhitelistedContract(); _mint(msg.sender, _amount); } function burnFromWhitelistedContract(uint256 _amount) external { _requireCallerIsWhitelistedContract(); _burn(msg.sender, _amount); } function sendToPool(address _sender, address _poolAddress, uint256 _amount) external { _requireCallerIsStabilityPool(); _transfer(_sender, _poolAddress, _amount); } function returnFromPool(address _poolAddress, address _receiver, uint256 _amount) external { _requireCallerIsVesselMorSP(); _transfer(_poolAddress, _receiver, _amount); } function setAddresses(address _borrowerOperationsAddress, address _stabilityPoolAddress, address _vesselManagerAddress) public onlyOwner { require(_isContract(_borrowerOperationsAddress), "Invalid contract address"); require(_isContract(_stabilityPoolAddress), "Invalid contract address"); require(_isContract(_vesselManagerAddress), "Invalid contract address"); borrowerOperationsAddress = _borrowerOperationsAddress; stabilityPoolAddress = _stabilityPoolAddress; vesselManagerAddress = _vesselManagerAddress; emit GravitaAddressesChanged(_borrowerOperationsAddress, _stabilityPoolAddress, _vesselManagerAddress); } function addWhitelist(address _address) external onlyOwner { whitelistedContracts[_address] = true; emit WhitelistChanged(_address, true); } function removeWhitelist(address _address) external onlyOwner { whitelistedContracts[_address] = false; emit WhitelistChanged(_address, false); } /************************************************************************ * internal functions ************************************************************************/ function _debitFrom(address _from, uint16, bytes32, uint _amount) internal virtual override returns (uint) { address spender = _msgSender(); if (_from != spender) _spendAllowance(_from, spender, _amount); _burn(_from, _amount); return _amount; } function _creditTo(uint16, address _toAddress, uint _amount) internal virtual override returns (uint) { _requireValidRecipient(_toAddress); _mint(_toAddress, _amount); return _amount; } function _transferFrom(address _from, address _to, uint _amount) internal virtual override returns (uint) { _requireValidRecipient(_to); address spender = _msgSender(); // if transfer from this contract, no need to check allowance if (_from != address(this) && _from != spender) _spendAllowance(_from, spender, _amount); _transfer(_from, _to, _amount); return _amount; } function _requireValidRecipient(address _recipient) internal view { require(_recipient != address(0) && _recipient != address(this), "DebtToken: Cannot transfer tokens directly to the token contract or the zero address"); } function _ld2sdRate() internal view virtual override returns (uint) { return ld2sdRate; } function _requireCallerIsStabilityPool() internal view { require(msg.sender == stabilityPoolAddress, "DebtToken: Caller is not the StabilityPool"); } function _requireCallerIsVesselMorSP() internal view { require(msg.sender == vesselManagerAddress || msg.sender == stabilityPoolAddress, "DebtToken: Caller is neither VesselManager nor StabilityPool"); } } // File contracts/gravita/GravitaDebtToken.sol pragma solidity ^0.8.0; /// @title Gravita Debt Token /// @notice This contract locks tokens on source, on outgoing send(), and unlocks tokens when receiving from other chains. contract GravitaDebtToken is OFTV2 { constructor(address _layerZeroEndpoint) OFTV2("Gravita Debt Token", "GRAI", _layerZeroEndpoint) {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":true,"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":"bytes32","name":"_hash","type":"bytes32"}],"name":"CallOFTReceivedSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_asset","type":"address"},{"indexed":false,"internalType":"bool","name":"state","type":"bool"}],"name":"EmergencyStopMintingCollateral","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_borrowerOperationsAddress","type":"address"},{"indexed":false,"internalType":"address","name":"_stabilityPoolAddress","type":"address"},{"indexed":false,"internalType":"address","name":"_vesselManagerAddress","type":"address"}],"name":"GravitaAddressesChanged","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"},{"indexed":false,"internalType":"bytes","name":"_reason","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"}],"name":"NonContractAddress","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":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ReceiveFromChain","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":"bytes32","name":"_payloadHash","type":"bytes32"}],"name":"RetryMessageSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"SendToChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"feeBp","type":"uint16"}],"name":"SetDefaultFeeBp","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"dstchainId","type":"uint16"},{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint16","name":"feeBp","type":"uint16"}],"name":"SetFeeBp","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"feeOwner","type":"address"}],"name":"SetFeeOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"_type","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"_minDstGas","type":"uint256"}],"name":"SetMinDstGas","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"precrime","type":"address"}],"name":"SetPrecrime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_path","type":"bytes"}],"name":"SetTrustedRemote","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"SetTrustedRemoteAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"SetUseCustomAdapterParams","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_whitelisted","type":"address"},{"indexed":false,"internalType":"bool","name":"whitelisted","type":"bool"}],"name":"WhitelistChanged","type":"event"},{"inputs":[],"name":"BP_DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_PAYLOAD_SIZE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NO_EXTRA_GAS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SEND","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SEND_AND_CALL","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"borrowerOperationsAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnFromWhitelistedContract","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":"bytes32","name":"_from","type":"bytes32"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint256","name":"_gasForCall","type":"uint256"}],"name":"callOnOFTReceived","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"chainIdToFeeBps","outputs":[{"internalType":"uint16","name":"feeBP","type":"uint16"},{"internalType":"bool","name":"enabled","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"creditedPackets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"defaultFeeBp","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"emergencyStopMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"emergencyStopMintingCollateral","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint64","name":"_dstGasForCall","type":"uint64"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendAndCallFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"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":[],"name":"feeOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"uint16","name":"_remoteChainId","type":"uint16"}],"name":"getTrustedRemoteAddress","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":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"name":"minDstGasLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"},{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintFromWhitelistedContract","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"payloadSizeLimitLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"precrime","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"quoteOFTFee","outputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeWhitelist","outputs":[],"stateMutability":"nonpayable","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":"_poolAddress","type":"address"},{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"returnFromPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_minAmount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint64","name":"_dstGasForCall","type":"uint64"},{"components":[{"internalType":"address payable","name":"refundAddress","type":"address"},{"internalType":"address","name":"zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"adapterParams","type":"bytes"}],"internalType":"struct ICommonOFT.LzCallParams","name":"_callParams","type":"tuple"}],"name":"sendAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_minAmount","type":"uint256"},{"components":[{"internalType":"address payable","name":"refundAddress","type":"address"},{"internalType":"address","name":"zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"adapterParams","type":"bytes"}],"internalType":"struct ICommonOFT.LzCallParams","name":"_callParams","type":"tuple"}],"name":"sendFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"address","name":"_poolAddress","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"sendToPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_borrowerOperationsAddress","type":"address"},{"internalType":"address","name":"_stabilityPoolAddress","type":"address"},{"internalType":"address","name":"_vesselManagerAddress","type":"address"}],"name":"setAddresses","outputs":[],"stateMutability":"nonpayable","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":"uint16","name":"_feeBp","type":"uint16"}],"name":"setDefaultFeeBp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint16","name":"_feeBp","type":"uint16"}],"name":"setFeeBp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeOwner","type":"address"}],"name":"setFeeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint16","name":"_packetType","type":"uint16"},{"internalType":"uint256","name":"_minGas","type":"uint256"}],"name":"setMinDstGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint256","name":"_size","type":"uint256"}],"name":"setPayloadSizeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_precrime","type":"address"}],"name":"setPrecrime","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":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_path","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"setTrustedRemoteAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"setUseCustomAdapterParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sharedDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stabilityPoolAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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"},{"inputs":[],"name":"useCustomAdapterParams","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vesselManagerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedContracts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60c06040523480156200001157600080fd5b506040516200572d3803806200572d83398101604081905262000034916200028b565b6040518060400160405280601281526020017123b930bb34ba30902232b13a102a37b5b2b760711b815250604051806040016040528060048152602001634752414960e01b815250828282828080806200009d620000976200018c60201b60201c565b62000190565b6001600160a01b03908116608052821615159050620000f45760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b604482015260640160405180910390fd5b5050600054600980546001600160a01b03909216620100000262010000600160b01b031990921691909117905581516200013690600d906020850190620001e5565b5080516200014c90600e906020840190620001e5565b505050600062000161620001e060201b60201c565b905062000170600682620002d3565b6200017d90600a620003f8565b60a05250620004469350505050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601290565b828054620001f39062000409565b90600052602060002090601f01602090048101928262000217576000855562000262565b82601f106200023257805160ff191683800117855562000262565b8280016001018555821562000262579182015b828111156200026257825182559160200191906001019062000245565b506200027092915062000274565b5090565b5b8082111562000270576000815560010162000275565b6000602082840312156200029e57600080fd5b81516001600160a01b0381168114620002b657600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff841680821015620002f057620002f0620002bd565b90039392505050565b600181815b808511156200033a5781600019048211156200031e576200031e620002bd565b808516156200032c57918102915b93841c9390800290620002fe565b509250929050565b6000826200035357506001620003f2565b816200036257506000620003f2565b81600181146200037b57600281146200038657620003a6565b6001915050620003f2565b60ff8411156200039a576200039a620002bd565b50506001821b620003f2565b5060208310610133831016604e8410600b8410161715620003cb575081810a620003f2565b620003d78383620002f9565b8060001904821115620003ee57620003ee620002bd565b0290505b92915050565b6000620002b660ff84168362000342565b600181811c908216806200041e57607f821691505b602082108114156200044057634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051615274620004b96000396000818161375b015281816137cd0152613f2e015260008181610b0201528181610e260152818161113e015281816111fe015281816115e301528181611ef00152818161259a01528181612cf10152818161329e015261397501526152746000f3fe6080604052600436106104305760003560e01c80639358928b11610229578063c44618341161012e578063eab45d9c116100b6578063f2fde38b1161007a578063f2fde38b14610d90578063f5ecbdbc14610db0578063f7f4d9da14610dd0578063f80f5dd514610df0578063fc0c546a14610e1057600080fd5b8063eab45d9c14610cf6578063eaffd49a14610d16578063eb8d72b714610d36578063ecd8f21214610d56578063ed629c5c14610d7657600080fd5b8063d1deba1f116100fd578063d1deba1f14610c60578063d888296814610c73578063dd62ed3e14610ca1578063df2a5b3b14610cc1578063e6a20ae614610ce157600080fd5b8063c446183414610ada578063c6c3bbe614610bca578063c83330ce14610bea578063cbed8b9c14610c4057600080fd5b8063a6c3d165116101b1578063b7f8cf9b11610180578063b7f8cf9b14610b24578063b95aac7614610b44578063b9818be114610b64578063baf3292d14610b8a578063bb997bac14610baa57600080fd5b8063a6c3d16514610a9a578063a9059cbb14610aba578063abe685cd14610ada578063b353aaa714610af057600080fd5b80639dc29fac116101f85780639dc29fac146109ea5780639f38369a14610a0a578063a1285d1714610a2a578063a457c2d714610a5a578063a4c51df514610a7a57600080fd5b80639358928b1461094e578063950c8a741461096357806395d89b41146109835780639bdb98121461099857600080fd5b80633d8b38f61161033a5780635b8c41e6116102c257806378c8cda71161028657806378c8cda7146108a357806379c0ad4b146108c3578063857749b0146108e35780638cfd8f5c146108f85780638da5cb5b1461093057600080fd5b80635b8c41e6146107c957806366ad5c8a1461081857806370a0823114610838578063715018a61461086e5780637533d7881461088357600080fd5b8063455ba27d11610309578063455ba27d146107415780634b104eff146107545780634c42899a146107745780635a359dc5146107895780635b32a439146107a957600080fd5b80633d8b38f6146106bf5780633f1f4fa4146106df57806342d65a8d1461070c578063447705151461072c57600080fd5b806320c582be116103bd578063359959071161038c57806335995907146105fa578063363bf9641461061a578063365260b41461063a578063391feebb1461066f578063395093511461069f57600080fd5b806320c582be1461058557806323b872dd146105a55780632cdf0b95146105c5578063313ce567146105d857600080fd5b8063095ea7b311610404578063095ea7b3146104ce5780630b622ab2146104ee5780630df374831461052657806310ddb1371461054657806318160ddd1461056657600080fd5b80621d35671461043557806301ffc9a71461045757806306fdde031461048c57806307e0db17146104ae575b600080fd5b34801561044157600080fd5b50610455610450366004614327565b610e23565b005b34801561046357600080fd5b506104776104723660046143ba565b611054565b60405190151581526020015b60405180910390f35b34801561049857600080fd5b506104a161108b565b604051610483919061443c565b3480156104ba57600080fd5b506104556104c936600461444f565b61111d565b3480156104da57600080fd5b506104776104e936600461447f565b6111a6565b3480156104fa57600080fd5b5060115461050e906001600160a01b031681565b6040516001600160a01b039091168152602001610483565b34801561053257600080fd5b506104556105413660046144ab565b6111be565b34801561055257600080fd5b5061045561056136600461444f565b6111dd565b34801561057257600080fd5b50600c545b604051908152602001610483565b34801561059157600080fd5b506104556105a03660046144c7565b611235565b3480156105b157600080fd5b506104776105c03660046144c7565b61124d565b6104556105d3366004614520565b611271565b3480156105e457600080fd5b5060125b60405160ff9091168152602001610483565b34801561060657600080fd5b506104556106153660046145ab565b611314565b34801561062657600080fd5b506104556106353660046145e0565b61137f565b34801561064657600080fd5b5061065a61065536600461462b565b611481565b60408051928352602083019190915201610483565b34801561067b57600080fd5b5061047761068a366004614690565b60136020526000908152604090205460ff1681565b3480156106ab57600080fd5b506104776106ba36600461447f565b6114d6565b3480156106cb57600080fd5b506104776106da3660046146ad565b6114f8565b3480156106eb57600080fd5b506105776106fa36600461444f565b60036020526000908152604090205481565b34801561071857600080fd5b506104556107273660046146ad565b6115c4565b34801561073857600080fd5b50610577600081565b61045561074f3660046146ff565b61164a565b34801561076057600080fd5b5061045561076f366004614690565b61172b565b34801561078057600080fd5b506105e8600081565b34801561079557600080fd5b506104556107a436600461444f565b6117e8565b3480156107b557600080fd5b5060125461050e906001600160a01b031681565b3480156107d557600080fd5b506105776107e4366004614828565b6005602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205481565b34801561082457600080fd5b50610455610833366004614327565b61185a565b34801561084457600080fd5b50610577610853366004614690565b6001600160a01b03166000908152600a602052604090205490565b34801561087a57600080fd5b5061045561192e565b34801561088f57600080fd5b506104a161089e36600461444f565b611942565b3480156108af57600080fd5b506104556108be366004614690565b6119dc565b3480156108cf57600080fd5b506104556108de3660046148c8565b611a3b565b3480156108ef57600080fd5b506105e8600681565b34801561090457600080fd5b50610577610913366004614902565b600260209081526000928352604080842090915290825290205481565b34801561093c57600080fd5b506000546001600160a01b031661050e565b34801561095a57600080fd5b50610577611aee565b34801561096f57600080fd5b5060045461050e906001600160a01b031681565b34801561098f57600080fd5b506104a1611afe565b3480156109a457600080fd5b506104776109b3366004614828565b6007602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205460ff1681565b3480156109f657600080fd5b50610455610a0536600461447f565b611b0d565b348015610a1657600080fd5b506104a1610a2536600461444f565b611b23565b348015610a3657600080fd5b50610477610a45366004614690565b600f6020526000908152604090205460ff1681565b348015610a6657600080fd5b50610477610a7536600461447f565b611c3a565b348015610a8657600080fd5b5061065a610a9536600461492c565b611cb5565b348015610aa657600080fd5b50610455610ab53660046146ad565b611d44565b348015610ac657600080fd5b50610477610ad536600461447f565b611dca565b348015610ae657600080fd5b5061057761271081565b348015610afc57600080fd5b5061050e7f000000000000000000000000000000000000000000000000000000000000000081565b348015610b3057600080fd5b5060105461050e906001600160a01b031681565b348015610b5057600080fd5b50610455610b5f3660046149e5565b611dd8565b348015610b7057600080fd5b5060095461050e906201000090046001600160a01b031681565b348015610b9657600080fd5b50610455610ba5366004614690565b611ded565b348015610bb657600080fd5b50610455610bc53660046144c7565b611e43565b348015610bd657600080fd5b50610455610be53660046144c7565b611e4b565b348015610bf657600080fd5b50610c26610c0536600461444f565b60086020526000908152604090205461ffff81169062010000900460ff1682565b6040805161ffff9093168352901515602083015201610483565b348015610c4c57600080fd5b50610455610c5b3660046149fe565b611ed1565b610455610c6e366004614327565b611f5b565b348015610c7f57600080fd5b50600954610c8e9061ffff1681565b60405161ffff9091168152602001610483565b348015610cad57600080fd5b50610577610cbc366004614a6c565b612171565b348015610ccd57600080fd5b50610455610cdc366004614aa5565b61219c565b348015610ced57600080fd5b506105e8600181565b348015610d0257600080fd5b50610455610d11366004614ae1565b61224e565b348015610d2257600080fd5b50610455610d31366004614afc565b612297565b348015610d4257600080fd5b50610455610d513660046146ad565b612407565b348015610d6257600080fd5b50610577610d713660046144ab565b612461565b348015610d8257600080fd5b506006546104779060ff1681565b348015610d9c57600080fd5b50610455610dab366004614690565b6124f3565b348015610dbc57600080fd5b506104a1610dcb366004614bc4565b612569565b348015610ddc57600080fd5b50610455610deb3660046149e5565b61261a565b348015610dfc57600080fd5b50610455610e0b366004614690565b61262c565b348015610e1c57600080fd5b503061050e565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610ea05760405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000060448201526064015b60405180910390fd5b61ffff861660009081526001602052604081208054610ebe90614c11565b80601f0160208091040260200160405190810160405280929190818152602001828054610eea90614c11565b8015610f375780601f10610f0c57610100808354040283529160200191610f37565b820191906000526020600020905b815481529060010190602001808311610f1a57829003601f168201915b50505050509050805186869050148015610f52575060008151115b8015610f7a575080516020820120604051610f709088908890614c46565b6040518091039020145b610fd55760405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b6064820152608401610e97565b61104b8787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8a018190048102820181019092528881528a93509150889088908190840183828082843760009201919091525061268f92505050565b50505050505050565b60006001600160e01b03198216630d30953d60e31b148061108557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600d805461109a90614c11565b80601f01602080910402602001604051908101604052809291908181526020018280546110c690614c11565b80156111135780601f106110e857610100808354040283529160200191611113565b820191906000526020600020905b8154815290600101906020018083116110f657829003601f168201915b5050505050905090565b611125612708565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906307e0db17906024015b600060405180830381600087803b15801561118b57600080fd5b505af115801561119f573d6000803e3d6000fd5b5050505050565b6000336111b4818585612762565b5060019392505050565b6111c6612708565b61ffff909116600090815260036020526040902055565b6111e5612708565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906310ddb13790602401611171565b61123d612886565b61124883838361291b565b505050565b60003361125b858285612aeb565b61126685858561291b565b506001949350505050565b61127c868685612b5f565b5092506112ea868686866112936020870187614690565b6112a36040880160208901614690565b6112b06040890189614c56565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612ba192505050565b92508183101561130c5760405162461bcd60e51b8152600401610e9790614c9c565b505050505050565b61131c612708565b6001600160a01b0382166000818152600f6020908152604091829020805460ff19168515159081179091558251938452908301527f5bbb1afddf32881824ddeb3fb7fe693cbb0aa35de2ef25c53ad5e8e8d44c2720910160405180910390a15050565b611387612708565b6001600160a01b0383163b6113ae5760405162461bcd60e51b8152600401610e9790614ce9565b6001600160a01b0382163b6113d55760405162461bcd60e51b8152600401610e9790614ce9565b6001600160a01b0381163b6113fc5760405162461bcd60e51b8152600401610e9790614ce9565b601080546001600160a01b038581166001600160a01b0319928316811790935560118054868316908416811790915560128054928616929093168217909255604080519384526020840192909252908201527fe11f9234c5a9af9538a590c5adf2369754a4198fdd39c264262bfce3c8d825d6906060015b60405180910390a1505050565b6000806114c78888888888888080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612cc592505050565b91509150965096945050505050565b6000336111b48185856114e98383612171565b6114f39190614d36565b612762565b61ffff83166000908152600160205260408120805482919061151990614c11565b80601f016020809104026020016040519081016040528092919081815260200182805461154590614c11565b80156115925780601f1061156757610100808354040283529160200191611592565b820191906000526020600020905b81548152906001019060200180831161157557829003601f168201915b5050505050905083836040516115a9929190614c46565b60405180910390208180519060200120149150509392505050565b6115cc612708565b6040516342d65a8d60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906342d65a8d9061161c90869086908690600401614d77565b600060405180830381600087803b15801561163657600080fd5b505af115801561104b573d6000803e3d6000fd5b611655898988612b5f565b50809650506116fe8989898988888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508a92506116a79150506020890189614690565b6116b760408a0160208b01614690565b6116c460408b018b614c56565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612d7d92505050565b9550848610156117205760405162461bcd60e51b8152600401610e9790614c9c565b505050505050505050565b611733612708565b6001600160a01b0381166117895760405162461bcd60e51b815260206004820152601a60248201527f4665653a206665654f776e65722063616e6e6f742062652030780000000000006044820152606401610e97565b6009805462010000600160b01b031916620100006001600160a01b038416908102919091179091556040519081527f047912631afa564eebd3db2efe191a0dec62da1fede6bbbc1ffc89d87845b1b5906020015b60405180910390a150565b6117f0612708565b6127108161ffff1611156118165760405162461bcd60e51b8152600401610e9790614d95565b6009805461ffff191661ffff83169081179091556040519081527fd26030ef4a8c225ee12b646eb4466acb41fb96b6cd4660b22d0ba0124e7bdc74906020016117dd565b3330146118b85760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608401610e97565b61130c8686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f890181900481028201810190925287815289935091508790879081908401838280828437600092019190915250612e7992505050565b611936612708565b6119406000612f00565b565b6001602052600090815260409020805461195b90614c11565b80601f016020809104026020016040519081016040528092919081815260200182805461198790614c11565b80156119d45780601f106119a9576101008083540402835291602001916119d4565b820191906000526020600020905b8154815290600101906020018083116119b757829003601f168201915b505050505081565b6119e4612708565b6001600160a01b0381166000818152601360209081526040808320805460ff191690558051938452908301919091527fb840a1dbd8b09a3dc45161bba92dfb9aba643c0e44c085a447f839d1d02cf13b91016117dd565b611a43612708565b6127108161ffff161115611a695760405162461bcd60e51b8152600401610e9790614d95565b60408051808201825261ffff83811680835285151560208085018281528985166000818152600884528890209651875492511515620100000262ffffff1990931696169590951717909455845192835292820192909252918201527fdd9c9685af3e6dcb56d8f4b88d2595d4add6837a150034e7781c46b6dcf8aaab90606001611474565b6000611af9600c5490565b905090565b6060600e805461109a90614c11565b611b15612f50565b611b1f8282613016565b5050565b61ffff8116600090815260016020526040812080546060929190611b4690614c11565b80601f0160208091040260200160405190810160405280929190818152602001828054611b7290614c11565b8015611bbf5780601f10611b9457610100808354040283529160200191611bbf565b820191906000526020600020905b815481529060010190602001808311611ba257829003601f168201915b50505050509050805160001415611c185760405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f72640000006044820152606401610e97565b611c33600060148351611c2b9190614dda565b839190613164565b9392505050565b60003381611c488286612171565b905083811015611ca85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610e97565b6112668286868403612762565b600080611d328b8b8b8b8b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8d018190048102820181019092528b81528e93508d9250908c908c908190840183828082843760009201919091525061327192505050565b91509150995099975050505050505050565b611d4c612708565b818130604051602001611d6193929190614df1565b60408051601f1981840301815291815261ffff85166000908152600160209081529190208251611d96939192909101906141a4565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce83838360405161147493929190614d77565b6000336111b481858561291b565b611de061332c565b611dea3382613016565b50565b611df5612708565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b906020016117dd565b61123d61339d565b611e5361340a565b6001600160a01b0383166000908152600f602052604090205460ff1615611ec75760405162461bcd60e51b815260206004820152602260248201527f4d696e7420697320626c6f636b6564206f6e207468697320636f6c6c61746572604482015261185b60f21b6064820152608401610e97565b6112488282613478565b611ed9612708565b6040516332fb62e760e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063cbed8b9c90611f2d9088908890889088908890600401614e17565b600060405180830381600087803b158015611f4757600080fd5b505af1158015611720573d6000803e3d6000fd5b61ffff86166000908152600560205260408082209051611f7e9088908890614c46565b90815260408051602092819003830190206001600160401b03871660009081529252902054905080611ffe5760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608401610e97565b80838360405161200f929190614c46565b60405180910390201461206e5760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608401610e97565b61ffff871660009081526005602052604080822090516120919089908990614c46565b90815260408051602092819003830181206001600160401b038916600090815290845282902093909355601f88018290048202830182019052868252612129918991899089908190840183828082843760009201919091525050604080516020601f8a018190048102820181019092528881528a935091508890889081908401838280828437600092019190915250612e7992505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051612160959493929190614e50565b60405180910390a150505050505050565b6001600160a01b039182166000908152600b6020908152604080832093909416825291909152205490565b6121a4612708565b600081116121ec5760405162461bcd60e51b81526020600482015260156024820152744c7a4170703a20696e76616c6964206d696e47617360581b6044820152606401610e97565b61ffff83811660008181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac090606001611474565b612256612708565b6006805460ff19168215159081179091556040519081527f1584ad594a70cbe1e6515592e1272a987d922b097ead875069cebe8b40c004a4906020016117dd565b3330146122e65760405162461bcd60e51b815260206004820152601f60248201527f4f4654436f72653a2063616c6c6572206d757374206265204f4654436f7265006044820152606401610e97565b6122f1308686613557565b9350846001600160a01b03168a61ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf8660405161233391815260200190565b60405180910390a36001600160a01b0385163b61238b576040516001600160a01b03861681527f9aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d9060200160405180910390a16123fb565b604051633fe79aed60e11b81526001600160a01b03861690637fcf35da9083906123c7908e908e908e908e908e908d908d908d90600401614e8b565b600060405180830381600088803b1580156123e157600080fd5b5087f11580156123f5573d6000803e3d6000fd5b50505050505b50505050505050505050565b61240f612708565b61ffff8316600090815260016020526040902061242d908383614228565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab83838360405161147493929190614d77565b61ffff828116600090815260086020908152604080832081518083019092525493841681526201000090930460ff16158015918401919091529091906124c6578051612710906124b59061ffff1685614ee6565b6124bf9190614f1b565b91506124ec565b60095461ffff16156124e757600954612710906124b59061ffff1685614ee6565b600091505b5092915050565b6124fb612708565b6001600160a01b0381166125605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e97565b611dea81612f00565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f5ecbdbc90608401600060405180830381865afa1580156125e9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526126119190810190614f2f565b95945050505050565b61262261332c565b611dea3382613478565b612634612708565b6001600160a01b038116600081815260136020908152604091829020805460ff191660019081179091558251938452908301527fb840a1dbd8b09a3dc45161bba92dfb9aba643c0e44c085a447f839d1d02cf13b91016117dd565b6000806126f25a60966366ad5c8a60e01b898989896040516024016126b79493929190614f9c565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152309291906135b2565b915091508161130c5761130c868686868561363c565b6000546001600160a01b031633146119405760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e97565b6001600160a01b0383166127c45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610e97565b6001600160a01b0382166128255760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610e97565b6001600160a01b038381166000818152600b602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6012546001600160a01b03163314806128a957506011546001600160a01b031633145b6119405760405162461bcd60e51b815260206004820152603c60248201527f44656274546f6b656e3a2043616c6c6572206973206e6569746865722056657360448201527f73656c4d616e61676572206e6f722053746162696c697479506f6f6c000000006064820152608401610e97565b6001600160a01b03831661297f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610e97565b6001600160a01b0382166129e15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610e97565b6001600160a01b0383166000908152600a602052604090205481811015612a595760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610e97565b6001600160a01b038085166000908152600a6020526040808220858503905591851681529081208054849290612a90908490614d36565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612adc91815260200190565b60405180910390a35b50505050565b6000612af78484612171565b90506000198114612ae55781811015612b525760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610e97565b612ae58484848403612762565b600080612b6c8484612461565b808403925090508015612b9957600954612b979086906201000090046001600160a01b031683613557565b505b935093915050565b6000612baf878284816136d9565b612bb885613753565b509050612bc788888884613793565b905060008111612c155760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610e97565b6000612c6087612c24846137c5565b6040805160006020820152602181019390935260c09190911b6001600160c01b0319166041830152805160298184030181526049909201905290565b9050612c7088828787873461384b565b86896001600160a01b03168961ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a85604051612cb191815260200190565b60405180910390a450979650505050505050565b6000806000612cd787612c24886137c5565b60405163040a7bb160e41b81529091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb1090612d2e908b90309086908b908b90600401614fda565b6040805180830381865afa158015612d4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d6e919061502e565b92509250509550959350505050565b6000612d95896001846001600160401b0389166136d9565b612d9e87613753565b509050612dad8a8a8a84613793565b905060008111612dfb5760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610e97565b6000612e12338a612e0b856137c5565b8a8a6139f1565b9050612e228a828787873461384b565b888b6001600160a01b03168b61ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a85604051612e6391815260200190565b60405180910390a4509998505050505050505050565b6000612e858282613a32565b905060ff8116612ea057612e9b85858585613a8e565b61119f565b60ff811660011415612eb857612e9b85858585613b1e565b60405162461bcd60e51b815260206004820152601c60248201527f4f4654436f72653a20756e6b6e6f776e207061636b65742074797065000000006044820152606401610e97565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6010546001600160a01b0316331480612f7357506012546001600160a01b031633145b80612f8857506011546001600160a01b031633145b6119405760405162461bcd60e51b815260206004820152605360248201527f44656274546f6b656e3a2043616c6c6572206973206e65697468657220426f7260448201527f726f7765724f7065726174696f6e73206e6f722056657373656c4d616e6167656064820152721c881b9bdc8814dd18589a5b1a5d1e541bdbdb606a1b608482015260a401610e97565b6001600160a01b0382166130765760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610e97565b6001600160a01b0382166000908152600a6020526040902054818110156130ea5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610e97565b6001600160a01b0383166000908152600a602052604081208383039055600c8054849290613119908490614dda565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60608161317281601f614d36565b10156131b15760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610e97565b6131bb8284614d36565b845110156131ff5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610e97565b60608215801561321e5760405191506000825260208201604052613268565b6040519150601f8416801560200281840101858101878315602002848b0101015b8183101561325757805183526020928301920161323f565b5050858452601f01601f1916604052505b50949350505050565b6000806000613284338a612e0b8b6137c5565b60405163040a7bb160e41b81529091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb10906132db908d90309086908b908b90600401614fda565b6040805180830381865afa1580156132f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061331b919061502e565b925092505097509795505050505050565b3360009081526013602052604090205460ff166119405760405162461bcd60e51b815260206004820152602960248201527f44656274546f6b656e3a2043616c6c6572206973206e6f7420612077686974656044820152686c697374656420534360b81b6064820152608401610e97565b6011546001600160a01b031633146119405760405162461bcd60e51b815260206004820152602a60248201527f44656274546f6b656e3a2043616c6c6572206973206e6f742074686520537461604482015269189a5b1a5d1e541bdbdb60b21b6064820152608401610e97565b6010546001600160a01b031633146119405760405162461bcd60e51b815260206004820152602b60248201527f44656274546f6b656e3a2043616c6c6572206973206e6f7420426f72726f776560448201526a724f7065726174696f6e7360a81b6064820152608401610e97565b6001600160a01b0382166134ce5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610e97565b80600c60008282546134e09190614d36565b90915550506001600160a01b0382166000908152600a60205260408120805483929061350d908490614d36565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600061356283613ca5565b33306001600160a01b0386161480159061358e5750806001600160a01b0316856001600160a01b031614155b1561359e5761359e858285612aeb565b6135a985858561291b565b50909392505050565b6000606060008060008661ffff166001600160401b038111156135d7576135d76147bb565b6040519080825280601f01601f191660200182016040528015613601576020820181803683370190505b50905060008087516020890160008d8df191503d925086831115613623578692505b828152826000602083013e909890975095505050505050565b8180519060200120600560008761ffff1661ffff1681526020019081526020016000208560405161366d9190615052565b9081526040805191829003602090810183206001600160401b0388166000908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c906136ca908790879087908790879061506e565b60405180910390a15050505050565b60065460ff16156136f5576136f084848484613d55565b612ae5565b815115612ae55760405162461bcd60e51b815260206004820152602660248201527f4f4654436f72653a205f61646170746572506172616d73206d7573742062652060448201526532b6b83a3c9760d11b6064820152608401610e97565b6000806137807f0000000000000000000000000000000000000000000000000000000000000000846150c0565b905061378c8184614dda565b9150915091565b6000336001600160a01b03861681146137b1576137b1868285612aeb565b6137bb8684613016565b5090949350505050565b6000806137f27f000000000000000000000000000000000000000000000000000000000000000084614f1b565b90506001600160401b038111156110855760405162461bcd60e51b815260206004820152601a60248201527f4f4654436f72653a20616d6f756e745344206f766572666c6f770000000000006044820152606401610e97565b61ffff86166000908152600160205260408120805461386990614c11565b80601f016020809104026020016040519081016040528092919081815260200182805461389590614c11565b80156138e25780601f106138b7576101008083540402835291602001916138e2565b820191906000526020600020905b8154815290600101906020018083116138c557829003601f168201915b505050505090508051600014156139545760405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b6064820152608401610e97565b61395f878751613e34565b60405162c5803160e81b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063c58031009084906139b6908b9086908c908c908c908c906004016150d4565b6000604051808303818588803b1580156139cf57600080fd5b505af11580156139e3573d6000803e3d6000fd5b505050505050505050505050565b6060600185856001600160a01b0389168587604051602001613a189695949392919061513b565b604051602081830303815290604052905095945050505050565b6000613a3f826001614d36565b83511015613a855760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b6044820152606401610e97565b50016001015190565b600080613a9a83613ea2565b90925090506001600160a01b038216613ab35761dead91505b6000613abe82613f27565b9050613acb878483613f5c565b9050826001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf83604051613b0d91815260200190565b60405180910390a350505050505050565b6000806000806000613b2f86613f71565b945094509450945094506000600760008b61ffff1661ffff16815260200190815260200160002089604051613b649190615052565b90815260408051602092819003830190206001600160401b038b166000908152928190529082205490925060ff1690613b9c86613f27565b905081613bd457613bae8c3083613f5c565b6001600160401b038b166000908152602085905260409020805460ff1916600117905590505b8b8b8b8b8b8b868b60008a613bf2578c6001600160401b0316613bf4565b5a5b9050600080613c265a609663eaffd49a60e01b8e8e8e8d8d8d8d8d6040516024016126b798979695949392919061519c565b915091508115613c7f578751602089012060405161ffff8d16907fb8890edbfc1c74692f527444645f95489c3703cc2df42e4a366f5d06fa6cd88490613c71908e908e908690615210565b60405180910390a250613c8c565b613c8c8b8b8b8b8561363c565b5050505050505050505050505050505050505050505050565b6001600160a01b03811615801590613cc657506001600160a01b0381163014155b611dea5760405162461bcd60e51b815260206004820152605460248201527f44656274546f6b656e3a2043616e6e6f74207472616e7366657220746f6b656e60448201527f73206469726563746c7920746f2074686520746f6b656e20636f6e7472616374606482015273206f7220746865207a65726f206164647265737360601b608482015260a401610e97565b6000613d6083614028565b61ffff808716600090815260026020908152604080832093891683529290529081205491925090613d92908490614d36565b905060008111613de45760405162461bcd60e51b815260206004820152601a60248201527f4c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000006044820152606401610e97565b8082101561130c5760405162461bcd60e51b815260206004820152601b60248201527f4c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000006044820152606401610e97565b61ffff821660009081526003602052604090205480613e5257506127105b808211156112485760405162461bcd60e51b815260206004820181905260248201527f4c7a4170703a207061796c6f61642073697a6520697320746f6f206c617267656044820152606401610e97565b60008080613eb08482613a32565b60ff16148015613ec1575082516029145b613f085760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610e97565b613f1383600d614084565b9150613f208360216140e9565b9050915091565b60006110857f00000000000000000000000000000000000000000000000000000000000000006001600160401b038416614ee6565b6000613f6783613ca5565b6124ec8383613478565b600080806060816001613f848783613a32565b60ff1614613fcf5760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610e97565b613fda86600d614084565b9350613fe78660216140e9565b9250613ff4866029614146565b94506140018660496140e9565b905061401d60518088516140159190614dda565b889190613164565b915091939590929450565b600060228251101561407c5760405162461bcd60e51b815260206004820152601c60248201527f4c7a4170703a20696e76616c69642061646170746572506172616d73000000006044820152606401610e97565b506022015190565b6000614091826014614d36565b835110156140d95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606401610e97565b500160200151600160601b900490565b60006140f6826008614d36565b8351101561413d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b6044820152606401610e97565b50016008015190565b6000614153826020614d36565b8351101561419b5760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b6044820152606401610e97565b50016020015190565b8280546141b090614c11565b90600052602060002090601f0160209004810192826141d25760008555614218565b82601f106141eb57805160ff1916838001178555614218565b82800160010185558215614218579182015b828111156142185782518255916020019190600101906141fd565b5061422492915061429c565b5090565b82805461423490614c11565b90600052602060002090601f0160209004810192826142565760008555614218565b82601f1061426f5782800160ff19823516178555614218565b82800160010185558215614218579182015b82811115614218578235825591602001919060010190614281565b5b80821115614224576000815560010161429d565b803561ffff811681146142c357600080fd5b919050565b60008083601f8401126142da57600080fd5b5081356001600160401b038111156142f157600080fd5b60208301915083602082850101111561430957600080fd5b9250929050565b80356001600160401b03811681146142c357600080fd5b6000806000806000806080878903121561434057600080fd5b614349876142b1565b955060208701356001600160401b038082111561436557600080fd5b6143718a838b016142c8565b909750955085915061438560408a01614310565b9450606089013591508082111561439b57600080fd5b506143a889828a016142c8565b979a9699509497509295939492505050565b6000602082840312156143cc57600080fd5b81356001600160e01b031981168114611c3357600080fd5b60005b838110156143ff5781810151838201526020016143e7565b83811115612ae55750506000910152565b600081518084526144288160208601602086016143e4565b601f01601f19169290920160200192915050565b602081526000611c336020830184614410565b60006020828403121561446157600080fd5b611c33826142b1565b6001600160a01b0381168114611dea57600080fd5b6000806040838503121561449257600080fd5b823561449d8161446a565b946020939093013593505050565b600080604083850312156144be57600080fd5b61449d836142b1565b6000806000606084860312156144dc57600080fd5b83356144e78161446a565b925060208401356144f78161446a565b929592945050506040919091013590565b60006060828403121561451a57600080fd5b50919050565b60008060008060008060c0878903121561453957600080fd5b86356145448161446a565b9550614552602088016142b1565b945060408701359350606087013592506080870135915060a08701356001600160401b0381111561458257600080fd5b61458e89828a01614508565b9150509295509295509295565b803580151581146142c357600080fd5b600080604083850312156145be57600080fd5b82356145c98161446a565b91506145d76020840161459b565b90509250929050565b6000806000606084860312156145f557600080fd5b83356146008161446a565b925060208401356146108161446a565b915060408401356146208161446a565b809150509250925092565b60008060008060008060a0878903121561464457600080fd5b61464d876142b1565b955060208701359450604087013593506146696060880161459b565b925060808701356001600160401b0381111561468457600080fd5b6143a889828a016142c8565b6000602082840312156146a257600080fd5b8135611c338161446a565b6000806000604084860312156146c257600080fd5b6146cb846142b1565b925060208401356001600160401b038111156146e657600080fd5b6146f2868287016142c8565b9497909650939450505050565b60008060008060008060008060006101008a8c03121561471e57600080fd5b89356147298161446a565b985061473760208b016142b1565b975060408a0135965060608a0135955060808a0135945060a08a01356001600160401b038082111561476857600080fd5b6147748d838e016142c8565b909650945084915061478860c08d01614310565b935060e08c013591508082111561479e57600080fd5b506147ab8c828d01614508565b9150509295985092959850929598565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156147f9576147f96147bb565b604052919050565b60006001600160401b0382111561481a5761481a6147bb565b50601f01601f191660200190565b60008060006060848603121561483d57600080fd5b614846846142b1565b925060208401356001600160401b0381111561486157600080fd5b8401601f8101861361487257600080fd5b803561488561488082614801565b6147d1565b81815287602083850101111561489a57600080fd5b816020840160208301376000602083830101528094505050506148bf60408501614310565b90509250925092565b6000806000606084860312156148dd57600080fd5b6148e6846142b1565b92506148f46020850161459b565b91506148bf604085016142b1565b6000806040838503121561491557600080fd5b61491e836142b1565b91506145d7602084016142b1565b600080600080600080600080600060e08a8c03121561494a57600080fd5b6149538a6142b1565b985060208a0135975060408a0135965060608a01356001600160401b038082111561497d57600080fd5b6149898d838e016142c8565b909850965086915061499d60808d01614310565b95506149ab60a08d0161459b565b945060c08c01359150808211156149c157600080fd5b506149ce8c828d016142c8565b915080935050809150509295985092959850929598565b6000602082840312156149f757600080fd5b5035919050565b600080600080600060808688031215614a1657600080fd5b614a1f866142b1565b9450614a2d602087016142b1565b93506040860135925060608601356001600160401b03811115614a4f57600080fd5b614a5b888289016142c8565b969995985093965092949392505050565b60008060408385031215614a7f57600080fd5b8235614a8a8161446a565b91506020830135614a9a8161446a565b809150509250929050565b600080600060608486031215614aba57600080fd5b614ac3846142b1565b9250614ad1602085016142b1565b9150604084013590509250925092565b600060208284031215614af357600080fd5b611c338261459b565b6000806000806000806000806000806101008b8d031215614b1c57600080fd5b614b258b6142b1565b995060208b01356001600160401b0380821115614b4157600080fd5b614b4d8e838f016142c8565b909b509950899150614b6160408e01614310565b985060608d0135975060808d01359150614b7a8261446a565b90955060a08c0135945060c08c01359080821115614b9757600080fd5b50614ba48d828e016142c8565b9150809450508092505060e08b013590509295989b9194979a5092959850565b60008060008060808587031215614bda57600080fd5b614be3856142b1565b9350614bf1602086016142b1565b92506040850135614c018161446a565b9396929550929360600135925050565b600181811c90821680614c2557607f821691505b6020821081141561451a57634e487b7160e01b600052602260045260246000fd5b8183823760009101908152919050565b6000808335601e19843603018112614c6d57600080fd5b8301803591506001600160401b03821115614c8757600080fd5b60200191503681900382131561430957600080fd5b6020808252602d908201527f426173654f4654576974684665653a20616d6f756e74206973206c657373207460408201526c1a185b881b5a5b905b5bdd5b9d609a1b606082015260800190565b60208082526018908201527f496e76616c696420636f6e747261637420616464726573730000000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115614d4957614d49614d20565b500190565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b61ffff84168152604060208201526000612611604083018486614d4e565b60208082526025908201527f4665653a20666565206270206d757374206265203c3d2042505f44454e4f4d496040820152642720aa27a960d91b606082015260800190565b600082821015614dec57614dec614d20565b500390565b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b600061ffff808816835280871660208401525084604083015260806060830152614e45608083018486614d4e565b979650505050505050565b61ffff86168152608060208201526000614e6e608083018688614d4e565b6001600160401b0394909416604083015250606001529392505050565b61ffff8916815260c060208201526000614ea960c08301898b614d4e565b6001600160401b038816604084015286606084015285608084015282810360a0840152614ed7818587614d4e565b9b9a5050505050505050505050565b6000816000190483118215151615614f0057614f00614d20565b500290565b634e487b7160e01b600052601260045260246000fd5b600082614f2a57614f2a614f05565b500490565b600060208284031215614f4157600080fd5b81516001600160401b03811115614f5757600080fd5b8201601f81018413614f6857600080fd5b8051614f7661488082614801565b818152856020838501011115614f8b57600080fd5b6126118260208301602086016143e4565b61ffff85168152608060208201526000614fb96080830186614410565b6001600160401b03851660408401528281036060840152614e458185614410565b61ffff861681526001600160a01b038516602082015260a06040820181905260009061500890830186614410565b841515606084015282810360808401526150228185614410565b98975050505050505050565b6000806040838503121561504157600080fd5b505080516020909101519092909150565b600082516150648184602087016143e4565b9190910192915050565b61ffff8616815260a06020820152600061508b60a0830187614410565b6001600160401b038616604084015282810360608401526150ac8186614410565b905082810360808401526150228185614410565b6000826150cf576150cf614f05565b500690565b61ffff8716815260c0602082015260006150f160c0830188614410565b82810360408401526151038188614410565b6001600160a01b0387811660608601528616608085015283810360a0850152905061512e8185614410565b9998505050505050505050565b60ff60f81b8760f81b16815285600182015260006001600160401b0360c01b808760c01b166021840152856029840152808560c01b16604984015250825161518a8160518501602087016143e4565b91909101605101979650505050505050565b600061010061ffff8b1683528060208401526151ba8184018b614410565b6001600160401b038a166040850152606084018990526001600160a01b038816608085015260a0840187905283810360c085015290506151fa8186614410565b9150508260e08301529998505050505050505050565b6060815260006152236060830186614410565b6001600160401b03949094166020830152506040015291905056fea2646970667358221220077b75aa9fbdb9f28964a0197b1d23a26a13c0d820ea173d5485a11dae71238b64736f6c634300080c00330000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e4
Deployed Bytecode
0x6080604052600436106104305760003560e01c80639358928b11610229578063c44618341161012e578063eab45d9c116100b6578063f2fde38b1161007a578063f2fde38b14610d90578063f5ecbdbc14610db0578063f7f4d9da14610dd0578063f80f5dd514610df0578063fc0c546a14610e1057600080fd5b8063eab45d9c14610cf6578063eaffd49a14610d16578063eb8d72b714610d36578063ecd8f21214610d56578063ed629c5c14610d7657600080fd5b8063d1deba1f116100fd578063d1deba1f14610c60578063d888296814610c73578063dd62ed3e14610ca1578063df2a5b3b14610cc1578063e6a20ae614610ce157600080fd5b8063c446183414610ada578063c6c3bbe614610bca578063c83330ce14610bea578063cbed8b9c14610c4057600080fd5b8063a6c3d165116101b1578063b7f8cf9b11610180578063b7f8cf9b14610b24578063b95aac7614610b44578063b9818be114610b64578063baf3292d14610b8a578063bb997bac14610baa57600080fd5b8063a6c3d16514610a9a578063a9059cbb14610aba578063abe685cd14610ada578063b353aaa714610af057600080fd5b80639dc29fac116101f85780639dc29fac146109ea5780639f38369a14610a0a578063a1285d1714610a2a578063a457c2d714610a5a578063a4c51df514610a7a57600080fd5b80639358928b1461094e578063950c8a741461096357806395d89b41146109835780639bdb98121461099857600080fd5b80633d8b38f61161033a5780635b8c41e6116102c257806378c8cda71161028657806378c8cda7146108a357806379c0ad4b146108c3578063857749b0146108e35780638cfd8f5c146108f85780638da5cb5b1461093057600080fd5b80635b8c41e6146107c957806366ad5c8a1461081857806370a0823114610838578063715018a61461086e5780637533d7881461088357600080fd5b8063455ba27d11610309578063455ba27d146107415780634b104eff146107545780634c42899a146107745780635a359dc5146107895780635b32a439146107a957600080fd5b80633d8b38f6146106bf5780633f1f4fa4146106df57806342d65a8d1461070c578063447705151461072c57600080fd5b806320c582be116103bd578063359959071161038c57806335995907146105fa578063363bf9641461061a578063365260b41461063a578063391feebb1461066f578063395093511461069f57600080fd5b806320c582be1461058557806323b872dd146105a55780632cdf0b95146105c5578063313ce567146105d857600080fd5b8063095ea7b311610404578063095ea7b3146104ce5780630b622ab2146104ee5780630df374831461052657806310ddb1371461054657806318160ddd1461056657600080fd5b80621d35671461043557806301ffc9a71461045757806306fdde031461048c57806307e0db17146104ae575b600080fd5b34801561044157600080fd5b50610455610450366004614327565b610e23565b005b34801561046357600080fd5b506104776104723660046143ba565b611054565b60405190151581526020015b60405180910390f35b34801561049857600080fd5b506104a161108b565b604051610483919061443c565b3480156104ba57600080fd5b506104556104c936600461444f565b61111d565b3480156104da57600080fd5b506104776104e936600461447f565b6111a6565b3480156104fa57600080fd5b5060115461050e906001600160a01b031681565b6040516001600160a01b039091168152602001610483565b34801561053257600080fd5b506104556105413660046144ab565b6111be565b34801561055257600080fd5b5061045561056136600461444f565b6111dd565b34801561057257600080fd5b50600c545b604051908152602001610483565b34801561059157600080fd5b506104556105a03660046144c7565b611235565b3480156105b157600080fd5b506104776105c03660046144c7565b61124d565b6104556105d3366004614520565b611271565b3480156105e457600080fd5b5060125b60405160ff9091168152602001610483565b34801561060657600080fd5b506104556106153660046145ab565b611314565b34801561062657600080fd5b506104556106353660046145e0565b61137f565b34801561064657600080fd5b5061065a61065536600461462b565b611481565b60408051928352602083019190915201610483565b34801561067b57600080fd5b5061047761068a366004614690565b60136020526000908152604090205460ff1681565b3480156106ab57600080fd5b506104776106ba36600461447f565b6114d6565b3480156106cb57600080fd5b506104776106da3660046146ad565b6114f8565b3480156106eb57600080fd5b506105776106fa36600461444f565b60036020526000908152604090205481565b34801561071857600080fd5b506104556107273660046146ad565b6115c4565b34801561073857600080fd5b50610577600081565b61045561074f3660046146ff565b61164a565b34801561076057600080fd5b5061045561076f366004614690565b61172b565b34801561078057600080fd5b506105e8600081565b34801561079557600080fd5b506104556107a436600461444f565b6117e8565b3480156107b557600080fd5b5060125461050e906001600160a01b031681565b3480156107d557600080fd5b506105776107e4366004614828565b6005602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205481565b34801561082457600080fd5b50610455610833366004614327565b61185a565b34801561084457600080fd5b50610577610853366004614690565b6001600160a01b03166000908152600a602052604090205490565b34801561087a57600080fd5b5061045561192e565b34801561088f57600080fd5b506104a161089e36600461444f565b611942565b3480156108af57600080fd5b506104556108be366004614690565b6119dc565b3480156108cf57600080fd5b506104556108de3660046148c8565b611a3b565b3480156108ef57600080fd5b506105e8600681565b34801561090457600080fd5b50610577610913366004614902565b600260209081526000928352604080842090915290825290205481565b34801561093c57600080fd5b506000546001600160a01b031661050e565b34801561095a57600080fd5b50610577611aee565b34801561096f57600080fd5b5060045461050e906001600160a01b031681565b34801561098f57600080fd5b506104a1611afe565b3480156109a457600080fd5b506104776109b3366004614828565b6007602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205460ff1681565b3480156109f657600080fd5b50610455610a0536600461447f565b611b0d565b348015610a1657600080fd5b506104a1610a2536600461444f565b611b23565b348015610a3657600080fd5b50610477610a45366004614690565b600f6020526000908152604090205460ff1681565b348015610a6657600080fd5b50610477610a7536600461447f565b611c3a565b348015610a8657600080fd5b5061065a610a9536600461492c565b611cb5565b348015610aa657600080fd5b50610455610ab53660046146ad565b611d44565b348015610ac657600080fd5b50610477610ad536600461447f565b611dca565b348015610ae657600080fd5b5061057761271081565b348015610afc57600080fd5b5061050e7f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e481565b348015610b3057600080fd5b5060105461050e906001600160a01b031681565b348015610b5057600080fd5b50610455610b5f3660046149e5565b611dd8565b348015610b7057600080fd5b5060095461050e906201000090046001600160a01b031681565b348015610b9657600080fd5b50610455610ba5366004614690565b611ded565b348015610bb657600080fd5b50610455610bc53660046144c7565b611e43565b348015610bd657600080fd5b50610455610be53660046144c7565b611e4b565b348015610bf657600080fd5b50610c26610c0536600461444f565b60086020526000908152604090205461ffff81169062010000900460ff1682565b6040805161ffff9093168352901515602083015201610483565b348015610c4c57600080fd5b50610455610c5b3660046149fe565b611ed1565b610455610c6e366004614327565b611f5b565b348015610c7f57600080fd5b50600954610c8e9061ffff1681565b60405161ffff9091168152602001610483565b348015610cad57600080fd5b50610577610cbc366004614a6c565b612171565b348015610ccd57600080fd5b50610455610cdc366004614aa5565b61219c565b348015610ced57600080fd5b506105e8600181565b348015610d0257600080fd5b50610455610d11366004614ae1565b61224e565b348015610d2257600080fd5b50610455610d31366004614afc565b612297565b348015610d4257600080fd5b50610455610d513660046146ad565b612407565b348015610d6257600080fd5b50610577610d713660046144ab565b612461565b348015610d8257600080fd5b506006546104779060ff1681565b348015610d9c57600080fd5b50610455610dab366004614690565b6124f3565b348015610dbc57600080fd5b506104a1610dcb366004614bc4565b612569565b348015610ddc57600080fd5b50610455610deb3660046149e5565b61261a565b348015610dfc57600080fd5b50610455610e0b366004614690565b61262c565b348015610e1c57600080fd5b503061050e565b337f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e46001600160a01b031614610ea05760405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000060448201526064015b60405180910390fd5b61ffff861660009081526001602052604081208054610ebe90614c11565b80601f0160208091040260200160405190810160405280929190818152602001828054610eea90614c11565b8015610f375780601f10610f0c57610100808354040283529160200191610f37565b820191906000526020600020905b815481529060010190602001808311610f1a57829003601f168201915b50505050509050805186869050148015610f52575060008151115b8015610f7a575080516020820120604051610f709088908890614c46565b6040518091039020145b610fd55760405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b6064820152608401610e97565b61104b8787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8a018190048102820181019092528881528a93509150889088908190840183828082843760009201919091525061268f92505050565b50505050505050565b60006001600160e01b03198216630d30953d60e31b148061108557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600d805461109a90614c11565b80601f01602080910402602001604051908101604052809291908181526020018280546110c690614c11565b80156111135780601f106110e857610100808354040283529160200191611113565b820191906000526020600020905b8154815290600101906020018083116110f657829003601f168201915b5050505050905090565b611125612708565b6040516307e0db1760e01b815261ffff821660048201527f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e46001600160a01b0316906307e0db17906024015b600060405180830381600087803b15801561118b57600080fd5b505af115801561119f573d6000803e3d6000fd5b5050505050565b6000336111b4818585612762565b5060019392505050565b6111c6612708565b61ffff909116600090815260036020526040902055565b6111e5612708565b6040516310ddb13760e01b815261ffff821660048201527f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e46001600160a01b0316906310ddb13790602401611171565b61123d612886565b61124883838361291b565b505050565b60003361125b858285612aeb565b61126685858561291b565b506001949350505050565b61127c868685612b5f565b5092506112ea868686866112936020870187614690565b6112a36040880160208901614690565b6112b06040890189614c56565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612ba192505050565b92508183101561130c5760405162461bcd60e51b8152600401610e9790614c9c565b505050505050565b61131c612708565b6001600160a01b0382166000818152600f6020908152604091829020805460ff19168515159081179091558251938452908301527f5bbb1afddf32881824ddeb3fb7fe693cbb0aa35de2ef25c53ad5e8e8d44c2720910160405180910390a15050565b611387612708565b6001600160a01b0383163b6113ae5760405162461bcd60e51b8152600401610e9790614ce9565b6001600160a01b0382163b6113d55760405162461bcd60e51b8152600401610e9790614ce9565b6001600160a01b0381163b6113fc5760405162461bcd60e51b8152600401610e9790614ce9565b601080546001600160a01b038581166001600160a01b0319928316811790935560118054868316908416811790915560128054928616929093168217909255604080519384526020840192909252908201527fe11f9234c5a9af9538a590c5adf2369754a4198fdd39c264262bfce3c8d825d6906060015b60405180910390a1505050565b6000806114c78888888888888080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612cc592505050565b91509150965096945050505050565b6000336111b48185856114e98383612171565b6114f39190614d36565b612762565b61ffff83166000908152600160205260408120805482919061151990614c11565b80601f016020809104026020016040519081016040528092919081815260200182805461154590614c11565b80156115925780601f1061156757610100808354040283529160200191611592565b820191906000526020600020905b81548152906001019060200180831161157557829003601f168201915b5050505050905083836040516115a9929190614c46565b60405180910390208180519060200120149150509392505050565b6115cc612708565b6040516342d65a8d60e01b81526001600160a01b037f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e416906342d65a8d9061161c90869086908690600401614d77565b600060405180830381600087803b15801561163657600080fd5b505af115801561104b573d6000803e3d6000fd5b611655898988612b5f565b50809650506116fe8989898988888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508a92506116a79150506020890189614690565b6116b760408a0160208b01614690565b6116c460408b018b614c56565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612d7d92505050565b9550848610156117205760405162461bcd60e51b8152600401610e9790614c9c565b505050505050505050565b611733612708565b6001600160a01b0381166117895760405162461bcd60e51b815260206004820152601a60248201527f4665653a206665654f776e65722063616e6e6f742062652030780000000000006044820152606401610e97565b6009805462010000600160b01b031916620100006001600160a01b038416908102919091179091556040519081527f047912631afa564eebd3db2efe191a0dec62da1fede6bbbc1ffc89d87845b1b5906020015b60405180910390a150565b6117f0612708565b6127108161ffff1611156118165760405162461bcd60e51b8152600401610e9790614d95565b6009805461ffff191661ffff83169081179091556040519081527fd26030ef4a8c225ee12b646eb4466acb41fb96b6cd4660b22d0ba0124e7bdc74906020016117dd565b3330146118b85760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608401610e97565b61130c8686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f890181900481028201810190925287815289935091508790879081908401838280828437600092019190915250612e7992505050565b611936612708565b6119406000612f00565b565b6001602052600090815260409020805461195b90614c11565b80601f016020809104026020016040519081016040528092919081815260200182805461198790614c11565b80156119d45780601f106119a9576101008083540402835291602001916119d4565b820191906000526020600020905b8154815290600101906020018083116119b757829003601f168201915b505050505081565b6119e4612708565b6001600160a01b0381166000818152601360209081526040808320805460ff191690558051938452908301919091527fb840a1dbd8b09a3dc45161bba92dfb9aba643c0e44c085a447f839d1d02cf13b91016117dd565b611a43612708565b6127108161ffff161115611a695760405162461bcd60e51b8152600401610e9790614d95565b60408051808201825261ffff83811680835285151560208085018281528985166000818152600884528890209651875492511515620100000262ffffff1990931696169590951717909455845192835292820192909252918201527fdd9c9685af3e6dcb56d8f4b88d2595d4add6837a150034e7781c46b6dcf8aaab90606001611474565b6000611af9600c5490565b905090565b6060600e805461109a90614c11565b611b15612f50565b611b1f8282613016565b5050565b61ffff8116600090815260016020526040812080546060929190611b4690614c11565b80601f0160208091040260200160405190810160405280929190818152602001828054611b7290614c11565b8015611bbf5780601f10611b9457610100808354040283529160200191611bbf565b820191906000526020600020905b815481529060010190602001808311611ba257829003601f168201915b50505050509050805160001415611c185760405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f72640000006044820152606401610e97565b611c33600060148351611c2b9190614dda565b839190613164565b9392505050565b60003381611c488286612171565b905083811015611ca85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610e97565b6112668286868403612762565b600080611d328b8b8b8b8b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8d018190048102820181019092528b81528e93508d9250908c908c908190840183828082843760009201919091525061327192505050565b91509150995099975050505050505050565b611d4c612708565b818130604051602001611d6193929190614df1565b60408051601f1981840301815291815261ffff85166000908152600160209081529190208251611d96939192909101906141a4565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce83838360405161147493929190614d77565b6000336111b481858561291b565b611de061332c565b611dea3382613016565b50565b611df5612708565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b906020016117dd565b61123d61339d565b611e5361340a565b6001600160a01b0383166000908152600f602052604090205460ff1615611ec75760405162461bcd60e51b815260206004820152602260248201527f4d696e7420697320626c6f636b6564206f6e207468697320636f6c6c61746572604482015261185b60f21b6064820152608401610e97565b6112488282613478565b611ed9612708565b6040516332fb62e760e21b81526001600160a01b037f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e4169063cbed8b9c90611f2d9088908890889088908890600401614e17565b600060405180830381600087803b158015611f4757600080fd5b505af1158015611720573d6000803e3d6000fd5b61ffff86166000908152600560205260408082209051611f7e9088908890614c46565b90815260408051602092819003830190206001600160401b03871660009081529252902054905080611ffe5760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608401610e97565b80838360405161200f929190614c46565b60405180910390201461206e5760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608401610e97565b61ffff871660009081526005602052604080822090516120919089908990614c46565b90815260408051602092819003830181206001600160401b038916600090815290845282902093909355601f88018290048202830182019052868252612129918991899089908190840183828082843760009201919091525050604080516020601f8a018190048102820181019092528881528a935091508890889081908401838280828437600092019190915250612e7992505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051612160959493929190614e50565b60405180910390a150505050505050565b6001600160a01b039182166000908152600b6020908152604080832093909416825291909152205490565b6121a4612708565b600081116121ec5760405162461bcd60e51b81526020600482015260156024820152744c7a4170703a20696e76616c6964206d696e47617360581b6044820152606401610e97565b61ffff83811660008181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac090606001611474565b612256612708565b6006805460ff19168215159081179091556040519081527f1584ad594a70cbe1e6515592e1272a987d922b097ead875069cebe8b40c004a4906020016117dd565b3330146122e65760405162461bcd60e51b815260206004820152601f60248201527f4f4654436f72653a2063616c6c6572206d757374206265204f4654436f7265006044820152606401610e97565b6122f1308686613557565b9350846001600160a01b03168a61ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf8660405161233391815260200190565b60405180910390a36001600160a01b0385163b61238b576040516001600160a01b03861681527f9aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d9060200160405180910390a16123fb565b604051633fe79aed60e11b81526001600160a01b03861690637fcf35da9083906123c7908e908e908e908e908e908d908d908d90600401614e8b565b600060405180830381600088803b1580156123e157600080fd5b5087f11580156123f5573d6000803e3d6000fd5b50505050505b50505050505050505050565b61240f612708565b61ffff8316600090815260016020526040902061242d908383614228565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab83838360405161147493929190614d77565b61ffff828116600090815260086020908152604080832081518083019092525493841681526201000090930460ff16158015918401919091529091906124c6578051612710906124b59061ffff1685614ee6565b6124bf9190614f1b565b91506124ec565b60095461ffff16156124e757600954612710906124b59061ffff1685614ee6565b600091505b5092915050565b6124fb612708565b6001600160a01b0381166125605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e97565b611dea81612f00565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e46001600160a01b03169063f5ecbdbc90608401600060405180830381865afa1580156125e9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526126119190810190614f2f565b95945050505050565b61262261332c565b611dea3382613478565b612634612708565b6001600160a01b038116600081815260136020908152604091829020805460ff191660019081179091558251938452908301527fb840a1dbd8b09a3dc45161bba92dfb9aba643c0e44c085a447f839d1d02cf13b91016117dd565b6000806126f25a60966366ad5c8a60e01b898989896040516024016126b79493929190614f9c565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152309291906135b2565b915091508161130c5761130c868686868561363c565b6000546001600160a01b031633146119405760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e97565b6001600160a01b0383166127c45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610e97565b6001600160a01b0382166128255760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610e97565b6001600160a01b038381166000818152600b602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6012546001600160a01b03163314806128a957506011546001600160a01b031633145b6119405760405162461bcd60e51b815260206004820152603c60248201527f44656274546f6b656e3a2043616c6c6572206973206e6569746865722056657360448201527f73656c4d616e61676572206e6f722053746162696c697479506f6f6c000000006064820152608401610e97565b6001600160a01b03831661297f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610e97565b6001600160a01b0382166129e15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610e97565b6001600160a01b0383166000908152600a602052604090205481811015612a595760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610e97565b6001600160a01b038085166000908152600a6020526040808220858503905591851681529081208054849290612a90908490614d36565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612adc91815260200190565b60405180910390a35b50505050565b6000612af78484612171565b90506000198114612ae55781811015612b525760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610e97565b612ae58484848403612762565b600080612b6c8484612461565b808403925090508015612b9957600954612b979086906201000090046001600160a01b031683613557565b505b935093915050565b6000612baf878284816136d9565b612bb885613753565b509050612bc788888884613793565b905060008111612c155760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610e97565b6000612c6087612c24846137c5565b6040805160006020820152602181019390935260c09190911b6001600160c01b0319166041830152805160298184030181526049909201905290565b9050612c7088828787873461384b565b86896001600160a01b03168961ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a85604051612cb191815260200190565b60405180910390a450979650505050505050565b6000806000612cd787612c24886137c5565b60405163040a7bb160e41b81529091506001600160a01b037f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e416906340a7bb1090612d2e908b90309086908b908b90600401614fda565b6040805180830381865afa158015612d4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d6e919061502e565b92509250509550959350505050565b6000612d95896001846001600160401b0389166136d9565b612d9e87613753565b509050612dad8a8a8a84613793565b905060008111612dfb5760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610e97565b6000612e12338a612e0b856137c5565b8a8a6139f1565b9050612e228a828787873461384b565b888b6001600160a01b03168b61ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a85604051612e6391815260200190565b60405180910390a4509998505050505050505050565b6000612e858282613a32565b905060ff8116612ea057612e9b85858585613a8e565b61119f565b60ff811660011415612eb857612e9b85858585613b1e565b60405162461bcd60e51b815260206004820152601c60248201527f4f4654436f72653a20756e6b6e6f776e207061636b65742074797065000000006044820152606401610e97565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6010546001600160a01b0316331480612f7357506012546001600160a01b031633145b80612f8857506011546001600160a01b031633145b6119405760405162461bcd60e51b815260206004820152605360248201527f44656274546f6b656e3a2043616c6c6572206973206e65697468657220426f7260448201527f726f7765724f7065726174696f6e73206e6f722056657373656c4d616e6167656064820152721c881b9bdc8814dd18589a5b1a5d1e541bdbdb606a1b608482015260a401610e97565b6001600160a01b0382166130765760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610e97565b6001600160a01b0382166000908152600a6020526040902054818110156130ea5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610e97565b6001600160a01b0383166000908152600a602052604081208383039055600c8054849290613119908490614dda565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60608161317281601f614d36565b10156131b15760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610e97565b6131bb8284614d36565b845110156131ff5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610e97565b60608215801561321e5760405191506000825260208201604052613268565b6040519150601f8416801560200281840101858101878315602002848b0101015b8183101561325757805183526020928301920161323f565b5050858452601f01601f1916604052505b50949350505050565b6000806000613284338a612e0b8b6137c5565b60405163040a7bb160e41b81529091506001600160a01b037f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e416906340a7bb10906132db908d90309086908b908b90600401614fda565b6040805180830381865afa1580156132f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061331b919061502e565b925092505097509795505050505050565b3360009081526013602052604090205460ff166119405760405162461bcd60e51b815260206004820152602960248201527f44656274546f6b656e3a2043616c6c6572206973206e6f7420612077686974656044820152686c697374656420534360b81b6064820152608401610e97565b6011546001600160a01b031633146119405760405162461bcd60e51b815260206004820152602a60248201527f44656274546f6b656e3a2043616c6c6572206973206e6f742074686520537461604482015269189a5b1a5d1e541bdbdb60b21b6064820152608401610e97565b6010546001600160a01b031633146119405760405162461bcd60e51b815260206004820152602b60248201527f44656274546f6b656e3a2043616c6c6572206973206e6f7420426f72726f776560448201526a724f7065726174696f6e7360a81b6064820152608401610e97565b6001600160a01b0382166134ce5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610e97565b80600c60008282546134e09190614d36565b90915550506001600160a01b0382166000908152600a60205260408120805483929061350d908490614d36565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600061356283613ca5565b33306001600160a01b0386161480159061358e5750806001600160a01b0316856001600160a01b031614155b1561359e5761359e858285612aeb565b6135a985858561291b565b50909392505050565b6000606060008060008661ffff166001600160401b038111156135d7576135d76147bb565b6040519080825280601f01601f191660200182016040528015613601576020820181803683370190505b50905060008087516020890160008d8df191503d925086831115613623578692505b828152826000602083013e909890975095505050505050565b8180519060200120600560008761ffff1661ffff1681526020019081526020016000208560405161366d9190615052565b9081526040805191829003602090810183206001600160401b0388166000908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c906136ca908790879087908790879061506e565b60405180910390a15050505050565b60065460ff16156136f5576136f084848484613d55565b612ae5565b815115612ae55760405162461bcd60e51b815260206004820152602660248201527f4f4654436f72653a205f61646170746572506172616d73206d7573742062652060448201526532b6b83a3c9760d11b6064820152608401610e97565b6000806137807f000000000000000000000000000000000000000000000000000000e8d4a51000846150c0565b905061378c8184614dda565b9150915091565b6000336001600160a01b03861681146137b1576137b1868285612aeb565b6137bb8684613016565b5090949350505050565b6000806137f27f000000000000000000000000000000000000000000000000000000e8d4a5100084614f1b565b90506001600160401b038111156110855760405162461bcd60e51b815260206004820152601a60248201527f4f4654436f72653a20616d6f756e745344206f766572666c6f770000000000006044820152606401610e97565b61ffff86166000908152600160205260408120805461386990614c11565b80601f016020809104026020016040519081016040528092919081815260200182805461389590614c11565b80156138e25780601f106138b7576101008083540402835291602001916138e2565b820191906000526020600020905b8154815290600101906020018083116138c557829003601f168201915b505050505090508051600014156139545760405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b6064820152608401610e97565b61395f878751613e34565b60405162c5803160e81b81526001600160a01b037f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e4169063c58031009084906139b6908b9086908c908c908c908c906004016150d4565b6000604051808303818588803b1580156139cf57600080fd5b505af11580156139e3573d6000803e3d6000fd5b505050505050505050505050565b6060600185856001600160a01b0389168587604051602001613a189695949392919061513b565b604051602081830303815290604052905095945050505050565b6000613a3f826001614d36565b83511015613a855760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b6044820152606401610e97565b50016001015190565b600080613a9a83613ea2565b90925090506001600160a01b038216613ab35761dead91505b6000613abe82613f27565b9050613acb878483613f5c565b9050826001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf83604051613b0d91815260200190565b60405180910390a350505050505050565b6000806000806000613b2f86613f71565b945094509450945094506000600760008b61ffff1661ffff16815260200190815260200160002089604051613b649190615052565b90815260408051602092819003830190206001600160401b038b166000908152928190529082205490925060ff1690613b9c86613f27565b905081613bd457613bae8c3083613f5c565b6001600160401b038b166000908152602085905260409020805460ff1916600117905590505b8b8b8b8b8b8b868b60008a613bf2578c6001600160401b0316613bf4565b5a5b9050600080613c265a609663eaffd49a60e01b8e8e8e8d8d8d8d8d6040516024016126b798979695949392919061519c565b915091508115613c7f578751602089012060405161ffff8d16907fb8890edbfc1c74692f527444645f95489c3703cc2df42e4a366f5d06fa6cd88490613c71908e908e908690615210565b60405180910390a250613c8c565b613c8c8b8b8b8b8561363c565b5050505050505050505050505050505050505050505050565b6001600160a01b03811615801590613cc657506001600160a01b0381163014155b611dea5760405162461bcd60e51b815260206004820152605460248201527f44656274546f6b656e3a2043616e6e6f74207472616e7366657220746f6b656e60448201527f73206469726563746c7920746f2074686520746f6b656e20636f6e7472616374606482015273206f7220746865207a65726f206164647265737360601b608482015260a401610e97565b6000613d6083614028565b61ffff808716600090815260026020908152604080832093891683529290529081205491925090613d92908490614d36565b905060008111613de45760405162461bcd60e51b815260206004820152601a60248201527f4c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000006044820152606401610e97565b8082101561130c5760405162461bcd60e51b815260206004820152601b60248201527f4c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000006044820152606401610e97565b61ffff821660009081526003602052604090205480613e5257506127105b808211156112485760405162461bcd60e51b815260206004820181905260248201527f4c7a4170703a207061796c6f61642073697a6520697320746f6f206c617267656044820152606401610e97565b60008080613eb08482613a32565b60ff16148015613ec1575082516029145b613f085760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610e97565b613f1383600d614084565b9150613f208360216140e9565b9050915091565b60006110857f000000000000000000000000000000000000000000000000000000e8d4a510006001600160401b038416614ee6565b6000613f6783613ca5565b6124ec8383613478565b600080806060816001613f848783613a32565b60ff1614613fcf5760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610e97565b613fda86600d614084565b9350613fe78660216140e9565b9250613ff4866029614146565b94506140018660496140e9565b905061401d60518088516140159190614dda565b889190613164565b915091939590929450565b600060228251101561407c5760405162461bcd60e51b815260206004820152601c60248201527f4c7a4170703a20696e76616c69642061646170746572506172616d73000000006044820152606401610e97565b506022015190565b6000614091826014614d36565b835110156140d95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606401610e97565b500160200151600160601b900490565b60006140f6826008614d36565b8351101561413d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b6044820152606401610e97565b50016008015190565b6000614153826020614d36565b8351101561419b5760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b6044820152606401610e97565b50016020015190565b8280546141b090614c11565b90600052602060002090601f0160209004810192826141d25760008555614218565b82601f106141eb57805160ff1916838001178555614218565b82800160010185558215614218579182015b828111156142185782518255916020019190600101906141fd565b5061422492915061429c565b5090565b82805461423490614c11565b90600052602060002090601f0160209004810192826142565760008555614218565b82601f1061426f5782800160ff19823516178555614218565b82800160010185558215614218579182015b82811115614218578235825591602001919060010190614281565b5b80821115614224576000815560010161429d565b803561ffff811681146142c357600080fd5b919050565b60008083601f8401126142da57600080fd5b5081356001600160401b038111156142f157600080fd5b60208301915083602082850101111561430957600080fd5b9250929050565b80356001600160401b03811681146142c357600080fd5b6000806000806000806080878903121561434057600080fd5b614349876142b1565b955060208701356001600160401b038082111561436557600080fd5b6143718a838b016142c8565b909750955085915061438560408a01614310565b9450606089013591508082111561439b57600080fd5b506143a889828a016142c8565b979a9699509497509295939492505050565b6000602082840312156143cc57600080fd5b81356001600160e01b031981168114611c3357600080fd5b60005b838110156143ff5781810151838201526020016143e7565b83811115612ae55750506000910152565b600081518084526144288160208601602086016143e4565b601f01601f19169290920160200192915050565b602081526000611c336020830184614410565b60006020828403121561446157600080fd5b611c33826142b1565b6001600160a01b0381168114611dea57600080fd5b6000806040838503121561449257600080fd5b823561449d8161446a565b946020939093013593505050565b600080604083850312156144be57600080fd5b61449d836142b1565b6000806000606084860312156144dc57600080fd5b83356144e78161446a565b925060208401356144f78161446a565b929592945050506040919091013590565b60006060828403121561451a57600080fd5b50919050565b60008060008060008060c0878903121561453957600080fd5b86356145448161446a565b9550614552602088016142b1565b945060408701359350606087013592506080870135915060a08701356001600160401b0381111561458257600080fd5b61458e89828a01614508565b9150509295509295509295565b803580151581146142c357600080fd5b600080604083850312156145be57600080fd5b82356145c98161446a565b91506145d76020840161459b565b90509250929050565b6000806000606084860312156145f557600080fd5b83356146008161446a565b925060208401356146108161446a565b915060408401356146208161446a565b809150509250925092565b60008060008060008060a0878903121561464457600080fd5b61464d876142b1565b955060208701359450604087013593506146696060880161459b565b925060808701356001600160401b0381111561468457600080fd5b6143a889828a016142c8565b6000602082840312156146a257600080fd5b8135611c338161446a565b6000806000604084860312156146c257600080fd5b6146cb846142b1565b925060208401356001600160401b038111156146e657600080fd5b6146f2868287016142c8565b9497909650939450505050565b60008060008060008060008060006101008a8c03121561471e57600080fd5b89356147298161446a565b985061473760208b016142b1565b975060408a0135965060608a0135955060808a0135945060a08a01356001600160401b038082111561476857600080fd5b6147748d838e016142c8565b909650945084915061478860c08d01614310565b935060e08c013591508082111561479e57600080fd5b506147ab8c828d01614508565b9150509295985092959850929598565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156147f9576147f96147bb565b604052919050565b60006001600160401b0382111561481a5761481a6147bb565b50601f01601f191660200190565b60008060006060848603121561483d57600080fd5b614846846142b1565b925060208401356001600160401b0381111561486157600080fd5b8401601f8101861361487257600080fd5b803561488561488082614801565b6147d1565b81815287602083850101111561489a57600080fd5b816020840160208301376000602083830101528094505050506148bf60408501614310565b90509250925092565b6000806000606084860312156148dd57600080fd5b6148e6846142b1565b92506148f46020850161459b565b91506148bf604085016142b1565b6000806040838503121561491557600080fd5b61491e836142b1565b91506145d7602084016142b1565b600080600080600080600080600060e08a8c03121561494a57600080fd5b6149538a6142b1565b985060208a0135975060408a0135965060608a01356001600160401b038082111561497d57600080fd5b6149898d838e016142c8565b909850965086915061499d60808d01614310565b95506149ab60a08d0161459b565b945060c08c01359150808211156149c157600080fd5b506149ce8c828d016142c8565b915080935050809150509295985092959850929598565b6000602082840312156149f757600080fd5b5035919050565b600080600080600060808688031215614a1657600080fd5b614a1f866142b1565b9450614a2d602087016142b1565b93506040860135925060608601356001600160401b03811115614a4f57600080fd5b614a5b888289016142c8565b969995985093965092949392505050565b60008060408385031215614a7f57600080fd5b8235614a8a8161446a565b91506020830135614a9a8161446a565b809150509250929050565b600080600060608486031215614aba57600080fd5b614ac3846142b1565b9250614ad1602085016142b1565b9150604084013590509250925092565b600060208284031215614af357600080fd5b611c338261459b565b6000806000806000806000806000806101008b8d031215614b1c57600080fd5b614b258b6142b1565b995060208b01356001600160401b0380821115614b4157600080fd5b614b4d8e838f016142c8565b909b509950899150614b6160408e01614310565b985060608d0135975060808d01359150614b7a8261446a565b90955060a08c0135945060c08c01359080821115614b9757600080fd5b50614ba48d828e016142c8565b9150809450508092505060e08b013590509295989b9194979a5092959850565b60008060008060808587031215614bda57600080fd5b614be3856142b1565b9350614bf1602086016142b1565b92506040850135614c018161446a565b9396929550929360600135925050565b600181811c90821680614c2557607f821691505b6020821081141561451a57634e487b7160e01b600052602260045260246000fd5b8183823760009101908152919050565b6000808335601e19843603018112614c6d57600080fd5b8301803591506001600160401b03821115614c8757600080fd5b60200191503681900382131561430957600080fd5b6020808252602d908201527f426173654f4654576974684665653a20616d6f756e74206973206c657373207460408201526c1a185b881b5a5b905b5bdd5b9d609a1b606082015260800190565b60208082526018908201527f496e76616c696420636f6e747261637420616464726573730000000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115614d4957614d49614d20565b500190565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b61ffff84168152604060208201526000612611604083018486614d4e565b60208082526025908201527f4665653a20666565206270206d757374206265203c3d2042505f44454e4f4d496040820152642720aa27a960d91b606082015260800190565b600082821015614dec57614dec614d20565b500390565b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b600061ffff808816835280871660208401525084604083015260806060830152614e45608083018486614d4e565b979650505050505050565b61ffff86168152608060208201526000614e6e608083018688614d4e565b6001600160401b0394909416604083015250606001529392505050565b61ffff8916815260c060208201526000614ea960c08301898b614d4e565b6001600160401b038816604084015286606084015285608084015282810360a0840152614ed7818587614d4e565b9b9a5050505050505050505050565b6000816000190483118215151615614f0057614f00614d20565b500290565b634e487b7160e01b600052601260045260246000fd5b600082614f2a57614f2a614f05565b500490565b600060208284031215614f4157600080fd5b81516001600160401b03811115614f5757600080fd5b8201601f81018413614f6857600080fd5b8051614f7661488082614801565b818152856020838501011115614f8b57600080fd5b6126118260208301602086016143e4565b61ffff85168152608060208201526000614fb96080830186614410565b6001600160401b03851660408401528281036060840152614e458185614410565b61ffff861681526001600160a01b038516602082015260a06040820181905260009061500890830186614410565b841515606084015282810360808401526150228185614410565b98975050505050505050565b6000806040838503121561504157600080fd5b505080516020909101519092909150565b600082516150648184602087016143e4565b9190910192915050565b61ffff8616815260a06020820152600061508b60a0830187614410565b6001600160401b038616604084015282810360608401526150ac8186614410565b905082810360808401526150228185614410565b6000826150cf576150cf614f05565b500690565b61ffff8716815260c0602082015260006150f160c0830188614410565b82810360408401526151038188614410565b6001600160a01b0387811660608601528616608085015283810360a0850152905061512e8185614410565b9998505050505050505050565b60ff60f81b8760f81b16815285600182015260006001600160401b0360c01b808760c01b166021840152856029840152808560c01b16604984015250825161518a8160518501602087016143e4565b91909101605101979650505050505050565b600061010061ffff8b1683528060208401526151ba8184018b614410565b6001600160401b038a166040850152606084018990526001600160a01b038816608085015260a0840187905283810360c085015290506151fa8186614410565b9150508260e08301529998505050505050505050565b6060815260006152236060830186614410565b6001600160401b03949094166020830152506040015291905056fea2646970667358221220077b75aa9fbdb9f28964a0197b1d23a26a13c0d820ea173d5485a11dae71238b64736f6c634300080c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e4
-----Decoded View---------------
Arg [0] : _layerZeroEndpoint (address): 0x9740FF91F1985D8d2B71494aE1A2f723bb3Ed9E4
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e4
Deployed Bytecode Sourcemap
90942:143:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55036:762;;;;;;;;;;-1:-1:-1;55036:762:0;;;;;:::i;:::-;;:::i;:::-;;83115:218;;;;;;;;;;-1:-1:-1;83115:218:0;;;;;:::i;:::-;;:::i;:::-;;;2029:14:1;;2022:22;2004:41;;1992:2;1977:18;83115:218:0;;;;;;;;9473:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;58334:123::-;;;;;;;;;;-1:-1:-1;58334:123:0;;;;;:::i;:::-;;:::i;11824:201::-;;;;;;;;;;-1:-1:-1;11824:201:0;;;;;:::i;:::-;;:::i;84865:35::-;;;;;;;;;;-1:-1:-1;84865:35:0;;;;-1:-1:-1;;;;;84865:35:0;;;;;;-1:-1:-1;;;;;3616:32:1;;;3598:51;;3586:2;3571:18;84865:35:0;3452:203:1;60259:142:0;;;;;;;;;;-1:-1:-1;60259:142:0;;;;;:::i;:::-;;:::i;58465:129::-;;;;;;;;;;-1:-1:-1;58465:129:0;;;;;:::i;:::-;;:::i;10593:108::-;;;;;;;;;;-1:-1:-1;10681:12:0;;10593:108;;;4063:25:1;;;4051:2;4036:18;10593:108:0;3917:177:1;87575:193:0;;;;;;;;;;-1:-1:-1;87575:193:0;;;;;:::i;:::-;;:::i;12605:295::-;;;;;;;;;;-1:-1:-1;12605:295:0;;;;;:::i;:::-;;:::i;81856:485::-;;;;;;:::i;:::-;;:::i;10435:93::-;;;;;;;;;;-1:-1:-1;10518:2:0;10435:93;;;5682:4:1;5670:17;;;5652:36;;5640:2;5625:18;10435:93:0;5510:184:1;86183:206:0;;;;;;;;;;-1:-1:-1;86183:206:0;;;;;:::i;:::-;;:::i;87776:684::-;;;;;;;;;;-1:-1:-1;87776:684:0;;;;;:::i;:::-;;:::i;83341:292::-;;;;;;;;;;-1:-1:-1;83341:292:0;;;;;:::i;:::-;;:::i;:::-;;;;7584:25:1;;;7640:2;7625:18;;7618:34;;;;7557:18;83341:292:0;7410:248:1;85050:52:0;;;;;;;;;;-1:-1:-1;85050:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;13309:238;;;;;;;;;;-1:-1:-1;13309:238:0;;;;;:::i;:::-;;:::i;60499:250::-;;;;;;;;;;-1:-1:-1;60499:250:0;;;;;:::i;:::-;;:::i;54578:53::-;;;;;;;;;;-1:-1:-1;54578:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;58602:178;;;;;;;;;;-1:-1:-1;58602:178:0;;;;;:::i;:::-;;:::i;70437:37::-;;;;;;;;;;;;70473:1;70437:37;;82349:569;;;;;;:::i;:::-;;:::i;23398:217::-;;;;;;;;;;-1:-1:-1;23398:217:0;;;;;:::i;:::-;;:::i;70503:33::-;;;;;;;;;;;;70535:1;70503:33;;22819:235;;;;;;;;;;-1:-1:-1;22819:235:0;;;;;:::i;:::-;;:::i;84907:35::-;;;;;;;;;;-1:-1:-1;84907:35:0;;;;-1:-1:-1;;;;;84907:35:0;;;66886:85;;;;;;;;;;-1:-1:-1;66886:85:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68108:346;;;;;;;;;;-1:-1:-1;68108:346:0;;;;;:::i;:::-;;:::i;10764:127::-;;;;;;;;;;-1:-1:-1;10764:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10865:18:0;10838:7;10865:18;;;:9;:18;;;;;;;10764:127;2882:103;;;;;;;;;;;;;:::i;54448:51::-;;;;;;;;;;-1:-1:-1;54448:51:0;;;;;:::i;:::-;;:::i;88639:168::-;;;;;;;;;;-1:-1:-1;88639:168:0;;;;;:::i;:::-;;:::i;23062:328::-;;;;;;;;;;-1:-1:-1;23062:328:0;;;;;:::i;:::-;;:::i;70594:40::-;;;;;;;;;;;;70633:1;70594:40;;54506:65;;;;;;;;;;-1:-1:-1;54506:65:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;2234:87;;;;;;;;;;-1:-1:-1;2280:7:0;2307:6;-1:-1:-1;;;;;2307:6:0;2234:87;;86397:112;;;;;;;;;;;;;:::i;54638:23::-;;;;;;;;;;-1:-1:-1;54638:23:0;;;;-1:-1:-1;;;;;54638:23:0;;;9692:104;;;;;;;;;;;;;:::i;70684:83::-;;;;;;;;;;-1:-1:-1;70684:83:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86899:145;;;;;;;;;;-1:-1:-1;86899:145:0;;;;;:::i;:::-;;:::i;59431:330::-;;;;;;;;;;-1:-1:-1;59431:330:0;;;;;:::i;:::-;;:::i;84707:62::-;;;;;;;;;;-1:-1:-1;84707:62:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;14050:436;;;;;;;;;;-1:-1:-1;14050:436:0;;;;;:::i;:::-;;:::i;83641:380::-;;;;;;;;;;-1:-1:-1;83641:380:0;;;;;:::i;:::-;;:::i;59142:281::-;;;;;;;;;;-1:-1:-1;59142:281:0;;;;;:::i;:::-;;:::i;11097:193::-;;;;;;;;;;-1:-1:-1;11097:193:0;;;;;:::i;:::-;;:::i;22330:44::-;;;;;;;;;;;;22368:6;22330:44;;54395:46;;;;;;;;;;;;;;;84818:40;;;;;;;;;;-1:-1:-1;84818:40:0;;;;-1:-1:-1;;;;;84818:40:0;;;87216:156;;;;;;;;;;-1:-1:-1;87216:156:0;;;;;:::i;:::-;;:::i;22474:23::-;;;;;;;;;;-1:-1:-1;22474:23:0;;;;;;;-1:-1:-1;;;;;22474:23:0;;;59769:136;;;;;;;;;;-1:-1:-1;59769:136:0;;;;;:::i;:::-;;:::i;87380:187::-;;;;;;;;;;-1:-1:-1;87380:187:0;;;;;:::i;:::-;;:::i;86628:263::-;;;;;;;;;;-1:-1:-1;86628:263:0;;;;;:::i;:::-;;:::i;22383:51::-;;;;;;;;;;-1:-1:-1;22383:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;13676:6:1;13664:19;;;13646:38;;13727:14;;13720:22;13715:2;13700:18;;13693:50;13619:18;22383:51:0;13480:269:1;58122:204:0;;;;;;;;;;-1:-1:-1;58122:204:0;;;;;:::i;:::-;;:::i;68640:767::-;;;;;;:::i;:::-;;:::i;22441:26::-;;;;;;;;;;-1:-1:-1;22441:26:0;;;;;;;;;;;14555:6:1;14543:19;;;14525:38;;14513:2;14498:18;22441:26:0;14381:188:1;11353:151:0;;;;;;;;;;-1:-1:-1;11353:151:0;;;;;:::i;:::-;;:::i;59913:284::-;;;;;;;;;;-1:-1:-1;59913:284:0;;;;;:::i;:::-;;:::i;70543:42::-;;;;;;;;;;;;70584:1;70543:42;;72639:223;;;;;;;;;;-1:-1:-1;72639:223:0;;;;;:::i;:::-;;:::i;71958:673::-;;;;;;;;;;-1:-1:-1;71958:673:0;;;;;:::i;:::-;;:::i;58927:207::-;;;;;;;;;;-1:-1:-1;58927:207:0;;;;;:::i;:::-;;:::i;23623:413::-;;;;;;;;;;-1:-1:-1;23623:413:0;;;;;:::i;:::-;;:::i;70643:34::-;;;;;;;;;;-1:-1:-1;70643:34:0;;;;;;;;3140:201;;;;;;;;;;-1:-1:-1;3140:201:0;;;;;:::i;:::-;;:::i;57849:211::-;;;;;;;;;;-1:-1:-1;57849:211:0;;;;;:::i;:::-;;:::i;87052:156::-;;;;;;;;;;-1:-1:-1;87052:156:0;;;;;:::i;:::-;;:::i;88468:163::-;;;;;;;;;;-1:-1:-1;88468:163:0;;;;;:::i;:::-;;:::i;86517:103::-;;;;;;;;;;-1:-1:-1;86607:4:0;86517:103;;55036:762;861:10;55276;-1:-1:-1;;;;;55252:35:0;;55244:78;;;;-1:-1:-1;;;55244:78:0;;17358:2:1;55244:78:0;;;17340:21:1;17397:2;17377:18;;;17370:30;17436:32;17416:18;;;17409:60;17486:18;;55244:78:0;;;;;;;;;55364:32;;;55335:26;55364:32;;;:19;:32;;;;;55335:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55570:13;:20;55548:11;;:18;;:42;:70;;;;;55617:1;55594:13;:20;:24;55548:70;:124;;;;-1:-1:-1;55648:24:0;;;;;;55622:22;;;;55632:11;;;;55622:22;:::i;:::-;;;;;;;;:50;55548:124;55540:175;;;;-1:-1:-1;;;55540:175:0;;18378:2:1;55540:175:0;;;18360:21:1;18417:2;18397:18;;;18390:30;18456:34;18436:18;;;18429:62;-1:-1:-1;;;18507:18:1;;;18500:36;18553:19;;55540:175:0;18176:402:1;55540:175:0;55728:62;55747:11;55760;;55728:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;55728:62:0;;;;;;;;;;;;;;;;;;;;;;55773:6;;-1:-1:-1;55728:62:0;-1:-1:-1;55781:8:0;;;;;;55728:62;;55781:8;;;;55728:62;;;;;;;;;-1:-1:-1;55728:18:0;;-1:-1:-1;;;55728:62:0:i;:::-;55167:631;55036:762;;;;;;:::o;83115:218::-;83217:4;-1:-1:-1;;;;;;83241:44:0;;-1:-1:-1;;;83241:44:0;;:84;;-1:-1:-1;;;;;;;;;;22160:40:0;;;83289:36;83234:91;83115:218;-1:-1:-1;;83115:218:0:o;9473:100::-;9527:13;9560:5;9553:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9473:100;:::o;58334:123::-;2120:13;:11;:13::i;:::-;58414:35:::1;::::0;-1:-1:-1;;;58414:35:0;;14555:6:1;14543:19;;58414:35:0::1;::::0;::::1;14525:38:1::0;58414:10:0::1;-1:-1:-1::0;;;;;58414:25:0::1;::::0;::::1;::::0;14498:18:1;;58414:35:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;58334:123:::0;:::o;11824:201::-;11907:4;861:10;11963:32;861:10;11979:7;11988:6;11963:8;:32::i;:::-;-1:-1:-1;12013:4:0;;11824:201;-1:-1:-1;;;11824:201:0:o;60259:142::-;2120:13;:11;:13::i;:::-;60350:35:::1;::::0;;::::1;;::::0;;;:22:::1;:35;::::0;;;;:43;60259:142::o;58465:129::-;2120:13;:11;:13::i;:::-;58548:38:::1;::::0;-1:-1:-1;;;58548:38:0;;14555:6:1;14543:19;;58548:38:0::1;::::0;::::1;14525::1::0;58548:10:0::1;-1:-1:-1::0;;;;;58548:28:0::1;::::0;::::1;::::0;14498:18:1;;58548:38:0::1;14381:188:1::0;87575:193:0;87677:29;:27;:29::i;:::-;87717:43;87727:12;87741:9;87752:7;87717:9;:43::i;:::-;87575:193;;;:::o;12605:295::-;12736:4;861:10;12794:38;12810:4;861:10;12825:6;12794:15;:38::i;:::-;12843:27;12853:4;12859:2;12863:6;12843:9;:27::i;:::-;-1:-1:-1;12888:4:0;;12605:295;-1:-1:-1;;;;12605:295:0:o;81856:485::-;82052:39;82063:5;82070:11;82083:7;82052:10;:39::i;:::-;-1:-1:-1;82038:53:0;-1:-1:-1;82112:131:0;82118:5;82125:11;82138:10;82038:53;82159:25;;;;:11;:25;:::i;:::-;82186:29;;;;;;;;:::i;:::-;82217:25;;;;:11;:25;:::i;:::-;82112:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;82112:5:0;;-1:-1:-1;;;82112:131:0:i;:::-;82102:141;;82273:10;82262:7;:21;;82254:79;;;;-1:-1:-1;;;82254:79:0;;;;;;;:::i;:::-;81856:485;;;;;;:::o;86183:206::-;2120:13;:11;:13::i;:::-;-1:-1:-1;;;;;86272:38:0;::::1;;::::0;;;:30:::1;:38;::::0;;;;;;;;:47;;-1:-1:-1;;86272:47:0::1;::::0;::::1;;::::0;;::::1;::::0;;;86335:46;;19951:51:1;;;20018:18;;;20011:50;86335:46:0::1;::::0;19924:18:1;86335:46:0::1;;;;;;;86183:206:::0;;:::o;87776:684::-;2120:13;:11;:13::i;:::-;-1:-1:-1;;;;;78476:20:0;;;87924:76:::1;;;;-1:-1:-1::0;;;87924:76:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;78476:20:0;;;88011:71:::1;;;;-1:-1:-1::0;;;88011:71:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;78476:20:0;;;88093:71:::1;;;;-1:-1:-1::0;;;88093:71:0::1;;;;;;;:::i;:::-;88175:25;:54:::0;;-1:-1:-1;;;;;88175:54:0;;::::1;-1:-1:-1::0;;;;;;88175:54:0;;::::1;::::0;::::1;::::0;;;88240:20:::1;:44:::0;;;;::::1;::::0;;::::1;::::0;::::1;::::0;;;88295:20:::1;:44:::0;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;;88355:97:::1;::::0;;20665:34:1;;;20730:2;20715:18;;20708:43;;;;20767:18;;;20760:43;88355:97:0::1;::::0;20615:2:1;20600:18;88355:97:0::1;;;;;;;;87776:684:::0;;;:::o;83341:292::-;83503:14;83519:11;83550:75;83567:11;83580:10;83592:7;83601;83610:14;;83550:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;83550:16:0;;-1:-1:-1;;;83550:75:0:i;:::-;83543:82;;;;83341:292;;;;;;;;;:::o;13309:238::-;13397:4;861:10;13453:64;861:10;13469:7;13506:10;13478:25;861:10;13469:7;13478:9;:25::i;:::-;:38;;;;:::i;:::-;13453:8;:64::i;60499:250::-;60641:32;;;60595:4;60641:32;;;:19;:32;;;;;60612:61;;60595:4;;60641:32;60612:61;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60729:11;;60719:22;;;;;;;:::i;:::-;;;;;;;;60701:13;60691:24;;;;;;:50;60684:57;;;60499:250;;;;;:::o;58602:178::-;2120:13;:11;:13::i;:::-;58717:55:::1;::::0;-1:-1:-1;;;58717:55:0;;-1:-1:-1;;;;;58717:10:0::1;:29;::::0;::::1;::::0;:55:::1;::::0;58747:11;;58760;;;;58717:55:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;82349:569:::0;82596:39;82607:5;82614:11;82627:7;82596:10;:39::i;:::-;82582:53;;;;;82656:164;82669:5;82676:11;82689:10;82701:7;82710:8;;82656:164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;82720:14:0;;-1:-1:-1;82736:25:0;;-1:-1:-1;;82736:25:0;;;:11;:25;:::i;:::-;82763:29;;;;;;;;:::i;:::-;82794:25;;;;:11;:25;:::i;:::-;82656:164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;82656:12:0;;-1:-1:-1;;;82656:164:0:i;:::-;82646:174;;82850:10;82839:7;:21;;82831:79;;;;-1:-1:-1;;;82831:79:0;;;;;;;:::i;:::-;82349:569;;;;;;;;;:::o;23398:217::-;2120:13;:11;:13::i;:::-;-1:-1:-1;;;;;23482:25:0;::::1;23474:64;;;::::0;-1:-1:-1;;;23474:64:0;;21883:2:1;23474:64:0::1;::::0;::::1;21865:21:1::0;21922:2;21902:18;;;21895:30;21961:28;21941:18;;;21934:56;22007:18;;23474:64:0::1;21681:350:1::0;23474:64:0::1;23549:8;:20:::0;;-1:-1:-1;;;;;;23549:20:0::1;::::0;-1:-1:-1;;;;;23549:20:0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;23585:22:::1;::::0;3598:51:1;;;23585:22:0::1;::::0;3586:2:1;3571:18;23585:22:0::1;;;;;;;;23398:217:::0;:::o;22819:235::-;2120:13;:11;:13::i;:::-;22368:6:::1;22903;:24;;;;22895:74;;;;-1:-1:-1::0;;;22895:74:0::1;;;;;;;:::i;:::-;22980:12;:21:::0;;-1:-1:-1;;22980:21:0::1;;::::0;::::1;::::0;;::::1;::::0;;;23017:29:::1;::::0;14525:38:1;;;23017:29:0::1;::::0;14513:2:1;14498:18;23017:29:0::1;14381:188:1::0;68108:346:0;861:10;68322:4;68298:29;68290:80;;;;-1:-1:-1;;;68290:80:0;;22644:2:1;68290:80:0;;;22626:21:1;22683:2;22663:18;;;22656:30;22722:34;22702:18;;;22695:62;-1:-1:-1;;;22773:18:1;;;22766:36;22819:19;;68290:80:0;22442:402:1;68290:80:0;68381:65;68403:11;68416;;68381:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;68381:65:0;;;;;;;;;;;;;;;;;;;;;;68429:6;;-1:-1:-1;68381:65:0;-1:-1:-1;68437:8:0;;;;;;68381:65;;68437:8;;;;68381:65;;;;;;;;;-1:-1:-1;68381:21:0;;-1:-1:-1;;;68381:65:0:i;2882:103::-;2120:13;:11;:13::i;:::-;2947:30:::1;2974:1;2947:18;:30::i;:::-;2882:103::o:0;54448:51::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;88639:168::-;2120:13;:11;:13::i;:::-;-1:-1:-1;;;;;88712:30:0;::::1;88745:5;88712:30:::0;;;:20:::1;:30;::::0;;;;;;;:38;;-1:-1:-1;;88712:38:0::1;::::0;;88766:33;;19951:51:1;;;20018:18;;;20011:50;;;;88766:33:0::1;::::0;19924:18:1;88766:33:0::1;19783:284:1::0;23062:328:0;2120:13;:11;:13::i;:::-;22368:6:::1;23174;:24;;;;23166:74;;;;-1:-1:-1::0;;;23166:74:0::1;;;;;;;:::i;:::-;23282:45;::::0;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;::::1;;;::::0;;::::1;::::0;;;23251:28;;::::1;-1:-1:-1::0;23251:28:0;;;:15:::1;:28:::0;;;;;:76;;;;;;::::1;;::::0;::::1;-1:-1:-1::0;;23251:76:0;;;;::::1;::::0;;;;::::1;::::0;;;23343:39;;23066:34:1;;;23116:18;;;23109:50;;;;23175:18;;;23168:43;23343:39:0::1;::::0;23029:2:1;23014:18;23343:39:0::1;22849:368:1::0;86397:112:0;86464:4;86488:13;10681:12;;;10593:108;86488:13;86481:20;;86397:112;:::o;9692:104::-;9748:13;9781:7;9774:14;;;;;:::i;86899:145::-;86968:33;:31;:33::i;:::-;87012:24;87018:8;87028:7;87012:5;:24::i;:::-;86899:145;;:::o;59431:330::-;59555:35;;;59535:17;59555:35;;;:19;:35;;;;;59535:55;;59510:12;;59535:17;59555:35;59535:55;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59609:4;:11;59624:1;59609:16;;59601:58;;;;-1:-1:-1;;;59601:58:0;;23424:2:1;59601:58:0;;;23406:21:1;23463:2;23443:18;;;23436:30;23502:31;23482:18;;;23475:59;23551:18;;59601:58:0;23222:353:1;59601:58:0;59677:31;59688:1;59705:2;59691:4;:11;:16;;;;:::i;:::-;59677:4;;:31;:10;:31::i;:::-;59670:38;59431:330;-1:-1:-1;;;59431:330:0:o;14050:436::-;14143:4;861:10;14143:4;14226:25;861:10;14243:7;14226:9;:25::i;:::-;14199:52;;14290:15;14270:16;:35;;14262:85;;;;-1:-1:-1;;;14262:85:0;;23912:2:1;14262:85:0;;;23894:21:1;23951:2;23931:18;;;23924:30;23990:34;23970:18;;;23963:62;-1:-1:-1;;;24041:18:1;;;24034:35;24086:19;;14262:85:0;23710:401:1;14262:85:0;14383:60;14392:5;14399:7;14427:15;14408:16;:34;14383:8;:60::i;83641:380::-;83858:14;83874:11;83905:108;83929:11;83942:10;83954:7;83963:8;;83905:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;83905:108:0;;;;;;;;;;;;;;;;;;;;;;83973:14;;-1:-1:-1;83989:7:0;;-1:-1:-1;83905:108:0;83998:14;;;;;;83905:108;;83998:14;;;;83905:108;;;;;;;;;-1:-1:-1;83905:23:0;;-1:-1:-1;;;83905:108:0:i;:::-;83898:115;;;;83641:380;;;;;;;;;;;;:::o;59142:281::-;2120:13;:11;:13::i;:::-;59314:14:::1;;59338:4;59297:47;;;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;59297:47:0;;::::1;::::0;;;;;;59259:35:::1;::::0;::::1;;::::0;;;:19:::1;59297:47;59259:35:::0;;;;;;:85;;::::1;::::0;:35;;:85;;::::1;::::0;::::1;:::i;:::-;;59360:55;59384:14;59400;;59360:55;;;;;;;;:::i;11097:193::-:0;11176:4;861:10;11232:28;861:10;11249:2;11253:6;11232:9;:28::i;87216:156::-;87290:37;:35;:37::i;:::-;87338:26;87344:10;87356:7;87338:5;:26::i;:::-;87216:156;:::o;59769:136::-;2120:13;:11;:13::i;:::-;59839:8:::1;:20:::0;;-1:-1:-1;;;;;;59839:20:0::1;-1:-1:-1::0;;;;;59839:20:0;::::1;::::0;;::::1;::::0;;;59875:22:::1;::::0;3598:51:1;;;59875:22:0::1;::::0;3586:2:1;3571:18;59875:22:0::1;3452:203:1::0;87380:187:0;87476:31;:29;:31::i;86628:263::-;86713:36;:34;:36::i;:::-;-1:-1:-1;;;;;86769:38:0;;;;;;:30;:38;;;;;;;;86768:39;86760:86;;;;-1:-1:-1;;;86760:86:0;;24705:2:1;86760:86:0;;;24687:21:1;24744:2;24724:18;;;24717:30;24783:34;24763:18;;;24756:62;-1:-1:-1;;;24834:18:1;;;24827:32;24876:19;;86760:86:0;24503:398:1;86760:86:0;86859:24;86865:8;86875:7;86859:5;:24::i;58122:204::-;2120:13;:11;:13::i;:::-;58256:62:::1;::::0;-1:-1:-1;;;58256:62:0;;-1:-1:-1;;;;;58256:10:0::1;:20;::::0;::::1;::::0;:62:::1;::::0;58277:8;;58287;;58297:11;;58310:7;;;;58256:62:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;68640:767:::0;68851:27;;;68829:19;68851:27;;;:14;:27;;;;;;:40;;;;68879:11;;;;68851:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;68851:48:0;;;;;;;;;;;;-1:-1:-1;68851:48:0;68910:73;;;;-1:-1:-1;;;68910:73:0;;25611:2:1;68910:73:0;;;25593:21:1;25650:2;25630:18;;;25623:30;25689:34;25669:18;;;25662:62;-1:-1:-1;;;25740:18:1;;;25733:33;25783:19;;68910:73:0;25409:399:1;68910:73:0;69025:11;69012:8;;69002:19;;;;;;;:::i;:::-;;;;;;;;:34;68994:80;;;;-1:-1:-1;;;68994:80:0;;26015:2:1;68994:80:0;;;25997:21:1;26054:2;26034:18;;;26027:30;26093:34;26073:18;;;26066:62;-1:-1:-1;;;26144:18:1;;;26137:31;26185:19;;68994:80:0;25813:397:1;68994:80:0;69122:27;;;69181:1;69122:27;;;:14;:27;;;;;;:40;;;;69150:11;;;;69122:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;69122:48:0;;;;;;;;;;;;:61;;;;69252:65;;;;;;;;;;;;;;;;;;;69274:11;;69287;;69252:65;;;;;;69287:11;69252:65;;69287:11;69252:65;;;;;;;;;-1:-1:-1;;69252:65:0;;;;;;;;;;;;;;;;;;;;;;69300:6;;-1:-1:-1;69252:65:0;-1:-1:-1;69308:8:0;;;;;;69252:65;;69308:8;;;;69252:65;;;;;;;;;-1:-1:-1;69252:21:0;;-1:-1:-1;;;69252:65:0:i;:::-;69333:66;69353:11;69366;;69379:6;69387:11;69333:66;;;;;;;;;;:::i;:::-;;;;;;;;68773:634;68640:767;;;;;;:::o;11353:151::-;-1:-1:-1;;;;;11469:18:0;;;11442:7;11469:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11353:151::o;59913:284::-;2120:13;:11;:13::i;:::-;60037:1:::1;60027:7;:11;60019:45;;;::::0;-1:-1:-1;;;60019:45:0;;26915:2:1;60019:45:0::1;::::0;::::1;26897:21:1::0;26954:2;26934:18;;;26927:30;-1:-1:-1;;;26973:18:1;;;26966:51;27034:18;;60019:45:0::1;26713:345:1::0;60019:45:0::1;60075:28;::::0;;::::1;;::::0;;;:15:::1;:28;::::0;;;;;;;:41;;::::1;::::0;;;;;;;;;;:51;;;60142:47;;27286:34:1;;;27336:18;;27329:43;;;;27388:18;;;27381:34;;;60142:47:0::1;::::0;27249:2:1;27234:18;60142:47:0::1;27063:358:1::0;72639:223:0;2120:13;:11;:13::i;:::-;72740:22:::1;:48:::0;;-1:-1:-1;;72740:48:0::1;::::0;::::1;;::::0;;::::1;::::0;;;72804:50:::1;::::0;2004:41:1;;;72804:50:0::1;::::0;1992:2:1;1977:18;72804:50:0::1;1864:187:1::0;71958:673:0;861:10;72191:4;72167:29;72159:73;;;;-1:-1:-1;;;72159:73:0;;27628:2:1;72159:73:0;;;27610:21:1;27667:2;27647:18;;;27640:30;27706:33;27686:18;;;27679:61;27757:18;;72159:73:0;27426:355:1;72159:73:0;72272:42;72294:4;72301:3;72306:7;72272:13;:42::i;:::-;72262:52;;72360:3;-1:-1:-1;;;;;72330:43:0;72347:11;72330:43;;;72365:7;72330:43;;;;4063:25:1;;4051:2;4036:18;;3917:177;72330:43:0;;;;;;;;-1:-1:-1;;;;;78476:20:0;;;72403:99;;72446:23;;-1:-1:-1;;;;;3616:32:1;;3598:51;;72446:23:0;;3586:2:1;3571:18;72446:23:0;;;;;;;72484:7;;72403:99;72512:111;;-1:-1:-1;;;72512:111:0;;-1:-1:-1;;;;;72512:33:0;;;;;72551:11;;72512:111;;72564:11;;72577;;;;72590:6;;72598:5;;72605:7;;72614:8;;;;72512:111;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71958:673;;;;;;;;;;;:::o;58927:207::-;2120:13;:11;:13::i;:::-;59028:35:::1;::::0;::::1;;::::0;;;:19:::1;:35;::::0;;;;:43:::1;::::0;59066:5;;59028:43:::1;:::i;:::-;;59087:39;59104:14;59120:5;;59087:39;;;;;;;;:::i;23623:413::-:0;23754:28;;;;23707:8;23754:28;;;:15;:28;;;;;;;;23728:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23707:8;;23728:54;23793:236;;23845:12;;22368:6;;23835:22;;;;:7;:22;:::i;:::-;23834:41;;;;:::i;:::-;23828:47;;23793:236;;;23897:12;;;;:16;23893:136;;23947:12;;22368:6;;23937:22;;23947:12;;23937:7;:22;:::i;23893:136::-;24016:1;24010:7;;23893:136;23717:319;23623:413;;;;:::o;3140:201::-;2120:13;:11;:13::i;:::-;-1:-1:-1;;;;;3229:22:0;::::1;3221:73;;;::::0;-1:-1:-1;;;3221:73:0;;29176:2:1;3221:73:0::1;::::0;::::1;29158:21:1::0;29215:2;29195:18;;;29188:30;29254:34;29234:18;;;29227:62;-1:-1:-1;;;29305:18:1;;;29298:36;29351:19;;3221:73:0::1;28974:402:1::0;3221:73:0::1;3305:28;3324:8;3305:18;:28::i;57849:211::-:0;57984:68;;-1:-1:-1;;;57984:68:0;;29618:6:1;29651:15;;;57984:68:0;;;29633:34:1;29703:15;;29683:18;;;29676:43;58033:4:0;29735:18:1;;;29728:60;29804:18;;;29797:34;;;57952:12:0;;57984:10;-1:-1:-1;;;;;57984:20:0;;;;29580:19:1;;57984:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57984:68:0;;;;;;;;;;;;:::i;:::-;57977:75;57849:211;-1:-1:-1;;;;;57849:211:0:o;87052:156::-;87126:37;:35;:37::i;:::-;87174:26;87180:10;87192:7;87174:5;:26::i;88468:163::-;2120:13;:11;:13::i;:::-;-1:-1:-1;;;;;88538:30:0;::::1;;::::0;;;:20:::1;:30;::::0;;;;;;;;:37;;-1:-1:-1;;88538:37:0::1;88571:4;88538:37:::0;;::::1;::::0;;;88591:32;;19951:51:1;;;20018:18;;;20011:50;88591:32:0::1;::::0;19924:18:1;88591:32:0::1;19783:284:1::0;67255:514:0;67405:12;67419:19;67442:153;67476:9;67487:3;67515:34;;;67551:11;67564;67577:6;67585:8;67492:102;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;67492:102:0;;;;;;;;;;;;;;-1:-1:-1;;;;;67492:102:0;-1:-1:-1;;;;;;67492:102:0;;;;;;;;;;67450:4;;67442:153;;:33;:153::i;:::-;67404:191;;;;67655:7;67650:112;;67679:71;67699:11;67712;67725:6;67733:8;67743:6;67679:19;:71::i;2399:132::-;2280:7;2307:6;-1:-1:-1;;;;;2307:6:0;861:10;2463:23;2455:68;;;;-1:-1:-1;;;2455:68:0;;31245:2:1;2455:68:0;;;31227:21:1;;;31264:18;;;31257:30;31323:34;31303:18;;;31296:62;31375:18;;2455:68:0;31043:356:1;17675:380:0;-1:-1:-1;;;;;17811:19:0;;17803:68;;;;-1:-1:-1;;;17803:68:0;;31606:2:1;17803:68:0;;;31588:21:1;31645:2;31625:18;;;31618:30;31684:34;31664:18;;;31657:62;-1:-1:-1;;;31735:18:1;;;31728:34;31779:19;;17803:68:0;31404:400:1;17803:68:0;-1:-1:-1;;;;;17890:21:0;;17882:68;;;;-1:-1:-1;;;17882:68:0;;32011:2:1;17882:68:0;;;31993:21:1;32050:2;32030:18;;;32023:30;32089:34;32069:18;;;32062:62;-1:-1:-1;;;32140:18:1;;;32133:32;32182:19;;17882:68:0;31809:398:1;17882:68:0;-1:-1:-1;;;;;17963:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18015:32;;4063:25:1;;;18015:32:0;;4036:18:1;18015:32:0;;;;;;;17675:380;;;:::o;90484:217::-;90570:20;;-1:-1:-1;;;;;90570:20:0;90556:10;:34;;:72;;-1:-1:-1;90608:20:0;;-1:-1:-1;;;;;90608:20:0;90594:10;:34;90556:72;90548:145;;;;-1:-1:-1;;;90548:145:0;;32414:2:1;90548:145:0;;;32396:21:1;32453:2;32433:18;;;32426:30;32492:34;32472:18;;;32465:62;32563:30;32543:18;;;32536:58;32611:19;;90548:145:0;32212:424:1;14956:671:0;-1:-1:-1;;;;;15087:18:0;;15079:68;;;;-1:-1:-1;;;15079:68:0;;32843:2:1;15079:68:0;;;32825:21:1;32882:2;32862:18;;;32855:30;32921:34;32901:18;;;32894:62;-1:-1:-1;;;32972:18:1;;;32965:35;33017:19;;15079:68:0;32641:401:1;15079:68:0;-1:-1:-1;;;;;15166:16:0;;15158:64;;;;-1:-1:-1;;;15158:64:0;;33249:2:1;15158:64:0;;;33231:21:1;33288:2;33268:18;;;33261:30;33327:34;33307:18;;;33300:62;-1:-1:-1;;;33378:18:1;;;33371:33;33421:19;;15158:64:0;33047:399:1;15158:64:0;-1:-1:-1;;;;;15308:15:0;;15286:19;15308:15;;;:9;:15;;;;;;15342:21;;;;15334:72;;;;-1:-1:-1;;;15334:72:0;;33653:2:1;15334:72:0;;;33635:21:1;33692:2;33672:18;;;33665:30;33731:34;33711:18;;;33704:62;-1:-1:-1;;;33782:18:1;;;33775:36;33828:19;;15334:72:0;33451:402:1;15334:72:0;-1:-1:-1;;;;;15442:15:0;;;;;;;:9;:15;;;;;;15460:20;;;15442:38;;15502:13;;;;;;;;:23;;15474:6;;15442:15;15502:23;;15474:6;;15502:23;:::i;:::-;;;;;;;;15558:2;-1:-1:-1;;;;;15543:26:0;15552:4;-1:-1:-1;;;;;15543:26:0;;15562:6;15543:26;;;;4063:25:1;;4051:2;4036:18;;3917:177;15543:26:0;;;;;;;;15582:37;15068:559;14956:671;;;:::o;18346:453::-;18481:24;18508:25;18518:5;18525:7;18508:9;:25::i;:::-;18481:52;;-1:-1:-1;;18548:16:0;:37;18544:248;;18630:6;18610:16;:26;;18602:68;;;;-1:-1:-1;;;18602:68:0;;34060:2:1;18602:68:0;;;34042:21:1;34099:2;34079:18;;;34072:30;34138:31;34118:18;;;34111:59;34187:18;;18602:68:0;33858:353:1;18602:68:0;18714:51;18723:5;18730:7;18758:6;18739:16;:25;18714:8;:51::i;24044:330::-;24139:11;24152:8;24179:33;24191:11;24204:7;24179:11;:33::i;:::-;24257:13;;;;-1:-1:-1;24173:39:0;-1:-1:-1;24296:7:0;;24292:75;;24341:8;;24320:35;;24334:5;;24341:8;;;-1:-1:-1;;;;;24341:8:0;24351:3;24320:13;:35::i;:::-;;24292:75;24044:330;;;;;;:::o;74534:775::-;74733:11;74757:71;74777:11;74733;74799:14;74733:11;74757:19;:71::i;:::-;74854:20;74866:7;74854:11;:20::i;:::-;-1:-1:-1;74841:33:0;-1:-1:-1;74894:50:0;74905:5;74912:11;74925:10;74841:33;74894:10;:50::i;:::-;74885:59;;75012:1;75003:6;:10;74995:48;;;;-1:-1:-1;;;74995:48:0;;34418:2:1;74995:48:0;;;34400:21:1;34457:2;34437:18;;;34430:30;-1:-1:-1;;;34476:18:1;;;34469:55;34541:18;;74995:48:0;34216:349:1;74995:48:0;75056:22;75081:46;75100:10;75112:14;75119:6;75112;:14::i;:::-;79591:48;;;70535:1;79591:48;;;41464:49:1;41529:11;;;41522:27;;;;41605:3;41583:16;;;;-1:-1:-1;;;;;;41579:51:1;41565:12;;;41558:73;79591:48:0;;;;;;;;;41647:12:1;;;;79591:48:0;;;79462:185;75081:46;75056:71;;75138:94;75146:11;75159:9;75170:14;75186:18;75206:14;75222:9;75138:7;:94::i;:::-;75282:10;75275:5;-1:-1:-1;;;;;75250:51:0;75262:11;75250:51;;;75294:6;75250:51;;;;4063:25:1;;4051:2;4036:18;;3917:177;75250:51:0;;;;;;;;74746:563;74534:775;;;;;;;;;:::o;73056:419::-;73210:14;73226:11;73294:20;73317:47;73336:10;73348:15;73355:7;73348:6;:15::i;73317:47::-;73382:85;;-1:-1:-1;;;73382:85:0;;73294:70;;-1:-1:-1;;;;;;73382:10:0;:23;;;;:85;;73406:11;;73427:4;;73294:70;;73443:7;;73452:14;;73382:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73375:92;;;;;73056:419;;;;;;;;:::o;75739:912::-;75991:11;76015:82;76035:11;70584:1;76066:14;-1:-1:-1;;;;;76015:82:0;;:19;:82::i;:::-;76123:20;76135:7;76123:11;:20::i;:::-;-1:-1:-1;76110:33:0;-1:-1:-1;76163:50:0;76174:5;76181:11;76194:10;76110:33;76163:10;:50::i;:::-;76154:59;;76241:1;76232:6;:10;76224:48;;;;-1:-1:-1;;;76224:48:0;;34418:2:1;76224:48:0;;;34400:21:1;34457:2;34437:18;;;34430:30;-1:-1:-1;;;34476:18:1;;;34469:55;34541:18;;76224:48:0;34216:349:1;76224:48:0;76353:22;76378:91;76404:10;76416;76428:14;76435:6;76428;:14::i;:::-;76444:8;76454:14;76378:25;:91::i;:::-;76353:116;;76480:94;76488:11;76501:9;76512:14;76528:18;76548:14;76564:9;76480:7;:94::i;:::-;76624:10;76617:5;-1:-1:-1;;;;;76592:51:0;76604:11;76592:51;;;76636:6;76592:51;;;;4063:25:1;;4051:2;4036:18;;3917:177;76592:51:0;;;;;;;;76004:647;75739:912;;;;;;;;;;;:::o;74011:515::-;74163:16;74182:19;:8;74163:16;74182;:19::i;:::-;74163:38;-1:-1:-1;74218:21:0;;;74214:305;;74256:52;74265:11;74278;74291:6;74299:8;74256;:52::i;:::-;74214:305;;;74330:30;;;70584:1;74330:30;74326:193;;;74377:59;74393:11;74406;74419:6;74427:8;74377:15;:59::i;74326:193::-;74469:38;;-1:-1:-1;;;74469:38:0;;35669:2:1;74469:38:0;;;35651:21:1;35708:2;35688:18;;;35681:30;35747;35727:18;;;35720:58;35795:18;;74469:38:0;35467:352:1;3501:191:0;3575:16;3594:6;;-1:-1:-1;;;;;3611:17:0;;;-1:-1:-1;;;;;;3611:17:0;;;;;;3644:40;;3594:6;;;;;;;3644:40;;3575:16;3644:40;3564:128;3501:191;:::o;85530:287::-;85620:25;;-1:-1:-1;;;;;85620:25:0;85606:10;:39;;:77;;-1:-1:-1;85663:20:0;;-1:-1:-1;;;;;85663:20:0;85649:10;:34;85606:77;:115;;;-1:-1:-1;85701:20:0;;-1:-1:-1;;;;;85701:20:0;85687:10;:34;85606:115;85598:211;;;;-1:-1:-1;;;85598:211:0;;36026:2:1;85598:211:0;;;36008:21:1;36065:2;36045:18;;;36038:30;36104:34;36084:18;;;36077:62;36175:34;36155:18;;;36148:62;-1:-1:-1;;;36226:19:1;;;36219:50;36286:19;;85598:211:0;35824:487:1;16646:591:0;-1:-1:-1;;;;;16730:21:0;;16722:67;;;;-1:-1:-1;;;16722:67:0;;36518:2:1;16722:67:0;;;36500:21:1;36557:2;36537:18;;;36530:30;36596:34;36576:18;;;36569:62;-1:-1:-1;;;36647:18:1;;;36640:31;36688:19;;16722:67:0;36316:397:1;16722:67:0;-1:-1:-1;;;;;16889:18:0;;16864:22;16889:18;;;:9;:18;;;;;;16926:24;;;;16918:71;;;;-1:-1:-1;;;16918:71:0;;36920:2:1;16918:71:0;;;36902:21:1;36959:2;36939:18;;;36932:30;36998:34;36978:18;;;36971:62;-1:-1:-1;;;37049:18:1;;;37042:32;37091:19;;16918:71:0;36718:398:1;16918:71:0;-1:-1:-1;;;;;17025:18:0;;;;;;:9;:18;;;;;17046:23;;;17025:44;;17091:12;:22;;17063:6;;17025:18;17091:22;;17063:6;;17091:22;:::i;:::-;;;;-1:-1:-1;;17131:37:0;;4063:25:1;;;17157:1:0;;-1:-1:-1;;;;;17131:37:0;;;;;4051:2:1;4036:18;17131:37:0;;;;;;;87575:193;;;:::o;44089:2779::-;44230:12;44284:7;44268:12;44284:7;44278:2;44268:12;:::i;:::-;:23;;44260:50;;;;-1:-1:-1;;;44260:50:0;;37323:2:1;44260:50:0;;;37305:21:1;37362:2;37342:18;;;37335:30;-1:-1:-1;;;37381:18:1;;;37374:44;37435:18;;44260:50:0;37121:338:1;44260:50:0;44346:16;44355:7;44346:6;:16;:::i;:::-;44329:6;:13;:33;;44321:63;;;;-1:-1:-1;;;44321:63:0;;37666:2:1;44321:63:0;;;37648:21:1;37705:2;37685:18;;;37678:30;-1:-1:-1;;;37724:18:1;;;37717:47;37781:18;;44321:63:0;37464:341:1;44321:63:0;44397:22;44463:15;;44492:1933;;;;46569:4;46563:11;46550:24;;46750:1;46739:9;46732:20;46800:4;46789:9;46785:20;46779:4;46772:34;44456:2365;;44492:1933;44669:4;44663:11;44650:24;;45306:2;45297:7;45293:16;45678:9;45671:17;45665:4;45661:28;45649:9;45638;45634:25;45630:60;45727:7;45723:2;45719:16;45976:6;45962:9;45955:17;45949:4;45945:28;45933:9;45925:6;45921:22;45917:57;45913:70;45755:426;46010:3;46006:2;46003:11;45755:426;;;46152:9;;46141:21;;46052:4;46044:13;;;;46085;45755:426;;;-1:-1:-1;;46201:26:0;;;46405:2;46388:11;-1:-1:-1;;46384:25:0;46378:4;46371:39;-1:-1:-1;44456:2365:0;-1:-1:-1;46851:9:0;44089:2779;-1:-1:-1;;;;44089:2779:0:o;73483:520::-;73690:14;73706:11;73777:20;73800:92;73826:10;73838;73850:15;73857:7;73850:6;:15::i;73800:92::-;73910:85;;-1:-1:-1;;;73910:85:0;;73777:115;;-1:-1:-1;;;;;;73910:10:0;:23;;;;:85;;73934:11;;73955:4;;73777:115;;73971:7;;73980:14;;73910:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73903:92;;;;;73483:520;;;;;;;;;;:::o;85825:166::-;85926:10;85905:32;;;;:20;:32;;;;;;;;85897:86;;;;-1:-1:-1;;;85897:86:0;;38012:2:1;85897:86:0;;;37994:21:1;38051:2;38031:18;;;38024:30;38090:34;38070:18;;;38063:62;-1:-1:-1;;;38141:18:1;;;38134:39;38190:19;;85897:86:0;37810:405:1;90313:163:0;90401:20;;-1:-1:-1;;;;;90401:20:0;90387:10;:34;90379:89;;;;-1:-1:-1;;;90379:89:0;;38422:2:1;90379:89:0;;;38404:21:1;38461:2;38441:18;;;38434:30;38500:34;38480:18;;;38473:62;-1:-1:-1;;;38551:18:1;;;38544:40;38601:19;;90379:89:0;38220:406:1;85348:174:0;85441:25;;-1:-1:-1;;;;;85441:25:0;85427:10;:39;85419:95;;;;-1:-1:-1;;;85419:95:0;;38833:2:1;85419:95:0;;;38815:21:1;38872:2;38852:18;;;38845:30;38911:34;38891:18;;;38884:62;-1:-1:-1;;;38962:18:1;;;38955:41;39013:19;;85419:95:0;38631:407:1;15914:399:0;-1:-1:-1;;;;;15998:21:0;;15990:65;;;;-1:-1:-1;;;15990:65:0;;39245:2:1;15990:65:0;;;39227:21:1;39284:2;39264:18;;;39257:30;39323:33;39303:18;;;39296:61;39374:18;;15990:65:0;39043:355:1;15990:65:0;16146:6;16130:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16163:18:0;;;;;;:9;:18;;;;;:28;;16185:6;;16163:18;:28;;16185:6;;16163:28;:::i;:::-;;;;-1:-1:-1;;16207:37:0;;4063:25:1;;;-1:-1:-1;;;;;16207:37:0;;;16224:1;;16207:37;;4051:2:1;4036:18;16207:37:0;;;;;;;86899:145;;:::o;89520:429::-;89620:4;89637:27;89660:3;89637:22;:27::i;:::-;861:10;89808:4;-1:-1:-1;;;;;89791:22:0;;;;;;:42;;;89826:7;-1:-1:-1;;;;;89817:16:0;:5;-1:-1:-1;;;;;89817:16:0;;;89791:42;89787:88;;;89835:40;89851:5;89858:7;89867;89835:15;:40::i;:::-;89886:30;89896:5;89903:3;89908:7;89886:9;:30::i;:::-;-1:-1:-1;89934:7:0;;89520:429;-1:-1:-1;;;89520:429:0:o;61901:1275::-;62063:4;62069:12;62131:15;62157:13;62181:24;62218:8;62208:19;;-1:-1:-1;;;;;62208:19:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62208:19:0;;62181:46;;62709:1;62683;62649:9;62643:16;62614:4;62603:9;62599:20;62568:1;62533:7;62507:4;62488:247;62476:259;;62800:16;62789:27;;62845:8;62836:7;62833:21;62830:78;;;62885:8;62874:19;;62830:78;62991:7;62978:11;62971:28;63109:7;63106:1;63099:4;63086:11;63082:22;63067:50;63146:8;;;;-1:-1:-1;61901:1275:0;-1:-1:-1;;;;;;61901:1275:0:o;67777:323::-;68001:8;67991:19;;;;;;67940:14;:27;67955:11;67940:27;;;;;;;;;;;;;;;67968:11;67940:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;67940:48:0;;;;;;;;;:70;;;;68026:66;;;;68040:11;;68053;;67981:6;;68074:8;;68084:7;;68026:66;:::i;:::-;;;;;;;;67777:323;;;;;:::o;78516:373::-;78658:22;;;;78654:228;;;78697:63;78712:11;78725:7;78734:14;78750:9;78697:14;:63::i;:::-;78654:228;;;78801:21;;:26;78793:77;;;;-1:-1:-1;;;78793:77:0;;40608:2:1;78793:77:0;;;40590:21:1;40647:2;40627:18;;;40620:30;40686:34;40666:18;;;40659:62;-1:-1:-1;;;40737:18:1;;;40730:36;40783:19;;78793:77:0;40406:402:1;79272:182:0;79338:16;;79385:22;90288:9;79385:7;:22;:::i;:::-;79378:29;-1:-1:-1;79432:14:0;79378:29;79432:7;:14;:::i;:::-;79418:28;;79272:182;;;:::o;89001:286::-;89102:4;861:10;-1:-1:-1;;;;;89164:16:0;;;;89160:62;;89182:40;89198:5;89205:7;89214;89182:15;:40::i;:::-;89233:21;89239:5;89246:7;89233:5;:21::i;:::-;-1:-1:-1;89272:7:0;;89001:286;-1:-1:-1;;;;89001:286:0:o;78897:238::-;78958:6;;78993:22;90288:9;78993:7;:22;:::i;:::-;78977:38;-1:-1:-1;;;;;;79034:28:0;;;79026:67;;;;-1:-1:-1;;;79026:67:0;;41132:2:1;79026:67:0;;;41114:21:1;41171:2;41151:18;;;41144:30;41210:28;41190:18;;;41183:56;41256:18;;79026:67:0;40930:350:1;56087:553:0;56310:32;;;56281:26;56310:32;;;:19;:32;;;;;56281:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56361:13;:20;56385:1;56361:25;;56353:86;;;;-1:-1:-1;;;56353:86:0;;41872:2:1;56353:86:0;;;41854:21:1;41911:2;41891:18;;;41884:30;41950:34;41930:18;;;41923:62;-1:-1:-1;;;42001:18:1;;;41994:46;42057:19;;56353:86:0;41670:412:1;56353:86:0;56450:47;56468:11;56481:8;:15;56450:17;:47::i;:::-;56508:124;;-1:-1:-1;;;56508:124:0;;-1:-1:-1;;;;;56508:10:0;:15;;;;56531:10;;56508:124;;56543:11;;56556:13;;56571:8;;56581:14;;56597:18;;56617:14;;56508:124;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56270:370;56087:553;;;;;;:::o;80006:314::-;80171:12;70584:1;80238:10;80250:9;-1:-1:-1;;;;;80988:23:0;;80287:14;80303:8;80203:109;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;80196:116;;80006:314;;;;;;;:::o;47247:311::-;47324:5;47367:10;:6;47376:1;47367:10;:::i;:::-;47350:6;:13;:27;;47342:60;;;;-1:-1:-1;;;47342:60:0;;43853:2:1;47342:60:0;;;43835:21:1;43892:2;43872:18;;;43865:30;-1:-1:-1;;;43911:18:1;;;43904:49;43970:18;;47342:60:0;43651:343:1;47342:60:0;-1:-1:-1;47482:29:0;47498:3;47482:29;47476:36;;47247:311::o;75317:414::-;75429:10;75441:15;75460:28;75479:8;75460:18;:28::i;:::-;75428:60;;-1:-1:-1;75428:60:0;-1:-1:-1;;;;;;75503:16:0;;75499:69;;75549:6;75536:20;;75499:69;75580:11;75594:16;75601:8;75594:6;:16::i;:::-;75580:30;;75630:34;75640:11;75653:2;75657:6;75630:9;:34::i;:::-;75621:43;;75712:2;-1:-1:-1;;;;;75682:41:0;75699:11;75682:41;;;75716:6;75682:41;;;;4063:25:1;;4051:2;4036:18;;3917:177;75682:41:0;;;;;;;;75417:314;;;75317:414;;;;:::o;76659:1723::-;76797:12;76811:10;76823:15;76840:27;76869:17;76890:35;76916:8;76890:25;:35::i;:::-;76796:129;;;;;;;;;;76938:38;76979:15;:28;76995:11;76979:28;;;;;;;;;;;;;;;77008:11;76979:41;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;77047:14:0;;77031:13;77047:14;;;;;;;;;;;76979:41;;-1:-1:-1;77047:14:0;;;77086:16;77093:8;77086:6;:16::i;:::-;77072:30;;77230:8;77225:132;;77264:45;77274:11;77295:4;77302:6;77264:9;:45::i;:::-;-1:-1:-1;;;;;77324:14:0;;;;;;;;;;;;;:21;;-1:-1:-1;;77324:21:0;77341:4;77324:21;;;77255:54;-1:-1:-1;77225:132:0;77431:11;77479;77516:6;77556:8;77591:4;77620:2;77648:6;77696:14;77411:17;77781:8;:33;;77804:10;-1:-1:-1;;;;;77781:33:0;;;;77792:9;77781:33;77770:44;;77826:12;77840:19;77863:180;77897:9;77908:3;77936:31;;;77969:10;77981;77993:5;78000;78007:3;78012:7;78021:15;78038:3;77913:129;;;;;;;;;;;;;;;:::i;77863:180::-;77825:218;;;;78060:7;78056:319;;;78099:18;;;;;;78137:59;;;;;;;;;;78172:10;;78184:5;;78099:18;;78137:59;:::i;:::-;;;;;;;;78069:139;78056:319;;;78296:67;78316:10;78328;78340:5;78347:7;78356:6;78296:19;:67::i;:::-;76785:1597;;;;;;;;;;;;;;;;;;;76659:1723;;;;:::o;89957:237::-;-1:-1:-1;;;;;90042:24:0;;;;;;:55;;-1:-1:-1;;;;;;90070:27:0;;90092:4;90070:27;;90042:55;90034:152;;;;-1:-1:-1;;;90034:152:0;;45485:2:1;90034:152:0;;;45467:21:1;45524:2;45504:18;;;45497:30;45563:34;45543:18;;;45536:62;45634:34;45614:18;;;45607:62;-1:-1:-1;;;45685:19:1;;;45678:51;45746:19;;90034:152:0;45283:488:1;56648:420:0;56784:21;56808:28;56821:14;56808:12;:28::i;:::-;56866;;;;56847:16;56866:28;;;:15;:28;;;;;;;;:35;;;;;;;;;;;;56784:52;;-1:-1:-1;56847:16:0;56866:47;;56904:9;;56866:47;:::i;:::-;56847:66;;56946:1;56932:11;:15;56924:54;;;;-1:-1:-1;;;56924:54:0;;45978:2:1;56924:54:0;;;45960:21:1;46017:2;45997:18;;;45990:30;46056:28;46036:18;;;46029:56;46102:18;;56924:54:0;45776:350:1;56924:54:0;57017:11;56997:16;:31;;56989:71;;;;-1:-1:-1;;;56989:71:0;;46333:2:1;56989:71:0;;;46315:21:1;46372:2;46352:18;;;46345:30;46411:29;46391:18;;;46384:57;46458:18;;56989:71:0;46131:351:1;57355:389:0;57478:35;;;57454:21;57478:35;;;:22;:35;;;;;;57528:21;57524:125;;-1:-1:-1;54380:6:0;57524:125;57683:16;57667:12;:32;;57659:77;;;;-1:-1:-1;;;57659:77:0;;46689:2:1;57659:77:0;;;46671:21:1;;;46708:18;;;46701:30;46767:34;46747:18;;;46740:62;46819:18;;57659:77:0;46487:356:1;79655:343:0;79737:10;;;79785:19;:8;79737:10;79785:16;:19::i;:::-;:30;;;:55;;;;;79819:8;:15;79838:2;79819:21;79785:55;79777:92;;;;-1:-1:-1;;;79777:92:0;;47050:2:1;79777:92:0;;;47032:21:1;47089:2;47069:18;;;47062:30;-1:-1:-1;;;47108:18:1;;;47101:54;47172:18;;79777:92:0;46848:348:1;79777:92:0;79887:22;:8;79906:2;79887:18;:22::i;:::-;79882:27;-1:-1:-1;79969:21:0;:8;79987:2;79969:17;:21::i;:::-;79958:32;;79655:343;;;:::o;79143:121::-;79208:4;79232:24;90288:9;-1:-1:-1;;;;;79232:24:0;;;:::i;89295:217::-;89391:4;89408:34;89431:10;89408:22;:34::i;:::-;89453:26;89459:10;89471:7;89453:5;:26::i;80328:541::-;80417:12;;;80460:20;80417:12;70584:1;80523:19;:8;80417:12;80523:16;:19::i;:::-;:39;;;80515:76;;;;-1:-1:-1;;;80515:76:0;;47050:2:1;80515:76:0;;;47032:21:1;47089:2;47069:18;;;47062:30;-1:-1:-1;;;47108:18:1;;;47101:54;47172:18;;80515:76:0;46848:348:1;80515:76:0;80609:22;:8;80628:2;80609:18;:22::i;:::-;80604:27;-1:-1:-1;80691:21:0;:8;80709:2;80691:17;:21::i;:::-;80680:32;-1:-1:-1;80730:22:0;:8;80749:2;80730:18;:22::i;:::-;80723:29;-1:-1:-1;80779:21:0;:8;80797:2;80779:17;:21::i;:::-;80763:37;;80821:40;80836:2;80858;80840:8;:15;:20;;;;:::i;:::-;80821:8;;:40;:14;:40::i;:::-;80811:50;;80328:541;;;;;;;:::o;57076:271::-;57158:13;57217:2;57192:14;:21;:27;;57184:68;;;;-1:-1:-1;;;57184:68:0;;47403:2:1;57184:68:0;;;47385:21:1;47442:2;47422:18;;;47415:30;47481;47461:18;;;47454:58;47529:18;;57184:68:0;47201:352:1;57184:68:0;-1:-1:-1;57325:2:0;57305:23;57299:30;;57076:271::o;46876:363::-;46955:7;47000:11;:6;47009:2;47000:11;:::i;:::-;46983:6;:13;:28;;46975:62;;;;-1:-1:-1;;;46975:62:0;;47760:2:1;46975:62:0;;;47742:21:1;47799:2;47779:18;;;47772:30;-1:-1:-1;;;47818:18:1;;;47811:51;47879:18;;46975:62:0;47558:345:1;46975:62:0;-1:-1:-1;47129:30:0;47145:4;47129:30;47123:37;-1:-1:-1;;;47119:71:0;;;46876:363::o;48210:314::-;48288:6;48332:10;:6;48341:1;48332:10;:::i;:::-;48315:6;:13;:27;;48307:60;;;;-1:-1:-1;;;48307:60:0;;48110:2:1;48307:60:0;;;48092:21:1;48149:2;48129:18;;;48122:30;-1:-1:-1;;;48168:18:1;;;48161:50;48228:18;;48307:60:0;47908:344:1;48307:60:0;-1:-1:-1;48448:29:0;48464:3;48448:29;48442:36;;48210:314::o;49511:329::-;49590:7;49635:11;:6;49644:2;49635:11;:::i;:::-;49618:6;:13;:28;;49610:62;;;;-1:-1:-1;;;49610:62:0;;48459:2:1;49610:62:0;;;48441:21:1;48498:2;48478:18;;;48471:30;-1:-1:-1;;;48517:18:1;;;48510:51;48578:18;;49610:62:0;48257:345:1;49610:62:0;-1:-1:-1;49760:30:0;49776:4;49760:30;49754:37;;49511:329::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:159:1;81:20;;141:6;130:18;;120:29;;110:57;;163:1;160;153:12;110:57;14:159;;;:::o;178:347::-;229:8;239:6;293:3;286:4;278:6;274:17;270:27;260:55;;311:1;308;301:12;260:55;-1:-1:-1;334:20:1;;-1:-1:-1;;;;;366:30:1;;363:50;;;409:1;406;399:12;363:50;446:4;438:6;434:17;422:29;;498:3;491:4;482:6;474;470:19;466:30;463:39;460:59;;;515:1;512;505:12;460:59;178:347;;;;;:::o;530:171::-;597:20;;-1:-1:-1;;;;;646:30:1;;636:41;;626:69;;691:1;688;681:12;706:862;812:6;820;828;836;844;852;905:3;893:9;884:7;880:23;876:33;873:53;;;922:1;919;912:12;873:53;945:28;963:9;945:28;:::i;:::-;935:38;;1024:2;1013:9;1009:18;996:32;-1:-1:-1;;;;;1088:2:1;1080:6;1077:14;1074:34;;;1104:1;1101;1094:12;1074:34;1143:58;1193:7;1184:6;1173:9;1169:22;1143:58;:::i;:::-;1220:8;;-1:-1:-1;1117:84:1;-1:-1:-1;1117:84:1;;-1:-1:-1;1274:37:1;1307:2;1292:18;;1274:37;:::i;:::-;1264:47;;1364:2;1353:9;1349:18;1336:32;1320:48;;1393:2;1383:8;1380:16;1377:36;;;1409:1;1406;1399:12;1377:36;;1448:60;1500:7;1489:8;1478:9;1474:24;1448:60;:::i;:::-;706:862;;;;-1:-1:-1;706:862:1;;-1:-1:-1;706:862:1;;1527:8;;706:862;-1:-1:-1;;;706:862:1:o;1573:286::-;1631:6;1684:2;1672:9;1663:7;1659:23;1655:32;1652:52;;;1700:1;1697;1690:12;1652:52;1726:23;;-1:-1:-1;;;;;;1778:32:1;;1768:43;;1758:71;;1825:1;1822;1815:12;2056:258;2128:1;2138:113;2152:6;2149:1;2146:13;2138:113;;;2228:11;;;2222:18;2209:11;;;2202:39;2174:2;2167:10;2138:113;;;2269:6;2266:1;2263:13;2260:48;;;-1:-1:-1;;2304:1:1;2286:16;;2279:27;2056:258::o;2319:::-;2361:3;2399:5;2393:12;2426:6;2421:3;2414:19;2442:63;2498:6;2491:4;2486:3;2482:14;2475:4;2468:5;2464:16;2442:63;:::i;:::-;2559:2;2538:15;-1:-1:-1;;2534:29:1;2525:39;;;;2566:4;2521:50;;2319:258;-1:-1:-1;;2319:258:1:o;2582:220::-;2731:2;2720:9;2713:21;2694:4;2751:45;2792:2;2781:9;2777:18;2769:6;2751:45;:::i;2807:184::-;2865:6;2918:2;2906:9;2897:7;2893:23;2889:32;2886:52;;;2934:1;2931;2924:12;2886:52;2957:28;2975:9;2957:28;:::i;2996:131::-;-1:-1:-1;;;;;3071:31:1;;3061:42;;3051:70;;3117:1;3114;3107:12;3132:315;3200:6;3208;3261:2;3249:9;3240:7;3236:23;3232:32;3229:52;;;3277:1;3274;3267:12;3229:52;3316:9;3303:23;3335:31;3360:5;3335:31;:::i;:::-;3385:5;3437:2;3422:18;;;;3409:32;;-1:-1:-1;;;3132:315:1:o;3660:252::-;3727:6;3735;3788:2;3776:9;3767:7;3763:23;3759:32;3756:52;;;3804:1;3801;3794:12;3756:52;3827:28;3845:9;3827:28;:::i;4099:456::-;4176:6;4184;4192;4245:2;4233:9;4224:7;4220:23;4216:32;4213:52;;;4261:1;4258;4251:12;4213:52;4300:9;4287:23;4319:31;4344:5;4319:31;:::i;:::-;4369:5;-1:-1:-1;4426:2:1;4411:18;;4398:32;4439:33;4398:32;4439:33;:::i;:::-;4099:456;;4491:7;;-1:-1:-1;;;4545:2:1;4530:18;;;;4517:32;;4099:456::o;4560:160::-;4625:5;4670:2;4661:6;4656:3;4652:16;4648:25;4645:45;;;4686:1;4683;4676:12;4645:45;-1:-1:-1;4708:6:1;4560:160;-1:-1:-1;4560:160:1:o;4725:780::-;4860:6;4868;4876;4884;4892;4900;4953:3;4941:9;4932:7;4928:23;4924:33;4921:53;;;4970:1;4967;4960:12;4921:53;5009:9;4996:23;5028:31;5053:5;5028:31;:::i;:::-;5078:5;-1:-1:-1;5102:37:1;5135:2;5120:18;;5102:37;:::i;:::-;5092:47;;5186:2;5175:9;5171:18;5158:32;5148:42;;5237:2;5226:9;5222:18;5209:32;5199:42;;5288:3;5277:9;5273:19;5260:33;5250:43;;5344:3;5333:9;5329:19;5316:33;-1:-1:-1;;;;;5364:6:1;5361:30;5358:50;;;5404:1;5401;5394:12;5358:50;5427:72;5491:7;5482:6;5471:9;5467:22;5427:72;:::i;:::-;5417:82;;;4725:780;;;;;;;;:::o;5699:160::-;5764:20;;5820:13;;5813:21;5803:32;;5793:60;;5849:1;5846;5839:12;5864:315;5929:6;5937;5990:2;5978:9;5969:7;5965:23;5961:32;5958:52;;;6006:1;6003;5996:12;5958:52;6045:9;6032:23;6064:31;6089:5;6064:31;:::i;:::-;6114:5;-1:-1:-1;6138:35:1;6169:2;6154:18;;6138:35;:::i;:::-;6128:45;;5864:315;;;;;:::o;6184:529::-;6261:6;6269;6277;6330:2;6318:9;6309:7;6305:23;6301:32;6298:52;;;6346:1;6343;6336:12;6298:52;6385:9;6372:23;6404:31;6429:5;6404:31;:::i;:::-;6454:5;-1:-1:-1;6511:2:1;6496:18;;6483:32;6524:33;6483:32;6524:33;:::i;:::-;6576:7;-1:-1:-1;6635:2:1;6620:18;;6607:32;6648:33;6607:32;6648:33;:::i;:::-;6700:7;6690:17;;;6184:529;;;;;:::o;6718:687::-;6820:6;6828;6836;6844;6852;6860;6913:3;6901:9;6892:7;6888:23;6884:33;6881:53;;;6930:1;6927;6920:12;6881:53;6953:28;6971:9;6953:28;:::i;:::-;6943:38;;7028:2;7017:9;7013:18;7000:32;6990:42;;7079:2;7068:9;7064:18;7051:32;7041:42;;7102:35;7133:2;7122:9;7118:18;7102:35;:::i;:::-;7092:45;;7188:3;7177:9;7173:19;7160:33;-1:-1:-1;;;;;7208:6:1;7205:30;7202:50;;;7248:1;7245;7238:12;7202:50;7287:58;7337:7;7328:6;7317:9;7313:22;7287:58;:::i;7663:247::-;7722:6;7775:2;7763:9;7754:7;7750:23;7746:32;7743:52;;;7791:1;7788;7781:12;7743:52;7830:9;7817:23;7849:31;7874:5;7849:31;:::i;7915:481::-;7993:6;8001;8009;8062:2;8050:9;8041:7;8037:23;8033:32;8030:52;;;8078:1;8075;8068:12;8030:52;8101:28;8119:9;8101:28;:::i;:::-;8091:38;;8180:2;8169:9;8165:18;8152:32;-1:-1:-1;;;;;8199:6:1;8196:30;8193:50;;;8239:1;8236;8229:12;8193:50;8278:58;8328:7;8319:6;8308:9;8304:22;8278:58;:::i;:::-;7915:481;;8355:8;;-1:-1:-1;8252:84:1;;-1:-1:-1;;;;7915:481:1:o;8401:1162::-;8564:6;8572;8580;8588;8596;8604;8612;8620;8628;8681:3;8669:9;8660:7;8656:23;8652:33;8649:53;;;8698:1;8695;8688:12;8649:53;8737:9;8724:23;8756:31;8781:5;8756:31;:::i;:::-;8806:5;-1:-1:-1;8830:37:1;8863:2;8848:18;;8830:37;:::i;:::-;8820:47;;8914:2;8903:9;8899:18;8886:32;8876:42;;8965:2;8954:9;8950:18;8937:32;8927:42;;9016:3;9005:9;9001:19;8988:33;8978:43;;9072:3;9061:9;9057:19;9044:33;-1:-1:-1;;;;;9137:2:1;9129:6;9126:14;9123:34;;;9153:1;9150;9143:12;9123:34;9192:58;9242:7;9233:6;9222:9;9218:22;9192:58;:::i;:::-;9269:8;;-1:-1:-1;9166:84:1;-1:-1:-1;9166:84:1;;-1:-1:-1;9323:38:1;9356:3;9341:19;;9323:38;:::i;:::-;9313:48;;9414:3;9403:9;9399:19;9386:33;9370:49;;9444:2;9434:8;9431:16;9428:36;;;9460:1;9457;9450:12;9428:36;;9483:74;9549:7;9538:8;9527:9;9523:24;9483:74;:::i;:::-;9473:84;;;8401:1162;;;;;;;;;;;:::o;9568:127::-;9629:10;9624:3;9620:20;9617:1;9610:31;9660:4;9657:1;9650:15;9684:4;9681:1;9674:15;9700:275;9771:2;9765:9;9836:2;9817:13;;-1:-1:-1;;9813:27:1;9801:40;;-1:-1:-1;;;;;9856:34:1;;9892:22;;;9853:62;9850:88;;;9918:18;;:::i;:::-;9954:2;9947:22;9700:275;;-1:-1:-1;9700:275:1:o;9980:186::-;10028:4;-1:-1:-1;;;;;10053:6:1;10050:30;10047:56;;;10083:18;;:::i;:::-;-1:-1:-1;10149:2:1;10128:15;-1:-1:-1;;10124:29:1;10155:4;10120:40;;9980:186::o;10171:815::-;10255:6;10263;10271;10324:2;10312:9;10303:7;10299:23;10295:32;10292:52;;;10340:1;10337;10330:12;10292:52;10363:28;10381:9;10363:28;:::i;:::-;10353:38;;10442:2;10431:9;10427:18;10414:32;-1:-1:-1;;;;;10461:6:1;10458:30;10455:50;;;10501:1;10498;10491:12;10455:50;10524:22;;10577:4;10569:13;;10565:27;-1:-1:-1;10555:55:1;;10606:1;10603;10596:12;10555:55;10642:2;10629:16;10667:48;10683:31;10711:2;10683:31;:::i;:::-;10667:48;:::i;:::-;10738:2;10731:5;10724:17;10778:7;10773:2;10768;10764;10760:11;10756:20;10753:33;10750:53;;;10799:1;10796;10789:12;10750:53;10854:2;10849;10845;10841:11;10836:2;10829:5;10825:14;10812:45;10898:1;10893:2;10888;10881:5;10877:14;10873:23;10866:34;10919:5;10909:15;;;;;10943:37;10976:2;10965:9;10961:18;10943:37;:::i;:::-;10933:47;;10171:815;;;;;:::o;11396:324::-;11468:6;11476;11484;11537:2;11525:9;11516:7;11512:23;11508:32;11505:52;;;11553:1;11550;11543:12;11505:52;11576:28;11594:9;11576:28;:::i;:::-;11566:38;;11623:35;11654:2;11643:9;11639:18;11623:35;:::i;:::-;11613:45;;11677:37;11710:2;11699:9;11695:18;11677:37;:::i;11725:256::-;11791:6;11799;11852:2;11840:9;11831:7;11827:23;11823:32;11820:52;;;11868:1;11865;11858:12;11820:52;11891:28;11909:9;11891:28;:::i;:::-;11881:38;;11938:37;11971:2;11960:9;11956:18;11938:37;:::i;11986:1069::-;12116:6;12124;12132;12140;12148;12156;12164;12172;12180;12233:3;12221:9;12212:7;12208:23;12204:33;12201:53;;;12250:1;12247;12240:12;12201:53;12273:28;12291:9;12273:28;:::i;:::-;12263:38;;12348:2;12337:9;12333:18;12320:32;12310:42;;12399:2;12388:9;12384:18;12371:32;12361:42;;12454:2;12443:9;12439:18;12426:32;-1:-1:-1;;;;;12518:2:1;12510:6;12507:14;12504:34;;;12534:1;12531;12524:12;12504:34;12573:58;12623:7;12614:6;12603:9;12599:22;12573:58;:::i;:::-;12650:8;;-1:-1:-1;12547:84:1;-1:-1:-1;12547:84:1;;-1:-1:-1;12704:38:1;12737:3;12722:19;;12704:38;:::i;:::-;12694:48;;12761:36;12792:3;12781:9;12777:19;12761:36;:::i;:::-;12751:46;;12850:3;12839:9;12835:19;12822:33;12806:49;;12880:2;12870:8;12867:16;12864:36;;;12896:1;12893;12886:12;12864:36;;12935:60;12987:7;12976:8;12965:9;12961:24;12935:60;:::i;:::-;12909:86;;13014:8;13004:18;;;13041:8;13031:18;;;11986:1069;;;;;;;;;;;:::o;13295:180::-;13354:6;13407:2;13395:9;13386:7;13382:23;13378:32;13375:52;;;13423:1;13420;13413:12;13375:52;-1:-1:-1;13446:23:1;;13295:180;-1:-1:-1;13295:180:1:o;13754:622::-;13849:6;13857;13865;13873;13881;13934:3;13922:9;13913:7;13909:23;13905:33;13902:53;;;13951:1;13948;13941:12;13902:53;13974:28;13992:9;13974:28;:::i;:::-;13964:38;;14021:37;14054:2;14043:9;14039:18;14021:37;:::i;:::-;14011:47;;14105:2;14094:9;14090:18;14077:32;14067:42;;14160:2;14149:9;14145:18;14132:32;-1:-1:-1;;;;;14179:6:1;14176:30;14173:50;;;14219:1;14216;14209:12;14173:50;14258:58;14308:7;14299:6;14288:9;14284:22;14258:58;:::i;:::-;13754:622;;;;-1:-1:-1;13754:622:1;;-1:-1:-1;14335:8:1;;14232:84;13754:622;-1:-1:-1;;;13754:622:1:o;14574:388::-;14642:6;14650;14703:2;14691:9;14682:7;14678:23;14674:32;14671:52;;;14719:1;14716;14709:12;14671:52;14758:9;14745:23;14777:31;14802:5;14777:31;:::i;:::-;14827:5;-1:-1:-1;14884:2:1;14869:18;;14856:32;14897:33;14856:32;14897:33;:::i;:::-;14949:7;14939:17;;;14574:388;;;;;:::o;14967:324::-;15042:6;15050;15058;15111:2;15099:9;15090:7;15086:23;15082:32;15079:52;;;15127:1;15124;15117:12;15079:52;15150:28;15168:9;15150:28;:::i;:::-;15140:38;;15197:37;15230:2;15219:9;15215:18;15197:37;:::i;:::-;15187:47;;15281:2;15270:9;15266:18;15253:32;15243:42;;14967:324;;;;;:::o;15296:180::-;15352:6;15405:2;15393:9;15384:7;15380:23;15376:32;15373:52;;;15421:1;15418;15411:12;15373:52;15444:26;15460:9;15444:26;:::i;15481:1205::-;15623:6;15631;15639;15647;15655;15663;15671;15679;15687;15695;15748:3;15736:9;15727:7;15723:23;15719:33;15716:53;;;15765:1;15762;15755:12;15716:53;15788:28;15806:9;15788:28;:::i;:::-;15778:38;;15867:2;15856:9;15852:18;15839:32;-1:-1:-1;;;;;15931:2:1;15923:6;15920:14;15917:34;;;15947:1;15944;15937:12;15917:34;15986:58;16036:7;16027:6;16016:9;16012:22;15986:58;:::i;:::-;16063:8;;-1:-1:-1;15960:84:1;-1:-1:-1;15960:84:1;;-1:-1:-1;16117:37:1;16150:2;16135:18;;16117:37;:::i;:::-;16107:47;;16201:2;16190:9;16186:18;16173:32;16163:42;;16255:3;16244:9;16240:19;16227:33;16214:46;;16269:31;16294:5;16269:31;:::i;:::-;16319:5;;-1:-1:-1;16371:3:1;16356:19;;16343:33;;-1:-1:-1;16429:3:1;16414:19;;16401:33;;16446:16;;;16443:36;;;16475:1;16472;16465:12;16443:36;;16514:60;16566:7;16555:8;16544:9;16540:24;16514:60;:::i;:::-;16488:86;;16593:8;16583:18;;;16620:8;16610:18;;;16675:3;16664:9;16660:19;16647:33;16637:43;;15481:1205;;;;;;;;;;;;;:::o;16691:460::-;16775:6;16783;16791;16799;16852:3;16840:9;16831:7;16827:23;16823:33;16820:53;;;16869:1;16866;16859:12;16820:53;16892:28;16910:9;16892:28;:::i;:::-;16882:38;;16939:37;16972:2;16961:9;16957:18;16939:37;:::i;:::-;16929:47;;17026:2;17015:9;17011:18;16998:32;17039:31;17064:5;17039:31;:::i;:::-;16691:460;;;;-1:-1:-1;17089:5:1;;17141:2;17126:18;17113:32;;-1:-1:-1;;16691:460:1:o;17515:380::-;17594:1;17590:12;;;;17637;;;17658:61;;17712:4;17704:6;17700:17;17690:27;;17658:61;17765:2;17757:6;17754:14;17734:18;17731:38;17728:161;;;17811:10;17806:3;17802:20;17799:1;17792:31;17846:4;17843:1;17836:15;17874:4;17871:1;17864:15;17900:271;18083:6;18075;18070:3;18057:33;18039:3;18109:16;;18134:13;;;18109:16;17900:271;-1:-1:-1;17900:271:1:o;18843:521::-;18920:4;18926:6;18986:11;18973:25;19080:2;19076:7;19065:8;19049:14;19045:29;19041:43;19021:18;19017:68;19007:96;;19099:1;19096;19089:12;19007:96;19126:33;;19178:20;;;-1:-1:-1;;;;;;19210:30:1;;19207:50;;;19253:1;19250;19243:12;19207:50;19286:4;19274:17;;-1:-1:-1;19317:14:1;19313:27;;;19303:38;;19300:58;;;19354:1;19351;19344:12;19369:409;19571:2;19553:21;;;19610:2;19590:18;;;19583:30;19649:34;19644:2;19629:18;;19622:62;-1:-1:-1;;;19715:2:1;19700:18;;19693:43;19768:3;19753:19;;19369:409::o;20072:348::-;20274:2;20256:21;;;20313:2;20293:18;;;20286:30;20352:26;20347:2;20332:18;;20325:54;20411:2;20396:18;;20072:348::o;20814:127::-;20875:10;20870:3;20866:20;20863:1;20856:31;20906:4;20903:1;20896:15;20930:4;20927:1;20920:15;20946:128;20986:3;21017:1;21013:6;21010:1;21007:13;21004:39;;;21023:18;;:::i;:::-;-1:-1:-1;21059:9:1;;20946:128::o;21079:266::-;21167:6;21162:3;21155:19;21219:6;21212:5;21205:4;21200:3;21196:14;21183:43;-1:-1:-1;21271:1:1;21246:16;;;21264:4;21242:27;;;21235:38;;;;21327:2;21306:15;;;-1:-1:-1;;21302:29:1;21293:39;;;21289:50;;21079:266::o;21350:326::-;21545:6;21537;21533:19;21522:9;21515:38;21589:2;21584;21573:9;21569:18;21562:30;21496:4;21609:61;21666:2;21655:9;21651:18;21643:6;21635;21609:61;:::i;22036:401::-;22238:2;22220:21;;;22277:2;22257:18;;;22250:30;22316:34;22311:2;22296:18;;22289:62;-1:-1:-1;;;22382:2:1;22367:18;;22360:35;22427:3;22412:19;;22036:401::o;23580:125::-;23620:4;23648:1;23645;23642:8;23639:34;;;23653:18;;:::i;:::-;-1:-1:-1;23690:9:1;;23580:125::o;24116:382::-;24327:6;24319;24314:3;24301:33;24419:2;24415:15;;;;-1:-1:-1;;24411:53:1;24353:16;;24400:65;;;24489:2;24481:11;;24116:382;-1:-1:-1;24116:382:1:o;24906:498::-;25106:4;25135:6;25180:2;25172:6;25168:15;25157:9;25150:34;25232:2;25224:6;25220:15;25215:2;25204:9;25200:18;25193:43;;25272:6;25267:2;25256:9;25252:18;25245:34;25315:3;25310:2;25299:9;25295:18;25288:31;25336:62;25393:3;25382:9;25378:19;25370:6;25362;25336:62;:::i;:::-;25328:70;24906:498;-1:-1:-1;;;;;;;24906:498:1:o;26215:493::-;26464:6;26456;26452:19;26441:9;26434:38;26508:3;26503:2;26492:9;26488:18;26481:31;26415:4;26529:62;26586:3;26575:9;26571:19;26563:6;26555;26529:62;:::i;:::-;-1:-1:-1;;;;;26627:31:1;;;;26622:2;26607:18;;26600:59;-1:-1:-1;26690:2:1;26675:18;26668:34;26521:70;26215:493;-1:-1:-1;;;26215:493:1:o;27786:753::-;28119:6;28111;28107:19;28096:9;28089:38;28163:3;28158:2;28147:9;28143:18;28136:31;28070:4;28190:62;28247:3;28236:9;28232:19;28224:6;28216;28190:62;:::i;:::-;-1:-1:-1;;;;;28292:6:1;28288:31;28283:2;28272:9;28268:18;28261:59;28356:6;28351:2;28340:9;28336:18;28329:34;28400:6;28394:3;28383:9;28379:19;28372:35;28456:9;28448:6;28444:22;28438:3;28427:9;28423:19;28416:51;28484:49;28526:6;28518;28510;28484:49;:::i;:::-;28476:57;27786:753;-1:-1:-1;;;;;;;;;;;27786:753:1:o;28544:168::-;28584:7;28650:1;28646;28642:6;28638:14;28635:1;28632:21;28627:1;28620:9;28613:17;28609:45;28606:71;;;28657:18;;:::i;:::-;-1:-1:-1;28697:9:1;;28544:168::o;28717:127::-;28778:10;28773:3;28769:20;28766:1;28759:31;28809:4;28806:1;28799:15;28833:4;28830:1;28823:15;28849:120;28889:1;28915;28905:35;;28920:18;;:::i;:::-;-1:-1:-1;28954:9:1;;28849:120::o;29842:634::-;29921:6;29974:2;29962:9;29953:7;29949:23;29945:32;29942:52;;;29990:1;29987;29980:12;29942:52;30023:9;30017:16;-1:-1:-1;;;;;30048:6:1;30045:30;30042:50;;;30088:1;30085;30078:12;30042:50;30111:22;;30164:4;30156:13;;30152:27;-1:-1:-1;30142:55:1;;30193:1;30190;30183:12;30142:55;30222:2;30216:9;30247:48;30263:31;30291:2;30263:31;:::i;30247:48::-;30318:2;30311:5;30304:17;30358:7;30353:2;30348;30344;30340:11;30336:20;30333:33;30330:53;;;30379:1;30376;30369:12;30330:53;30392:54;30443:2;30438;30431:5;30427:14;30422:2;30418;30414:11;30392:54;:::i;30481:557::-;30738:6;30730;30726:19;30715:9;30708:38;30782:3;30777:2;30766:9;30762:18;30755:31;30689:4;30809:46;30850:3;30839:9;30835:19;30827:6;30809:46;:::i;:::-;-1:-1:-1;;;;;30895:6:1;30891:31;30886:2;30875:9;30871:18;30864:59;30971:9;30963:6;30959:22;30954:2;30943:9;30939:18;30932:50;30999:33;31025:6;31017;30999:33;:::i;34570:642::-;34851:6;34839:19;;34821:38;;-1:-1:-1;;;;;34895:32:1;;34890:2;34875:18;;34868:60;34915:3;34959:2;34944:18;;34937:31;;;-1:-1:-1;;34991:46:1;;35017:19;;35009:6;34991:46;:::i;:::-;35087:6;35080:14;35073:22;35068:2;35057:9;35053:18;35046:50;35145:9;35137:6;35133:22;35127:3;35116:9;35112:19;35105:51;35173:33;35199:6;35191;35173:33;:::i;:::-;35165:41;34570:642;-1:-1:-1;;;;;;;;34570:642:1:o;35217:245::-;35296:6;35304;35357:2;35345:9;35336:7;35332:23;35328:32;35325:52;;;35373:1;35370;35363:12;35325:52;-1:-1:-1;;35396:16:1;;35452:2;35437:18;;;35431:25;35396:16;;35431:25;;-1:-1:-1;35217:245:1:o;39403:274::-;39532:3;39570:6;39564:13;39586:53;39632:6;39627:3;39620:4;39612:6;39608:17;39586:53;:::i;:::-;39655:16;;;;;39403:274;-1:-1:-1;;39403:274:1:o;39682:719::-;39985:6;39977;39973:19;39962:9;39955:38;40029:3;40024:2;40013:9;40009:18;40002:31;39936:4;40056:46;40097:3;40086:9;40082:19;40074:6;40056:46;:::i;:::-;-1:-1:-1;;;;;40142:6:1;40138:31;40133:2;40122:9;40118:18;40111:59;40218:9;40210:6;40206:22;40201:2;40190:9;40186:18;40179:50;40252:33;40278:6;40270;40252:33;:::i;:::-;40238:47;;40334:9;40326:6;40322:22;40316:3;40305:9;40301:19;40294:51;40362:33;40388:6;40380;40362:33;:::i;40813:112::-;40845:1;40871;40861:35;;40876:18;;:::i;:::-;-1:-1:-1;40910:9:1;;40813:112::o;42087:840::-;42436:6;42428;42424:19;42413:9;42406:38;42480:3;42475:2;42464:9;42460:18;42453:31;42387:4;42507:46;42548:3;42537:9;42533:19;42525:6;42507:46;:::i;:::-;42601:9;42593:6;42589:22;42584:2;42573:9;42569:18;42562:50;42635:33;42661:6;42653;42635:33;:::i;:::-;-1:-1:-1;;;;;42742:15:1;;;42737:2;42722:18;;42715:43;42795:15;;42789:3;42774:19;;42767:44;42848:22;;;42695:3;42827:19;;42820:51;42621:47;-1:-1:-1;42888:33:1;42621:47;42906:6;42888:33;:::i;:::-;42880:41;42087:840;-1:-1:-1;;;;;;;;;42087:840:1:o;42932:714::-;43254:3;43249;43245:13;43236:6;43231:3;43227:16;43223:36;43218:3;43211:49;43289:6;43285:1;43280:3;43276:11;43269:27;43193:3;-1:-1:-1;;;;;43319:3:1;43315:28;43395:2;43386:6;43381:3;43377:16;43373:25;43368:2;43363:3;43359:12;43352:47;43429:6;43424:2;43419:3;43415:12;43408:28;43488:2;43479:6;43474:3;43470:16;43466:25;43461:2;43456:3;43452:12;43445:47;;43521:6;43515:13;43537:62;43592:6;43587:2;43582:3;43578:12;43571:4;43563:6;43559:17;43537:62;:::i;:::-;43619:16;;;;43637:2;43615:25;;42932:714;-1:-1:-1;;;;;;;42932:714:1:o;43999:891::-;44319:4;44348:3;44390:6;44382;44378:19;44367:9;44360:38;44434:2;44429;44418:9;44414:18;44407:30;44460:45;44501:2;44490:9;44486:18;44478:6;44460:45;:::i;:::-;-1:-1:-1;;;;;44541:31:1;;44536:2;44521:18;;44514:59;44604:2;44589:18;;44582:34;;;-1:-1:-1;;;;;44653:32:1;;44647:3;44632:19;;44625:61;44673:3;44702:19;;44695:35;;;44767:22;;;44761:3;44746:19;;44739:51;44446:59;-1:-1:-1;44807:33:1;44446:59;44825:6;44807:33;:::i;:::-;44799:41;;;44877:6;44871:3;44860:9;44856:19;44849:35;43999:891;;;;;;;;;;;:::o;44895:383::-;45096:2;45085:9;45078:21;45059:4;45116:45;45157:2;45146:9;45142:18;45134:6;45116:45;:::i;:::-;-1:-1:-1;;;;;45197:31:1;;;;45192:2;45177:18;;45170:59;-1:-1:-1;45260:2:1;45245:18;45238:34;45108:53;44895:383;-1:-1:-1;44895:383:1:o
Swarm Source
ipfs://077b75aa9fbdb9f28964a0197b1d23a26a13c0d820ea173d5485a11dae71238b
Loading...
Loading
OVERVIEW
Gravita is an Ethereum-centric protocol where users can mint GRAI against LSTs and yield-generating collateral assets. GRAI is the debt token of the platform. Our motto is: fuelling decentralization. You cannot resist the pull of Gravita!Loading...
Loading
Multichain Portfolio | 27 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.