{
    "Function": "initialize",
    "File": "contracts/v2/FiatTokenV2.sol",
    "Parent Contracts": [
        "contracts/upgradeability/UUPSUpgradeable.sol",
        "contracts/upgradeability/ERC1967Upgrade.sol",
        "contracts/upgradeability/draft-IERC1822.sol",
        "contracts/v1/EIP2612.sol",
        "contracts/v1/EIP3009.sol",
        "contracts/v1/EIP712Domain.sol",
        "contracts/v1/AbstractFiatTokenV1.sol",
        "contracts/util/IERC20.sol",
        "contracts/v1/Rescuable.sol",
        "contracts/v1/Blocklistable.sol",
        "contracts/v1/Pausable.sol",
        "contracts/v1/Ownable.sol",
        "contracts/util/Context.sol"
    ],
    "High-Level Calls": [
        "EIP712"
    ],
    "Internal Calls": [
        "_transferOwnership",
        "require(bool,string)",
        "require(bool,string)",
        "require(bool,string)",
        "require(bool,string)",
        "require(bool,string)"
    ],
    "Library Calls": [
        "makeDomainSeparator"
    ],
    "Low-Level Calls": [],
    "Code": "function initialize(\n        string memory tokenName,\n        string memory tokenSymbol,\n        string memory tokenCurrency,\n        uint8 tokenDecimals,\n        address newMasterMinter,\n        address newPauser,\n        address newBlocklister,\n        address newOwner\n    ) public {\n        require(!initialized, \"FiatToken: contract is already initialized\");\n        require(\n            newMasterMinter != address(0),\n            \"FiatToken: new masterMinter is the zero address\"\n        );\n        require(\n            newPauser != address(0),\n            \"FiatToken: new pauser is the zero address\"\n        );\n        require(\n            newBlocklister != address(0),\n            \"FiatToken: new blocklister is the zero address\"\n        );\n        require(\n            newOwner != address(0),\n            \"FiatToken: new owner is the zero address\"\n        );\n\n        name = tokenName;\n        symbol = tokenSymbol;\n        currency = tokenCurrency;\n        decimals = tokenDecimals;\n        masterMinter = newMasterMinter;\n        pauser = newPauser;\n        blocklister = newBlocklister;\n        _transferOwnership(newOwner);\n        blocklisted[address(this)] = true;\n        DOMAIN_SEPARATOR = EIP712.makeDomainSeparator(name, \"1\");\n        CHAIN_ID = block.chainid;\n        NAME = name;\n        VERSION = \"1\";\n        initialized = true;\n    }"
}