{
    "Function": "constructor",
    "File": "contracts/test/utils/TestToken.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "keccak256(bytes)",
        "_mint",
        "keccak256(bytes)",
        "keccak256(bytes)",
        "keccak256(bytes)",
        "abi.encode()",
        "chainid()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "constructor(\n        string memory _name,\n        string memory _symbol,\n        uint256 _decimals,\n        address _anyswapRouter\n    ) {\n        anyswapRouter = _anyswapRouter;\n        name = _name;\n        symbol = _symbol;\n        decimals = _decimals;\n        uint chainId;\n        assembly {\n            chainId := chainid()\n        }\n        DOMAIN_SEPARATOR = keccak256(\n            abi.encode(\n                keccak256('EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)'),\n                keccak256(bytes(name)),\n                keccak256(bytes('1')),\n                chainId,\n                address(this)\n            )\n        );\n        _mint(msg.sender, 0);\n    }"
}