{
    "Function": "transfer",
    "File": "contracts/lybra/token/EUSD.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/utils/Context.sol",
        "node_modules/@openzeppelin/contracts/token/ERC20/IERC20.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "_transfer",
        "_msgSender"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function transfer(address _recipient, uint256 _amount) public returns (bool) {\n        address owner = _msgSender();\n        _transfer(owner, _recipient, _amount);\n        return true;\n    }"
}