{"file_path":"contracts/ERC20F.sol","creation_status":"success","source_code":"// SPDX-License-Identifier: AGPL-3.0-or-later\n// Copyright (C) 2024 Fireblocks <support@fireblocks.com>\n//\n// This program is free software: you can redistribute it and/or modify\n// it under the terms of the GNU Affero General Public License as published by\n// the Free Software Foundation, either version 3 of the License, or\n// (at your option) any later version.\n//\n// This program is distributed in the hope that it will be useful,\n// but WITHOUT ANY WARRANTY; without even the implied warranty of\n// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n// GNU Affero General Public License for more details.\n//\n// You should have received a copy of the GNU Affero General Public License\n// along with this program.  If not, see <https://www.gnu.org/licenses/>.\npragma solidity 0.8.20;\n\nimport {ERC20PermitUpgradeable} from \"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol\";\nimport {ERC20Upgradeable, IERC20Upgradeable} from \"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol\";\nimport {IERC1822ProxiableUpgradeable} from \"@openzeppelin/contracts-upgradeable/interfaces/draft-IERC1822Upgradeable.sol\";\nimport {IERC1967Upgradeable} from \"@openzeppelin/contracts-upgradeable/interfaces/IERC1967Upgradeable.sol\";\nimport {IERC20MetadataUpgradeable} from \"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20MetadataUpgradeable.sol\";\nimport {IERC5267Upgradeable} from \"@openzeppelin/contracts-upgradeable/interfaces/IERC5267Upgradeable.sol\";\nimport {IERC20PermitUpgradeable} from \"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20PermitUpgradeable.sol\";\nimport {Initializable} from \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\";\nimport {MulticallUpgradeable} from \"@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol\";\nimport {UUPSUpgradeable} from \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\";\nimport {IERC20Errors} from \"./library/Errors/interface/IERC20Errors.sol\";\n\nimport {LibErrors} from \"./library/Errors/LibErrors.sol\";\nimport {AccessRegistrySubscriptionUpgradeable} from \"./library/AccessRegistry/AccessRegistrySubscriptionUpgradeable.sol\";\nimport {ContractUriUpgradeable} from \"./library/Utils/ContractUriUpgradeable.sol\";\nimport {SalvageUpgradeable} from \"./library/Utils/SalvageUpgradeable.sol\";\nimport {PauseUpgradeable} from \"./library/Utils/PauseUpgradeable.sol\";\nimport {RoleAccessUpgradeable} from \"./library/Utils/RoleAccessUpgradeable.sol\";\n\n/**\n * @title ERC20F\n * @author Fireblocks\n * @notice This contract represents a fungible token within the Fireblocks ecosystem of contracts.\n *\n * The contract utilizes the UUPS (Universal Upgradeable Proxy Standard) for seamless upgradability. This standard\n * enables the contract to be easily upgraded without disrupting its state. By following the UUPS proxy pattern, the\n * ERC20F logic is separated from the storage, allowing upgrades while preserving the existing data. This\n * approach ensures that the contract can adapt and evolve over time, incorporating improvements and new features and\n * mitigating potential attack vectors in future.\n *\n * The ERC20F contract Role Based Access Control employs following roles:\n *\n *  - UPGRADER_ROLE\n *  - PAUSER_ROLE\n *  - CONTRACT_ADMIN_ROLE\n *  - MINTER_ROLE\n *  - BURNER_ROLE\n *  - RECOVERY_ROLE\n *  - SALVAGE_ROLE\n *\n * The ERC20F Token contract can utilize an Access Registry contract to retrieve information on whether an account\n * is authorized to interact with the system.\n */\ncontract ERC20F is\n\tInitializable,\n\tERC20Upgradeable,\n\tERC20PermitUpgradeable,\n\tAccessRegistrySubscriptionUpgradeable,\n\tMulticallUpgradeable,\n\tSalvageUpgradeable,\n\tContractUriUpgradeable,\n\tPauseUpgradeable,\n\tRoleAccessUpgradeable,\n\tIERC20Errors,\n\tUUPSUpgradeable\n{\n\t/// Constants\n\n\t/**\n\t * @notice The Access Control identifier for the Upgrader Role.\n\t * An account with \"UPGRADER_ROLE\" can upgrade the implementation contract address.\n\t *\n\t * @dev This constant holds the hash of the string \"UPGRADER_ROLE\".\n\t */\n\tbytes32 public constant UPGRADER_ROLE = keccak256(\"UPGRADER_ROLE\");\n\n\t/**\n\t * @notice The Access Control identifier for the Pauser Role.\n\t * An account with \"PAUSER_ROLE\" can pause the contract.\n\t *\n\t * @dev This constant holds the hash of the string \"PAUSER_ROLE\".\n\t */\n\tbytes32 public constant PAUSER_ROLE = keccak256(\"PAUSER_ROLE\");\n\n\t/**\n\t * @notice The Access Control identifier for the Contract Admin Role.\n\t * An account with \"CONTRACT_ADMIN_ROLE\" can update the contract URI.\n\t *\n\t * @dev This constant holds the hash of the string \"CONTRACT_ADMIN_ROLE\".\n\t */\n\tbytes32 public constant CONTRACT_ADMIN_ROLE = keccak256(\"CONTRACT_ADMIN_ROLE\");\n\n\t/**\n\t * @notice The Access Control identifier for the Minter Role.\n\t * An account with \"MINTER_ROLE\" can mint tokens.\n\t *\n\t * @dev This constant holds the hash of the string \"MINTER_ROLE\".\n\t */\n\tbytes32 public constant MINTER_ROLE = keccak256(\"MINTER_ROLE\");\n\n\t/**\n\t * @notice The Access Control identifier for the Burner Role.\n\t * An account with \"BURNER_ROLE\" can burn tokens.\n\t *\n\t * @dev This constant holds the hash of the string \"BURNER_ROLE\".\n\t */\n\tbytes32 public constant BURNER_ROLE = keccak256(\"BURNER_ROLE\");\n\n\t/**\n\t * @notice The Access Control identifier for the Recovery Role.\n\t * An account with \"RECOVERY_ROLE\" can recover tokens.\n\t *\n\t * @dev This constant holds the hash of the string \"RECOVERY_ROLE\".\n\t */\n\tbytes32 public constant RECOVERY_ROLE = keccak256(\"RECOVERY_ROLE\");\n\n\t/**\n\t * @notice The Access Control identifier for the Salvager Role.\n\t * An account with \"SALVAGE_ROLE\" can salvage tokens and gas.\n\t *\n\t * @dev This constant holds the hash of the string \"SALVAGE_ROLE\".\n\t */\n\tbytes32 public constant SALVAGE_ROLE = keccak256(\"SALVAGE_ROLE\");\n\n\t/// Events\n\n\t/**\n\t * @notice This event is logged when the funds are recovered from an address that is not allowed\n\t * to participate in the system.\n\t *\n\t * @param caller The (indexed) address of the caller.\n\t * @param account The (indexed) account the tokens were recovered from.\n\t * @param amount The number of tokens recovered.\n\t */\n\tevent TokensRecovered(address indexed caller, address indexed account, uint256 amount);\n\n\t/// Functions\n\n\t/**\n\t * @notice This function acts as the constructor of the contract.\n\t * @dev This function disables the initializers.\n\t */\n\t/// @custom:oz-upgrades-unsafe-allow constructor\n\tconstructor() {\n\t\t_disableInitializers();\n\t}\n\n\t/**\n\t * @notice This function configures the ERC20F contract with the initial state and granting\n\t * privileged roles.\n\t *\n\t * @dev Calling Conditions:\n\t *\n\t * - Can only be invoked once (controlled via the {initializer} modifier).\n\t * - Non-zero address `defaultAdmin`.\n\t * - Non-zero address `minter`.\n\t * - Non-zero address `pauser`.\n\t *\n\t * @param _name The name of the token.\n\t * @param _symbol The symbol of the token.\n\t * @param defaultAdmin The account to be granted the \"DEFAULT_ADMIN_ROLE\".\n\t * @param minter The account to be granted the \"MINTER_ROLE\".\n\t * @param pauser The account to be granted the \"PAUSER_ROLE\".\n\t */\n\tfunction initialize(\n\t\tstring calldata _name,\n\t\tstring calldata _symbol,\n\t\taddress defaultAdmin,\n\t\taddress minter,\n\t\taddress pauser\n\t) external initializer {\n\t\tif (defaultAdmin == address(0) || pauser == address(0) || minter == address(0)) {\n\t\t\trevert LibErrors.InvalidAddress();\n\t\t}\n\n\t\t__UUPSUpgradeable_init();\n\t\t__ERC20_init(_name, _symbol);\n\t\t__ERC20Permit_init(_name);\n\t\t__Multicall_init();\n\t\t__AccessRegistrySubscription_init(address(0));\n\t\t__Salvage_init();\n\t\t__ContractUri_init(\"\");\n\t\t__Pause_init();\n\t\t__RoleAccess_init();\n\n\t\t_grantRole(DEFAULT_ADMIN_ROLE, defaultAdmin);\n\t\t_grantRole(MINTER_ROLE, minter);\n\t\t_grantRole(PAUSER_ROLE, pauser);\n\t}\n\n\t/**\n\t * @notice This is a function used to issue new tokens.\n\t * The caller will issue tokens to the `to` address.\n\t *\n\t * @dev Calling Conditions:\n\t *\n\t * - Can only be invoked by the address that has the role \"MINTER_ROLE\".\n\t * - {ERC20F} is not paused. (checked internally by {_beforeTokenTransfer})\n\t * - `to` is a non-zero address. (checked internally by {ERC20Upgradeable}.{_mint})\n\t * - `to` is allowed to receive tokens.\n\t *\n\t * This function emits a {Transfer} event as part of {ERC20Upgradeable._mint}.\n\t *\n\t * @param to The address that will receive the issued tokens.\n\t * @param amount The number of tokens to be issued.\n\t */\n\tfunction mint(address to, uint256 amount) external virtual onlyRole(MINTER_ROLE) {\n\t\t_requireHasAccess(to, false);\n\t\t_mint(to, amount);\n\t}\n\n\t/**\n\t * @notice This is a function used to burn tokens.\n\t * The caller will burn tokens from their own address.\n\t *\n\t * @dev Calling Conditions:\n\t *\n\t * - Can only be invoked by the address that has the role \"BURNER_ROLE\".\n\t * - {ERC20F} is not paused. (checked internally by {_beforeTokenTransfer})\n\t * - `amount` is less than or equal to the caller's balance. (checked internally by {ERC20Upgradeable}.{_burn})\n\t * - `amount` is greater than 0. (checked internally by {ERC20Upgradeable}.{_burn})\n\t *\n\t * This function emits a {Transfer} event as part of {ERC20Upgradeable._burn}.\n\t *\n\t * @param amount The number of tokens to be burned.\n\t */\n\tfunction burn(uint256 amount) external virtual onlyRole(BURNER_ROLE) {\n\t\tif (amount == 0) revert LibErrors.ZeroAmount();\n\t\t_requireHasAccess(_msgSender(), true);\n\t\t_burn(_msgSender(), amount);\n\t}\n\n\t/**\n\t * @notice This is a function used to recover tokens from an address not on the Allowlist.\n\t *\n\t * @dev Calling Conditions:\n\t *\n\t * - `caller` of this function must have the \"RECOVERY_ROLE\".\n\t * - {ERC20F} is not paused.(checked internally by {_beforeTokenTransfer}).\n\t * - `account` address must be not be allowed to hold tokens.\n\t * - `account` must be a non-zero address. (checked internally in {ERC20Upgradeable._transfer})\n\t * - `amount` is greater than 0.\n\t * - `amount` is less than or equal to the balance of the account. (checked internally in {ERC20Upgradeable._transfer})\n\t *\n\t * This function emits a {TokensRecovered} event, signalling that the funds of the given address were recovered.\n\t *\n\t * @param account The address to recover the tokens from.\n\t * @param amount The amount to be recovered from the balance of the `account`.\n\t */\n\tfunction recoverTokens(address account, uint256 amount) external virtual onlyRole(RECOVERY_ROLE) {\n\t\tif (amount == 0) revert LibErrors.ZeroAmount();\n\t\tif (address(accessRegistry) == address(0)) revert LibErrors.AccessRegistryNotSet();\n\t\tif (accessRegistry.hasAccess(account, _msgSender(), _msgData())) revert LibErrors.RecoveryOnActiveAccount(account);\n\t\temit TokensRecovered(_msgSender(), account, amount);\n\t\t_transfer(account, _msgSender(), amount);\n\t}\n\n\t/**\n\t * @notice This is a function used to get the version of the contract.\n\t * @dev This function get the latest deployment version from the {Initializable}.{_getInitializedVersion}.\n\t * With every new deployment, the version number will be incremented.\n\t * @return The version of the contract.\n\t */\n\tfunction version() external view virtual returns (uint64) {\n\t\treturn uint64(super._getInitializedVersion());\n\t}\n\n\t/**\n\t * @notice This is a function that allows an owner to provide off-chain permission for a specific `spender` to spend\n\t * a certain amount of tokens on their behalf, using an ECDSA signature. This signature is then provided to this\n\t * {ERC20F} contract which verifies the signature and updates the allowance. This exercise reduces the number\n\t * of transactions required to approve a transfer.\n\t *\n\t * @dev If the Spender already has a non-zero allowance by the same caller(approver), the allowance will be set to\n\t * reflect the new amount.\n\t *\n\t * Calling Conditions:\n\t *\n\t * - {ERC20F} is not paused.\n\t * - The `owner` must be a non-zero address. (checked internally by {ERC20Upgradeable}.{_approve})\n\t * - `spender` must be a non-zero address. (checked internally by {ERC20Upgradeable}.{_approve})\n\t * - `deadline` must be a timestamp in the future. (checked internally by {ERC20PermitUpgradeable}.{permit})\n\t * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\n\t * over the EIP712-formatted function arguments. (checked internally by {ERC20PermitUpgradeable}.{permit})\n\t * - The signature must use `owner`'s current nonce\n\t *\n\t * This function emits an {Approval} event as part of {ERC20Upgradeable._approve}.\n\t *\n\t * @param owner The address that will sign the approval.\n\t * @param spender The address that will receive the approval.\n\t * @param value The allowance that will be approved.\n\t * @param deadline The expiry timestamp of the signature.\n\t * @param v The recovery byte of the ECDSA signature.\n\t * @param r The first 32 bytes of the ECDSA signature.\n\t * @param s The second 32 bytes of the ECDSA signature.\n\t */\n\tfunction permit(\n\t\taddress owner,\n\t\taddress spender,\n\t\tuint256 value,\n\t\tuint256 deadline,\n\t\tuint8 v,\n\t\tbytes32 r,\n\t\tbytes32 s\n\t) public virtual override whenNotPaused {\n\t\tsuper.permit(owner, spender, value, deadline, v, r, s);\n\t}\n\n\t/**\n\t * @notice This function allows the owner of the tokens to authorize another address to spend a certain\n\t * amount of token on their behalf. The `spender` parameter is the address that is being authorized\n\t * to spend the token, and the `amount` parameter is the maximum number of tokens that the spender\n\t * is authorized to spend.\n\t *\n\t * @dev Calling Conditions:\n\t *\n\t * - {ERC20F} is not paused.\n\t * - The `spender` must be a non-zero address. (checked internally by {ERC20Upgradeable}.{_approve})\n\t *\n\t * If the spender is already authorized to spend a non-zero amount of token, the `amount` parameter\n\t * will overwrite the previously authorized amount.\n\t *\n\t * Upon successful execution function emits an {Approval} event as part of {ERC20Upgradeable._approve}.\n\t *\n\t * @param spender The address getting an allowance.\n\t * @param amount The amount allowed to be spent.\n\t * @return True value indicating whether the approval was successful.\n\t */\n\tfunction approve(address spender, uint256 amount) public virtual override whenNotPaused returns (bool) {\n\t\treturn super.approve(spender, amount);\n\t}\n\n\t/**\n\t * @notice This function increases the allowance of the `spender` by `addedValue`. This means that the caller is\n\t * delegating the `spender` to spend more funds than previously allowed. The resultant allowance will be a sum of\n\t * previous allowance and the `addedValue`.\n\t *\n\t * @dev Calling Conditions:\n\t *\n\t * - {ERC20F} is not paused.\n\t * - The `spender` must be a non-zero address. (checked internally by {ERC20Upgradeable}.{_approve})\n\t *\n\t * This function emits an {Approval} event as part of {ERC20Upgradeable._approve}.\n\t *\n\t * @param spender The spender's address.\n\t * @param addedValue The amount by which allowance is increased.\n\t * @return True if successful.\n\t */\n\tfunction increaseAllowance(address spender, uint256 addedValue) public virtual override whenNotPaused returns (bool) {\n\t\treturn super.increaseAllowance(spender, addedValue);\n\t}\n\n\t/**\n\t * @notice This function decrease the allowance of the `spender` by `subtractedValue`. The new allowance will be the\n\t * difference of previous amount and `subtractedValue`.\n\t *\n\t * @dev Calling Conditions:\n\t *\n\t * - {ERC20F} is not paused.\n\t * - The `spender` must be a non-zero address. (checked internally by {ERC20Upgradeable}.{_approve})\n\t * - Allowance to any spender cannot assume a negative value. The request is only processed if the requested\n\t * decrease is less than the current allowance. (checked internally by {ERC20Upgradeable.decreaseAllowance})\n\t *\n\t * This function emits an {Approval} event as part of {ERC20Upgradeable._approve}.\n\t *\n\t * @param spender The spender's address.\n\t * @param subtractedValue The Amount by which allowance is decreased.\n\t * @return True if successful.\n\t */\n\tfunction decreaseAllowance(\n\t\taddress spender,\n\t\tuint256 subtractedValue\n\t) public virtual override whenNotPaused returns (bool) {\n\t\treturn super.decreaseAllowance(spender, subtractedValue);\n\t}\n\n\t/**\n\t * @notice This is a function used to transfer tokens from the sender to\n\t * the `to` address.\n\t *\n\t * @dev Calling Conditions:\n\t *\n\t * - {ERC20F} is not paused. (checked internally by {_beforeTokenTransfer})\n\t * - The `sender` is allowed to send tokens.\n\t * - The `to` is allowed to receive tokens.\n\t * - `to` is a non-zero address. (checked internally by {ERC20Upgradeable}.{_transfer})\n\t * - `amount` is not greater than sender's balance. (checked internally by {ERC20Upgradeable}.{_transfer})\n\t *\n\t * This function emits a {Transfer} event as part of {ERC20Upgradeable._transfer}.\n\t *\n\t * @param to The address that will receive the tokens.\n\t * @param amount The number of tokens that will be sent to the `recipient`.\n\t * @return True if the function was successful.\n\t */\n\tfunction transfer(address to, uint256 amount) public virtual override returns (bool) {\n\t\t_requireHasAccess(_msgSender(), true);\n\t\t_requireHasAccess(to, false);\n\t\treturn super.transfer(to, amount);\n\t}\n\n\t/**\n\t * @notice This is a function used to transfer tokens on behalf of the `from` address to\n\t * the `to` address.\n\t *\n\t * This function emits an {Approval} event as part of {ERC20Upgradeable._approve}.\n\t * This function emits a {Transfer} event as part of {ERC20Upgradeable._transfer}.\n\t *\n\t * @dev Calling Conditions:\n\t *\n\t * - {ERC20F} is not paused. (checked internally by {_beforeTokenTransfer})\n\t * - The `from` is allowed to send tokens.\n\t * - The `to` is allowed to receive tokens.\n\t * - `from` is a non-zero address. (checked internally by {ERC20Upgradeable}.{_transfer})\n\t * - `to` is a non-zero address. (checked internally by {ERC20Upgradeable}.{_transfer})\n\t * - `amount` is not greater than `from`'s balance or caller's allowance of `from`'s funds. (checked internally\n\t *   by {ERC20Upgradeable}.{transferFrom})\n\t * - `amount` is greater than 0. (checked internally by {_spendAllowance})\n\t *\n\t * @param from The address that tokens will be transferred on behalf of.\n\t * @param to The address that will receive the tokens.\n\t * @param amount The number of tokens that will be sent to the `to` (recipient).\n\t * @return True if the function was successful.\n\t */\n\tfunction transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {\n\t\t_requireHasAccess(from, true);\n\t\t_requireHasAccess(to, false);\n\t\treturn super.transferFrom(from, to, amount);\n\t}\n\n\t/**\n\t * @notice This is a function used to check if an interface is supported by this contract.\n\t * @dev This function returns `true` if the interface is supported, otherwise it returns `false`.\n\t * @return `true` if the interface is supported, otherwise it returns `false`.\n\t */\n\tfunction supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n\t\treturn\n\t\t\tinterfaceId == type(IERC20Upgradeable).interfaceId ||\n\t\t\tinterfaceId == type(IERC20MetadataUpgradeable).interfaceId ||\n\t\t\tinterfaceId == type(IERC1967Upgradeable).interfaceId ||\n\t\t\tinterfaceId == type(IERC1822ProxiableUpgradeable).interfaceId ||\n\t\t\tinterfaceId == type(IERC20PermitUpgradeable).interfaceId ||\n\t\t\tinterfaceId == type(IERC5267Upgradeable).interfaceId ||\n\t\t\tsuper.supportsInterface(interfaceId);\n\t}\n\n\t/**\n\t * @notice This function works as a middle layer and performs some checks before\n\t * it allows a transfer to operate.\n\t *\n\t * @dev A hook inherited from ERC20Upgradeable.\n\t *\n\t * This function performs the following checks, and reverts when not met:\n\t *\n\t * - {ERC20F} is not paused.\n\t *\n\t * @param from The address that sent the tokens.\n\t * @param to The address that receives the transfer `amount`.\n\t * @param amount The number of tokens sent to the `to` address.\n\t */\n\tfunction _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override whenNotPaused {\n\t\tsuper._beforeTokenTransfer(from, to, amount);\n\t}\n\n\t/**\n\t * @notice This is a function that applies any validations required to allow upgrade operations.\n\t *\n\t * @dev Reverts when the caller does not have the \"UPGRADER_ROLE\".\n\t *\n\t * Calling Conditions:\n\t *\n\t * - Only the \"UPGRADER_ROLE\" can execute.\n\t *\n\t * @param newImplementation The address of the new logic contract.\n\t */\n\t/* solhint-disable no-empty-blocks */\n\tfunction _authorizeUpgrade(address newImplementation) internal virtual override onlyRole(UPGRADER_ROLE) {}\n\n\t/**\n\t * @notice This is a function that applies any validations required to allow salvage operations (like salvageERC20).\n\t *\n\t * @dev Reverts when the caller does not have the \"SALVAGE_ROLE\".\n\t *\n\t * Calling Conditions:\n\t *\n\t * - Only the \"SALVAGE_ROLE\" can execute.\n\t * - {ERC20F} is not paused.\n\t */\n\t/* solhint-disable no-empty-blocks */\n\tfunction _authorizeSalvageERC20() internal virtual override whenNotPaused onlyRole(SALVAGE_ROLE) {}\n\n\t/**\n\t * @notice This is a function that applies any validations required to allow salvage operations (like salvageGas).\n\t *\n\t * @dev Reverts when the caller does not have the \"SALVAGE_ROLE\".\n\t *\n\t * Calling Conditions:\n\t *\n\t * - Only the \"SALVAGE_ROLE\" can execute.\n\t * - {ERC20F} is not paused.\n\t */\n\t/* solhint-disable no-empty-blocks */\n\tfunction _authorizeSalvageGas() internal virtual override whenNotPaused onlyRole(SALVAGE_ROLE) {}\n\n\t/**\n\t * @notice This is a function that applies any validations required to allow Contract Uri updates.\n\t *\n\t * @dev Reverts when the caller does not have the \"CONTRACT_ADMIN_ROLE\".\n\t *\n\t * Calling Conditions:\n\t *\n\t * - Only the \"CONTRACT_ADMIN_ROLE\" can execute.\n\t * - {ERC20F} is not paused.\n\t */\n\t/* solhint-disable no-empty-blocks */\n\tfunction _authorizeContractUriUpdate() internal virtual override whenNotPaused onlyRole(CONTRACT_ADMIN_ROLE) {}\n\n\t/**\n\t * @notice This is a function that applies any validations required to allow Pause operations (like pause or unpause) to be executed.\n\t *\n\t * @dev Reverts when the caller does not have the \"PAUSER_ROLE\".\n\t *\n\t * Calling Conditions:\n\t *\n\t * - Only the \"PAUSER_ROLE\" can execute.\n\t */\n\t/* solhint-disable no-empty-blocks */\n\tfunction _authorizePause() internal virtual override onlyRole(PAUSER_ROLE) {}\n\n\t/**\n\t * @notice This is a function that applies any validations required to allow Access Registry updates.\n\t *\n\t * @dev Reverts when the caller does not have the \"CONTRACT_ADMIN_ROLE\".\n\t *\n\t * Calling Conditions:\n\t *\n\t * - Only the \"CONTRACT_ADMIN_ROLE\" can execute.\n\t * - {ERC20F} is not paused.\n\t */\n\t/* solhint-disable no-empty-blocks */\n\tfunction _authorizeAccessRegistryUpdate() internal virtual override whenNotPaused onlyRole(CONTRACT_ADMIN_ROLE) {}\n\n\t/**\n\t * @notice This is a function that applies any validations required to allow Role Access operation (like grantRole or revokeRole ) to be executed.\n\t *\n\t * @dev Reverts when the {ERC20F} contract is paused.\n\t *\n\t * Calling Conditions:\n\t *\n\t * - {ERC20F} is not paused.\n\t */\n\t/* solhint-disable no-empty-blocks */\n\tfunction _authorizeRoleAccess() internal virtual override whenNotPaused {}\n\n\t/**\n\t * @notice This function checks that an account can have access to this token.\n\t * The function will revert if the account does not have access.\n\t *\n\t * @param account The address to check has access.\n\t * @param isSender Value indicating if the sender or receiver is being checked.\n\t */\n\tfunction _requireHasAccess(address account, bool isSender) internal view virtual {\n\t\tif (address(accessRegistry) != address(0)) {\n\t\t\tif (!accessRegistry.hasAccess(account, _msgSender(), _msgData())) {\n\t\t\t\tif (isSender) {\n\t\t\t\t\trevert ERC20InvalidSender(account);\n\t\t\t\t} else {\n\t\t\t\t\trevert ERC20InvalidReceiver(account);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n","deployed_bytecode":"0x6080604052600436106102885760003560e01c80635c975abb1161015a578063a9059cbb116100c1578063d547741f1161007a578063d547741f14610802578063db0ed6a014610822578063dd62ed3e14610842578063e63ab1e914610862578063e6f29b0514610896578063f72c0d8b146108ce57600080fd5b8063a9059cbb1461072c578063ac9650d81461074c578063c0e24d5e14610779578063c3d00d4e1461078e578063d505accf146107ae578063d5391393146107ce57600080fd5b806384b0196e1161011357806384b0196e1461066657806388920d291461068e57806391d14854146106c257806395d89b41146106e2578063a217fddf146106f7578063a457c2d71461070c57600080fd5b80635c975abb146105a25780636e1d21b0146105bb57806370a08231146105db5780637ecebe00146106115780637ffc5a5c146106315780638456cb591461065157600080fd5b8063313ce567116101fe5780633f4ba83a116101b75780633f4ba83a1461050357806340c10f191461051857806342966c68146105385780634f1ef2861461055857806352d1902d1461056b57806354fd4d501461058057600080fd5b8063313ce5671461043e57806331993a1c1461045a5780633644e5151461048e57806336568abe146104a35780633659cfe6146104c357806339509351146104e357600080fd5b80631da03312116102505780631da033121461034557806323b872dd14610379578063248a9ca314610399578063282c51f3146103ca5780632e13ae6e146103fe5780632f2ff15d1461041e57600080fd5b806301ffc9a71461028d578063069c9fae146102c257806306fdde03146102e4578063095ea7b31461030657806318160ddd14610326575b600080fd5b34801561029957600080fd5b506102ad6102a8366004613268565b610902565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102e26102dd3660046132a7565b6109ac565b005b3480156102f057600080fd5b506102f9610b14565b6040516102b99190613323565b34801561031257600080fd5b506102ad6103213660046132a7565b610ba6565b34801561033257600080fd5b506035545b6040519081526020016102b9565b34801561035157600080fd5b506103377f2ce8d04a9c35987429af538825cd2438cc5c5bb5dc427955f84daaa3ea10501681565b34801561038557600080fd5b506102ad610394366004613336565b610bc1565b3480156103a557600080fd5b506103376103b4366004613377565b600090815261022a602052604090206001015490565b3480156103d657600080fd5b506103377f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b34801561040a57600080fd5b506102e2610419366004613390565b610bec565b34801561042a57600080fd5b506102e26104393660046133ad565b610c00565b34801561044a57600080fd5b50604051601281526020016102b9565b34801561046657600080fd5b506103377f0acf805600123ef007091da3b3ffb39474074c656c127aa68cb0ffec232a8ff881565b34801561049a57600080fd5b50610337610c16565b3480156104af57600080fd5b506102e26104be3660046133ad565b610c25565b3480156104cf57600080fd5b506102e26104de366004613390565b610c55565b3480156104ef57600080fd5b506102ad6104fe3660046132a7565b610d31565b34801561050f57600080fd5b506102e2610d45565b34801561052457600080fd5b506102e26105333660046132a7565b610d57565b34801561054457600080fd5b506102e2610553366004613377565b610d96565b6102e26105663660046133f3565b610df7565b34801561057757600080fd5b50610337610ec3565b34801561058c57600080fd5b5060005460405160ff90911681526020016102b9565b3480156105ae57600080fd5b506101945460ff166102ad565b3480156105c757600080fd5b506102e26105d6366004613377565b610f76565b3480156105e757600080fd5b506103376105f6366004613390565b6001600160a01b031660009081526033602052604090205490565b34801561061d57600080fd5b5061033761062c366004613390565b611035565b34801561063d57600080fd5b506102e261064c366004613500565b611053565b34801561065d57600080fd5b506102e261109a565b34801561067257600080fd5b5061067b6110aa565b6040516102b99796959493929190613542565b34801561069a57600080fd5b506103377f75afe8d9fedb4699bf07dc7bcb33fe609a84a99adfab7076931f0d93228085bb81565b3480156106ce57600080fd5b506102ad6106dd3660046133ad565b611148565b3480156106ee57600080fd5b506102f9611174565b34801561070357600080fd5b50610337600081565b34801561071857600080fd5b506102ad6107273660046132a7565b611183565b34801561073857600080fd5b506102ad6107473660046132a7565b611197565b34801561075857600080fd5b5061076c6107673660046135d8565b6111b7565b6040516102b9919061364d565b34801561078557600080fd5b506102f96112ac565b34801561079a57600080fd5b506102e26107a93660046132a7565b61133b565b3480156107ba57600080fd5b506102e26107c93660046136af565b6113b0565b3480156107da57600080fd5b506103377f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b34801561080e57600080fd5b506102e261081d3660046133ad565b6113d0565b34801561082e57600080fd5b506102e261083d366004613726565b611416565b34801561084e57600080fd5b5061033761085d3660046137cf565b6116ce565b34801561086e57600080fd5b506103377f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b3480156108a257600080fd5b5060cc546108b6906001600160a01b031681565b6040516001600160a01b0390911681526020016102b9565b3480156108da57600080fd5b506103377f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e381565b60006001600160e01b031982166336372b0760e01b148061093357506001600160e01b0319821663a219a02560e01b145b8061094657506001600160e01b03198216155b8061096157506001600160e01b031982166352d1902d60e01b145b8061097c57506001600160e01b03198216634ec7fbed60e11b145b8061099757506001600160e01b031982166342580cb760e11b145b806109a657506109a6826116f9565b92915050565b7f0acf805600123ef007091da3b3ffb39474074c656c127aa68cb0ffec232a8ff86109d68161172e565b816000036109f757604051631f2a200560e01b815260040160405180910390fd5b60cc546001600160a01b0316610a205760405163d582591b60e01b815260040160405180910390fd5b60cc546001600160a01b031663eefb7e9a84336000366040518563ffffffff1660e01b8152600401610a5594939291906137fd565b602060405180830381865afa158015610a72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a969190613849565b15610ac457604051636c480add60e01b81526001600160a01b03841660048201526024015b60405180910390fd5b6040518281526001600160a01b0384169033907f401f439d865a766757ec78675925bd67198d5e78805aa41691b34b5d6a6cbbe69060200160405180910390a3610b0f833384611738565b505050565b606060368054610b239061386b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4f9061386b565b8015610b9c5780601f10610b7157610100808354040283529160200191610b9c565b820191906000526020600020905b815481529060010190602001808311610b7f57829003601f168201915b5050505050905090565b6000610bb06118f0565b610bba8383611937565b9392505050565b6000610bce84600161194f565b610bd983600061194f565b610be4848484611a28565b949350505050565b610bf4611a4c565b610bfd81611a7e565b50565b610c08611b7e565b610c128282611b86565b5050565b6000610c20611bac565b905090565b81610c4357604051630461f45f60e11b815260040160405180910390fd5b610c4b611b7e565b610c128282611bb6565b6001600160a01b037f000000000000000000000000f7c3aceabab5b505effeab0603e11f2ed54020ac163003610c9d5760405162461bcd60e51b8152600401610abb9061389f565b7f000000000000000000000000f7c3aceabab5b505effeab0603e11f2ed54020ac6001600160a01b0316610ce6600080516020613cbd833981519152546001600160a01b031690565b6001600160a01b031614610d0c5760405162461bcd60e51b8152600401610abb906138eb565b610d1581611c30565b60408051600080825260208201909252610bfd91839190611c5a565b6000610d3b6118f0565b610bba8383611dc5565b610d4d611de7565b610d55611e11565b565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610d818161172e565b610d8c83600061194f565b610b0f8383611e64565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848610dc08161172e565b81600003610de157604051631f2a200560e01b815260040160405180910390fd5b610ded335b600161194f565b610c123383611f31565b6001600160a01b037f000000000000000000000000f7c3aceabab5b505effeab0603e11f2ed54020ac163003610e3f5760405162461bcd60e51b8152600401610abb9061389f565b7f000000000000000000000000f7c3aceabab5b505effeab0603e11f2ed54020ac6001600160a01b0316610e88600080516020613cbd833981519152546001600160a01b031690565b6001600160a01b031614610eae5760405162461bcd60e51b8152600401610abb906138eb565b610eb782611c30565b610c1282826001611c5a565b6000306001600160a01b037f000000000000000000000000f7c3aceabab5b505effeab0603e11f2ed54020ac1614610f635760405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c60448201527f6c6564207468726f7567682064656c656761746563616c6c00000000000000006064820152608401610abb565b50600080516020613cbd83398151915290565b80600003610f9757604051631f2a200560e01b815260040160405180910390fd5b610f9f612071565b604051819033907f6fe86159012c6b167b88e7b30e7c8ebe172ed05c753231df050bf60e4faf724a90600090a3604051600090339083908381818185875af1925050503d806000811461100e576040519150601f19603f3d011682016040523d82523d6000602084013e611013565b606091505b5050905080610c12576040516382daa1e760e01b815260040160405180910390fd5b6001600160a01b0381166000908152609960205260408120546109a6565b61105b611a4c565b610c1282828080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506120a392505050565b6110a2611de7565b610d556120f5565b6000606080600080600060606065546000801b1480156110ca5750606654155b61110e5760405162461bcd60e51b81526020600482015260156024820152741152540dcc4c8e88155b9a5b9a5d1a585b1a5e9959605a1b6044820152606401610abb565b611116612133565b61111e612142565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b600091825261022a602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060378054610b239061386b565b600061118d6118f0565b610bba8383612151565b60006111a233610de6565b6111ad83600061194f565b610bba83836121cc565b60608167ffffffffffffffff8111156111d2576111d26133dd565b60405190808252806020026020018201604052801561120557816020015b60608152602001906001900390816111f05790505b50905060005b828110156112a5576112753085858481811061122957611229613937565b905060200281019061123b919061394d565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506121da92505050565b82828151811061128757611287613937565b6020026020010181905250808061129d906139aa565b91505061120b565b5092915050565b61016280546112ba9061386b565b80601f01602080910402602001604051908101604052809291908181526020018280546112e69061386b565b80156113335780601f1061130857610100808354040283529160200191611333565b820191906000526020600020905b81548152906001019060200180831161131657829003601f168201915b505050505081565b8060000361135c57604051631f2a200560e01b815260040160405180910390fd5b611364612071565b60405181906001600160a01b0384169033907fca9a684d22747bbed3bef704e16858bfa9ac8f5af2d80c70455b298bd7d8d23990600090a4610c126001600160a01b03831633836121ff565b6113b86118f0565b6113c787878787878787612251565b50505050505050565b811580156113e657506001600160a01b03811633145b1561140457604051630461f45f60e11b815260040160405180910390fd5b61140c611b7e565b610c1282826123b5565b600054610100900460ff16158080156114365750600054600160ff909116105b806114505750303b158015611450575060005460ff166001145b6114b35760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610abb565b6000805460ff1916600117905580156114d6576000805461ff0019166101001790555b6001600160a01b03841615806114f357506001600160a01b038216155b8061150557506001600160a01b038316155b156115235760405163e6c4247b60e01b815260040160405180910390fd5b61152b6123db565b61159e88888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8c018190048102820181019092528a815292508a915089908190840183828082843760009201919091525061240292505050565b6115dd88888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061243392505050565b6115e56123db565b6115ef600061247d565b6115f76123db565b61160f604051806020016040528060008152506124a4565b6116176124d4565b61161f612503565b61162a600085612532565b6116547f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a684612532565b61167e7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a83612532565b80156116c4576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050505050505050565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b60006001600160e01b03198216637965db0b60e01b14806109a657506301ffc9a760e01b6001600160e01b03198316146109a6565b610bfd81336125b9565b6001600160a01b03831661179c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610abb565b6001600160a01b0382166117fe5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610abb565b611809838383612612565b6001600160a01b038316600090815260336020526040902054818110156118815760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610abb565b6001600160a01b0380851660008181526033602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906118e19086815260200190565b60405180910390a35b50505050565b6101945460ff1615610d555760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610abb565b60003361194581858561261a565b5060019392505050565b60cc546001600160a01b031615610c125760cc546001600160a01b031663eefb7e9a83336000366040518563ffffffff1660e01b815260040161199594939291906137fd565b602060405180830381865afa1580156119b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119d69190613849565b610c12578015611a0457604051634b637e8f60e11b81526001600160a01b0383166004820152602401610abb565b60405163ec442f0560e01b81526001600160a01b0383166004820152602401610abb565b600033611a3685828561273e565b611a41858585611738565b506001949350505050565b611a546118f0565b7f2ce8d04a9c35987429af538825cd2438cc5c5bb5dc427955f84daaa3ea105016610bfd8161172e565b6001600160a01b03811615801590611b0257506040516301ffc9a760e01b815263777dbf4d60e11b60048201526001600160a01b038216906301ffc9a790602401602060405180830381865afa158015611adc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b009190613849565b155b15611b205760405163340aafcd60e11b815260040160405180910390fd5b60cc546040516001600160a01b0383811692169033907ff30d5b081b4a3016a4b34d3732b94b2b2ccc2d99f6774c8ac47c42d8764fd26590600090a460cc80546001600160a01b0319166001600160a01b0392909216919091179055565b610d556118f0565b600082815261022a6020526040902060010154611ba28161172e565b610b0f8383612532565b6000610c206127b2565b6001600160a01b0381163314611c265760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610abb565b610c128282612826565b7f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e3610c128161172e565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff1615611c8d57610b0f8361288e565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611ce7575060408051601f3d908101601f19168201909252611ce4918101906139c3565b60015b611d4a5760405162461bcd60e51b815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201526d6f6e206973206e6f74205555505360901b6064820152608401610abb565b600080516020613cbd8339815191528114611db95760405162461bcd60e51b815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f786044820152681a58589b195555525160ba1b6064820152608401610abb565b50610b0f83838361292a565b600033611945818585611dd883836116ce565b611de291906139dc565b61261a565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610bfd8161172e565b611e1961294f565b610194805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216611eba5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610abb565b611ec660008383612612565b8060356000828254611ed891906139dc565b90915550506001600160a01b0382166000818152603360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038216611f915760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610abb565b611f9d82600083612612565b6001600160a01b038216600090815260336020526040902054818110156120115760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610abb565b6001600160a01b03831660008181526033602090815260408083208686039055603580548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6120796118f0565b7f75afe8d9fedb4699bf07dc7bcb33fe609a84a99adfab7076931f0d93228085bb610bfd8161172e565b336001600160a01b03167fe41f7f53dffb3e1410dab0f9f6a27c670b48ad40ccc47a64537100e1f3809e8a610162836040516120e09291906139ef565b60405180910390a2610162610c128282613adc565b6120fd6118f0565b610194805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e473390565b606060678054610b239061386b565b606060688054610b239061386b565b6000338161215f82866116ce565b9050838110156121bf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610abb565b611a41828686840361261a565b600033611945818585611738565b6060610bba8383604051806060016040528060278152602001613cdd60279139612999565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610b0f908490612a11565b834211156122a15760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610abb565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886122d08c612ae6565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061232b82612b0e565b9050600061233b82878787612b3b565b9050896001600160a01b0316816001600160a01b03161461239e5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610abb565b6123a98a8a8a61261a565b50505050505050505050565b600082815261022a60205260409020600101546123d18161172e565b610b0f8383612826565b600054610100900460ff16610d555760405162461bcd60e51b8152600401610abb90613b9c565b600054610100900460ff166124295760405162461bcd60e51b8152600401610abb90613b9c565b610c128282612b63565b600054610100900460ff1661245a5760405162461bcd60e51b8152600401610abb90613b9c565b610bfd81604051806040016040528060018152602001603160f81b815250612ba3565b600054610100900460ff16610bf45760405162461bcd60e51b8152600401610abb90613b9c565b600054610100900460ff166124cb5760405162461bcd60e51b8152600401610abb90613b9c565b610bfd816120a3565b600054610100900460ff166124fb5760405162461bcd60e51b8152600401610abb90613b9c565b610d55612bf2565b600054610100900460ff1661252a5760405162461bcd60e51b8152600401610abb90613b9c565b610d556123db565b61253c8282611148565b610c1257600082815261022a602090815260408083206001600160a01b03851684529091529020805460ff191660011790556125753390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6125c38282611148565b610c12576125d081612c21565b6125db836020612c33565b6040516020016125ec929190613be7565b60408051601f198184030181529082905262461bcd60e51b8252610abb91600401613323565b610b0f6118f0565b6001600160a01b03831661267c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610abb565b6001600160a01b0382166126dd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610abb565b6001600160a01b0383811660008181526034602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061274a84846116ce565b905060001981146118ea57818110156127a55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610abb565b6118ea848484840361261a565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6127dd612dcf565b6127e5612e28565b60408051602081019490945283019190915260608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b6128308282611148565b15610c1257600082815261022a602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b0381163b6128fb5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b6064820152608401610abb565b600080516020613cbd83398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b61293383612e59565b6000825111806129405750805b15610b0f576118ea83836121da565b6101945460ff16610d555760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610abb565b6060600080856001600160a01b0316856040516129b69190613c5c565b600060405180830381855af49150503d80600081146129f1576040519150601f19603f3d011682016040523d82523d6000602084013e6129f6565b606091505b5091509150612a0786838387612e99565b9695505050505050565b6000612a66826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612f129092919063ffffffff16565b9050805160001480612a87575080806020019051810190612a879190613849565b610b0f5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610abb565b6001600160a01b03811660009081526099602052604090208054600181018255905b50919050565b60006109a6612b1b611bac565b8360405161190160f01b8152600281019290925260228201526042902090565b6000806000612b4c87878787612f21565b91509150612b5981612fe5565b5095945050505050565b600054610100900460ff16612b8a5760405162461bcd60e51b8152600401610abb90613b9c565b6036612b968382613adc565b506037610b0f8282613adc565b600054610100900460ff16612bca5760405162461bcd60e51b8152600401610abb90613b9c565b6067612bd68382613adc565b506068612be38282613adc565b50506000606581905560665550565b600054610100900460ff16612c195760405162461bcd60e51b8152600401610abb90613b9c565b610d5561312f565b60606109a66001600160a01b03831660145b60606000612c42836002613c78565b612c4d9060026139dc565b67ffffffffffffffff811115612c6557612c656133dd565b6040519080825280601f01601f191660200182016040528015612c8f576020820181803683370190505b509050600360fc1b81600081518110612caa57612caa613937565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612cd957612cd9613937565b60200101906001600160f81b031916908160001a9053506000612cfd846002613c78565b612d089060016139dc565b90505b6001811115612d80576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612d3c57612d3c613937565b1a60f81b828281518110612d5257612d52613937565b60200101906001600160f81b031916908160001a90535060049490941c93612d7981613c8f565b9050612d0b565b508315610bba5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610abb565b600080612dda612133565b805190915015612df1578051602090910120919050565b6065548015612e005792915050565b7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4709250505090565b600080612e33612142565b805190915015612e4a578051602090910120919050565b6066548015612e005792915050565b612e628161288e565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60608315612f08578251600003612f01576001600160a01b0385163b612f015760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610abb565b5081610be4565b610be48383613163565b6060610be4848460008561318d565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612f585750600090506003612fdc565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612fac573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612fd557600060019250925050612fdc565b9150600090505b94509492505050565b6000816004811115612ff957612ff9613ca6565b036130015750565b600181600481111561301557613015613ca6565b036130625760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610abb565b600281600481111561307657613076613ca6565b036130c35760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610abb565b60038160048111156130d7576130d7613ca6565b03610bfd5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610abb565b600054610100900460ff166131565760405162461bcd60e51b8152600401610abb90613b9c565b610194805460ff19169055565b8151156131735781518083602001fd5b8060405162461bcd60e51b8152600401610abb9190613323565b6060824710156131ee5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610abb565b600080866001600160a01b0316858760405161320a9190613c5c565b60006040518083038185875af1925050503d8060008114613247576040519150601f19603f3d011682016040523d82523d6000602084013e61324c565b606091505b509150915061325d87838387612e99565b979650505050505050565b60006020828403121561327a57600080fd5b81356001600160e01b031981168114610bba57600080fd5b6001600160a01b0381168114610bfd57600080fd5b600080604083850312156132ba57600080fd5b82356132c581613292565b946020939093013593505050565b60005b838110156132ee5781810151838201526020016132d6565b50506000910152565b6000815180845261330f8160208601602086016132d3565b601f01601f19169290920160200192915050565b602081526000610bba60208301846132f7565b60008060006060848603121561334b57600080fd5b833561335681613292565b9250602084013561336681613292565b929592945050506040919091013590565b60006020828403121561338957600080fd5b5035919050565b6000602082840312156133a257600080fd5b8135610bba81613292565b600080604083850312156133c057600080fd5b8235915060208301356133d281613292565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561340657600080fd5b823561341181613292565b9150602083013567ffffffffffffffff8082111561342e57600080fd5b818501915085601f83011261344257600080fd5b813581811115613454576134546133dd565b604051601f8201601f19908116603f0116810190838211818310171561347c5761347c6133dd565b8160405282815288602084870101111561349557600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b60008083601f8401126134c957600080fd5b50813567ffffffffffffffff8111156134e157600080fd5b6020830191508360208285010111156134f957600080fd5b9250929050565b6000806020838503121561351357600080fd5b823567ffffffffffffffff81111561352a57600080fd5b613536858286016134b7565b90969095509350505050565b60ff60f81b881681526000602060e08184015261356260e084018a6132f7565b8381036040850152613574818a6132f7565b606085018990526001600160a01b038816608086015260a0850187905284810360c0860152855180825283870192509083019060005b818110156135c6578351835292840192918401916001016135aa565b50909c9b505050505050505050505050565b600080602083850312156135eb57600080fd5b823567ffffffffffffffff8082111561360357600080fd5b818501915085601f83011261361757600080fd5b81358181111561362657600080fd5b8660208260051b850101111561363b57600080fd5b60209290920196919550909350505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b828110156136a257603f198886030184526136908583516132f7565b94509285019290850190600101613674565b5092979650505050505050565b600080600080600080600060e0888a0312156136ca57600080fd5b87356136d581613292565b965060208801356136e581613292565b95506040880135945060608801359350608088013560ff8116811461370957600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080600080600080600060a0888a03121561374157600080fd5b873567ffffffffffffffff8082111561375957600080fd5b6137658b838c016134b7565b909950975060208a013591508082111561377e57600080fd5b5061378b8a828b016134b7565b909650945050604088013561379f81613292565b925060608801356137af81613292565b915060808801356137bf81613292565b8091505092959891949750929550565b600080604083850312156137e257600080fd5b82356137ed81613292565b915060208301356133d281613292565b6001600160a01b0385811682528416602082015260606040820181905281018290526000828460808401376000608084840101526080601f19601f850116830101905095945050505050565b60006020828403121561385b57600080fd5b81518015158114610bba57600080fd5b600181811c9082168061387f57607f821691505b602082108103612b0857634e487b7160e01b600052602260045260246000fd5b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b19195b1959d85d1958d85b1b60a21b606082015260800190565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b6163746976652070726f787960a01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000808335601e1984360301811261396457600080fd5b83018035915067ffffffffffffffff82111561397f57600080fd5b6020019150368190038213156134f957600080fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016139bc576139bc613994565b5060010190565b6000602082840312156139d557600080fd5b5051919050565b808201808211156109a6576109a6613994565b604081526000808454613a018161386b565b8060408601526060600180841660008114613a235760018114613a3d57613a6e565b60ff1985168884015283151560051b880183019550613a6e565b8960005260208060002060005b86811015613a655781548b8201870152908401908201613a4a565b8a018501975050505b50505050508281036020840152613a8581856132f7565b95945050505050565b601f821115610b0f57600081815260208120601f850160051c81016020861015613ab55750805b601f850160051c820191505b81811015613ad457828155600101613ac1565b505050505050565b815167ffffffffffffffff811115613af657613af66133dd565b613b0a81613b04845461386b565b84613a8e565b602080601f831160018114613b3f5760008415613b275750858301515b600019600386901b1c1916600185901b178555613ad4565b600085815260208120601f198616915b82811015613b6e57888601518255948401946001909101908401613b4f565b5085821015613b8c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613c1f8160178501602088016132d3565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613c508160288401602088016132d3565b01602801949350505050565b60008251613c6e8184602087016132d3565b9190910192915050565b80820281158282048414176109a6576109a6613994565b600081613c9e57613c9e613994565b506000190190565b634e487b7160e01b600052602160045260246000fdfe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212204e8b52736f40386e69102aed1b230a51ee2811326448ad26db52649c3ea521ab64736f6c63430008140033","optimization_enabled":true,"verified_twin_address_hash":null,"is_verified":true,"compiler_settings":{"evmVersion":"paris","libraries":{},"metadata":{"bytecodeHash":"ipfs"},"optimizer":{"enabled":true,"runs":200},"remappings":[":@openzeppelin/=node_modules/@openzeppelin/",":eth-gas-reporter/=node_modules/eth-gas-reporter/",":forge-std/=lib/forge-std/src/",":hardhat/=node_modules/hardhat/"]},"optimization_runs":200,"sourcify_repo_url":"https://repo.sourcify.dev/contracts/partial_match/137/0xf7C3AcEAbAb5b505EFfeaB0603E11f2Ed54020aC/","decoded_constructor_args":null,"compiler_version":"0.8.20+commit.a1b79de6","is_verified_via_verifier_alliance":false,"verified_at":"2024-09-09T06:26:59.831410Z","implementations":[],"proxy_type":null,"external_libraries":[],"creation_bytecode":"0x60a0604052306080523480156200001557600080fd5b506200002062000026565b620000e7565b600054610100900460ff1615620000935760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b60005460ff90811614620000e5576000805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b608051613d396200011f60003960008181610c5f01528181610c9f01528181610e0101528181610e410152610ed00152613d396000f3fe6080604052600436106102885760003560e01c80635c975abb1161015a578063a9059cbb116100c1578063d547741f1161007a578063d547741f14610802578063db0ed6a014610822578063dd62ed3e14610842578063e63ab1e914610862578063e6f29b0514610896578063f72c0d8b146108ce57600080fd5b8063a9059cbb1461072c578063ac9650d81461074c578063c0e24d5e14610779578063c3d00d4e1461078e578063d505accf146107ae578063d5391393146107ce57600080fd5b806384b0196e1161011357806384b0196e1461066657806388920d291461068e57806391d14854146106c257806395d89b41146106e2578063a217fddf146106f7578063a457c2d71461070c57600080fd5b80635c975abb146105a25780636e1d21b0146105bb57806370a08231146105db5780637ecebe00146106115780637ffc5a5c146106315780638456cb591461065157600080fd5b8063313ce567116101fe5780633f4ba83a116101b75780633f4ba83a1461050357806340c10f191461051857806342966c68146105385780634f1ef2861461055857806352d1902d1461056b57806354fd4d501461058057600080fd5b8063313ce5671461043e57806331993a1c1461045a5780633644e5151461048e57806336568abe146104a35780633659cfe6146104c357806339509351146104e357600080fd5b80631da03312116102505780631da033121461034557806323b872dd14610379578063248a9ca314610399578063282c51f3146103ca5780632e13ae6e146103fe5780632f2ff15d1461041e57600080fd5b806301ffc9a71461028d578063069c9fae146102c257806306fdde03146102e4578063095ea7b31461030657806318160ddd14610326575b600080fd5b34801561029957600080fd5b506102ad6102a8366004613268565b610902565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102e26102dd3660046132a7565b6109ac565b005b3480156102f057600080fd5b506102f9610b14565b6040516102b99190613323565b34801561031257600080fd5b506102ad6103213660046132a7565b610ba6565b34801561033257600080fd5b506035545b6040519081526020016102b9565b34801561035157600080fd5b506103377f2ce8d04a9c35987429af538825cd2438cc5c5bb5dc427955f84daaa3ea10501681565b34801561038557600080fd5b506102ad610394366004613336565b610bc1565b3480156103a557600080fd5b506103376103b4366004613377565b600090815261022a602052604090206001015490565b3480156103d657600080fd5b506103377f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b34801561040a57600080fd5b506102e2610419366004613390565b610bec565b34801561042a57600080fd5b506102e26104393660046133ad565b610c00565b34801561044a57600080fd5b50604051601281526020016102b9565b34801561046657600080fd5b506103377f0acf805600123ef007091da3b3ffb39474074c656c127aa68cb0ffec232a8ff881565b34801561049a57600080fd5b50610337610c16565b3480156104af57600080fd5b506102e26104be3660046133ad565b610c25565b3480156104cf57600080fd5b506102e26104de366004613390565b610c55565b3480156104ef57600080fd5b506102ad6104fe3660046132a7565b610d31565b34801561050f57600080fd5b506102e2610d45565b34801561052457600080fd5b506102e26105333660046132a7565b610d57565b34801561054457600080fd5b506102e2610553366004613377565b610d96565b6102e26105663660046133f3565b610df7565b34801561057757600080fd5b50610337610ec3565b34801561058c57600080fd5b5060005460405160ff90911681526020016102b9565b3480156105ae57600080fd5b506101945460ff166102ad565b3480156105c757600080fd5b506102e26105d6366004613377565b610f76565b3480156105e757600080fd5b506103376105f6366004613390565b6001600160a01b031660009081526033602052604090205490565b34801561061d57600080fd5b5061033761062c366004613390565b611035565b34801561063d57600080fd5b506102e261064c366004613500565b611053565b34801561065d57600080fd5b506102e261109a565b34801561067257600080fd5b5061067b6110aa565b6040516102b99796959493929190613542565b34801561069a57600080fd5b506103377f75afe8d9fedb4699bf07dc7bcb33fe609a84a99adfab7076931f0d93228085bb81565b3480156106ce57600080fd5b506102ad6106dd3660046133ad565b611148565b3480156106ee57600080fd5b506102f9611174565b34801561070357600080fd5b50610337600081565b34801561071857600080fd5b506102ad6107273660046132a7565b611183565b34801561073857600080fd5b506102ad6107473660046132a7565b611197565b34801561075857600080fd5b5061076c6107673660046135d8565b6111b7565b6040516102b9919061364d565b34801561078557600080fd5b506102f96112ac565b34801561079a57600080fd5b506102e26107a93660046132a7565b61133b565b3480156107ba57600080fd5b506102e26107c93660046136af565b6113b0565b3480156107da57600080fd5b506103377f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b34801561080e57600080fd5b506102e261081d3660046133ad565b6113d0565b34801561082e57600080fd5b506102e261083d366004613726565b611416565b34801561084e57600080fd5b5061033761085d3660046137cf565b6116ce565b34801561086e57600080fd5b506103377f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b3480156108a257600080fd5b5060cc546108b6906001600160a01b031681565b6040516001600160a01b0390911681526020016102b9565b3480156108da57600080fd5b506103377f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e381565b60006001600160e01b031982166336372b0760e01b148061093357506001600160e01b0319821663a219a02560e01b145b8061094657506001600160e01b03198216155b8061096157506001600160e01b031982166352d1902d60e01b145b8061097c57506001600160e01b03198216634ec7fbed60e11b145b8061099757506001600160e01b031982166342580cb760e11b145b806109a657506109a6826116f9565b92915050565b7f0acf805600123ef007091da3b3ffb39474074c656c127aa68cb0ffec232a8ff86109d68161172e565b816000036109f757604051631f2a200560e01b815260040160405180910390fd5b60cc546001600160a01b0316610a205760405163d582591b60e01b815260040160405180910390fd5b60cc546001600160a01b031663eefb7e9a84336000366040518563ffffffff1660e01b8152600401610a5594939291906137fd565b602060405180830381865afa158015610a72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a969190613849565b15610ac457604051636c480add60e01b81526001600160a01b03841660048201526024015b60405180910390fd5b6040518281526001600160a01b0384169033907f401f439d865a766757ec78675925bd67198d5e78805aa41691b34b5d6a6cbbe69060200160405180910390a3610b0f833384611738565b505050565b606060368054610b239061386b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4f9061386b565b8015610b9c5780601f10610b7157610100808354040283529160200191610b9c565b820191906000526020600020905b815481529060010190602001808311610b7f57829003601f168201915b5050505050905090565b6000610bb06118f0565b610bba8383611937565b9392505050565b6000610bce84600161194f565b610bd983600061194f565b610be4848484611a28565b949350505050565b610bf4611a4c565b610bfd81611a7e565b50565b610c08611b7e565b610c128282611b86565b5050565b6000610c20611bac565b905090565b81610c4357604051630461f45f60e11b815260040160405180910390fd5b610c4b611b7e565b610c128282611bb6565b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163003610c9d5760405162461bcd60e51b8152600401610abb9061389f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316610ce6600080516020613cbd833981519152546001600160a01b031690565b6001600160a01b031614610d0c5760405162461bcd60e51b8152600401610abb906138eb565b610d1581611c30565b60408051600080825260208201909252610bfd91839190611c5a565b6000610d3b6118f0565b610bba8383611dc5565b610d4d611de7565b610d55611e11565b565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610d818161172e565b610d8c83600061194f565b610b0f8383611e64565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848610dc08161172e565b81600003610de157604051631f2a200560e01b815260040160405180910390fd5b610ded335b600161194f565b610c123383611f31565b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163003610e3f5760405162461bcd60e51b8152600401610abb9061389f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316610e88600080516020613cbd833981519152546001600160a01b031690565b6001600160a01b031614610eae5760405162461bcd60e51b8152600401610abb906138eb565b610eb782611c30565b610c1282826001611c5a565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610f635760405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c60448201527f6c6564207468726f7567682064656c656761746563616c6c00000000000000006064820152608401610abb565b50600080516020613cbd83398151915290565b80600003610f9757604051631f2a200560e01b815260040160405180910390fd5b610f9f612071565b604051819033907f6fe86159012c6b167b88e7b30e7c8ebe172ed05c753231df050bf60e4faf724a90600090a3604051600090339083908381818185875af1925050503d806000811461100e576040519150601f19603f3d011682016040523d82523d6000602084013e611013565b606091505b5050905080610c12576040516382daa1e760e01b815260040160405180910390fd5b6001600160a01b0381166000908152609960205260408120546109a6565b61105b611a4c565b610c1282828080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506120a392505050565b6110a2611de7565b610d556120f5565b6000606080600080600060606065546000801b1480156110ca5750606654155b61110e5760405162461bcd60e51b81526020600482015260156024820152741152540dcc4c8e88155b9a5b9a5d1a585b1a5e9959605a1b6044820152606401610abb565b611116612133565b61111e612142565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b600091825261022a602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060378054610b239061386b565b600061118d6118f0565b610bba8383612151565b60006111a233610de6565b6111ad83600061194f565b610bba83836121cc565b60608167ffffffffffffffff8111156111d2576111d26133dd565b60405190808252806020026020018201604052801561120557816020015b60608152602001906001900390816111f05790505b50905060005b828110156112a5576112753085858481811061122957611229613937565b905060200281019061123b919061394d565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506121da92505050565b82828151811061128757611287613937565b6020026020010181905250808061129d906139aa565b91505061120b565b5092915050565b61016280546112ba9061386b565b80601f01602080910402602001604051908101604052809291908181526020018280546112e69061386b565b80156113335780601f1061130857610100808354040283529160200191611333565b820191906000526020600020905b81548152906001019060200180831161131657829003601f168201915b505050505081565b8060000361135c57604051631f2a200560e01b815260040160405180910390fd5b611364612071565b60405181906001600160a01b0384169033907fca9a684d22747bbed3bef704e16858bfa9ac8f5af2d80c70455b298bd7d8d23990600090a4610c126001600160a01b03831633836121ff565b6113b86118f0565b6113c787878787878787612251565b50505050505050565b811580156113e657506001600160a01b03811633145b1561140457604051630461f45f60e11b815260040160405180910390fd5b61140c611b7e565b610c1282826123b5565b600054610100900460ff16158080156114365750600054600160ff909116105b806114505750303b158015611450575060005460ff166001145b6114b35760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610abb565b6000805460ff1916600117905580156114d6576000805461ff0019166101001790555b6001600160a01b03841615806114f357506001600160a01b038216155b8061150557506001600160a01b038316155b156115235760405163e6c4247b60e01b815260040160405180910390fd5b61152b6123db565b61159e88888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8c018190048102820181019092528a815292508a915089908190840183828082843760009201919091525061240292505050565b6115dd88888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061243392505050565b6115e56123db565b6115ef600061247d565b6115f76123db565b61160f604051806020016040528060008152506124a4565b6116176124d4565b61161f612503565b61162a600085612532565b6116547f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a684612532565b61167e7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a83612532565b80156116c4576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050505050505050565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b60006001600160e01b03198216637965db0b60e01b14806109a657506301ffc9a760e01b6001600160e01b03198316146109a6565b610bfd81336125b9565b6001600160a01b03831661179c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610abb565b6001600160a01b0382166117fe5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610abb565b611809838383612612565b6001600160a01b038316600090815260336020526040902054818110156118815760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610abb565b6001600160a01b0380851660008181526033602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906118e19086815260200190565b60405180910390a35b50505050565b6101945460ff1615610d555760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610abb565b60003361194581858561261a565b5060019392505050565b60cc546001600160a01b031615610c125760cc546001600160a01b031663eefb7e9a83336000366040518563ffffffff1660e01b815260040161199594939291906137fd565b602060405180830381865afa1580156119b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119d69190613849565b610c12578015611a0457604051634b637e8f60e11b81526001600160a01b0383166004820152602401610abb565b60405163ec442f0560e01b81526001600160a01b0383166004820152602401610abb565b600033611a3685828561273e565b611a41858585611738565b506001949350505050565b611a546118f0565b7f2ce8d04a9c35987429af538825cd2438cc5c5bb5dc427955f84daaa3ea105016610bfd8161172e565b6001600160a01b03811615801590611b0257506040516301ffc9a760e01b815263777dbf4d60e11b60048201526001600160a01b038216906301ffc9a790602401602060405180830381865afa158015611adc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b009190613849565b155b15611b205760405163340aafcd60e11b815260040160405180910390fd5b60cc546040516001600160a01b0383811692169033907ff30d5b081b4a3016a4b34d3732b94b2b2ccc2d99f6774c8ac47c42d8764fd26590600090a460cc80546001600160a01b0319166001600160a01b0392909216919091179055565b610d556118f0565b600082815261022a6020526040902060010154611ba28161172e565b610b0f8383612532565b6000610c206127b2565b6001600160a01b0381163314611c265760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610abb565b610c128282612826565b7f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e3610c128161172e565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff1615611c8d57610b0f8361288e565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611ce7575060408051601f3d908101601f19168201909252611ce4918101906139c3565b60015b611d4a5760405162461bcd60e51b815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201526d6f6e206973206e6f74205555505360901b6064820152608401610abb565b600080516020613cbd8339815191528114611db95760405162461bcd60e51b815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f786044820152681a58589b195555525160ba1b6064820152608401610abb565b50610b0f83838361292a565b600033611945818585611dd883836116ce565b611de291906139dc565b61261a565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610bfd8161172e565b611e1961294f565b610194805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216611eba5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610abb565b611ec660008383612612565b8060356000828254611ed891906139dc565b90915550506001600160a01b0382166000818152603360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038216611f915760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610abb565b611f9d82600083612612565b6001600160a01b038216600090815260336020526040902054818110156120115760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610abb565b6001600160a01b03831660008181526033602090815260408083208686039055603580548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6120796118f0565b7f75afe8d9fedb4699bf07dc7bcb33fe609a84a99adfab7076931f0d93228085bb610bfd8161172e565b336001600160a01b03167fe41f7f53dffb3e1410dab0f9f6a27c670b48ad40ccc47a64537100e1f3809e8a610162836040516120e09291906139ef565b60405180910390a2610162610c128282613adc565b6120fd6118f0565b610194805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e473390565b606060678054610b239061386b565b606060688054610b239061386b565b6000338161215f82866116ce565b9050838110156121bf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610abb565b611a41828686840361261a565b600033611945818585611738565b6060610bba8383604051806060016040528060278152602001613cdd60279139612999565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610b0f908490612a11565b834211156122a15760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610abb565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886122d08c612ae6565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061232b82612b0e565b9050600061233b82878787612b3b565b9050896001600160a01b0316816001600160a01b03161461239e5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610abb565b6123a98a8a8a61261a565b50505050505050505050565b600082815261022a60205260409020600101546123d18161172e565b610b0f8383612826565b600054610100900460ff16610d555760405162461bcd60e51b8152600401610abb90613b9c565b600054610100900460ff166124295760405162461bcd60e51b8152600401610abb90613b9c565b610c128282612b63565b600054610100900460ff1661245a5760405162461bcd60e51b8152600401610abb90613b9c565b610bfd81604051806040016040528060018152602001603160f81b815250612ba3565b600054610100900460ff16610bf45760405162461bcd60e51b8152600401610abb90613b9c565b600054610100900460ff166124cb5760405162461bcd60e51b8152600401610abb90613b9c565b610bfd816120a3565b600054610100900460ff166124fb5760405162461bcd60e51b8152600401610abb90613b9c565b610d55612bf2565b600054610100900460ff1661252a5760405162461bcd60e51b8152600401610abb90613b9c565b610d556123db565b61253c8282611148565b610c1257600082815261022a602090815260408083206001600160a01b03851684529091529020805460ff191660011790556125753390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6125c38282611148565b610c12576125d081612c21565b6125db836020612c33565b6040516020016125ec929190613be7565b60408051601f198184030181529082905262461bcd60e51b8252610abb91600401613323565b610b0f6118f0565b6001600160a01b03831661267c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610abb565b6001600160a01b0382166126dd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610abb565b6001600160a01b0383811660008181526034602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061274a84846116ce565b905060001981146118ea57818110156127a55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610abb565b6118ea848484840361261a565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6127dd612dcf565b6127e5612e28565b60408051602081019490945283019190915260608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b6128308282611148565b15610c1257600082815261022a602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b0381163b6128fb5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b6064820152608401610abb565b600080516020613cbd83398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b61293383612e59565b6000825111806129405750805b15610b0f576118ea83836121da565b6101945460ff16610d555760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610abb565b6060600080856001600160a01b0316856040516129b69190613c5c565b600060405180830381855af49150503d80600081146129f1576040519150601f19603f3d011682016040523d82523d6000602084013e6129f6565b606091505b5091509150612a0786838387612e99565b9695505050505050565b6000612a66826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612f129092919063ffffffff16565b9050805160001480612a87575080806020019051810190612a879190613849565b610b0f5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610abb565b6001600160a01b03811660009081526099602052604090208054600181018255905b50919050565b60006109a6612b1b611bac565b8360405161190160f01b8152600281019290925260228201526042902090565b6000806000612b4c87878787612f21565b91509150612b5981612fe5565b5095945050505050565b600054610100900460ff16612b8a5760405162461bcd60e51b8152600401610abb90613b9c565b6036612b968382613adc565b506037610b0f8282613adc565b600054610100900460ff16612bca5760405162461bcd60e51b8152600401610abb90613b9c565b6067612bd68382613adc565b506068612be38282613adc565b50506000606581905560665550565b600054610100900460ff16612c195760405162461bcd60e51b8152600401610abb90613b9c565b610d5561312f565b60606109a66001600160a01b03831660145b60606000612c42836002613c78565b612c4d9060026139dc565b67ffffffffffffffff811115612c6557612c656133dd565b6040519080825280601f01601f191660200182016040528015612c8f576020820181803683370190505b509050600360fc1b81600081518110612caa57612caa613937565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612cd957612cd9613937565b60200101906001600160f81b031916908160001a9053506000612cfd846002613c78565b612d089060016139dc565b90505b6001811115612d80576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612d3c57612d3c613937565b1a60f81b828281518110612d5257612d52613937565b60200101906001600160f81b031916908160001a90535060049490941c93612d7981613c8f565b9050612d0b565b508315610bba5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610abb565b600080612dda612133565b805190915015612df1578051602090910120919050565b6065548015612e005792915050565b7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4709250505090565b600080612e33612142565b805190915015612e4a578051602090910120919050565b6066548015612e005792915050565b612e628161288e565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60608315612f08578251600003612f01576001600160a01b0385163b612f015760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610abb565b5081610be4565b610be48383613163565b6060610be4848460008561318d565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612f585750600090506003612fdc565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612fac573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612fd557600060019250925050612fdc565b9150600090505b94509492505050565b6000816004811115612ff957612ff9613ca6565b036130015750565b600181600481111561301557613015613ca6565b036130625760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610abb565b600281600481111561307657613076613ca6565b036130c35760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610abb565b60038160048111156130d7576130d7613ca6565b03610bfd5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610abb565b600054610100900460ff166131565760405162461bcd60e51b8152600401610abb90613b9c565b610194805460ff19169055565b8151156131735781518083602001fd5b8060405162461bcd60e51b8152600401610abb9190613323565b6060824710156131ee5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610abb565b600080866001600160a01b0316858760405161320a9190613c5c565b60006040518083038185875af1925050503d8060008114613247576040519150601f19603f3d011682016040523d82523d6000602084013e61324c565b606091505b509150915061325d87838387612e99565b979650505050505050565b60006020828403121561327a57600080fd5b81356001600160e01b031981168114610bba57600080fd5b6001600160a01b0381168114610bfd57600080fd5b600080604083850312156132ba57600080fd5b82356132c581613292565b946020939093013593505050565b60005b838110156132ee5781810151838201526020016132d6565b50506000910152565b6000815180845261330f8160208601602086016132d3565b601f01601f19169290920160200192915050565b602081526000610bba60208301846132f7565b60008060006060848603121561334b57600080fd5b833561335681613292565b9250602084013561336681613292565b929592945050506040919091013590565b60006020828403121561338957600080fd5b5035919050565b6000602082840312156133a257600080fd5b8135610bba81613292565b600080604083850312156133c057600080fd5b8235915060208301356133d281613292565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561340657600080fd5b823561341181613292565b9150602083013567ffffffffffffffff8082111561342e57600080fd5b818501915085601f83011261344257600080fd5b813581811115613454576134546133dd565b604051601f8201601f19908116603f0116810190838211818310171561347c5761347c6133dd565b8160405282815288602084870101111561349557600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b60008083601f8401126134c957600080fd5b50813567ffffffffffffffff8111156134e157600080fd5b6020830191508360208285010111156134f957600080fd5b9250929050565b6000806020838503121561351357600080fd5b823567ffffffffffffffff81111561352a57600080fd5b613536858286016134b7565b90969095509350505050565b60ff60f81b881681526000602060e08184015261356260e084018a6132f7565b8381036040850152613574818a6132f7565b606085018990526001600160a01b038816608086015260a0850187905284810360c0860152855180825283870192509083019060005b818110156135c6578351835292840192918401916001016135aa565b50909c9b505050505050505050505050565b600080602083850312156135eb57600080fd5b823567ffffffffffffffff8082111561360357600080fd5b818501915085601f83011261361757600080fd5b81358181111561362657600080fd5b8660208260051b850101111561363b57600080fd5b60209290920196919550909350505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b828110156136a257603f198886030184526136908583516132f7565b94509285019290850190600101613674565b5092979650505050505050565b600080600080600080600060e0888a0312156136ca57600080fd5b87356136d581613292565b965060208801356136e581613292565b95506040880135945060608801359350608088013560ff8116811461370957600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080600080600080600060a0888a03121561374157600080fd5b873567ffffffffffffffff8082111561375957600080fd5b6137658b838c016134b7565b909950975060208a013591508082111561377e57600080fd5b5061378b8a828b016134b7565b909650945050604088013561379f81613292565b925060608801356137af81613292565b915060808801356137bf81613292565b8091505092959891949750929550565b600080604083850312156137e257600080fd5b82356137ed81613292565b915060208301356133d281613292565b6001600160a01b0385811682528416602082015260606040820181905281018290526000828460808401376000608084840101526080601f19601f850116830101905095945050505050565b60006020828403121561385b57600080fd5b81518015158114610bba57600080fd5b600181811c9082168061387f57607f821691505b602082108103612b0857634e487b7160e01b600052602260045260246000fd5b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b19195b1959d85d1958d85b1b60a21b606082015260800190565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b6163746976652070726f787960a01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000808335601e1984360301811261396457600080fd5b83018035915067ffffffffffffffff82111561397f57600080fd5b6020019150368190038213156134f957600080fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016139bc576139bc613994565b5060010190565b6000602082840312156139d557600080fd5b5051919050565b808201808211156109a6576109a6613994565b604081526000808454613a018161386b565b8060408601526060600180841660008114613a235760018114613a3d57613a6e565b60ff1985168884015283151560051b880183019550613a6e565b8960005260208060002060005b86811015613a655781548b8201870152908401908201613a4a565b8a018501975050505b50505050508281036020840152613a8581856132f7565b95945050505050565b601f821115610b0f57600081815260208120601f850160051c81016020861015613ab55750805b601f850160051c820191505b81811015613ad457828155600101613ac1565b505050505050565b815167ffffffffffffffff811115613af657613af66133dd565b613b0a81613b04845461386b565b84613a8e565b602080601f831160018114613b3f5760008415613b275750858301515b600019600386901b1c1916600185901b178555613ad4565b600085815260208120601f198616915b82811015613b6e57888601518255948401946001909101908401613b4f565b5085821015613b8c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613c1f8160178501602088016132d3565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613c508160288401602088016132d3565b01602801949350505050565b60008251613c6e8184602087016132d3565b9190910192915050565b80820281158282048414176109a6576109a6613994565b600081613c9e57613c9e613994565b506000190190565b634e487b7160e01b600052602160045260246000fdfe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212204e8b52736f40386e69102aed1b230a51ee2811326448ad26db52649c3ea521ab64736f6c63430008140033","name":"ERC20F","is_blueprint":false,"license_type":"none","is_fully_verified":false,"is_verified_via_eth_bytecode_db":true,"language":"solidity","evm_version":"paris","can_be_visualized_via_sol2uml":true,"is_verified_via_sourcify":true,"additional_sources":[{"file_path":"contracts/library/Utils/ContractUriUpgradeable.sol","source_code":"// SPDX-License-Identifier: AGPL-3.0-or-later\n// Copyright (C) 2024 Fireblocks <support@fireblocks.com>\n//\n// This program is free software: you can redistribute it and/or modify\n// it under the terms of the GNU Affero General Public License as published by\n// the Free Software Foundation, either version 3 of the License, or\n// (at your option) any later version.\n//\n// This program is distributed in the hope that it will be useful,\n// but WITHOUT ANY WARRANTY; without even the implied warranty of\n// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n// GNU Affero General Public License for more details.\n//\n// You should have received a copy of the GNU Affero General Public License\n// along with this program.  If not, see <https://www.gnu.org/licenses/>.\npragma solidity 0.8.20;\n\nimport {Initializable} from \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\";\nimport {ContextUpgradeable} from \"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\";\n\n/**\n * @title Contract Uri Upgradeable\n * @author Fireblocks\n * @dev This abstract contract provides internal contract logic for upgrading the contract URI.\n */\nabstract contract ContractUriUpgradeable is Initializable, ContextUpgradeable {\n\t/// State\n\n\t/**\n\t * @notice This field is a URI (Uniform Resource Identifier) that points to a JSON file with metadata about the contract.\n\t * @dev This state variable is queried by the contractUri() function.\n\t */\n\tstring public contractUri;\n\n\t/// Events\n\n\t/**\n\t * @notice This event is logged when the contract URI is updated.\n\t *\n\t * @param caller The (indexed) address of the entity that triggered the update.\n\t * @param oldUri The URI previously associated with the contract.\n\t * @param newUri The new URI associated with the contract.\n\t */\n\tevent ContractUriUpdated(address indexed caller, string oldUri, string newUri);\n\n\t// Functions\n\n\t/**\n\t * @notice This is an initializer function for the abstract contract.\n\t * @dev Standard Initializable contract behavior.\n\t *\n\t * Calling Conditions:\n\t *\n\t * - Can only be invoked by functions with the {initializer} or {reinitializer} modifiers.\n\t */\n\t/* solhint-disable func-name-mixedcase */\n\tfunction __ContractUri_init(string memory _uri) internal onlyInitializing {\n\t\t_updateContractUri(_uri);\n\t}\n\n\t/**\n\t * @notice This is a function used to update `contractUri` field.\n\t * @dev This function emits a {ContractUriUpdated} event.\n\t *\n\t * @param _uri A URI link pointing to the current URI associated with the contract.\n\t */\n\tfunction contractUriUpdate(string calldata _uri) external virtual {\n\t\t_authorizeContractUriUpdate();\n\t\t_updateContractUri(_uri);\n\t}\n\n\t/**\n\t * @notice This is a function used to update `contractUri` field.\n\t * @dev This function emits a {ContractUriUpdated} event.\n\t *\n\t * @param _uri A URI link pointing to the current URI associated with the contract.\n\t */\n\tfunction _updateContractUri(string memory _uri) internal virtual {\n\t\temit ContractUriUpdated(_msgSender(), contractUri, _uri);\n\t\tcontractUri = _uri;\n\t}\n\n\t/**\n\t * @notice This function is designed to be overridden in inheriting contracts.\n\t * @dev Override this function to implement RBAC control.\n\t */\n\tfunction _authorizeContractUriUpdate() internal virtual;\n\n\t/* solhint-enable func-name-mixedcase */\n\t/**\n\t * @dev This empty reserved space is put in place to allow future versions to add new\n\t * variables without shifting down storage in the inheritance chain.\n\t * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n\t */\n\t//slither-disable-next-line naming-convention\n\tuint256[49] private __gap;\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (access/AccessControl.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IAccessControlUpgradeable.sol\";\nimport \"../utils/ContextUpgradeable.sol\";\nimport \"../utils/StringsUpgradeable.sol\";\nimport \"../utils/introspection/ERC165Upgradeable.sol\";\nimport \"../proxy/utils/Initializable.sol\";\n\n/**\n * @dev Contract module that allows children to implement role-based access\n * control mechanisms. This is a lightweight version that doesn't allow enumerating role\n * members except through off-chain means by accessing the contract event logs. Some\n * applications may benefit from on-chain enumerability, for those cases see\n * {AccessControlEnumerable}.\n *\n * Roles are referred to by their `bytes32` identifier. These should be exposed\n * in the external API and be unique. The best way to achieve this is by\n * using `public constant` hash digests:\n *\n * ```solidity\n * bytes32 public constant MY_ROLE = keccak256(\"MY_ROLE\");\n * ```\n *\n * Roles can be used to represent a set of permissions. To restrict access to a\n * function call, use {hasRole}:\n *\n * ```solidity\n * function foo() public {\n *     require(hasRole(MY_ROLE, msg.sender));\n *     ...\n * }\n * ```\n *\n * Roles can be granted and revoked dynamically via the {grantRole} and\n * {revokeRole} functions. Each role has an associated admin role, and only\n * accounts that have a role's admin role can call {grantRole} and {revokeRole}.\n *\n * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means\n * that only accounts with this role will be able to grant or revoke other\n * roles. More complex role relationships can be created by using\n * {_setRoleAdmin}.\n *\n * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to\n * grant and revoke this role. Extra precautions should be taken to secure\n * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}\n * to enforce additional security measures for this role.\n */\nabstract contract AccessControlUpgradeable is Initializable, ContextUpgradeable, IAccessControlUpgradeable, ERC165Upgradeable {\n    function __AccessControl_init() internal onlyInitializing {\n    }\n\n    function __AccessControl_init_unchained() internal onlyInitializing {\n    }\n    struct RoleData {\n        mapping(address => bool) members;\n        bytes32 adminRole;\n    }\n\n    mapping(bytes32 => RoleData) private _roles;\n\n    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;\n\n    /**\n     * @dev Modifier that checks that an account has a specific role. Reverts\n     * with a standardized message including the required role.\n     *\n     * The format of the revert reason is given by the following regular expression:\n     *\n     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/\n     *\n     * _Available since v4.1._\n     */\n    modifier onlyRole(bytes32 role) {\n        _checkRole(role);\n        _;\n    }\n\n    /**\n     * @dev See {IERC165-supportsInterface}.\n     */\n    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n        return interfaceId == type(IAccessControlUpgradeable).interfaceId || super.supportsInterface(interfaceId);\n    }\n\n    /**\n     * @dev Returns `true` if `account` has been granted `role`.\n     */\n    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {\n        return _roles[role].members[account];\n    }\n\n    /**\n     * @dev Revert with a standard message if `_msgSender()` is missing `role`.\n     * Overriding this function changes the behavior of the {onlyRole} modifier.\n     *\n     * Format of the revert message is described in {_checkRole}.\n     *\n     * _Available since v4.6._\n     */\n    function _checkRole(bytes32 role) internal view virtual {\n        _checkRole(role, _msgSender());\n    }\n\n    /**\n     * @dev Revert with a standard message if `account` is missing `role`.\n     *\n     * The format of the revert reason is given by the following regular expression:\n     *\n     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/\n     */\n    function _checkRole(bytes32 role, address account) internal view virtual {\n        if (!hasRole(role, account)) {\n            revert(\n                string(\n                    abi.encodePacked(\n                        \"AccessControl: account \",\n                        StringsUpgradeable.toHexString(account),\n                        \" is missing role \",\n                        StringsUpgradeable.toHexString(uint256(role), 32)\n                    )\n                )\n            );\n        }\n    }\n\n    /**\n     * @dev Returns the admin role that controls `role`. See {grantRole} and\n     * {revokeRole}.\n     *\n     * To change a role's admin, use {_setRoleAdmin}.\n     */\n    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {\n        return _roles[role].adminRole;\n    }\n\n    /**\n     * @dev Grants `role` to `account`.\n     *\n     * If `account` had not been already granted `role`, emits a {RoleGranted}\n     * event.\n     *\n     * Requirements:\n     *\n     * - the caller must have ``role``'s admin role.\n     *\n     * May emit a {RoleGranted} event.\n     */\n    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {\n        _grantRole(role, account);\n    }\n\n    /**\n     * @dev Revokes `role` from `account`.\n     *\n     * If `account` had been granted `role`, emits a {RoleRevoked} event.\n     *\n     * Requirements:\n     *\n     * - the caller must have ``role``'s admin role.\n     *\n     * May emit a {RoleRevoked} event.\n     */\n    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {\n        _revokeRole(role, account);\n    }\n\n    /**\n     * @dev Revokes `role` from the calling account.\n     *\n     * Roles are often managed via {grantRole} and {revokeRole}: this function's\n     * purpose is to provide a mechanism for accounts to lose their privileges\n     * if they are compromised (such as when a trusted device is misplaced).\n     *\n     * If the calling account had been revoked `role`, emits a {RoleRevoked}\n     * event.\n     *\n     * Requirements:\n     *\n     * - the caller must be `account`.\n     *\n     * May emit a {RoleRevoked} event.\n     */\n    function renounceRole(bytes32 role, address account) public virtual override {\n        require(account == _msgSender(), \"AccessControl: can only renounce roles for self\");\n\n        _revokeRole(role, account);\n    }\n\n    /**\n     * @dev Grants `role` to `account`.\n     *\n     * If `account` had not been already granted `role`, emits a {RoleGranted}\n     * event. Note that unlike {grantRole}, this function doesn't perform any\n     * checks on the calling account.\n     *\n     * May emit a {RoleGranted} event.\n     *\n     * [WARNING]\n     * ====\n     * This function should only be called from the constructor when setting\n     * up the initial roles for the system.\n     *\n     * Using this function in any other way is effectively circumventing the admin\n     * system imposed by {AccessControl}.\n     * ====\n     *\n     * NOTE: This function is deprecated in favor of {_grantRole}.\n     */\n    function _setupRole(bytes32 role, address account) internal virtual {\n        _grantRole(role, account);\n    }\n\n    /**\n     * @dev Sets `adminRole` as ``role``'s admin role.\n     *\n     * Emits a {RoleAdminChanged} event.\n     */\n    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {\n        bytes32 previousAdminRole = getRoleAdmin(role);\n        _roles[role].adminRole = adminRole;\n        emit RoleAdminChanged(role, previousAdminRole, adminRole);\n    }\n\n    /**\n     * @dev Grants `role` to `account`.\n     *\n     * Internal function without access restriction.\n     *\n     * May emit a {RoleGranted} event.\n     */\n    function _grantRole(bytes32 role, address account) internal virtual {\n        if (!hasRole(role, account)) {\n            _roles[role].members[account] = true;\n            emit RoleGranted(role, account, _msgSender());\n        }\n    }\n\n    /**\n     * @dev Revokes `role` from `account`.\n     *\n     * Internal function without access restriction.\n     *\n     * May emit a {RoleRevoked} event.\n     */\n    function _revokeRole(bytes32 role, address account) internal virtual {\n        if (hasRole(role, account)) {\n            _roles[role].members[account] = false;\n            emit RoleRevoked(role, account, _msgSender());\n        }\n    }\n\n    /**\n     * @dev This empty reserved space is put in place to allow future versions to add new\n     * variables without shifting down storage in the inheritance chain.\n     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n     */\n    uint256[49] private __gap;\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/ERC20Permit.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC20PermitUpgradeable.sol\";\nimport \"../ERC20Upgradeable.sol\";\nimport \"../../../utils/cryptography/ECDSAUpgradeable.sol\";\nimport \"../../../utils/cryptography/EIP712Upgradeable.sol\";\nimport \"../../../utils/CountersUpgradeable.sol\";\nimport \"../../../proxy/utils/Initializable.sol\";\n\n/**\n * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\n *\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\n * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't\n * need to send a transaction, and thus is not required to hold Ether at all.\n *\n * _Available since v3.4._\n *\n * @custom:storage-size 51\n */\nabstract contract ERC20PermitUpgradeable is Initializable, ERC20Upgradeable, IERC20PermitUpgradeable, EIP712Upgradeable {\n    using CountersUpgradeable for CountersUpgradeable.Counter;\n\n    mapping(address => CountersUpgradeable.Counter) private _nonces;\n\n    // solhint-disable-next-line var-name-mixedcase\n    bytes32 private constant _PERMIT_TYPEHASH =\n        keccak256(\"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\");\n    /**\n     * @dev In previous versions `_PERMIT_TYPEHASH` was declared as `immutable`.\n     * However, to ensure consistency with the upgradeable transpiler, we will continue\n     * to reserve a slot.\n     * @custom:oz-renamed-from _PERMIT_TYPEHASH\n     */\n    // solhint-disable-next-line var-name-mixedcase\n    bytes32 private _PERMIT_TYPEHASH_DEPRECATED_SLOT;\n\n    /**\n     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\"1\"`.\n     *\n     * It's a good idea to use the same `name` that is defined as the ERC20 token name.\n     */\n    function __ERC20Permit_init(string memory name) internal onlyInitializing {\n        __EIP712_init_unchained(name, \"1\");\n    }\n\n    function __ERC20Permit_init_unchained(string memory) internal onlyInitializing {}\n\n    /**\n     * @dev See {IERC20Permit-permit}.\n     */\n    function permit(\n        address owner,\n        address spender,\n        uint256 value,\n        uint256 deadline,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) public virtual override {\n        require(block.timestamp <= deadline, \"ERC20Permit: expired deadline\");\n\n        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));\n\n        bytes32 hash = _hashTypedDataV4(structHash);\n\n        address signer = ECDSAUpgradeable.recover(hash, v, r, s);\n        require(signer == owner, \"ERC20Permit: invalid signature\");\n\n        _approve(owner, spender, value);\n    }\n\n    /**\n     * @dev See {IERC20Permit-nonces}.\n     */\n    function nonces(address owner) public view virtual override returns (uint256) {\n        return _nonces[owner].current();\n    }\n\n    /**\n     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.\n     */\n    // solhint-disable-next-line func-name-mixedcase\n    function DOMAIN_SEPARATOR() external view override returns (bytes32) {\n        return _domainSeparatorV4();\n    }\n\n    /**\n     * @dev \"Consume a nonce\": return the current value and increment.\n     *\n     * _Available since v4.1._\n     */\n    function _useNonce(address owner) internal virtual returns (uint256 current) {\n        CountersUpgradeable.Counter storage nonce = _nonces[owner];\n        current = nonce.current();\n        nonce.increment();\n    }\n\n    /**\n     * @dev This empty reserved space is put in place to allow future versions to add new\n     * variables without shifting down storage in the inheritance chain.\n     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n     */\n    uint256[49] private __gap;\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/proxy/ERC1967/ERC1967UpgradeUpgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/ERC1967/ERC1967Upgrade.sol)\n\npragma solidity ^0.8.2;\n\nimport \"../beacon/IBeaconUpgradeable.sol\";\nimport \"../../interfaces/IERC1967Upgradeable.sol\";\nimport \"../../interfaces/draft-IERC1822Upgradeable.sol\";\nimport \"../../utils/AddressUpgradeable.sol\";\nimport \"../../utils/StorageSlotUpgradeable.sol\";\nimport \"../utils/Initializable.sol\";\n\n/**\n * @dev This abstract contract provides getters and event emitting update functions for\n * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.\n *\n * _Available since v4.1._\n */\nabstract contract ERC1967UpgradeUpgradeable is Initializable, IERC1967Upgradeable {\n    function __ERC1967Upgrade_init() internal onlyInitializing {\n    }\n\n    function __ERC1967Upgrade_init_unchained() internal onlyInitializing {\n    }\n    // This is the keccak-256 hash of \"eip1967.proxy.rollback\" subtracted by 1\n    bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143;\n\n    /**\n     * @dev Storage slot with the address of the current implementation.\n     * This is the keccak-256 hash of \"eip1967.proxy.implementation\" subtracted by 1, and is\n     * validated in the constructor.\n     */\n    bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n\n    /**\n     * @dev Returns the current implementation address.\n     */\n    function _getImplementation() internal view returns (address) {\n        return StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n    }\n\n    /**\n     * @dev Stores a new address in the EIP1967 implementation slot.\n     */\n    function _setImplementation(address newImplementation) private {\n        require(AddressUpgradeable.isContract(newImplementation), \"ERC1967: new implementation is not a contract\");\n        StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n    }\n\n    /**\n     * @dev Perform implementation upgrade\n     *\n     * Emits an {Upgraded} event.\n     */\n    function _upgradeTo(address newImplementation) internal {\n        _setImplementation(newImplementation);\n        emit Upgraded(newImplementation);\n    }\n\n    /**\n     * @dev Perform implementation upgrade with additional setup call.\n     *\n     * Emits an {Upgraded} event.\n     */\n    function _upgradeToAndCall(address newImplementation, bytes memory data, bool forceCall) internal {\n        _upgradeTo(newImplementation);\n        if (data.length > 0 || forceCall) {\n            AddressUpgradeable.functionDelegateCall(newImplementation, data);\n        }\n    }\n\n    /**\n     * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call.\n     *\n     * Emits an {Upgraded} event.\n     */\n    function _upgradeToAndCallUUPS(address newImplementation, bytes memory data, bool forceCall) internal {\n        // Upgrades from old implementations will perform a rollback test. This test requires the new\n        // implementation to upgrade back to the old, non-ERC1822 compliant, implementation. Removing\n        // this special case will break upgrade paths from old UUPS implementation to new ones.\n        if (StorageSlotUpgradeable.getBooleanSlot(_ROLLBACK_SLOT).value) {\n            _setImplementation(newImplementation);\n        } else {\n            try IERC1822ProxiableUpgradeable(newImplementation).proxiableUUID() returns (bytes32 slot) {\n                require(slot == _IMPLEMENTATION_SLOT, \"ERC1967Upgrade: unsupported proxiableUUID\");\n            } catch {\n                revert(\"ERC1967Upgrade: new implementation is not UUPS\");\n            }\n            _upgradeToAndCall(newImplementation, data, forceCall);\n        }\n    }\n\n    /**\n     * @dev Storage slot with the admin of the contract.\n     * This is the keccak-256 hash of \"eip1967.proxy.admin\" subtracted by 1, and is\n     * validated in the constructor.\n     */\n    bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;\n\n    /**\n     * @dev Returns the current admin.\n     */\n    function _getAdmin() internal view returns (address) {\n        return StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value;\n    }\n\n    /**\n     * @dev Stores a new address in the EIP1967 admin slot.\n     */\n    function _setAdmin(address newAdmin) private {\n        require(newAdmin != address(0), \"ERC1967: new admin is the zero address\");\n        StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value = newAdmin;\n    }\n\n    /**\n     * @dev Changes the admin of the proxy.\n     *\n     * Emits an {AdminChanged} event.\n     */\n    function _changeAdmin(address newAdmin) internal {\n        emit AdminChanged(_getAdmin(), newAdmin);\n        _setAdmin(newAdmin);\n    }\n\n    /**\n     * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.\n     * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor.\n     */\n    bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;\n\n    /**\n     * @dev Returns the current beacon.\n     */\n    function _getBeacon() internal view returns (address) {\n        return StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value;\n    }\n\n    /**\n     * @dev Stores a new beacon in the EIP1967 beacon slot.\n     */\n    function _setBeacon(address newBeacon) private {\n        require(AddressUpgradeable.isContract(newBeacon), \"ERC1967: new beacon is not a contract\");\n        require(\n            AddressUpgradeable.isContract(IBeaconUpgradeable(newBeacon).implementation()),\n            \"ERC1967: beacon implementation is not a contract\"\n        );\n        StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value = newBeacon;\n    }\n\n    /**\n     * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does\n     * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that).\n     *\n     * Emits a {BeaconUpgraded} event.\n     */\n    function _upgradeBeaconToAndCall(address newBeacon, bytes memory data, bool forceCall) internal {\n        _setBeacon(newBeacon);\n        emit BeaconUpgraded(newBeacon);\n        if (data.length > 0 || forceCall) {\n            AddressUpgradeable.functionDelegateCall(IBeaconUpgradeable(newBeacon).implementation(), data);\n        }\n    }\n\n    /**\n     * @dev This empty reserved space is put in place to allow future versions to add new\n     * variables without shifting down storage in the inheritance chain.\n     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n     */\n    uint256[50] private __gap;\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC20Upgradeable.sol\";\nimport \"./extensions/IERC20MetadataUpgradeable.sol\";\nimport \"../../utils/ContextUpgradeable.sol\";\nimport \"../../proxy/utils/Initializable.sol\";\n\n/**\n * @dev Implementation of the {IERC20} interface.\n *\n * This implementation is agnostic to the way tokens are created. This means\n * that a supply mechanism has to be added in a derived contract using {_mint}.\n * For a generic mechanism see {ERC20PresetMinterPauser}.\n *\n * TIP: For a detailed writeup see our guide\n * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n * to implement supply mechanisms].\n *\n * The default value of {decimals} is 18. To change this, you should override\n * this function so it returns a different value.\n *\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\n * instead returning `false` on failure. This behavior is nonetheless\n * conventional and does not conflict with the expectations of ERC20\n * applications.\n *\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n * This allows applications to reconstruct the allowance for all accounts just\n * by listening to said events. Other implementations of the EIP may not emit\n * these events, as it isn't required by the specification.\n *\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\n * functions have been added to mitigate the well-known issues around setting\n * allowances. See {IERC20-approve}.\n */\ncontract ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable {\n    mapping(address => uint256) private _balances;\n\n    mapping(address => mapping(address => uint256)) private _allowances;\n\n    uint256 private _totalSupply;\n\n    string private _name;\n    string private _symbol;\n\n    /**\n     * @dev Sets the values for {name} and {symbol}.\n     *\n     * All two of these values are immutable: they can only be set once during\n     * construction.\n     */\n    function __ERC20_init(string memory name_, string memory symbol_) internal onlyInitializing {\n        __ERC20_init_unchained(name_, symbol_);\n    }\n\n    function __ERC20_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing {\n        _name = name_;\n        _symbol = symbol_;\n    }\n\n    /**\n     * @dev Returns the name of the token.\n     */\n    function name() public view virtual override returns (string memory) {\n        return _name;\n    }\n\n    /**\n     * @dev Returns the symbol of the token, usually a shorter version of the\n     * name.\n     */\n    function symbol() public view virtual override returns (string memory) {\n        return _symbol;\n    }\n\n    /**\n     * @dev Returns the number of decimals used to get its user representation.\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\n     * be displayed to a user as `5.05` (`505 / 10 ** 2`).\n     *\n     * Tokens usually opt for a value of 18, imitating the relationship between\n     * Ether and Wei. This is the default value returned by this function, unless\n     * it's overridden.\n     *\n     * NOTE: This information is only used for _display_ purposes: it in\n     * no way affects any of the arithmetic of the contract, including\n     * {IERC20-balanceOf} and {IERC20-transfer}.\n     */\n    function decimals() public view virtual override returns (uint8) {\n        return 18;\n    }\n\n    /**\n     * @dev See {IERC20-totalSupply}.\n     */\n    function totalSupply() public view virtual override returns (uint256) {\n        return _totalSupply;\n    }\n\n    /**\n     * @dev See {IERC20-balanceOf}.\n     */\n    function balanceOf(address account) public view virtual override returns (uint256) {\n        return _balances[account];\n    }\n\n    /**\n     * @dev See {IERC20-transfer}.\n     *\n     * Requirements:\n     *\n     * - `to` cannot be the zero address.\n     * - the caller must have a balance of at least `amount`.\n     */\n    function transfer(address to, uint256 amount) public virtual override returns (bool) {\n        address owner = _msgSender();\n        _transfer(owner, to, amount);\n        return true;\n    }\n\n    /**\n     * @dev See {IERC20-allowance}.\n     */\n    function allowance(address owner, address spender) public view virtual override returns (uint256) {\n        return _allowances[owner][spender];\n    }\n\n    /**\n     * @dev See {IERC20-approve}.\n     *\n     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on\n     * `transferFrom`. This is semantically equivalent to an infinite approval.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     */\n    function approve(address spender, uint256 amount) public virtual override returns (bool) {\n        address owner = _msgSender();\n        _approve(owner, spender, amount);\n        return true;\n    }\n\n    /**\n     * @dev See {IERC20-transferFrom}.\n     *\n     * Emits an {Approval} event indicating the updated allowance. This is not\n     * required by the EIP. See the note at the beginning of {ERC20}.\n     *\n     * NOTE: Does not update the allowance if the current allowance\n     * is the maximum `uint256`.\n     *\n     * Requirements:\n     *\n     * - `from` and `to` cannot be the zero address.\n     * - `from` must have a balance of at least `amount`.\n     * - the caller must have allowance for ``from``'s tokens of at least\n     * `amount`.\n     */\n    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {\n        address spender = _msgSender();\n        _spendAllowance(from, spender, amount);\n        _transfer(from, to, amount);\n        return true;\n    }\n\n    /**\n     * @dev Atomically increases the allowance granted to `spender` by the caller.\n     *\n     * This is an alternative to {approve} that can be used as a mitigation for\n     * problems described in {IERC20-approve}.\n     *\n     * Emits an {Approval} event indicating the updated allowance.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     */\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\n        address owner = _msgSender();\n        _approve(owner, spender, allowance(owner, spender) + addedValue);\n        return true;\n    }\n\n    /**\n     * @dev Atomically decreases the allowance granted to `spender` by the caller.\n     *\n     * This is an alternative to {approve} that can be used as a mitigation for\n     * problems described in {IERC20-approve}.\n     *\n     * Emits an {Approval} event indicating the updated allowance.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     * - `spender` must have allowance for the caller of at least\n     * `subtractedValue`.\n     */\n    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\n        address owner = _msgSender();\n        uint256 currentAllowance = allowance(owner, spender);\n        require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\");\n        unchecked {\n            _approve(owner, spender, currentAllowance - subtractedValue);\n        }\n\n        return true;\n    }\n\n    /**\n     * @dev Moves `amount` of tokens from `from` to `to`.\n     *\n     * This internal function is equivalent to {transfer}, and can be used to\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\n     *\n     * Emits a {Transfer} event.\n     *\n     * Requirements:\n     *\n     * - `from` cannot be the zero address.\n     * - `to` cannot be the zero address.\n     * - `from` must have a balance of at least `amount`.\n     */\n    function _transfer(address from, address to, uint256 amount) internal virtual {\n        require(from != address(0), \"ERC20: transfer from the zero address\");\n        require(to != address(0), \"ERC20: transfer to the zero address\");\n\n        _beforeTokenTransfer(from, to, amount);\n\n        uint256 fromBalance = _balances[from];\n        require(fromBalance >= amount, \"ERC20: transfer amount exceeds balance\");\n        unchecked {\n            _balances[from] = fromBalance - amount;\n            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by\n            // decrementing then incrementing.\n            _balances[to] += amount;\n        }\n\n        emit Transfer(from, to, amount);\n\n        _afterTokenTransfer(from, to, amount);\n    }\n\n    /** @dev Creates `amount` tokens and assigns them to `account`, increasing\n     * the total supply.\n     *\n     * Emits a {Transfer} event with `from` set to the zero address.\n     *\n     * Requirements:\n     *\n     * - `account` cannot be the zero address.\n     */\n    function _mint(address account, uint256 amount) internal virtual {\n        require(account != address(0), \"ERC20: mint to the zero address\");\n\n        _beforeTokenTransfer(address(0), account, amount);\n\n        _totalSupply += amount;\n        unchecked {\n            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.\n            _balances[account] += amount;\n        }\n        emit Transfer(address(0), account, amount);\n\n        _afterTokenTransfer(address(0), account, amount);\n    }\n\n    /**\n     * @dev Destroys `amount` tokens from `account`, reducing the\n     * total supply.\n     *\n     * Emits a {Transfer} event with `to` set to the zero address.\n     *\n     * Requirements:\n     *\n     * - `account` cannot be the zero address.\n     * - `account` must have at least `amount` tokens.\n     */\n    function _burn(address account, uint256 amount) internal virtual {\n        require(account != address(0), \"ERC20: burn from the zero address\");\n\n        _beforeTokenTransfer(account, address(0), amount);\n\n        uint256 accountBalance = _balances[account];\n        require(accountBalance >= amount, \"ERC20: burn amount exceeds balance\");\n        unchecked {\n            _balances[account] = accountBalance - amount;\n            // Overflow not possible: amount <= accountBalance <= totalSupply.\n            _totalSupply -= amount;\n        }\n\n        emit Transfer(account, address(0), amount);\n\n        _afterTokenTransfer(account, address(0), amount);\n    }\n\n    /**\n     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\n     *\n     * This internal function is equivalent to `approve`, and can be used to\n     * e.g. set automatic allowances for certain subsystems, etc.\n     *\n     * Emits an {Approval} event.\n     *\n     * Requirements:\n     *\n     * - `owner` cannot be the zero address.\n     * - `spender` cannot be the zero address.\n     */\n    function _approve(address owner, address spender, uint256 amount) internal virtual {\n        require(owner != address(0), \"ERC20: approve from the zero address\");\n        require(spender != address(0), \"ERC20: approve to the zero address\");\n\n        _allowances[owner][spender] = amount;\n        emit Approval(owner, spender, amount);\n    }\n\n    /**\n     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.\n     *\n     * Does not update the allowance amount in case of infinite allowance.\n     * Revert if not enough allowance is available.\n     *\n     * Might emit an {Approval} event.\n     */\n    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {\n        uint256 currentAllowance = allowance(owner, spender);\n        if (currentAllowance != type(uint256).max) {\n            require(currentAllowance >= amount, \"ERC20: insufficient allowance\");\n            unchecked {\n                _approve(owner, spender, currentAllowance - amount);\n            }\n        }\n    }\n\n    /**\n     * @dev Hook that is called before any transfer of tokens. This includes\n     * minting and burning.\n     *\n     * Calling conditions:\n     *\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n     * will be transferred to `to`.\n     * - when `from` is zero, `amount` tokens will be minted for `to`.\n     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n     * - `from` and `to` are never both zero.\n     *\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n     */\n    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}\n\n    /**\n     * @dev Hook that is called after any transfer of tokens. This includes\n     * minting and burning.\n     *\n     * Calling conditions:\n     *\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n     * has been transferred to `to`.\n     * - when `from` is zero, `amount` tokens have been minted for `to`.\n     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\n     * - `from` and `to` are never both zero.\n     *\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n     */\n    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}\n\n    /**\n     * @dev This empty reserved space is put in place to allow future versions to add new\n     * variables without shifting down storage in the inheritance chain.\n     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n     */\n    uint256[45] private __gap;\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC165 standard, as defined in the\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\n *\n * Implementers can declare support of contract interfaces, which can then be\n * queried by others ({ERC165Checker}).\n *\n * For an implementation, see {ERC165}.\n */\ninterface IERC165Upgradeable {\n    /**\n     * @dev Returns true if this contract implements the interface defined by\n     * `interfaceId`. See the corresponding\n     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\n     * to learn more about how these ids are created.\n     *\n     * This function call must use less than 30 000 gas.\n     */\n    function supportsInterface(bytes4 interfaceId) external view returns (bool);\n}\n"},{"file_path":"contracts/library/Errors/LibErrors.sol","source_code":"// SPDX-License-Identifier: AGPL-3.0-or-later\n// Copyright (C) 2024 Fireblocks <support@fireblocks.com>\n//\n// This program is free software: you can redistribute it and/or modify\n// it under the terms of the GNU Affero General Public License as published by\n// the Free Software Foundation, either version 3 of the License, or\n// (at your option) any later version.\n//\n// This program is distributed in the hope that it will be useful,\n// but WITHOUT ANY WARRANTY; without even the implied warranty of\n// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n// GNU Affero General Public License for more details.\n//\n// You should have received a copy of the GNU Affero General Public License\n// along with this program.  If not, see <https://www.gnu.org/licenses/>.\npragma solidity 0.8.20;\n\n/**\n * @title Errors Library\n * @author Fireblocks\n * @notice The Errors Library provides error messages for the Fireblocks ecosystem of smart contracts.\n */\nlibrary LibErrors {\n\t/// Errors\n\n\t/**\n\t * @notice Thrown when the account is barred to participate in the system.\n\t * @param account The account to be checked.\n\t */\n\terror AccountUnauthorized(address account);\n\n\t/**\n\t * @notice Thrown when a Renounce Role is called.\n\t */\n\terror RenounceRoleDisabled();\n\n\t/**\n\t * @dev Indicates a failure that an address is not valid.\n\t */\n\terror InvalidAddress();\n\n\t/**\n\t * @dev Indicates that there was an attempt to recover tokens from an account that can participate in the system.\n\t * @param account The address from which token recovery was attempted.\n\t */\n\terror RecoveryOnActiveAccount(address account);\n\n\t/**\n\t * @dev Indicates that a contract does not implement a required interface.\n\t */\n\terror InvalidImplementation();\n\n\t/**\n\t * @dev Indicates that tokenId is not valid.\n\t */\n\terror InvalidTokenId();\n\n\t/**\n\t * @dev Indicates that the user is not allowed to perform the action for that token.\n\t */\n\terror UnauthorizedTokenManagement();\n\n\t/**\n\t * @dev Indicates a failure that a value is not valid.\n\t */\n\terror ZeroAmount();\n\n\t/**\n\t * @dev Indicates a failure while rescuing gas.\n\t */\n\terror SalvageGasFailed();\n\n\t/**\n\t * @dev Indicates a failure because \"DEFAULT_ADMIN_ROLE\" was tried to be revoked.\n\t */\n\terror DefaultAdminError();\n\n\t/**\n\t * @dev Indicates that registry is not set.\n\t */\n\terror AccessRegistryNotSet();\n\n\t/**\n\t * @dev Indicates that the URI has already been set.\n\t * @param tokenId The id of the token.\n\t */\n\terror URIAlreadySet(uint256 tokenId);\n\n\t/**\n\t * @dev Indicates that the lengths of the arrays do not match.\n\t */\n\terror ArrayLengthMismatch();\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/interfaces/draft-IERC1822Upgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified\n * proxy whose upgrades are fully controlled by the current implementation.\n */\ninterface IERC1822ProxiableUpgradeable {\n    /**\n     * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation\n     * address.\n     *\n     * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks\n     * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this\n     * function revert if invoked through a proxy.\n     */\n    function proxiableUUID() external view returns (bytes32);\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/access/IAccessControlUpgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev External interface of AccessControl declared to support ERC165 detection.\n */\ninterface IAccessControlUpgradeable {\n    /**\n     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`\n     *\n     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite\n     * {RoleAdminChanged} not being emitted signaling this.\n     *\n     * _Available since v3.1._\n     */\n    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);\n\n    /**\n     * @dev Emitted when `account` is granted `role`.\n     *\n     * `sender` is the account that originated the contract call, an admin role\n     * bearer except when using {AccessControl-_setupRole}.\n     */\n    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);\n\n    /**\n     * @dev Emitted when `account` is revoked `role`.\n     *\n     * `sender` is the account that originated the contract call:\n     *   - if using `revokeRole`, it is the admin role bearer\n     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)\n     */\n    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);\n\n    /**\n     * @dev Returns `true` if `account` has been granted `role`.\n     */\n    function hasRole(bytes32 role, address account) external view returns (bool);\n\n    /**\n     * @dev Returns the admin role that controls `role`. See {grantRole} and\n     * {revokeRole}.\n     *\n     * To change a role's admin, use {AccessControl-_setRoleAdmin}.\n     */\n    function getRoleAdmin(bytes32 role) external view returns (bytes32);\n\n    /**\n     * @dev Grants `role` to `account`.\n     *\n     * If `account` had not been already granted `role`, emits a {RoleGranted}\n     * event.\n     *\n     * Requirements:\n     *\n     * - the caller must have ``role``'s admin role.\n     */\n    function grantRole(bytes32 role, address account) external;\n\n    /**\n     * @dev Revokes `role` from `account`.\n     *\n     * If `account` had been granted `role`, emits a {RoleRevoked} event.\n     *\n     * Requirements:\n     *\n     * - the caller must have ``role``'s admin role.\n     */\n    function revokeRole(bytes32 role, address account) external;\n\n    /**\n     * @dev Revokes `role` from the calling account.\n     *\n     * Roles are often managed via {grantRole} and {revokeRole}: this function's\n     * purpose is to provide a mechanism for accounts to lose their privileges\n     * if they are compromised (such as when a trusted device is misplaced).\n     *\n     * If the calling account had been granted `role`, emits a {RoleRevoked}\n     * event.\n     *\n     * Requirements:\n     *\n     * - the caller must be `account`.\n     */\n    function renounceRole(bytes32 role, address account) external;\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20MetadataUpgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC20Upgradeable.sol\";\n\n/**\n * @dev Interface for the optional metadata functions from the ERC20 standard.\n *\n * _Available since v4.1._\n */\ninterface IERC20MetadataUpgradeable is IERC20Upgradeable {\n    /**\n     * @dev Returns the name of the token.\n     */\n    function name() external view returns (string memory);\n\n    /**\n     * @dev Returns the symbol of the token.\n     */\n    function symbol() external view returns (string memory);\n\n    /**\n     * @dev Returns the decimals places of the token.\n     */\n    function decimals() external view returns (uint8);\n}\n"},{"file_path":"contracts/library/AccessRegistry/AccessRegistrySubscriptionUpgradeable.sol","source_code":"// SPDX-License-Identifier: AGPL-3.0-or-later\n// Copyright (C) 2024 Fireblocks <support@fireblocks.com>\n//\n// This program is free software: you can redistribute it and/or modify\n// it under the terms of the GNU Affero General Public License as published by\n// the Free Software Foundation, either version 3 of the License, or\n// (at your option) any later version.\n//\n// This program is distributed in the hope that it will be useful,\n// but WITHOUT ANY WARRANTY; without even the implied warranty of\n// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n// GNU Affero General Public License for more details.\n//\n// You should have received a copy of the GNU Affero General Public License\n// along with this program.  If not, see <https://www.gnu.org/licenses/>.\npragma solidity 0.8.20;\n\nimport {IERC165Upgradeable} from \"@openzeppelin/contracts-upgradeable/interfaces/IERC165Upgradeable.sol\";\nimport {Initializable} from \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\";\nimport {ContextUpgradeable} from \"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\";\nimport {IAccessRegistry} from \"./interface/IAccessRegistry.sol\";\nimport {LibErrors} from \"../Errors/LibErrors.sol\";\n\n/**\n * @title Access Registry Subscription Upgradeable\n * @author Fireblocks\n * @dev This abstract contract provides internal contract logic for subscribing to an Access Registry contract.\n */\nabstract contract AccessRegistrySubscriptionUpgradeable is Initializable, ContextUpgradeable {\n\t/// State\n\n\t/**\n\t * @notice This field is the address of the {AccessRegistry} contract.\n\t */\n\tIAccessRegistry public accessRegistry;\n\n\t/// Events\n\n\t/**\n\t * @notice This event is emitted when the {AccessRegistry} contract address is updated.\n\t * @dev This event is emitted by the {_updateAccessRegistry} function.\n\t *\n\t * @param caller The address of the account that updated the {AccessRegistry} contract address.\n\t * @param oldAccessRegistry The address of the old {AccessRegistry} contract.\n\t * @param newAccessRegistry The address of the new {AccessRegistry} contract.\n\t */\n\tevent AccessRegistryUpdated(\n\t\taddress indexed caller,\n\t\taddress indexed oldAccessRegistry,\n\t\taddress indexed newAccessRegistry\n\t);\n\n\t/// Functions\n\n\t/**\n\t * @notice This is an initializer function for the abstract contract.\n\t * @dev Standard Initializable contract behavior.\n\t *\n\t * Calling Conditions:\n\t *\n\t * - Can only be invoked by functions with the {initializer} or {reinitializer} modifiers.\n\t * @param _accessRegistry The address of the contract that implements {IAccessRegistry}.\n\t */\n\tfunction __AccessRegistrySubscription_init(address _accessRegistry) internal onlyInitializing {\n\t\t_accessRegistryUpdate(_accessRegistry);\n\t}\n\n\t/**\n\t * @notice This is a function used to update `accessRegistry` field.\n\t * @dev This function emits a {AccessRegistryUpdated} event as part of {_accessRegistryUpdate}\n\t * when the access registry address is successfully updated.\n\t *\n\t * @param _accessRegistry The address of the contract that implements {IAccessRegistry}.\n\t */\n\tfunction accessRegistryUpdate(address _accessRegistry) external virtual {\n\t\t_authorizeAccessRegistryUpdate();\n\t\t_accessRegistryUpdate(_accessRegistry);\n\t}\n\n\t/**\n\t * @notice This function updates the address of the implementation of {IAccessRegistry} contract by updating the\n\t * `accessRegistry` field.\n\t *\n\t * @dev Calling Conditions:\n\t *\n\t * - `_accessRegistry` must implement IAccessRegistry interface.\n\t *\n\t * @param _accessRegistry The address of the contract that implements {IAccessRegistry}.\n\t */\n\tfunction _accessRegistryUpdate(address _accessRegistry) internal virtual {\n\t\tif (\n\t\t\t_accessRegistry != address(0) &&\n\t\t\t(!IERC165Upgradeable(_accessRegistry).supportsInterface(type(IAccessRegistry).interfaceId))\n\t\t) {\n\t\t\trevert LibErrors.InvalidImplementation();\n\t\t}\n\n\t\temit AccessRegistryUpdated(_msgSender(), address(accessRegistry), _accessRegistry);\n\t\taccessRegistry = IAccessRegistry(_accessRegistry);\n\t}\n\n\t/**\n\t * @notice This function is designed to be overridden in inheriting contracts.\n\t * @dev Override this function to implement RBAC control.\n\t */\n\tfunction _authorizeAccessRegistryUpdate() internal virtual;\n\n\t/* solhint-enable func-name-mixedcase */\n\t/**\n\t * @dev This empty reserved space is put in place to allow future versions to add new\n\t * variables without shifting down storage in the inheritance chain.\n\t * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n\t */\n\t//slither-disable-next-line naming-convention\n\tuint256[49] private __gap;\n}\n"},{"file_path":"contracts/library/Utils/RoleAccessUpgradeable.sol","source_code":"// SPDX-License-Identifier: AGPL-3.0-or-later\n// Copyright (C) 2024 Fireblocks <support@fireblocks.com>\n//\n// This program is free software: you can redistribute it and/or modify\n// it under the terms of the GNU Affero General Public License as published by\n// the Free Software Foundation, either version 3 of the License, or\n// (at your option) any later version.\n//\n// This program is distributed in the hope that it will be useful,\n// but WITHOUT ANY WARRANTY; without even the implied warranty of\n// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n// GNU Affero General Public License for more details.\n//\n// You should have received a copy of the GNU Affero General Public License\n// along with this program.  If not, see <https://www.gnu.org/licenses/>.\npragma solidity 0.8.20;\n\nimport {AccessControlUpgradeable} from \"@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol\";\nimport {Initializable} from \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\";\nimport {ContextUpgradeable} from \"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\";\n\nimport {LibErrors} from \"../Errors/LibErrors.sol\";\n\n/**\n * @title Role Access Upgradeable\n * @author Fireblocks\n * @dev This abstract contract provides internal contract logic for managing access control roles.\n */\nabstract contract RoleAccessUpgradeable is Initializable, AccessControlUpgradeable {\n\t/// Functions\n\n\t/**\n\t * @notice This is an initializer function for the abstract contract.\n\t * @dev Standard Initializable contract behavior.\n\t *\n\t * Calling Conditions:\n\t *\n\t * - Can only be invoked by functions with the {initializer} or {reinitializer} modifiers.\n\t */\n\tfunction __RoleAccess_init() internal onlyInitializing {\n\t\t__AccessControl_init();\n\t}\n\n\t/**\n\t * @notice This function revokes an Access Control role from an account\n\t * @dev Calling Conditions:\n\t *\n\t * - Caller must be the role admin of the `role`.\n\t * - Non-zero address `account`.\n\t *\n\t * This function emits a {RoleRevoked} event as part of {AccessControlUpgradeable._revokeRole}.\n\t *\n\t * @param role The role that will be revoked.\n\t * @param account The address from which role is revoked\n\t */\n\tfunction revokeRole(bytes32 role, address account) public virtual override {\n\t\tif (role == DEFAULT_ADMIN_ROLE && account == _msgSender()) {\n\t\t\trevert LibErrors.DefaultAdminError();\n\t\t}\n\n\t\t_authorizeRoleAccess();\n\t\tsuper.revokeRole(role, account); // In {AccessControlUpgradeable}\n\t}\n\n\t/**\n\t * @notice  This function renounces an Access Control role from an account, except for the \"DEFAULT_ADMIN_ROLE\".\n\t *\n\t * @dev Only the account itself can renounce its own roles, and not any other account.\n\t * Calling Conditions:\n\t * - Cannot renounce DEFAULT_ADMIN_ROLE.\n\t * - 'account' is the caller of the transaction.\n\t */\n\tfunction renounceRole(bytes32 role, address account) public virtual override {\n\t\tif (role == DEFAULT_ADMIN_ROLE) {\n\t\t\trevert LibErrors.DefaultAdminError();\n\t\t}\n\t\t_authorizeRoleAccess();\n\t\tsuper.renounceRole(role, account); // In {AccessControlUpgradeable}\n\t}\n\n\t/**\n\t * @notice This function grants an Access Control role to an account\n\t * @dev Calling Conditions:\n\t *\n\t * - Caller must be the role admin of the `role`.\n\t * - Non-zero address `account`.\n\t *\n\t * This function emits a {RoleGranted} event as part of {AccessControlUpgradeable._grantRole}.\n\t *\n\t * @param role The role that will be granted.\n\t * @param account The address to which role is granted\n\t */\n\tfunction grantRole(bytes32 role, address account) public virtual override {\n\t\t_authorizeRoleAccess();\n\t\tsuper.grantRole(role, account); // In {AccessControlUpgradeable}\n\t}\n\n\t/**\n\t * @notice This function is designed to be overridden in inheriting contracts.\n\t * @dev Override this function to implement RBAC control.\n\t */\n\tfunction _authorizeRoleAccess() internal virtual;\n\n\t/* solhint-enable func-name-mixedcase */\n\t/**\n\t * @dev This empty reserved space is put in place to allow future versions to add new\n\t * variables without shifting down storage in the inheritance chain.\n\t * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n\t */\n\t//slither-disable-next-line naming-convention\n\tuint256[50] private __gap;\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../StringsUpgradeable.sol\";\n\n/**\n * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\n *\n * These functions can be used to verify that a message was signed by the holder\n * of the private keys of a given address.\n */\nlibrary ECDSAUpgradeable {\n    enum RecoverError {\n        NoError,\n        InvalidSignature,\n        InvalidSignatureLength,\n        InvalidSignatureS,\n        InvalidSignatureV // Deprecated in v4.8\n    }\n\n    function _throwError(RecoverError error) private pure {\n        if (error == RecoverError.NoError) {\n            return; // no error: do nothing\n        } else if (error == RecoverError.InvalidSignature) {\n            revert(\"ECDSA: invalid signature\");\n        } else if (error == RecoverError.InvalidSignatureLength) {\n            revert(\"ECDSA: invalid signature length\");\n        } else if (error == RecoverError.InvalidSignatureS) {\n            revert(\"ECDSA: invalid signature 's' value\");\n        }\n    }\n\n    /**\n     * @dev Returns the address that signed a hashed message (`hash`) with\n     * `signature` or error string. This address can then be used for verification purposes.\n     *\n     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\n     * this function rejects them by requiring the `s` value to be in the lower\n     * half order, and the `v` value to be either 27 or 28.\n     *\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n     * verification to be secure: it is possible to craft signatures that\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n     * this is by receiving a hash of the original message (which may otherwise\n     * be too long), and then calling {toEthSignedMessageHash} on it.\n     *\n     * Documentation for signature generation:\n     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\n     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]\n     *\n     * _Available since v4.3._\n     */\n    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {\n        if (signature.length == 65) {\n            bytes32 r;\n            bytes32 s;\n            uint8 v;\n            // ecrecover takes the signature parameters, and the only way to get them\n            // currently is to use assembly.\n            /// @solidity memory-safe-assembly\n            assembly {\n                r := mload(add(signature, 0x20))\n                s := mload(add(signature, 0x40))\n                v := byte(0, mload(add(signature, 0x60)))\n            }\n            return tryRecover(hash, v, r, s);\n        } else {\n            return (address(0), RecoverError.InvalidSignatureLength);\n        }\n    }\n\n    /**\n     * @dev Returns the address that signed a hashed message (`hash`) with\n     * `signature`. This address can then be used for verification purposes.\n     *\n     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\n     * this function rejects them by requiring the `s` value to be in the lower\n     * half order, and the `v` value to be either 27 or 28.\n     *\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n     * verification to be secure: it is possible to craft signatures that\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n     * this is by receiving a hash of the original message (which may otherwise\n     * be too long), and then calling {toEthSignedMessageHash} on it.\n     */\n    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\n        (address recovered, RecoverError error) = tryRecover(hash, signature);\n        _throwError(error);\n        return recovered;\n    }\n\n    /**\n     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\n     *\n     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]\n     *\n     * _Available since v4.3._\n     */\n    function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {\n        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);\n        uint8 v = uint8((uint256(vs) >> 255) + 27);\n        return tryRecover(hash, v, r, s);\n    }\n\n    /**\n     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\n     *\n     * _Available since v4.2._\n     */\n    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {\n        (address recovered, RecoverError error) = tryRecover(hash, r, vs);\n        _throwError(error);\n        return recovered;\n    }\n\n    /**\n     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n     * `r` and `s` signature fields separately.\n     *\n     * _Available since v4.3._\n     */\n    function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {\n        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature\n        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines\n        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most\n        // signatures from current libraries generate a unique signature with an s-value in the lower half order.\n        //\n        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value\n        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or\n        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept\n        // these malleable signatures as well.\n        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {\n            return (address(0), RecoverError.InvalidSignatureS);\n        }\n\n        // If the signature is valid (and not malleable), return the signer address\n        address signer = ecrecover(hash, v, r, s);\n        if (signer == address(0)) {\n            return (address(0), RecoverError.InvalidSignature);\n        }\n\n        return (signer, RecoverError.NoError);\n    }\n\n    /**\n     * @dev Overload of {ECDSA-recover} that receives the `v`,\n     * `r` and `s` signature fields separately.\n     */\n    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {\n        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);\n        _throwError(error);\n        return recovered;\n    }\n\n    /**\n     * @dev Returns an Ethereum Signed Message, created from a `hash`. This\n     * produces hash corresponding to the one signed with the\n     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\n     * JSON-RPC method as part of EIP-191.\n     *\n     * See {recover}.\n     */\n    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) {\n        // 32 is the length in bytes of hash,\n        // enforced by the type signature above\n        /// @solidity memory-safe-assembly\n        assembly {\n            mstore(0x00, \"\\x19Ethereum Signed Message:\\n32\")\n            mstore(0x1c, hash)\n            message := keccak256(0x00, 0x3c)\n        }\n    }\n\n    /**\n     * @dev Returns an Ethereum Signed Message, created from `s`. This\n     * produces hash corresponding to the one signed with the\n     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\n     * JSON-RPC method as part of EIP-191.\n     *\n     * See {recover}.\n     */\n    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {\n        return keccak256(abi.encodePacked(\"\\x19Ethereum Signed Message:\\n\", StringsUpgradeable.toString(s.length), s));\n    }\n\n    /**\n     * @dev Returns an Ethereum Signed Typed Data, created from a\n     * `domainSeparator` and a `structHash`. This produces hash corresponding\n     * to the one signed with the\n     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]\n     * JSON-RPC method as part of EIP-712.\n     *\n     * See {recover}.\n     */\n    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) {\n        /// @solidity memory-safe-assembly\n        assembly {\n            let ptr := mload(0x40)\n            mstore(ptr, \"\\x19\\x01\")\n            mstore(add(ptr, 0x02), domainSeparator)\n            mstore(add(ptr, 0x22), structHash)\n            data := keccak256(ptr, 0x42)\n        }\n    }\n\n    /**\n     * @dev Returns an Ethereum Signed Data with intended validator, created from a\n     * `validator` and `data` according to the version 0 of EIP-191.\n     *\n     * See {recover}.\n     */\n    function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {\n        return keccak256(abi.encodePacked(\"\\x19\\x00\", validator, data));\n    }\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/interfaces/IERC165Upgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/introspection/IERC165Upgradeable.sol\";\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/utils/CountersUpgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @title Counters\n * @author Matt Condon (@shrugs)\n * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number\n * of elements in a mapping, issuing ERC721 ids, or counting request ids.\n *\n * Include with `using Counters for Counters.Counter;`\n */\nlibrary CountersUpgradeable {\n    struct Counter {\n        // This variable should never be directly accessed by users of the library: interactions must be restricted to\n        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add\n        // this feature: see https://github.com/ethereum/solidity/issues/4637\n        uint256 _value; // default: 0\n    }\n\n    function current(Counter storage counter) internal view returns (uint256) {\n        return counter._value;\n    }\n\n    function increment(Counter storage counter) internal {\n        unchecked {\n            counter._value += 1;\n        }\n    }\n\n    function decrement(Counter storage counter) internal {\n        uint256 value = counter._value;\n        require(value > 0, \"Counter: decrement overflow\");\n        unchecked {\n            counter._value = value - 1;\n        }\n    }\n\n    function reset(Counter storage counter) internal {\n        counter._value = 0;\n    }\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/ContextUpgradeable.sol\";\nimport \"../proxy/utils/Initializable.sol\";\n\n/**\n * @dev Contract module which allows children to implement an emergency stop\n * mechanism that can be triggered by an authorized account.\n *\n * This module is used through inheritance. It will make available the\n * modifiers `whenNotPaused` and `whenPaused`, which can be applied to\n * the functions of your contract. Note that they will not be pausable by\n * simply including this module, only once the modifiers are put in place.\n */\nabstract contract PausableUpgradeable is Initializable, ContextUpgradeable {\n    /**\n     * @dev Emitted when the pause is triggered by `account`.\n     */\n    event Paused(address account);\n\n    /**\n     * @dev Emitted when the pause is lifted by `account`.\n     */\n    event Unpaused(address account);\n\n    bool private _paused;\n\n    /**\n     * @dev Initializes the contract in unpaused state.\n     */\n    function __Pausable_init() internal onlyInitializing {\n        __Pausable_init_unchained();\n    }\n\n    function __Pausable_init_unchained() internal onlyInitializing {\n        _paused = false;\n    }\n\n    /**\n     * @dev Modifier to make a function callable only when the contract is not paused.\n     *\n     * Requirements:\n     *\n     * - The contract must not be paused.\n     */\n    modifier whenNotPaused() {\n        _requireNotPaused();\n        _;\n    }\n\n    /**\n     * @dev Modifier to make a function callable only when the contract is paused.\n     *\n     * Requirements:\n     *\n     * - The contract must be paused.\n     */\n    modifier whenPaused() {\n        _requirePaused();\n        _;\n    }\n\n    /**\n     * @dev Returns true if the contract is paused, and false otherwise.\n     */\n    function paused() public view virtual returns (bool) {\n        return _paused;\n    }\n\n    /**\n     * @dev Throws if the contract is paused.\n     */\n    function _requireNotPaused() internal view virtual {\n        require(!paused(), \"Pausable: paused\");\n    }\n\n    /**\n     * @dev Throws if the contract is not paused.\n     */\n    function _requirePaused() internal view virtual {\n        require(paused(), \"Pausable: not paused\");\n    }\n\n    /**\n     * @dev Triggers stopped state.\n     *\n     * Requirements:\n     *\n     * - The contract must not be paused.\n     */\n    function _pause() internal virtual whenNotPaused {\n        _paused = true;\n        emit Paused(_msgSender());\n    }\n\n    /**\n     * @dev Returns to normal state.\n     *\n     * Requirements:\n     *\n     * - The contract must be paused.\n     */\n    function _unpause() internal virtual whenPaused {\n        _paused = false;\n        emit Unpaused(_msgSender());\n    }\n\n    /**\n     * @dev This empty reserved space is put in place to allow future versions to add new\n     * variables without shifting down storage in the inheritance chain.\n     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n     */\n    uint256[49] private __gap;\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/proxy/beacon/IBeaconUpgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev This is the interface that {BeaconProxy} expects of its beacon.\n */\ninterface IBeaconUpgradeable {\n    /**\n     * @dev Must return an address that can be used as a delegate call target.\n     *\n     * {BeaconProxy} will check that this address is a contract.\n     */\n    function implementation() external view returns (address);\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\n\npragma solidity ^0.8.0;\nimport \"../proxy/utils/Initializable.sol\";\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract ContextUpgradeable is Initializable {\n    function __Context_init() internal onlyInitializing {\n    }\n\n    function __Context_init_unchained() internal onlyInitializing {\n    }\n    function _msgSender() internal view virtual returns (address) {\n        return msg.sender;\n    }\n\n    function _msgData() internal view virtual returns (bytes calldata) {\n        return msg.data;\n    }\n\n    /**\n     * @dev This empty reserved space is put in place to allow future versions to add new\n     * variables without shifting down storage in the inheritance chain.\n     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n     */\n    uint256[50] private __gap;\n}\n"},{"file_path":"contracts/library/Utils/SalvageUpgradeable.sol","source_code":"// SPDX-License-Identifier: AGPL-3.0-or-later\n// Copyright (C) 2024 Fireblocks <support@fireblocks.com>\n//\n// This program is free software: you can redistribute it and/or modify\n// it under the terms of the GNU Affero General Public License as published by\n// the Free Software Foundation, either version 3 of the License, or\n// (at your option) any later version.\n//\n// This program is distributed in the hope that it will be useful,\n// but WITHOUT ANY WARRANTY; without even the implied warranty of\n// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n// GNU Affero General Public License for more details.\n//\n// You should have received a copy of the GNU Affero General Public License\n// along with this program.  If not, see <https://www.gnu.org/licenses/>.\npragma solidity 0.8.20;\n\nimport {IERC20Upgradeable} from \"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol\";\nimport {SafeERC20Upgradeable} from \"@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol\";\nimport {Initializable} from \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\";\nimport {ContextUpgradeable} from \"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\";\n\nimport {LibErrors} from \"../Errors/LibErrors.sol\";\n\n/**\n * @title Salvage Upgradeable\n * @author Fireblocks\n * @dev This abstract contract provides internal contract logic for rescuing tokens and ETH.\n */\nabstract contract SalvageUpgradeable is Initializable, ContextUpgradeable {\n\tusing SafeERC20Upgradeable for IERC20Upgradeable;\n\n\t/// Events\n\t/**\n\t * @notice This event is logged when ERC20 tokens are salvaged.\n\t *\n\t * @param caller The (indexed) address of the entity that triggered the salvage.\n\t * @param token The (indexed) address of the ERC20 token which was salvaged.\n\t * @param amount The (indexed) amount of tokens salvaged.\n\t */\n\tevent TokenSalvaged(address indexed caller, address indexed token, uint256 indexed amount);\n\n\t/**\n\t * @notice This event is logged when ETH is salvaged.\n\t *\n\t * @param caller The (indexed) address of the entity that triggered the salvage.\n\t * @param amount The (indexed) amount of ETH salvaged.\n\t */\n\tevent GasTokenSalvaged(address indexed caller, uint256 indexed amount);\n\n\t/// Functions\n\n\t/**\n\t * @notice This is an initializer function for the abstract contract.\n\t * @dev Standard Initializable contract behavior.\n\t *\n\t * Calling Conditions:\n\t *\n\t * - Can only be invoked by functions with the {initializer} or {reinitializer} modifiers.\n\t */\n\t/* solhint-disable func-name-mixedcase */\n\tfunction __Salvage_init() internal onlyInitializing {}\n\n\t/**\n\t * @notice A function used to salvage ERC20 tokens sent to the contract using this abstract contract.\n\t * @dev Calling Conditions:\n\t *\n\t * - `amount` is greater than 0.\n\t *\n\t * This function emits a {TokenSalvaged} event, indicating that funds were salvaged.\n\t *\n\t * @param token The ERC20 asset which is to be salvaged.\n\t * @param amount The amount to be salvaged.\n\t */\n\tfunction salvageERC20(IERC20Upgradeable token, uint256 amount) external virtual {\n\t\tif (amount == 0) {\n\t\t\trevert LibErrors.ZeroAmount();\n\t\t}\n\t\t_authorizeSalvageERC20();\n\t\temit TokenSalvaged(_msgSender(), address(token), amount);\n\t\ttoken.safeTransfer(_msgSender(), amount);\n\t}\n\n\t/**\n\t * @notice A function used to salvage ETH sent to the contract using this abstract contract.\n\t * @dev Calling Conditions:\n\t *\n\t * - `amount` is greater than 0.\n\t *\n\t * This function emits a {GasTokenSalvaged} event, indicating that funds were salvaged.\n\t *\n\t * @param amount The amount to be salvaged.\n\t */\n\tfunction salvageGas(uint256 amount) external virtual {\n\t\tif (amount == 0) {\n\t\t\trevert LibErrors.ZeroAmount();\n\t\t}\n\t\t_authorizeSalvageGas();\n\t\temit GasTokenSalvaged(_msgSender(), amount);\n\t\t(bool succeed, ) = _msgSender().call{value: amount}(\"\");\n\t\tif (!succeed) {\n\t\t\trevert LibErrors.SalvageGasFailed();\n\t\t}\n\t}\n\n\t/**\n\t * @notice This function is designed to be overridden in inheriting contracts.\n\t * @dev Override this function to implement RBAC control.\n\t */\n\tfunction _authorizeSalvageERC20() internal virtual;\n\n\t/**\n\t * @notice This function is designed to be overridden in inheriting contracts.\n\t * @dev Override this function to implement RBAC control.\n\t */\n\tfunction _authorizeSalvageGas() internal virtual;\n\n\t/* solhint-enable func-name-mixedcase */\n\t/**\n\t * @dev This empty reserved space is put in place to allow future versions to add new\n\t * variables without shifting down storage in the inheritance chain.\n\t * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n\t */\n\t//slither-disable-next-line naming-convention\n\tuint256[50] private __gap;\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20PermitUpgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\n *\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\n * need to send a transaction, and thus is not required to hold Ether at all.\n */\ninterface IERC20PermitUpgradeable {\n    /**\n     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\n     * given ``owner``'s signed approval.\n     *\n     * IMPORTANT: The same issues {IERC20-approve} has related to transaction\n     * ordering also apply here.\n     *\n     * Emits an {Approval} event.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     * - `deadline` must be a timestamp in the future.\n     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\n     * over the EIP712-formatted function arguments.\n     * - the signature must use ``owner``'s current nonce (see {nonces}).\n     *\n     * For more information on the signature format, see the\n     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\n     * section].\n     */\n    function permit(\n        address owner,\n        address spender,\n        uint256 value,\n        uint256 deadline,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) external;\n\n    /**\n     * @dev Returns the current nonce for `owner`. This value must be\n     * included whenever a signature is generated for {permit}.\n     *\n     * Every successful call to {permit} increases ``owner``'s nonce by one. This\n     * prevents a signature from being used multiple times.\n     */\n    function nonces(address owner) external view returns (uint256);\n\n    /**\n     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\n     */\n    // solhint-disable-next-line func-name-mixedcase\n    function DOMAIN_SEPARATOR() external view returns (bytes32);\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20Upgradeable {\n    /**\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\n     * another (`to`).\n     *\n     * Note that `value` may be zero.\n     */\n    event Transfer(address indexed from, address indexed to, uint256 value);\n\n    /**\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n     * a call to {approve}. `value` is the new allowance.\n     */\n    event Approval(address indexed owner, address indexed spender, uint256 value);\n\n    /**\n     * @dev Returns the amount of tokens in existence.\n     */\n    function totalSupply() external view returns (uint256);\n\n    /**\n     * @dev Returns the amount of tokens owned by `account`.\n     */\n    function balanceOf(address account) external view returns (uint256);\n\n    /**\n     * @dev Moves `amount` tokens from the caller's account to `to`.\n     *\n     * Returns a boolean value indicating whether the operation succeeded.\n     *\n     * Emits a {Transfer} event.\n     */\n    function transfer(address to, uint256 amount) external returns (bool);\n\n    /**\n     * @dev Returns the remaining number of tokens that `spender` will be\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\n     * zero by default.\n     *\n     * This value changes when {approve} or {transferFrom} are called.\n     */\n    function allowance(address owner, address spender) external view returns (uint256);\n\n    /**\n     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n     *\n     * Returns a boolean value indicating whether the operation succeeded.\n     *\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\n     * that someone may use both the old and the new allowance by unfortunate\n     * transaction ordering. One possible solution to mitigate this race\n     * condition is to first reduce the spender's allowance to 0 and set the\n     * desired value afterwards:\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n     *\n     * Emits an {Approval} event.\n     */\n    function approve(address spender, uint256 amount) external returns (bool);\n\n    /**\n     * @dev Moves `amount` tokens from `from` to `to` using the\n     * allowance mechanism. `amount` is then deducted from the caller's\n     * allowance.\n     *\n     * Returns a boolean value indicating whether the operation succeeded.\n     *\n     * Emits a {Transfer} event.\n     */\n    function transferFrom(address from, address to, uint256 amount) external returns (bool);\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\n\npragma solidity ^0.8.2;\n\nimport \"../../utils/AddressUpgradeable.sol\";\n\n/**\n * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\n * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\n * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\n * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\n *\n * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\n * reused. This mechanism prevents re-execution of each \"step\" but allows the creation of new initialization steps in\n * case an upgrade adds a module that needs to be initialized.\n *\n * For example:\n *\n * [.hljs-theme-light.nopadding]\n * ```solidity\n * contract MyToken is ERC20Upgradeable {\n *     function initialize() initializer public {\n *         __ERC20_init(\"MyToken\", \"MTK\");\n *     }\n * }\n *\n * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\n *     function initializeV2() reinitializer(2) public {\n *         __ERC20Permit_init(\"MyToken\");\n *     }\n * }\n * ```\n *\n * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\n * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\n *\n * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\n * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\n *\n * [CAUTION]\n * ====\n * Avoid leaving a contract uninitialized.\n *\n * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\n * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\n * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\n *\n * [.hljs-theme-light.nopadding]\n * ```\n * /// @custom:oz-upgrades-unsafe-allow constructor\n * constructor() {\n *     _disableInitializers();\n * }\n * ```\n * ====\n */\nabstract contract Initializable {\n    /**\n     * @dev Indicates that the contract has been initialized.\n     * @custom:oz-retyped-from bool\n     */\n    uint8 private _initialized;\n\n    /**\n     * @dev Indicates that the contract is in the process of being initialized.\n     */\n    bool private _initializing;\n\n    /**\n     * @dev Triggered when the contract has been initialized or reinitialized.\n     */\n    event Initialized(uint8 version);\n\n    /**\n     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\n     * `onlyInitializing` functions can be used to initialize parent contracts.\n     *\n     * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a\n     * constructor.\n     *\n     * Emits an {Initialized} event.\n     */\n    modifier initializer() {\n        bool isTopLevelCall = !_initializing;\n        require(\n            (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\n            \"Initializable: contract is already initialized\"\n        );\n        _initialized = 1;\n        if (isTopLevelCall) {\n            _initializing = true;\n        }\n        _;\n        if (isTopLevelCall) {\n            _initializing = false;\n            emit Initialized(1);\n        }\n    }\n\n    /**\n     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\n     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\n     * used to initialize parent contracts.\n     *\n     * A reinitializer may be used after the original initialization step. This is essential to configure modules that\n     * are added through upgrades and that require initialization.\n     *\n     * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\n     * cannot be nested. If one is invoked in the context of another, execution will revert.\n     *\n     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\n     * a contract, executing them in the right order is up to the developer or operator.\n     *\n     * WARNING: setting the version to 255 will prevent any future reinitialization.\n     *\n     * Emits an {Initialized} event.\n     */\n    modifier reinitializer(uint8 version) {\n        require(!_initializing && _initialized < version, \"Initializable: contract is already initialized\");\n        _initialized = version;\n        _initializing = true;\n        _;\n        _initializing = false;\n        emit Initialized(version);\n    }\n\n    /**\n     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\n     * {initializer} and {reinitializer} modifiers, directly or indirectly.\n     */\n    modifier onlyInitializing() {\n        require(_initializing, \"Initializable: contract is not initializing\");\n        _;\n    }\n\n    /**\n     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\n     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\n     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called\n     * through proxies.\n     *\n     * Emits an {Initialized} event the first time it is successfully executed.\n     */\n    function _disableInitializers() internal virtual {\n        require(!_initializing, \"Initializable: contract is initializing\");\n        if (_initialized != type(uint8).max) {\n            _initialized = type(uint8).max;\n            emit Initialized(type(uint8).max);\n        }\n    }\n\n    /**\n     * @dev Returns the highest version that has been initialized. See {reinitializer}.\n     */\n    function _getInitializedVersion() internal view returns (uint8) {\n        return _initialized;\n    }\n\n    /**\n     * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.\n     */\n    function _isInitializing() internal view returns (bool) {\n        return _initializing;\n    }\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/EIP712.sol)\n\npragma solidity ^0.8.8;\n\nimport \"./ECDSAUpgradeable.sol\";\nimport \"../../interfaces/IERC5267Upgradeable.sol\";\nimport \"../../proxy/utils/Initializable.sol\";\n\n/**\n * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.\n *\n * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,\n * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding\n * they need in their contracts using a combination of `abi.encode` and `keccak256`.\n *\n * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding\n * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA\n * ({_hashTypedDataV4}).\n *\n * The implementation of the domain separator was designed to be as efficient as possible while still properly updating\n * the chain id to protect against replay attacks on an eventual fork of the chain.\n *\n * NOTE: This contract implements the version of the encoding known as \"v4\", as implemented by the JSON RPC method\n * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].\n *\n * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain\n * separator of the implementation contract. This will cause the `_domainSeparatorV4` function to always rebuild the\n * separator from the immutable values, which is cheaper than accessing a cached version in cold storage.\n *\n * _Available since v3.4._\n *\n * @custom:storage-size 52\n */\nabstract contract EIP712Upgradeable is Initializable, IERC5267Upgradeable {\n    bytes32 private constant _TYPE_HASH =\n        keccak256(\"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\");\n\n    /// @custom:oz-renamed-from _HASHED_NAME\n    bytes32 private _hashedName;\n    /// @custom:oz-renamed-from _HASHED_VERSION\n    bytes32 private _hashedVersion;\n\n    string private _name;\n    string private _version;\n\n    /**\n     * @dev Initializes the domain separator and parameter caches.\n     *\n     * The meaning of `name` and `version` is specified in\n     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:\n     *\n     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.\n     * - `version`: the current major version of the signing domain.\n     *\n     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart\n     * contract upgrade].\n     */\n    function __EIP712_init(string memory name, string memory version) internal onlyInitializing {\n        __EIP712_init_unchained(name, version);\n    }\n\n    function __EIP712_init_unchained(string memory name, string memory version) internal onlyInitializing {\n        _name = name;\n        _version = version;\n\n        // Reset prior values in storage if upgrading\n        _hashedName = 0;\n        _hashedVersion = 0;\n    }\n\n    /**\n     * @dev Returns the domain separator for the current chain.\n     */\n    function _domainSeparatorV4() internal view returns (bytes32) {\n        return _buildDomainSeparator();\n    }\n\n    function _buildDomainSeparator() private view returns (bytes32) {\n        return keccak256(abi.encode(_TYPE_HASH, _EIP712NameHash(), _EIP712VersionHash(), block.chainid, address(this)));\n    }\n\n    /**\n     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this\n     * function returns the hash of the fully encoded EIP712 message for this domain.\n     *\n     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:\n     *\n     * ```solidity\n     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(\n     *     keccak256(\"Mail(address to,string contents)\"),\n     *     mailTo,\n     *     keccak256(bytes(mailContents))\n     * )));\n     * address signer = ECDSA.recover(digest, signature);\n     * ```\n     */\n    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {\n        return ECDSAUpgradeable.toTypedDataHash(_domainSeparatorV4(), structHash);\n    }\n\n    /**\n     * @dev See {EIP-5267}.\n     *\n     * _Available since v4.9._\n     */\n    function eip712Domain()\n        public\n        view\n        virtual\n        override\n        returns (\n            bytes1 fields,\n            string memory name,\n            string memory version,\n            uint256 chainId,\n            address verifyingContract,\n            bytes32 salt,\n            uint256[] memory extensions\n        )\n    {\n        // If the hashed name and version in storage are non-zero, the contract hasn't been properly initialized\n        // and the EIP712 domain is not reliable, as it will be missing name and version.\n        require(_hashedName == 0 && _hashedVersion == 0, \"EIP712: Uninitialized\");\n\n        return (\n            hex\"0f\", // 01111\n            _EIP712Name(),\n            _EIP712Version(),\n            block.chainid,\n            address(this),\n            bytes32(0),\n            new uint256[](0)\n        );\n    }\n\n    /**\n     * @dev The name parameter for the EIP712 domain.\n     *\n     * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs\n     * are a concern.\n     */\n    function _EIP712Name() internal virtual view returns (string memory) {\n        return _name;\n    }\n\n    /**\n     * @dev The version parameter for the EIP712 domain.\n     *\n     * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs\n     * are a concern.\n     */\n    function _EIP712Version() internal virtual view returns (string memory) {\n        return _version;\n    }\n\n    /**\n     * @dev The hash of the name parameter for the EIP712 domain.\n     *\n     * NOTE: In previous versions this function was virtual. In this version you should override `_EIP712Name` instead.\n     */\n    function _EIP712NameHash() internal view returns (bytes32) {\n        string memory name = _EIP712Name();\n        if (bytes(name).length > 0) {\n            return keccak256(bytes(name));\n        } else {\n            // If the name is empty, the contract may have been upgraded without initializing the new storage.\n            // We return the name hash in storage if non-zero, otherwise we assume the name is empty by design.\n            bytes32 hashedName = _hashedName;\n            if (hashedName != 0) {\n                return hashedName;\n            } else {\n                return keccak256(\"\");\n            }\n        }\n    }\n\n    /**\n     * @dev The hash of the version parameter for the EIP712 domain.\n     *\n     * NOTE: In previous versions this function was virtual. In this version you should override `_EIP712Version` instead.\n     */\n    function _EIP712VersionHash() internal view returns (bytes32) {\n        string memory version = _EIP712Version();\n        if (bytes(version).length > 0) {\n            return keccak256(bytes(version));\n        } else {\n            // If the version is empty, the contract may have been upgraded without initializing the new storage.\n            // We return the version hash in storage if non-zero, otherwise we assume the version is empty by design.\n            bytes32 hashedVersion = _hashedVersion;\n            if (hashedVersion != 0) {\n                return hashedVersion;\n            } else {\n                return keccak256(\"\");\n            }\n        }\n    }\n\n    /**\n     * @dev This empty reserved space is put in place to allow future versions to add new\n     * variables without shifting down storage in the inheritance chain.\n     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n     */\n    uint256[48] private __gap;\n}\n"},{"file_path":"contracts/library/AccessRegistry/interface/IAccessRegistry.sol","source_code":"// SPDX-License-Identifier: AGPL-3.0-or-later\n// Copyright (C) 2024 Fireblocks <support@fireblocks.com>\n//\n// This program is free software: you can redistribute it and/or modify\n// it under the terms of the GNU Affero General Public License as published by\n// the Free Software Foundation, either version 3 of the License, or\n// (at your option) any later version.\n//\n// This program is distributed in the hope that it will be useful,\n// but WITHOUT ANY WARRANTY; without even the implied warranty of\n// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n// GNU Affero General Public License for more details.\n//\n// You should have received a copy of the GNU Affero General Public License\n// along with this program.  If not, see <https://www.gnu.org/licenses/>.\npragma solidity 0.8.20;\n\n/**\n * @title Access Registry Interface\n * @author Fireblocks\n * @notice Access Registry Interface serves as a generalized interface for interacting with the Access Registry.\n *\n * @dev Interface for the Access Registry features.\n */\ninterface IAccessRegistry {\n\t/**\n\t * @notice This function is used to check if the account has necessary permissions to access the system.\n\t * @param account The account to be checked.\n\t * @param caller The account calling the function requiring an access check.\n\t * @param data The data associated with the function call\n\t * @return true if the account is allowed to access the system (false otherwise).\n\t */\n\tfunction hasAccess(address account, address caller, bytes calldata data) external view returns (bool);\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/UUPSUpgradeable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../../interfaces/draft-IERC1822Upgradeable.sol\";\nimport \"../ERC1967/ERC1967UpgradeUpgradeable.sol\";\nimport \"./Initializable.sol\";\n\n/**\n * @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an\n * {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy.\n *\n * A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is\n * reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing\n * `UUPSUpgradeable` with a custom implementation of upgrades.\n *\n * The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.\n *\n * _Available since v4.1._\n */\nabstract contract UUPSUpgradeable is Initializable, IERC1822ProxiableUpgradeable, ERC1967UpgradeUpgradeable {\n    function __UUPSUpgradeable_init() internal onlyInitializing {\n    }\n\n    function __UUPSUpgradeable_init_unchained() internal onlyInitializing {\n    }\n    /// @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment\n    address private immutable __self = address(this);\n\n    /**\n     * @dev Check that the execution is being performed through a delegatecall call and that the execution context is\n     * a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case\n     * for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a\n     * function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to\n     * fail.\n     */\n    modifier onlyProxy() {\n        require(address(this) != __self, \"Function must be called through delegatecall\");\n        require(_getImplementation() == __self, \"Function must be called through active proxy\");\n        _;\n    }\n\n    /**\n     * @dev Check that the execution is not being performed through a delegate call. This allows a function to be\n     * callable on the implementing contract but not through proxies.\n     */\n    modifier notDelegated() {\n        require(address(this) == __self, \"UUPSUpgradeable: must not be called through delegatecall\");\n        _;\n    }\n\n    /**\n     * @dev Implementation of the ERC1822 {proxiableUUID} function. This returns the storage slot used by the\n     * implementation. It is used to validate the implementation's compatibility when performing an upgrade.\n     *\n     * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks\n     * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this\n     * function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\n     */\n    function proxiableUUID() external view virtual override notDelegated returns (bytes32) {\n        return _IMPLEMENTATION_SLOT;\n    }\n\n    /**\n     * @dev Upgrade the implementation of the proxy to `newImplementation`.\n     *\n     * Calls {_authorizeUpgrade}.\n     *\n     * Emits an {Upgraded} event.\n     *\n     * @custom:oz-upgrades-unsafe-allow-reachable delegatecall\n     */\n    function upgradeTo(address newImplementation) public virtual onlyProxy {\n        _authorizeUpgrade(newImplementation);\n        _upgradeToAndCallUUPS(newImplementation, new bytes(0), false);\n    }\n\n    /**\n     * @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call\n     * encoded in `data`.\n     *\n     * Calls {_authorizeUpgrade}.\n     *\n     * Emits an {Upgraded} event.\n     *\n     * @custom:oz-upgrades-unsafe-allow-reachable delegatecall\n     */\n    function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy {\n        _authorizeUpgrade(newImplementation);\n        _upgradeToAndCallUUPS(newImplementation, data, true);\n    }\n\n    /**\n     * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by\n     * {upgradeTo} and {upgradeToAndCall}.\n     *\n     * Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}.\n     *\n     * ```solidity\n     * function _authorizeUpgrade(address) internal override onlyOwner {}\n     * ```\n     */\n    function _authorizeUpgrade(address newImplementation) internal virtual;\n\n    /**\n     * @dev This empty reserved space is put in place to allow future versions to add new\n     * variables without shifting down storage in the inheritance chain.\n     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n     */\n    uint256[50] private __gap;\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/interfaces/IERC5267Upgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC5267.sol)\n\npragma solidity ^0.8.0;\n\ninterface IERC5267Upgradeable {\n    /**\n     * @dev MAY be emitted to signal that the domain could have changed.\n     */\n    event EIP712DomainChanged();\n\n    /**\n     * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712\n     * signature.\n     */\n    function eip712Domain()\n        external\n        view\n        returns (\n            bytes1 fields,\n            string memory name,\n            string memory version,\n            uint256 chainId,\n            address verifyingContract,\n            bytes32 salt,\n            uint256[] memory extensions\n        );\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/utils/math/MathUpgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Standard math utilities missing in the Solidity language.\n */\nlibrary MathUpgradeable {\n    enum Rounding {\n        Down, // Toward negative infinity\n        Up, // Toward infinity\n        Zero // Toward zero\n    }\n\n    /**\n     * @dev Returns the largest of two numbers.\n     */\n    function max(uint256 a, uint256 b) internal pure returns (uint256) {\n        return a > b ? a : b;\n    }\n\n    /**\n     * @dev Returns the smallest of two numbers.\n     */\n    function min(uint256 a, uint256 b) internal pure returns (uint256) {\n        return a < b ? a : b;\n    }\n\n    /**\n     * @dev Returns the average of two numbers. The result is rounded towards\n     * zero.\n     */\n    function average(uint256 a, uint256 b) internal pure returns (uint256) {\n        // (a + b) / 2 can overflow.\n        return (a & b) + (a ^ b) / 2;\n    }\n\n    /**\n     * @dev Returns the ceiling of the division of two numbers.\n     *\n     * This differs from standard division with `/` in that it rounds up instead\n     * of rounding down.\n     */\n    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {\n        // (a + b - 1) / b can overflow on addition, so we distribute.\n        return a == 0 ? 0 : (a - 1) / b + 1;\n    }\n\n    /**\n     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0\n     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)\n     * with further edits by Uniswap Labs also under MIT license.\n     */\n    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {\n        unchecked {\n            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use\n            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256\n            // variables such that product = prod1 * 2^256 + prod0.\n            uint256 prod0; // Least significant 256 bits of the product\n            uint256 prod1; // Most significant 256 bits of the product\n            assembly {\n                let mm := mulmod(x, y, not(0))\n                prod0 := mul(x, y)\n                prod1 := sub(sub(mm, prod0), lt(mm, prod0))\n            }\n\n            // Handle non-overflow cases, 256 by 256 division.\n            if (prod1 == 0) {\n                // Solidity will revert if denominator == 0, unlike the div opcode on its own.\n                // The surrounding unchecked block does not change this fact.\n                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.\n                return prod0 / denominator;\n            }\n\n            // Make sure the result is less than 2^256. Also prevents denominator == 0.\n            require(denominator > prod1, \"Math: mulDiv overflow\");\n\n            ///////////////////////////////////////////////\n            // 512 by 256 division.\n            ///////////////////////////////////////////////\n\n            // Make division exact by subtracting the remainder from [prod1 prod0].\n            uint256 remainder;\n            assembly {\n                // Compute remainder using mulmod.\n                remainder := mulmod(x, y, denominator)\n\n                // Subtract 256 bit number from 512 bit number.\n                prod1 := sub(prod1, gt(remainder, prod0))\n                prod0 := sub(prod0, remainder)\n            }\n\n            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.\n            // See https://cs.stackexchange.com/q/138556/92363.\n\n            // Does not overflow because the denominator cannot be zero at this stage in the function.\n            uint256 twos = denominator & (~denominator + 1);\n            assembly {\n                // Divide denominator by twos.\n                denominator := div(denominator, twos)\n\n                // Divide [prod1 prod0] by twos.\n                prod0 := div(prod0, twos)\n\n                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.\n                twos := add(div(sub(0, twos), twos), 1)\n            }\n\n            // Shift in bits from prod1 into prod0.\n            prod0 |= prod1 * twos;\n\n            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such\n            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for\n            // four bits. That is, denominator * inv = 1 mod 2^4.\n            uint256 inverse = (3 * denominator) ^ 2;\n\n            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works\n            // in modular arithmetic, doubling the correct bits in each step.\n            inverse *= 2 - denominator * inverse; // inverse mod 2^8\n            inverse *= 2 - denominator * inverse; // inverse mod 2^16\n            inverse *= 2 - denominator * inverse; // inverse mod 2^32\n            inverse *= 2 - denominator * inverse; // inverse mod 2^64\n            inverse *= 2 - denominator * inverse; // inverse mod 2^128\n            inverse *= 2 - denominator * inverse; // inverse mod 2^256\n\n            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.\n            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is\n            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1\n            // is no longer required.\n            result = prod0 * inverse;\n            return result;\n        }\n    }\n\n    /**\n     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.\n     */\n    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {\n        uint256 result = mulDiv(x, y, denominator);\n        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {\n            result += 1;\n        }\n        return result;\n    }\n\n    /**\n     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.\n     *\n     * Inspired by Henry S. Warren, Jr.'s \"Hacker's Delight\" (Chapter 11).\n     */\n    function sqrt(uint256 a) internal pure returns (uint256) {\n        if (a == 0) {\n            return 0;\n        }\n\n        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.\n        //\n        // We know that the \"msb\" (most significant bit) of our target number `a` is a power of 2 such that we have\n        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.\n        //\n        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`\n        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`\n        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`\n        //\n        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.\n        uint256 result = 1 << (log2(a) >> 1);\n\n        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,\n        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at\n        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision\n        // into the expected uint128 result.\n        unchecked {\n            result = (result + a / result) >> 1;\n            result = (result + a / result) >> 1;\n            result = (result + a / result) >> 1;\n            result = (result + a / result) >> 1;\n            result = (result + a / result) >> 1;\n            result = (result + a / result) >> 1;\n            result = (result + a / result) >> 1;\n            return min(result, a / result);\n        }\n    }\n\n    /**\n     * @notice Calculates sqrt(a), following the selected rounding direction.\n     */\n    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {\n        unchecked {\n            uint256 result = sqrt(a);\n            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);\n        }\n    }\n\n    /**\n     * @dev Return the log in base 2, rounded down, of a positive value.\n     * Returns 0 if given 0.\n     */\n    function log2(uint256 value) internal pure returns (uint256) {\n        uint256 result = 0;\n        unchecked {\n            if (value >> 128 > 0) {\n                value >>= 128;\n                result += 128;\n            }\n            if (value >> 64 > 0) {\n                value >>= 64;\n                result += 64;\n            }\n            if (value >> 32 > 0) {\n                value >>= 32;\n                result += 32;\n            }\n            if (value >> 16 > 0) {\n                value >>= 16;\n                result += 16;\n            }\n            if (value >> 8 > 0) {\n                value >>= 8;\n                result += 8;\n            }\n            if (value >> 4 > 0) {\n                value >>= 4;\n                result += 4;\n            }\n            if (value >> 2 > 0) {\n                value >>= 2;\n                result += 2;\n            }\n            if (value >> 1 > 0) {\n                result += 1;\n            }\n        }\n        return result;\n    }\n\n    /**\n     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n     * Returns 0 if given 0.\n     */\n    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {\n        unchecked {\n            uint256 result = log2(value);\n            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);\n        }\n    }\n\n    /**\n     * @dev Return the log in base 10, rounded down, of a positive value.\n     * Returns 0 if given 0.\n     */\n    function log10(uint256 value) internal pure returns (uint256) {\n        uint256 result = 0;\n        unchecked {\n            if (value >= 10 ** 64) {\n                value /= 10 ** 64;\n                result += 64;\n            }\n            if (value >= 10 ** 32) {\n                value /= 10 ** 32;\n                result += 32;\n            }\n            if (value >= 10 ** 16) {\n                value /= 10 ** 16;\n                result += 16;\n            }\n            if (value >= 10 ** 8) {\n                value /= 10 ** 8;\n                result += 8;\n            }\n            if (value >= 10 ** 4) {\n                value /= 10 ** 4;\n                result += 4;\n            }\n            if (value >= 10 ** 2) {\n                value /= 10 ** 2;\n                result += 2;\n            }\n            if (value >= 10 ** 1) {\n                result += 1;\n            }\n        }\n        return result;\n    }\n\n    /**\n     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.\n     * Returns 0 if given 0.\n     */\n    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {\n        unchecked {\n            uint256 result = log10(value);\n            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);\n        }\n    }\n\n    /**\n     * @dev Return the log in base 256, rounded down, of a positive value.\n     * Returns 0 if given 0.\n     *\n     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.\n     */\n    function log256(uint256 value) internal pure returns (uint256) {\n        uint256 result = 0;\n        unchecked {\n            if (value >> 128 > 0) {\n                value >>= 128;\n                result += 16;\n            }\n            if (value >> 64 > 0) {\n                value >>= 64;\n                result += 8;\n            }\n            if (value >> 32 > 0) {\n                value >>= 32;\n                result += 4;\n            }\n            if (value >> 16 > 0) {\n                value >>= 16;\n                result += 2;\n            }\n            if (value >> 8 > 0) {\n                result += 1;\n            }\n        }\n        return result;\n    }\n\n    /**\n     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n     * Returns 0 if given 0.\n     */\n    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {\n        unchecked {\n            uint256 result = log256(value);\n            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);\n        }\n    }\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary AddressUpgradeable {\n    /**\n     * @dev Returns true if `account` is a contract.\n     *\n     * [IMPORTANT]\n     * ====\n     * It is unsafe to assume that an address for which this function returns\n     * false is an externally-owned account (EOA) and not a contract.\n     *\n     * Among others, `isContract` will return false for the following\n     * types of addresses:\n     *\n     *  - an externally-owned account\n     *  - a contract in construction\n     *  - an address where a contract will be created\n     *  - an address where a contract lived, but was destroyed\n     *\n     * Furthermore, `isContract` will also return true if the target contract within\n     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n     * which only has an effect at the end of a transaction.\n     * ====\n     *\n     * [IMPORTANT]\n     * ====\n     * You shouldn't rely on `isContract` to protect against flash loan attacks!\n     *\n     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n     * constructor.\n     * ====\n     */\n    function isContract(address account) internal view returns (bool) {\n        // This method relies on extcodesize/address.code.length, which returns 0\n        // for contracts in construction, since the code is only stored at the end\n        // of the constructor execution.\n\n        return account.code.length > 0;\n    }\n\n    /**\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n     * `recipient`, forwarding all available gas and reverting on errors.\n     *\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\n     * imposed by `transfer`, making them unable to receive funds via\n     * `transfer`. {sendValue} removes this limitation.\n     *\n     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n     *\n     * IMPORTANT: because control is transferred to `recipient`, care must be\n     * taken to not create reentrancy vulnerabilities. Consider using\n     * {ReentrancyGuard} or the\n     * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n     */\n    function sendValue(address payable recipient, uint256 amount) internal {\n        require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n        (bool success, ) = recipient.call{value: amount}(\"\");\n        require(success, \"Address: unable to send value, recipient may have reverted\");\n    }\n\n    /**\n     * @dev Performs a Solidity function call using a low level `call`. A\n     * plain `call` is an unsafe replacement for a function call: use this\n     * function instead.\n     *\n     * If `target` reverts with a revert reason, it is bubbled up by this\n     * function (like regular Solidity function calls).\n     *\n     * Returns the raw returned data. To convert to the expected return value,\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n     *\n     * Requirements:\n     *\n     * - `target` must be a contract.\n     * - calling `target` with `data` must not revert.\n     *\n     * _Available since v3.1._\n     */\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n        return functionCallWithValue(target, data, 0, \"Address: low-level call failed\");\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n     * `errorMessage` as a fallback revert reason when `target` reverts.\n     *\n     * _Available since v3.1._\n     */\n    function functionCall(\n        address target,\n        bytes memory data,\n        string memory errorMessage\n    ) internal returns (bytes memory) {\n        return functionCallWithValue(target, data, 0, errorMessage);\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n     * but also transferring `value` wei to `target`.\n     *\n     * Requirements:\n     *\n     * - the calling contract must have an ETH balance of at least `value`.\n     * - the called Solidity function must be `payable`.\n     *\n     * _Available since v3.1._\n     */\n    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n        return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\n     *\n     * _Available since v3.1._\n     */\n    function functionCallWithValue(\n        address target,\n        bytes memory data,\n        uint256 value,\n        string memory errorMessage\n    ) internal returns (bytes memory) {\n        require(address(this).balance >= value, \"Address: insufficient balance for call\");\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\n        return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n     * but performing a static call.\n     *\n     * _Available since v3.3._\n     */\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n        return functionStaticCall(target, data, \"Address: low-level static call failed\");\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n     * but performing a static call.\n     *\n     * _Available since v3.3._\n     */\n    function functionStaticCall(\n        address target,\n        bytes memory data,\n        string memory errorMessage\n    ) internal view returns (bytes memory) {\n        (bool success, bytes memory returndata) = target.staticcall(data);\n        return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n     * but performing a delegate call.\n     *\n     * _Available since v3.4._\n     */\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n        return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n     * but performing a delegate call.\n     *\n     * _Available since v3.4._\n     */\n    function functionDelegateCall(\n        address target,\n        bytes memory data,\n        string memory errorMessage\n    ) internal returns (bytes memory) {\n        (bool success, bytes memory returndata) = target.delegatecall(data);\n        return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n    }\n\n    /**\n     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n     *\n     * _Available since v4.8._\n     */\n    function verifyCallResultFromTarget(\n        address target,\n        bool success,\n        bytes memory returndata,\n        string memory errorMessage\n    ) internal view returns (bytes memory) {\n        if (success) {\n            if (returndata.length == 0) {\n                // only check isContract if the call was successful and the return data is empty\n                // otherwise we already know that it was a contract\n                require(isContract(target), \"Address: call to non-contract\");\n            }\n            return returndata;\n        } else {\n            _revert(returndata, errorMessage);\n        }\n    }\n\n    /**\n     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n     * revert reason or using the provided one.\n     *\n     * _Available since v4.3._\n     */\n    function verifyCallResult(\n        bool success,\n        bytes memory returndata,\n        string memory errorMessage\n    ) internal pure returns (bytes memory) {\n        if (success) {\n            return returndata;\n        } else {\n            _revert(returndata, errorMessage);\n        }\n    }\n\n    function _revert(bytes memory returndata, string memory errorMessage) private pure {\n        // Look for revert reason and bubble it up if present\n        if (returndata.length > 0) {\n            // The easiest way to bubble the revert reason is using memory via assembly\n            /// @solidity memory-safe-assembly\n            assembly {\n                let returndata_size := mload(returndata)\n                revert(add(32, returndata), returndata_size)\n            }\n        } else {\n            revert(errorMessage);\n        }\n    }\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Multicall.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./AddressUpgradeable.sol\";\nimport \"../proxy/utils/Initializable.sol\";\n\n/**\n * @dev Provides a function to batch together multiple calls in a single external call.\n *\n * _Available since v4.1._\n */\nabstract contract MulticallUpgradeable is Initializable {\n    function __Multicall_init() internal onlyInitializing {\n    }\n\n    function __Multicall_init_unchained() internal onlyInitializing {\n    }\n    /**\n     * @dev Receives and executes a batch of function calls on this contract.\n     * @custom:oz-upgrades-unsafe-allow-reachable delegatecall\n     */\n    function multicall(bytes[] calldata data) external virtual returns (bytes[] memory results) {\n        results = new bytes[](data.length);\n        for (uint256 i = 0; i < data.length; i++) {\n            results[i] = AddressUpgradeable.functionDelegateCall(address(this), data[i]);\n        }\n        return results;\n    }\n\n    /**\n     * @dev This empty reserved space is put in place to allow future versions to add new\n     * variables without shifting down storage in the inheritance chain.\n     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n     */\n    uint256[50] private __gap;\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/utils/math/SignedMathUpgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Standard signed math utilities missing in the Solidity language.\n */\nlibrary SignedMathUpgradeable {\n    /**\n     * @dev Returns the largest of two signed numbers.\n     */\n    function max(int256 a, int256 b) internal pure returns (int256) {\n        return a > b ? a : b;\n    }\n\n    /**\n     * @dev Returns the smallest of two signed numbers.\n     */\n    function min(int256 a, int256 b) internal pure returns (int256) {\n        return a < b ? a : b;\n    }\n\n    /**\n     * @dev Returns the average of two signed numbers without overflow.\n     * The result is rounded towards zero.\n     */\n    function average(int256 a, int256 b) internal pure returns (int256) {\n        // Formula from the book \"Hacker's Delight\"\n        int256 x = (a & b) + ((a ^ b) >> 1);\n        return x + (int256(uint256(x) >> 255) & (a ^ b));\n    }\n\n    /**\n     * @dev Returns the absolute unsigned value of a signed value.\n     */\n    function abs(int256 n) internal pure returns (uint256) {\n        unchecked {\n            // must be unchecked in order to support `n = type(int256).min`\n            return uint256(n >= 0 ? n : -n);\n        }\n    }\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC20Upgradeable.sol\";\nimport \"../extensions/IERC20PermitUpgradeable.sol\";\nimport \"../../../utils/AddressUpgradeable.sol\";\n\n/**\n * @title SafeERC20\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\n * contract returns false). Tokens that return no value (and instead revert or\n * throw on failure) are also supported, non-reverting calls are assumed to be\n * successful.\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\n */\nlibrary SafeERC20Upgradeable {\n    using AddressUpgradeable for address;\n\n    /**\n     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,\n     * non-reverting calls are assumed to be successful.\n     */\n    function safeTransfer(IERC20Upgradeable token, address to, uint256 value) internal {\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\n    }\n\n    /**\n     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the\n     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.\n     */\n    function safeTransferFrom(IERC20Upgradeable token, address from, address to, uint256 value) internal {\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\n    }\n\n    /**\n     * @dev Deprecated. This function has issues similar to the ones found in\n     * {IERC20-approve}, and its usage is discouraged.\n     *\n     * Whenever possible, use {safeIncreaseAllowance} and\n     * {safeDecreaseAllowance} instead.\n     */\n    function safeApprove(IERC20Upgradeable token, address spender, uint256 value) internal {\n        // safeApprove should only be called when setting an initial allowance,\n        // or when resetting it to zero. To increase and decrease it, use\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\n        require(\n            (value == 0) || (token.allowance(address(this), spender) == 0),\n            \"SafeERC20: approve from non-zero to non-zero allowance\"\n        );\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\n    }\n\n    /**\n     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\n     * non-reverting calls are assumed to be successful.\n     */\n    function safeIncreaseAllowance(IERC20Upgradeable token, address spender, uint256 value) internal {\n        uint256 oldAllowance = token.allowance(address(this), spender);\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));\n    }\n\n    /**\n     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\n     * non-reverting calls are assumed to be successful.\n     */\n    function safeDecreaseAllowance(IERC20Upgradeable token, address spender, uint256 value) internal {\n        unchecked {\n            uint256 oldAllowance = token.allowance(address(this), spender);\n            require(oldAllowance >= value, \"SafeERC20: decreased allowance below zero\");\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));\n        }\n    }\n\n    /**\n     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,\n     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval\n     * to be set to zero before setting it to a non-zero value, such as USDT.\n     */\n    function forceApprove(IERC20Upgradeable token, address spender, uint256 value) internal {\n        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);\n\n        if (!_callOptionalReturnBool(token, approvalCall)) {\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));\n            _callOptionalReturn(token, approvalCall);\n        }\n    }\n\n    /**\n     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.\n     * Revert on invalid signature.\n     */\n    function safePermit(\n        IERC20PermitUpgradeable token,\n        address owner,\n        address spender,\n        uint256 value,\n        uint256 deadline,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) internal {\n        uint256 nonceBefore = token.nonces(owner);\n        token.permit(owner, spender, value, deadline, v, r, s);\n        uint256 nonceAfter = token.nonces(owner);\n        require(nonceAfter == nonceBefore + 1, \"SafeERC20: permit did not succeed\");\n    }\n\n    /**\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\n     * @param token The token targeted by the call.\n     * @param data The call data (encoded using abi.encode or one of its variants).\n     */\n    function _callOptionalReturn(IERC20Upgradeable token, bytes memory data) private {\n        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\n        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that\n        // the target address contains contract code and also asserts for success in the low-level call.\n\n        bytes memory returndata = address(token).functionCall(data, \"SafeERC20: low-level call failed\");\n        require(returndata.length == 0 || abi.decode(returndata, (bool)), \"SafeERC20: ERC20 operation did not succeed\");\n    }\n\n    /**\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\n     * @param token The token targeted by the call.\n     * @param data The call data (encoded using abi.encode or one of its variants).\n     *\n     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.\n     */\n    function _callOptionalReturnBool(IERC20Upgradeable token, bytes memory data) private returns (bool) {\n        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\n        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false\n        // and not revert is the subcall reverts.\n\n        (bool success, bytes memory returndata) = address(token).call(data);\n        return\n            success && (returndata.length == 0 || abi.decode(returndata, (bool))) && AddressUpgradeable.isContract(address(token));\n    }\n}\n"},{"file_path":"contracts/library/Utils/PauseUpgradeable.sol","source_code":"// SPDX-License-Identifier: AGPL-3.0-or-later\n// Copyright (C) 2024 Fireblocks <support@fireblocks.com>\n//\n// This program is free software: you can redistribute it and/or modify\n// it under the terms of the GNU Affero General Public License as published by\n// the Free Software Foundation, either version 3 of the License, or\n// (at your option) any later version.\n//\n// This program is distributed in the hope that it will be useful,\n// but WITHOUT ANY WARRANTY; without even the implied warranty of\n// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n// GNU Affero General Public License for more details.\n//\n// You should have received a copy of the GNU Affero General Public License\n// along with this program.  If not, see <https://www.gnu.org/licenses/>.\npragma solidity 0.8.20;\n\nimport {Initializable} from \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\";\nimport {PausableUpgradeable} from \"@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol\";\n\n/**\n * @title Pause Upgradeable\n * @author Fireblocks\n * @dev This abstract contract provides internal contract logic for pausing and unpausing the contract.\n */\nabstract contract PauseUpgradeable is Initializable, PausableUpgradeable {\n\t/// Functions\n\n\t/**\n\t * @notice This is an initializer function for the abstract contract.\n\t * @dev Standard Initializable contract behavior.\n\t *\n\t * Calling Conditions:\n\t *\n\t * - Can only be invoked by functions with the {initializer} or {reinitializer} modifiers.\n\t */\n\tfunction __Pause_init() internal onlyInitializing {\n\t\t__Pausable_init();\n\t}\n\n\t/**\n\t * @notice This is a function used to pause the contract.\n\t *\n\t * @dev Calling Conditions:\n\t *\n\t * - Contract is not paused. (checked internally by {Pausable._pause})\n\t *\n\t * This function emits a {Paused} event as part of {PausableUpgradeable._pause}.\n\t */\n\tfunction pause() external virtual {\n\t\t_authorizePause();\n\t\t_pause();\n\t}\n\n\t/**\n\t * @notice This is a function used to unpause the contract.\n\t *\n\t * @dev Calling Conditions:\n\t *\n\t * - Contract is paused. (checked internally by {Pausable._unpause})\n\t *\n\t * This function emits an {Unpaused} event as part of {PausableUpgradeable._unpause}.\n\t */\n\tfunction unpause() external virtual {\n\t\t_authorizePause();\n\t\t_unpause();\n\t}\n\n\t/**\n\t * @notice This function is designed to be overridden in inheriting contracts.\n\t * @dev Override this function to implement RBAC control.\n\t */\n\tfunction _authorizePause() internal virtual;\n\n\t/* solhint-enable func-name-mixedcase */\n\t/**\n\t * @dev This empty reserved space is put in place to allow future versions to add new\n\t * variables without shifting down storage in the inheritance chain.\n\t * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n\t */\n\t//slither-disable-next-line naming-convention\n\tuint256[50] private __gap;\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/utils/StorageSlotUpgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol)\n// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Library for reading and writing primitive types to specific storage slots.\n *\n * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.\n * This library helps with reading and writing to such slots without the need for inline assembly.\n *\n * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.\n *\n * Example usage to set ERC1967 implementation slot:\n * ```solidity\n * contract ERC1967 {\n *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n *\n *     function _getImplementation() internal view returns (address) {\n *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n *     }\n *\n *     function _setImplementation(address newImplementation) internal {\n *         require(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\");\n *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n *     }\n * }\n * ```\n *\n * _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._\n * _Available since v4.9 for `string`, `bytes`._\n */\nlibrary StorageSlotUpgradeable {\n    struct AddressSlot {\n        address value;\n    }\n\n    struct BooleanSlot {\n        bool value;\n    }\n\n    struct Bytes32Slot {\n        bytes32 value;\n    }\n\n    struct Uint256Slot {\n        uint256 value;\n    }\n\n    struct StringSlot {\n        string value;\n    }\n\n    struct BytesSlot {\n        bytes value;\n    }\n\n    /**\n     * @dev Returns an `AddressSlot` with member `value` located at `slot`.\n     */\n    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {\n        /// @solidity memory-safe-assembly\n        assembly {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.\n     */\n    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {\n        /// @solidity memory-safe-assembly\n        assembly {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.\n     */\n    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {\n        /// @solidity memory-safe-assembly\n        assembly {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.\n     */\n    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {\n        /// @solidity memory-safe-assembly\n        assembly {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns an `StringSlot` with member `value` located at `slot`.\n     */\n    function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {\n        /// @solidity memory-safe-assembly\n        assembly {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns an `StringSlot` representation of the string storage pointer `store`.\n     */\n    function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {\n        /// @solidity memory-safe-assembly\n        assembly {\n            r.slot := store.slot\n        }\n    }\n\n    /**\n     * @dev Returns an `BytesSlot` with member `value` located at `slot`.\n     */\n    function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {\n        /// @solidity memory-safe-assembly\n        assembly {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.\n     */\n    function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {\n        /// @solidity memory-safe-assembly\n        assembly {\n            r.slot := store.slot\n        }\n    }\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC165Upgradeable.sol\";\nimport \"../../proxy/utils/Initializable.sol\";\n\n/**\n * @dev Implementation of the {IERC165} interface.\n *\n * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check\n * for the additional interface id that will be supported. For example:\n *\n * ```solidity\n * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n * }\n * ```\n *\n * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.\n */\nabstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable {\n    function __ERC165_init() internal onlyInitializing {\n    }\n\n    function __ERC165_init_unchained() internal onlyInitializing {\n    }\n    /**\n     * @dev See {IERC165-supportsInterface}.\n     */\n    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n        return interfaceId == type(IERC165Upgradeable).interfaceId;\n    }\n\n    /**\n     * @dev This empty reserved space is put in place to allow future versions to add new\n     * variables without shifting down storage in the inheritance chain.\n     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n     */\n    uint256[50] private __gap;\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/interfaces/IERC1967Upgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC1967.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.\n *\n * _Available since v4.8.3._\n */\ninterface IERC1967Upgradeable {\n    /**\n     * @dev Emitted when the implementation is upgraded.\n     */\n    event Upgraded(address indexed implementation);\n\n    /**\n     * @dev Emitted when the admin account has changed.\n     */\n    event AdminChanged(address previousAdmin, address newAdmin);\n\n    /**\n     * @dev Emitted when the beacon is changed.\n     */\n    event BeaconUpgraded(address indexed beacon);\n}\n"},{"file_path":"node_modules/@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol","source_code":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./math/MathUpgradeable.sol\";\nimport \"./math/SignedMathUpgradeable.sol\";\n\n/**\n * @dev String operations.\n */\nlibrary StringsUpgradeable {\n    bytes16 private constant _SYMBOLS = \"0123456789abcdef\";\n    uint8 private constant _ADDRESS_LENGTH = 20;\n\n    /**\n     * @dev Converts a `uint256` to its ASCII `string` decimal representation.\n     */\n    function toString(uint256 value) internal pure returns (string memory) {\n        unchecked {\n            uint256 length = MathUpgradeable.log10(value) + 1;\n            string memory buffer = new string(length);\n            uint256 ptr;\n            /// @solidity memory-safe-assembly\n            assembly {\n                ptr := add(buffer, add(32, length))\n            }\n            while (true) {\n                ptr--;\n                /// @solidity memory-safe-assembly\n                assembly {\n                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))\n                }\n                value /= 10;\n                if (value == 0) break;\n            }\n            return buffer;\n        }\n    }\n\n    /**\n     * @dev Converts a `int256` to its ASCII `string` decimal representation.\n     */\n    function toString(int256 value) internal pure returns (string memory) {\n        return string(abi.encodePacked(value < 0 ? \"-\" : \"\", toString(SignedMathUpgradeable.abs(value))));\n    }\n\n    /**\n     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.\n     */\n    function toHexString(uint256 value) internal pure returns (string memory) {\n        unchecked {\n            return toHexString(value, MathUpgradeable.log256(value) + 1);\n        }\n    }\n\n    /**\n     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.\n     */\n    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {\n        bytes memory buffer = new bytes(2 * length + 2);\n        buffer[0] = \"0\";\n        buffer[1] = \"x\";\n        for (uint256 i = 2 * length + 1; i > 1; --i) {\n            buffer[i] = _SYMBOLS[value & 0xf];\n            value >>= 4;\n        }\n        require(value == 0, \"Strings: hex length insufficient\");\n        return string(buffer);\n    }\n\n    /**\n     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.\n     */\n    function toHexString(address addr) internal pure returns (string memory) {\n        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);\n    }\n\n    /**\n     * @dev Returns true if the two strings are equal.\n     */\n    function equal(string memory a, string memory b) internal pure returns (bool) {\n        return keccak256(bytes(a)) == keccak256(bytes(b));\n    }\n}\n"},{"file_path":"contracts/library/Errors/interface/IERC20Errors.sol","source_code":"// SPDX-License-Identifier: AGPL-3.0-or-later\n// Copyright (C) 2024 Fireblocks <support@fireblocks.com>\n//\n// This program is free software: you can redistribute it and/or modify\n// it under the terms of the GNU Affero General Public License as published by\n// the Free Software Foundation, either version 3 of the License, or\n// (at your option) any later version.\n//\n// This program is distributed in the hope that it will be useful,\n// but WITHOUT ANY WARRANTY; without even the implied warranty of\n// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n// GNU Affero General Public License for more details.\n//\n// You should have received a copy of the GNU Affero General Public License\n// along with this program.  If not, see <https://www.gnu.org/licenses/>.\n// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)\npragma solidity 0.8.20;\n\n/**\n * @dev Standard ERC20 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.\n */\ninterface IERC20Errors {\n\t/**\n\t * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n\t * @param sender Address whose tokens are being transferred.\n\t * @param balance Current balance for the interacting account.\n\t * @param needed Minimum amount required to perform a transfer.\n\t */\n\terror ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);\n\n\t/**\n\t * @dev Indicates a failure with the token `sender`. Used in transfers.\n\t * @param sender Address whose tokens are being transferred.\n\t */\n\terror ERC20InvalidSender(address sender);\n\n\t/**\n\t * @dev Indicates a failure with the token `receiver`. Used in transfers.\n\t * @param receiver Address to which tokens are being transferred.\n\t */\n\terror ERC20InvalidReceiver(address receiver);\n\n\t/**\n\t * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.\n\t * @param spender Address that may be allowed to operate on tokens without being their owner.\n\t * @param allowance Amount of tokens a `spender` is allowed to operate with.\n\t * @param needed Minimum amount required to perform a transfer.\n\t */\n\terror ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);\n\n\t/**\n\t * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n\t * @param approver Address initiating an approval operation.\n\t */\n\terror ERC20InvalidApprover(address approver);\n\n\t/**\n\t * @dev Indicates a failure with the `spender` to be approved. Used in approvals.\n\t * @param spender Address that may be allowed to operate on tokens without being their owner.\n\t */\n\terror ERC20InvalidSpender(address spender);\n}\n"}],"certified":false,"conflicting_implementations":null,"abi":[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessRegistryNotSet","type":"error"},{"inputs":[],"name":"DefaultAdminError","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"InvalidAddress","type":"error"},{"inputs":[],"name":"InvalidImplementation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"RecoveryOnActiveAccount","type":"error"},{"inputs":[],"name":"SalvageGasFailed","type":"error"},{"inputs":[],"name":"ZeroAmount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"caller","type":"address"},{"indexed":true,"internalType":"address","name":"oldAccessRegistry","type":"address"},{"indexed":true,"internalType":"address","name":"newAccessRegistry","type":"address"}],"name":"AccessRegistryUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"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":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"string","name":"oldUri","type":"string"},{"indexed":false,"internalType":"string","name":"newUri","type":"string"}],"name":"ContractUriUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"caller","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"GasTokenSalvaged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"caller","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokenSalvaged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"caller","type":"address"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensRecovered","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":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONTRACT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RECOVERY_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALVAGE_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPGRADER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accessRegistry","outputs":[{"internalType":"contract IAccessRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_accessRegistry","type":"address"}],"name":"accessRegistryUpdate","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"contractUriUpdate","outputs":[],"stateMutability":"nonpayable","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":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"defaultAdmin","type":"address"},{"internalType":"address","name":"minter","type":"address"},{"internalType":"address","name":"pauser","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20Upgradeable","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"salvageERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"salvageGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"}],"is_changed_bytecode":false,"is_partially_verified":true,"constructor_args":null}