{
  "contractName": "FixedPoint",
  "abi": [
    {
      "inputs": [],
      "name": "Q112",
      "outputs": [
        {
          "internalType": "uint256",
          "name": "",
          "type": "uint256"
        }
      ],
      "stateMutability": "view",
      "type": "function"
    },
    {
      "inputs": [],
      "name": "RESOLUTION",
      "outputs": [
        {
          "internalType": "uint8",
          "name": "",
          "type": "uint8"
        }
      ],
      "stateMutability": "view",
      "type": "function"
    }
  ],
  "metadata": "{\"compiler\":{\"version\":\"0.6.6+commit.6c089d02\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"Q112\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"RESOLUTION\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"methods\":{}},\"userdoc\":{\"methods\":{}}},\"settings\":{\"compilationTarget\":{\"moonwalkerswap-libraries/contracts/libraries/FixedPoint.sol\":\"FixedPoint\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"moonwalkerswap-libraries/contracts/libraries/Babylonian.sol\":{\"keccak256\":\"0xeb1c2a281a00f4660775f75ccfa1e51fbe1d75f86aeb9d0d297151ecdb900177\",\"urls\":[\"bzz-raw://68515f0265381bddfb1d1356ea10ce4e5784276fc09f197fcdcedfa5c75cc069\",\"dweb:/ipfs/QmXWVVPnuJwRUAu3Qpu1s7Fyc5WPQxmZPczVEe5cJ5wVHZ\"]},\"moonwalkerswap-libraries/contracts/libraries/BitMath.sol\":{\"keccak256\":\"0x19f84d5268286794b44939ec0d85b3c6f59e133f826cdbd9e40112fc94919bb7\",\"urls\":[\"bzz-raw://d21c67ed58cf667d052e141df2fba76c46c159edcc45eb897c908c20c69d2727\",\"dweb:/ipfs/QmUyKz1992wgR8nYAzBuQzjBAKMxLAN3hTgzpYJxusbmVH\"]},\"moonwalkerswap-libraries/contracts/libraries/FixedPoint.sol\":{\"keccak256\":\"0xc3a39b8a11715cea45ad9f67f50e4e4c33778c1124acd59e90daf064c9a93974\",\"urls\":[\"bzz-raw://2c6c3cdcdb30caa5d15477550003b5dbb174cb2c0be3c012af030fce3d043f28\",\"dweb:/ipfs/QmWh3n5g6zq3umJcURnKCFhhif2c8yb6mKczFjfoCNLC3g\"]},\"moonwalkerswap-libraries/contracts/libraries/FullMath.sol\":{\"keccak256\":\"0xc4ffcf28169f73fc9fdd1f82345d6d4fcccf3fd5aea83c133437c25e4e0950a9\",\"urls\":[\"bzz-raw://c9257a47501005f0a648bc4801ef4abc33843681aaf03a6d0c43d46b69e37407\",\"dweb:/ipfs/QmciHvDrqhxs5fjsrm9aNq29FZXpunMn17n2wWj83Zsh3B\"]}},\"version\":1}",
  "bytecode": "0x60b9610025600b82828239805160001a60731461001857fe5b30600052607381538281f3fe7300000000000000000000000000000000000000003014608060405260043610603d5760003560e01c80633bf7a83e146042578063552f888a14605a575b600080fd5b60486076565b60408051918252519081900360200190f35b6060607e565b6040805160ff9092168252519081900360200190f35b600160701b81565b60708156fea264697066735822122039464c00e097d24c8ff78d267b2c31104088a05143247629ee167558b89a3b9b64736f6c63430006060033",
  "deployedBytecode": "0x7300000000000000000000000000000000000000003014608060405260043610603d5760003560e01c80633bf7a83e146042578063552f888a14605a575b600080fd5b60486076565b60408051918252519081900360200190f35b6060607e565b6040805160ff9092168252519081900360200190f35b600160701b81565b60708156fea264697066735822122039464c00e097d24c8ff78d267b2c31104088a05143247629ee167558b89a3b9b64736f6c63430006060033",
  "immutableReferences": {},
  "sourceMap": "251:5884:20:-:0;;132:2:-1;166:7;155:9;146:7;137:37;255:7;249:14;246:1;241:23;235:4;232:33;222:2;;269:9;222:2;293:9;290:1;283:20;323:4;314:7;306:22;347:7;338;331:24",
  "deployedSourceMap": "251:5884:20:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;540:62:20;;;:::i;:::-;;;;;;;;;;;;;;;;496:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;540:62;-1:-1:-1;;;540:62:20;:::o;496:38::-;531:3;496:38;:::o",
  "source": "// SPDX-License-Identifier: GPL-3.0-or-later\npragma solidity >=0.4.0;\n\nimport './FullMath.sol';\nimport './Babylonian.sol';\nimport './BitMath.sol';\n\n// a library for handling binary fixed point numbers (https://en.wikipedia.org/wiki/Q_(number_format))\nlibrary FixedPoint {\n    // range: [0, 2**112 - 1]\n    // resolution: 1 / 2**112\n    struct uq112x112 {\n        uint224 _x;\n    }\n\n    // range: [0, 2**144 - 1]\n    // resolution: 1 / 2**112\n    struct uq144x112 {\n        uint256 _x;\n    }\n\n    uint8 public constant RESOLUTION = 112;\n    uint256 public constant Q112 = 0x10000000000000000000000000000; // 2**112\n    uint256 private constant Q224 = 0x100000000000000000000000000000000000000000000000000000000; // 2**224\n    uint256 private constant LOWER_MASK = 0xffffffffffffffffffffffffffff; // decimal of UQ*x112 (lower 112 bits)\n\n    // encode a uint112 as a UQ112x112\n    function encode(uint112 x) internal pure returns (uq112x112 memory) {\n        return uq112x112(uint224(x) << RESOLUTION);\n    }\n\n    // encodes a uint144 as a UQ144x112\n    function encode144(uint144 x) internal pure returns (uq144x112 memory) {\n        return uq144x112(uint256(x) << RESOLUTION);\n    }\n\n    // decode a UQ112x112 into a uint112 by truncating after the radix point\n    function decode(uq112x112 memory self) internal pure returns (uint112) {\n        return uint112(self._x >> RESOLUTION);\n    }\n\n    // decode a UQ144x112 into a uint144 by truncating after the radix point\n    function decode144(uq144x112 memory self) internal pure returns (uint144) {\n        return uint144(self._x >> RESOLUTION);\n    }\n\n    // multiply a UQ112x112 by a uint, returning a UQ144x112\n    // reverts on overflow\n    function mul(uq112x112 memory self, uint256 y) internal pure returns (uq144x112 memory) {\n        uint256 z = 0;\n        require(y == 0 || (z = self._x * y) / y == self._x, 'FixedPoint::mul: overflow');\n        return uq144x112(z);\n    }\n\n    // multiply a UQ112x112 by an int and decode, returning an int\n    // reverts on overflow\n    function muli(uq112x112 memory self, int256 y) internal pure returns (int256) {\n        uint256 z = FullMath.mulDiv(self._x, uint256(y < 0 ? -y : y), Q112);\n        require(z < 2**255, 'FixedPoint::muli: overflow');\n        return y < 0 ? -int256(z) : int256(z);\n    }\n\n    // multiply a UQ112x112 by a UQ112x112, returning a UQ112x112\n    // lossy\n    function muluq(uq112x112 memory self, uq112x112 memory other) internal pure returns (uq112x112 memory) {\n        if (self._x == 0 || other._x == 0) {\n            return uq112x112(0);\n        }\n        uint112 upper_self = uint112(self._x >> RESOLUTION); // * 2^0\n        uint112 lower_self = uint112(self._x & LOWER_MASK); // * 2^-112\n        uint112 upper_other = uint112(other._x >> RESOLUTION); // * 2^0\n        uint112 lower_other = uint112(other._x & LOWER_MASK); // * 2^-112\n\n        // partial products\n        uint224 upper = uint224(upper_self) * upper_other; // * 2^0\n        uint224 lower = uint224(lower_self) * lower_other; // * 2^-224\n        uint224 uppers_lowero = uint224(upper_self) * lower_other; // * 2^-112\n        uint224 uppero_lowers = uint224(upper_other) * lower_self; // * 2^-112\n\n        // so the bit shift does not overflow\n        require(upper <= uint112(-1), 'FixedPoint::muluq: upper overflow');\n\n        // this cannot exceed 256 bits, all values are 224 bits\n        uint256 sum = uint256(upper << RESOLUTION) + uppers_lowero + uppero_lowers + (lower >> RESOLUTION);\n\n        // so the cast does not overflow\n        require(sum <= uint224(-1), 'FixedPoint::muluq: sum overflow');\n\n        return uq112x112(uint224(sum));\n    }\n\n    // divide a UQ112x112 by a UQ112x112, returning a UQ112x112\n    function divuq(uq112x112 memory self, uq112x112 memory other) internal pure returns (uq112x112 memory) {\n        require(other._x > 0, 'FixedPoint::divuq: division by zero');\n        if (self._x == other._x) {\n            return uq112x112(uint224(Q112));\n        }\n        if (self._x <= uint144(-1)) {\n            uint256 value = (uint256(self._x) << RESOLUTION) / other._x;\n            require(value <= uint224(-1), 'FixedPoint::divuq: overflow');\n            return uq112x112(uint224(value));\n        }\n\n        uint256 result = FullMath.mulDiv(Q112, self._x, other._x);\n        require(result <= uint224(-1), 'FixedPoint::divuq: overflow');\n        return uq112x112(uint224(result));\n    }\n\n    // returns a UQ112x112 which represents the ratio of the numerator to the denominator\n    // can be lossy\n    function fraction(uint256 numerator, uint256 denominator) internal pure returns (uq112x112 memory) {\n        require(denominator > 0, 'FixedPoint::fraction: division by zero');\n        if (numerator == 0) return FixedPoint.uq112x112(0);\n\n        if (numerator <= uint144(-1)) {\n            uint256 result = (numerator << RESOLUTION) / denominator;\n            require(result <= uint224(-1), 'FixedPoint::fraction: overflow');\n            return uq112x112(uint224(result));\n        } else {\n            uint256 result = FullMath.mulDiv(numerator, Q112, denominator);\n            require(result <= uint224(-1), 'FixedPoint::fraction: overflow');\n            return uq112x112(uint224(result));\n        }\n    }\n\n    // take the reciprocal of a UQ112x112\n    // reverts on overflow\n    // lossy\n    function reciprocal(uq112x112 memory self) internal pure returns (uq112x112 memory) {\n        require(self._x != 0, 'FixedPoint::reciprocal: reciprocal of zero');\n        require(self._x != 1, 'FixedPoint::reciprocal: overflow');\n        return uq112x112(uint224(Q224 / self._x));\n    }\n\n    // square root of a UQ112x112\n    // lossy between 0/1 and 40 bits\n    function sqrt(uq112x112 memory self) internal pure returns (uq112x112 memory) {\n        if (self._x <= uint144(-1)) {\n            return uq112x112(uint224(Babylonian.sqrt(uint256(self._x) << 112)));\n        }\n\n        uint8 safeShiftBits = 255 - BitMath.mostSignificantBit(self._x);\n        safeShiftBits -= safeShiftBits % 2;\n        return uq112x112(uint224(Babylonian.sqrt(uint256(self._x) << safeShiftBits) << ((112 - safeShiftBits) / 2)));\n    }\n}\n",
  "sourcePath": "moonwalkerswap-libraries/contracts/libraries/FixedPoint.sol",
  "ast": {
    "absolutePath": "moonwalkerswap-libraries/contracts/libraries/FixedPoint.sol",
    "exportedSymbols": {
      "FixedPoint": [
        7858
      ]
    },
    "id": 7859,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 7231,
        "literals": [
          "solidity",
          ">=",
          "0.4",
          ".0"
        ],
        "nodeType": "PragmaDirective",
        "src": "45:24:20"
      },
      {
        "absolutePath": "moonwalkerswap-libraries/contracts/libraries/FullMath.sol",
        "file": "./FullMath.sol",
        "id": 7232,
        "nodeType": "ImportDirective",
        "scope": 7859,
        "sourceUnit": 8080,
        "src": "71:24:20",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "absolutePath": "moonwalkerswap-libraries/contracts/libraries/Babylonian.sol",
        "file": "./Babylonian.sol",
        "id": 7233,
        "nodeType": "ImportDirective",
        "scope": 7859,
        "sourceUnit": 6952,
        "src": "96:26:20",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "absolutePath": "moonwalkerswap-libraries/contracts/libraries/BitMath.sol",
        "file": "./BitMath.sol",
        "id": 7234,
        "nodeType": "ImportDirective",
        "scope": 7859,
        "sourceUnit": 7230,
        "src": "123:23:20",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "abstract": false,
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "library",
        "documentation": null,
        "fullyImplemented": true,
        "id": 7858,
        "linearizedBaseContracts": [
          7858
        ],
        "name": "FixedPoint",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "canonicalName": "FixedPoint.uq112x112",
            "id": 7237,
            "members": [
              {
                "constant": false,
                "id": 7236,
                "mutability": "mutable",
                "name": "_x",
                "nodeType": "VariableDeclaration",
                "overrides": null,
                "scope": 7237,
                "src": "363:10:20",
                "stateVariable": false,
                "storageLocation": "default",
                "typeDescriptions": {
                  "typeIdentifier": "t_uint224",
                  "typeString": "uint224"
                },
                "typeName": {
                  "id": 7235,
                  "name": "uint224",
                  "nodeType": "ElementaryTypeName",
                  "src": "363:7:20",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint224",
                    "typeString": "uint224"
                  }
                },
                "value": null,
                "visibility": "internal"
              }
            ],
            "name": "uq112x112",
            "nodeType": "StructDefinition",
            "scope": 7858,
            "src": "336:44:20",
            "visibility": "public"
          },
          {
            "canonicalName": "FixedPoint.uq144x112",
            "id": 7240,
            "members": [
              {
                "constant": false,
                "id": 7239,
                "mutability": "mutable",
                "name": "_x",
                "nodeType": "VariableDeclaration",
                "overrides": null,
                "scope": 7240,
                "src": "473:10:20",
                "stateVariable": false,
                "storageLocation": "default",
                "typeDescriptions": {
                  "typeIdentifier": "t_uint256",
                  "typeString": "uint256"
                },
                "typeName": {
                  "id": 7238,
                  "name": "uint256",
                  "nodeType": "ElementaryTypeName",
                  "src": "473:7:20",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  }
                },
                "value": null,
                "visibility": "internal"
              }
            ],
            "name": "uq144x112",
            "nodeType": "StructDefinition",
            "scope": 7858,
            "src": "446:44:20",
            "visibility": "public"
          },
          {
            "constant": true,
            "functionSelector": "552f888a",
            "id": 7243,
            "mutability": "constant",
            "name": "RESOLUTION",
            "nodeType": "VariableDeclaration",
            "overrides": null,
            "scope": 7858,
            "src": "496:38:20",
            "stateVariable": true,
            "storageLocation": "default",
            "typeDescriptions": {
              "typeIdentifier": "t_uint8",
              "typeString": "uint8"
            },
            "typeName": {
              "id": 7241,
              "name": "uint8",
              "nodeType": "ElementaryTypeName",
              "src": "496:5:20",
              "typeDescriptions": {
                "typeIdentifier": "t_uint8",
                "typeString": "uint8"
              }
            },
            "value": {
              "argumentTypes": null,
              "hexValue": "313132",
              "id": 7242,
              "isConstant": false,
              "isLValue": false,
              "isPure": true,
              "kind": "number",
              "lValueRequested": false,
              "nodeType": "Literal",
              "src": "531:3:20",
              "subdenomination": null,
              "typeDescriptions": {
                "typeIdentifier": "t_rational_112_by_1",
                "typeString": "int_const 112"
              },
              "value": "112"
            },
            "visibility": "public"
          },
          {
            "constant": true,
            "functionSelector": "3bf7a83e",
            "id": 7246,
            "mutability": "constant",
            "name": "Q112",
            "nodeType": "VariableDeclaration",
            "overrides": null,
            "scope": 7858,
            "src": "540:62:20",
            "stateVariable": true,
            "storageLocation": "default",
            "typeDescriptions": {
              "typeIdentifier": "t_uint256",
              "typeString": "uint256"
            },
            "typeName": {
              "id": 7244,
              "name": "uint256",
              "nodeType": "ElementaryTypeName",
              "src": "540:7:20",
              "typeDescriptions": {
                "typeIdentifier": "t_uint256",
                "typeString": "uint256"
              }
            },
            "value": {
              "argumentTypes": null,
              "hexValue": "30783130303030303030303030303030303030303030303030303030303030",
              "id": 7245,
              "isConstant": false,
              "isLValue": false,
              "isPure": true,
              "kind": "number",
              "lValueRequested": false,
              "nodeType": "Literal",
              "src": "571:31:20",
              "subdenomination": null,
              "typeDescriptions": {
                "typeIdentifier": "t_rational_5192296858534827628530496329220096_by_1",
                "typeString": "int_const 5192...(26 digits omitted)...0096"
              },
              "value": "0x10000000000000000000000000000"
            },
            "visibility": "public"
          },
          {
            "constant": true,
            "id": 7249,
            "mutability": "constant",
            "name": "Q224",
            "nodeType": "VariableDeclaration",
            "overrides": null,
            "scope": 7858,
            "src": "618:91:20",
            "stateVariable": true,
            "storageLocation": "default",
            "typeDescriptions": {
              "typeIdentifier": "t_uint256",
              "typeString": "uint256"
            },
            "typeName": {
              "id": 7247,
              "name": "uint256",
              "nodeType": "ElementaryTypeName",
              "src": "618:7:20",
              "typeDescriptions": {
                "typeIdentifier": "t_uint256",
                "typeString": "uint256"
              }
            },
            "value": {
              "argumentTypes": null,
              "hexValue": "3078313030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030",
              "id": 7248,
              "isConstant": false,
              "isLValue": false,
              "isPure": true,
              "kind": "number",
              "lValueRequested": false,
              "nodeType": "Literal",
              "src": "650:59:20",
              "subdenomination": null,
              "typeDescriptions": {
                "typeIdentifier": "t_rational_26959946667150639794667015087019630673637144422540572481103610249216_by_1",
                "typeString": "int_const 2695...(60 digits omitted)...9216"
              },
              "value": "0x100000000000000000000000000000000000000000000000000000000"
            },
            "visibility": "private"
          },
          {
            "constant": true,
            "id": 7252,
            "mutability": "constant",
            "name": "LOWER_MASK",
            "nodeType": "VariableDeclaration",
            "overrides": null,
            "scope": 7858,
            "src": "725:68:20",
            "stateVariable": true,
            "storageLocation": "default",
            "typeDescriptions": {
              "typeIdentifier": "t_uint256",
              "typeString": "uint256"
            },
            "typeName": {
              "id": 7250,
              "name": "uint256",
              "nodeType": "ElementaryTypeName",
              "src": "725:7:20",
              "typeDescriptions": {
                "typeIdentifier": "t_uint256",
                "typeString": "uint256"
              }
            },
            "value": {
              "argumentTypes": null,
              "hexValue": "307866666666666666666666666666666666666666666666666666666666",
              "id": 7251,
              "isConstant": false,
              "isLValue": false,
              "isPure": true,
              "kind": "number",
              "lValueRequested": false,
              "nodeType": "Literal",
              "src": "763:30:20",
              "subdenomination": null,
              "typeDescriptions": {
                "typeIdentifier": "t_rational_5192296858534827628530496329220095_by_1",
                "typeString": "int_const 5192...(26 digits omitted)...0095"
              },
              "value": "0xffffffffffffffffffffffffffff"
            },
            "visibility": "private"
          },
          {
            "body": {
              "id": 7268,
              "nodeType": "Block",
              "src": "946:59:20",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "commonType": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "id": 7265,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "lValueRequested": false,
                        "leftExpression": {
                          "argumentTypes": null,
                          "arguments": [
                            {
                              "argumentTypes": null,
                              "id": 7262,
                              "name": "x",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7254,
                              "src": "981:1:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint112",
                                "typeString": "uint112"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint112",
                                "typeString": "uint112"
                              }
                            ],
                            "id": 7261,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "973:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint224_$",
                              "typeString": "type(uint224)"
                            },
                            "typeName": {
                              "id": 7260,
                              "name": "uint224",
                              "nodeType": "ElementaryTypeName",
                              "src": "973:7:20",
                              "typeDescriptions": {
                                "typeIdentifier": null,
                                "typeString": null
                              }
                            }
                          },
                          "id": 7263,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "973:10:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "nodeType": "BinaryOperation",
                        "operator": "<<",
                        "rightExpression": {
                          "argumentTypes": null,
                          "id": 7264,
                          "name": "RESOLUTION",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7243,
                          "src": "987:10:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "src": "973:24:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      ],
                      "id": 7259,
                      "name": "uq112x112",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 7237,
                      "src": "963:9:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_type$_t_struct$_uq112x112_$7237_storage_ptr_$",
                        "typeString": "type(struct FixedPoint.uq112x112 storage pointer)"
                      }
                    },
                    "id": 7266,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "structConstructorCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "963:35:20",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                      "typeString": "struct FixedPoint.uq112x112 memory"
                    }
                  },
                  "functionReturnParameters": 7258,
                  "id": 7267,
                  "nodeType": "Return",
                  "src": "956:42:20"
                }
              ]
            },
            "documentation": null,
            "id": 7269,
            "implemented": true,
            "kind": "function",
            "modifiers": [],
            "name": "encode",
            "nodeType": "FunctionDefinition",
            "overrides": null,
            "parameters": {
              "id": 7255,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 7254,
                  "mutability": "mutable",
                  "name": "x",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7269,
                  "src": "894:9:20",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint112",
                    "typeString": "uint112"
                  },
                  "typeName": {
                    "id": 7253,
                    "name": "uint112",
                    "nodeType": "ElementaryTypeName",
                    "src": "894:7:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint112",
                      "typeString": "uint112"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "893:11:20"
            },
            "returnParameters": {
              "id": 7258,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 7257,
                  "mutability": "mutable",
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7269,
                  "src": "928:16:20",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                    "typeString": "struct FixedPoint.uq112x112"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 7256,
                    "name": "uq112x112",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 7237,
                    "src": "928:9:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq112x112_$7237_storage_ptr",
                      "typeString": "struct FixedPoint.uq112x112"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "927:18:20"
            },
            "scope": 7858,
            "src": "878:127:20",
            "stateMutability": "pure",
            "virtual": false,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 7285,
              "nodeType": "Block",
              "src": "1122:59:20",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "commonType": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "id": 7282,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "lValueRequested": false,
                        "leftExpression": {
                          "argumentTypes": null,
                          "arguments": [
                            {
                              "argumentTypes": null,
                              "id": 7279,
                              "name": "x",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7271,
                              "src": "1157:1:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint144",
                                "typeString": "uint144"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint144",
                                "typeString": "uint144"
                              }
                            ],
                            "id": 7278,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "1149:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint256_$",
                              "typeString": "type(uint256)"
                            },
                            "typeName": {
                              "id": 7277,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1149:7:20",
                              "typeDescriptions": {
                                "typeIdentifier": null,
                                "typeString": null
                              }
                            }
                          },
                          "id": 7280,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1149:10:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "BinaryOperation",
                        "operator": "<<",
                        "rightExpression": {
                          "argumentTypes": null,
                          "id": 7281,
                          "name": "RESOLUTION",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7243,
                          "src": "1163:10:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "src": "1149:24:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      ],
                      "id": 7276,
                      "name": "uq144x112",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 7240,
                      "src": "1139:9:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_type$_t_struct$_uq144x112_$7240_storage_ptr_$",
                        "typeString": "type(struct FixedPoint.uq144x112 storage pointer)"
                      }
                    },
                    "id": 7283,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "structConstructorCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "1139:35:20",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq144x112_$7240_memory_ptr",
                      "typeString": "struct FixedPoint.uq144x112 memory"
                    }
                  },
                  "functionReturnParameters": 7275,
                  "id": 7284,
                  "nodeType": "Return",
                  "src": "1132:42:20"
                }
              ]
            },
            "documentation": null,
            "id": 7286,
            "implemented": true,
            "kind": "function",
            "modifiers": [],
            "name": "encode144",
            "nodeType": "FunctionDefinition",
            "overrides": null,
            "parameters": {
              "id": 7272,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 7271,
                  "mutability": "mutable",
                  "name": "x",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7286,
                  "src": "1070:9:20",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint144",
                    "typeString": "uint144"
                  },
                  "typeName": {
                    "id": 7270,
                    "name": "uint144",
                    "nodeType": "ElementaryTypeName",
                    "src": "1070:7:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint144",
                      "typeString": "uint144"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "1069:11:20"
            },
            "returnParameters": {
              "id": 7275,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 7274,
                  "mutability": "mutable",
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7286,
                  "src": "1104:16:20",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_uq144x112_$7240_memory_ptr",
                    "typeString": "struct FixedPoint.uq144x112"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 7273,
                    "name": "uq144x112",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 7240,
                    "src": "1104:9:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq144x112_$7240_storage_ptr",
                      "typeString": "struct FixedPoint.uq144x112"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "1103:18:20"
            },
            "scope": 7858,
            "src": "1051:130:20",
            "stateMutability": "pure",
            "virtual": false,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 7301,
              "nodeType": "Block",
              "src": "1335:54:20",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "commonType": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "id": 7298,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "lValueRequested": false,
                        "leftExpression": {
                          "argumentTypes": null,
                          "expression": {
                            "argumentTypes": null,
                            "id": 7295,
                            "name": "self",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7288,
                            "src": "1360:4:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                              "typeString": "struct FixedPoint.uq112x112 memory"
                            }
                          },
                          "id": 7296,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "_x",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 7236,
                          "src": "1360:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "nodeType": "BinaryOperation",
                        "operator": ">>",
                        "rightExpression": {
                          "argumentTypes": null,
                          "id": 7297,
                          "name": "RESOLUTION",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7243,
                          "src": "1371:10:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "src": "1360:21:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      ],
                      "id": 7294,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": true,
                      "lValueRequested": false,
                      "nodeType": "ElementaryTypeNameExpression",
                      "src": "1352:7:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_type$_t_uint112_$",
                        "typeString": "type(uint112)"
                      },
                      "typeName": {
                        "id": 7293,
                        "name": "uint112",
                        "nodeType": "ElementaryTypeName",
                        "src": "1352:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": null,
                          "typeString": null
                        }
                      }
                    },
                    "id": 7299,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "typeConversion",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "1352:30:20",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint112",
                      "typeString": "uint112"
                    }
                  },
                  "functionReturnParameters": 7292,
                  "id": 7300,
                  "nodeType": "Return",
                  "src": "1345:37:20"
                }
              ]
            },
            "documentation": null,
            "id": 7302,
            "implemented": true,
            "kind": "function",
            "modifiers": [],
            "name": "decode",
            "nodeType": "FunctionDefinition",
            "overrides": null,
            "parameters": {
              "id": 7289,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 7288,
                  "mutability": "mutable",
                  "name": "self",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7302,
                  "src": "1280:21:20",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                    "typeString": "struct FixedPoint.uq112x112"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 7287,
                    "name": "uq112x112",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 7237,
                    "src": "1280:9:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq112x112_$7237_storage_ptr",
                      "typeString": "struct FixedPoint.uq112x112"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "1279:23:20"
            },
            "returnParameters": {
              "id": 7292,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 7291,
                  "mutability": "mutable",
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7302,
                  "src": "1326:7:20",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint112",
                    "typeString": "uint112"
                  },
                  "typeName": {
                    "id": 7290,
                    "name": "uint112",
                    "nodeType": "ElementaryTypeName",
                    "src": "1326:7:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint112",
                      "typeString": "uint112"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "1325:9:20"
            },
            "scope": 7858,
            "src": "1264:125:20",
            "stateMutability": "pure",
            "virtual": false,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 7317,
              "nodeType": "Block",
              "src": "1546:54:20",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "commonType": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "id": 7314,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "lValueRequested": false,
                        "leftExpression": {
                          "argumentTypes": null,
                          "expression": {
                            "argumentTypes": null,
                            "id": 7311,
                            "name": "self",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7304,
                            "src": "1571:4:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_uq144x112_$7240_memory_ptr",
                              "typeString": "struct FixedPoint.uq144x112 memory"
                            }
                          },
                          "id": 7312,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "_x",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 7239,
                          "src": "1571:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "BinaryOperation",
                        "operator": ">>",
                        "rightExpression": {
                          "argumentTypes": null,
                          "id": 7313,
                          "name": "RESOLUTION",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7243,
                          "src": "1582:10:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "src": "1571:21:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      ],
                      "id": 7310,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": true,
                      "lValueRequested": false,
                      "nodeType": "ElementaryTypeNameExpression",
                      "src": "1563:7:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_type$_t_uint144_$",
                        "typeString": "type(uint144)"
                      },
                      "typeName": {
                        "id": 7309,
                        "name": "uint144",
                        "nodeType": "ElementaryTypeName",
                        "src": "1563:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": null,
                          "typeString": null
                        }
                      }
                    },
                    "id": 7315,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "typeConversion",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "1563:30:20",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint144",
                      "typeString": "uint144"
                    }
                  },
                  "functionReturnParameters": 7308,
                  "id": 7316,
                  "nodeType": "Return",
                  "src": "1556:37:20"
                }
              ]
            },
            "documentation": null,
            "id": 7318,
            "implemented": true,
            "kind": "function",
            "modifiers": [],
            "name": "decode144",
            "nodeType": "FunctionDefinition",
            "overrides": null,
            "parameters": {
              "id": 7305,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 7304,
                  "mutability": "mutable",
                  "name": "self",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7318,
                  "src": "1491:21:20",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_uq144x112_$7240_memory_ptr",
                    "typeString": "struct FixedPoint.uq144x112"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 7303,
                    "name": "uq144x112",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 7240,
                    "src": "1491:9:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq144x112_$7240_storage_ptr",
                      "typeString": "struct FixedPoint.uq144x112"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "1490:23:20"
            },
            "returnParameters": {
              "id": 7308,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 7307,
                  "mutability": "mutable",
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7318,
                  "src": "1537:7:20",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint144",
                    "typeString": "uint144"
                  },
                  "typeName": {
                    "id": 7306,
                    "name": "uint144",
                    "nodeType": "ElementaryTypeName",
                    "src": "1537:7:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint144",
                      "typeString": "uint144"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "1536:9:20"
            },
            "scope": 7858,
            "src": "1472:128:20",
            "stateMutability": "pure",
            "virtual": false,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 7355,
              "nodeType": "Block",
              "src": "1782:149:20",
              "statements": [
                {
                  "assignments": [
                    7328
                  ],
                  "declarations": [
                    {
                      "constant": false,
                      "id": 7328,
                      "mutability": "mutable",
                      "name": "z",
                      "nodeType": "VariableDeclaration",
                      "overrides": null,
                      "scope": 7355,
                      "src": "1792:9:20",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      },
                      "typeName": {
                        "id": 7327,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "1792:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      "value": null,
                      "visibility": "internal"
                    }
                  ],
                  "id": 7330,
                  "initialValue": {
                    "argumentTypes": null,
                    "hexValue": "30",
                    "id": 7329,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1804:1:20",
                    "subdenomination": null,
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_0_by_1",
                      "typeString": "int_const 0"
                    },
                    "value": "0"
                  },
                  "nodeType": "VariableDeclarationStatement",
                  "src": "1792:13:20"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "commonType": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "id": 7347,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "lValueRequested": false,
                        "leftExpression": {
                          "argumentTypes": null,
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 7334,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "argumentTypes": null,
                            "id": 7332,
                            "name": "y",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7322,
                            "src": "1823:1:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "argumentTypes": null,
                            "hexValue": "30",
                            "id": 7333,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1828:1:20",
                            "subdenomination": null,
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "1823:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "nodeType": "BinaryOperation",
                        "operator": "||",
                        "rightExpression": {
                          "argumentTypes": null,
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 7346,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "argumentTypes": null,
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 7343,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "argumentTypes": null,
                              "components": [
                                {
                                  "argumentTypes": null,
                                  "id": 7340,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftHandSide": {
                                    "argumentTypes": null,
                                    "id": 7335,
                                    "name": "z",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7328,
                                    "src": "1834:1:20",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "Assignment",
                                  "operator": "=",
                                  "rightHandSide": {
                                    "argumentTypes": null,
                                    "commonType": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "id": 7339,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "argumentTypes": null,
                                      "expression": {
                                        "argumentTypes": null,
                                        "id": 7336,
                                        "name": "self",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7320,
                                        "src": "1838:4:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                                          "typeString": "struct FixedPoint.uq112x112 memory"
                                        }
                                      },
                                      "id": 7337,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "_x",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 7236,
                                      "src": "1838:7:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint224",
                                        "typeString": "uint224"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "*",
                                    "rightExpression": {
                                      "argumentTypes": null,
                                      "id": 7338,
                                      "name": "y",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7322,
                                      "src": "1848:1:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "src": "1838:11:20",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "src": "1834:15:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "id": 7341,
                              "isConstant": false,
                              "isInlineArray": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "TupleExpression",
                              "src": "1833:17:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "/",
                            "rightExpression": {
                              "argumentTypes": null,
                              "id": 7342,
                              "name": "y",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7322,
                              "src": "1853:1:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "src": "1833:21:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "argumentTypes": null,
                            "expression": {
                              "argumentTypes": null,
                              "id": 7344,
                              "name": "self",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7320,
                              "src": "1858:4:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                                "typeString": "struct FixedPoint.uq112x112 memory"
                              }
                            },
                            "id": 7345,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "_x",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 7236,
                            "src": "1858:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "src": "1833:32:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "src": "1823:42:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      },
                      {
                        "argumentTypes": null,
                        "hexValue": "4669786564506f696e743a3a6d756c3a206f766572666c6f77",
                        "id": 7348,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "string",
                        "lValueRequested": false,
                        "nodeType": "Literal",
                        "src": "1867:27:20",
                        "subdenomination": null,
                        "typeDescriptions": {
                          "typeIdentifier": "t_stringliteral_4948de739aba85946a14984f472451f25a4920e9fae93fb8ed011d3024f8abcf",
                          "typeString": "literal_string \"FixedPoint::mul: overflow\""
                        },
                        "value": "FixedPoint::mul: overflow"
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        {
                          "typeIdentifier": "t_stringliteral_4948de739aba85946a14984f472451f25a4920e9fae93fb8ed011d3024f8abcf",
                          "typeString": "literal_string \"FixedPoint::mul: overflow\""
                        }
                      ],
                      "id": 7331,
                      "name": "require",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [
                        -18,
                        -18
                      ],
                      "referencedDeclaration": -18,
                      "src": "1815:7:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                        "typeString": "function (bool,string memory) pure"
                      }
                    },
                    "id": 7349,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "1815:80:20",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_tuple$__$",
                      "typeString": "tuple()"
                    }
                  },
                  "id": 7350,
                  "nodeType": "ExpressionStatement",
                  "src": "1815:80:20"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "id": 7352,
                        "name": "z",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 7328,
                        "src": "1922:1:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      ],
                      "id": 7351,
                      "name": "uq144x112",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 7240,
                      "src": "1912:9:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_type$_t_struct$_uq144x112_$7240_storage_ptr_$",
                        "typeString": "type(struct FixedPoint.uq144x112 storage pointer)"
                      }
                    },
                    "id": 7353,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "structConstructorCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "1912:12:20",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq144x112_$7240_memory_ptr",
                      "typeString": "struct FixedPoint.uq144x112 memory"
                    }
                  },
                  "functionReturnParameters": 7326,
                  "id": 7354,
                  "nodeType": "Return",
                  "src": "1905:19:20"
                }
              ]
            },
            "documentation": null,
            "id": 7356,
            "implemented": true,
            "kind": "function",
            "modifiers": [],
            "name": "mul",
            "nodeType": "FunctionDefinition",
            "overrides": null,
            "parameters": {
              "id": 7323,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 7320,
                  "mutability": "mutable",
                  "name": "self",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7356,
                  "src": "1707:21:20",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                    "typeString": "struct FixedPoint.uq112x112"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 7319,
                    "name": "uq112x112",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 7237,
                    "src": "1707:9:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq112x112_$7237_storage_ptr",
                      "typeString": "struct FixedPoint.uq112x112"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 7322,
                  "mutability": "mutable",
                  "name": "y",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7356,
                  "src": "1730:9:20",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 7321,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1730:7:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "1706:34:20"
            },
            "returnParameters": {
              "id": 7326,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 7325,
                  "mutability": "mutable",
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7356,
                  "src": "1764:16:20",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_uq144x112_$7240_memory_ptr",
                    "typeString": "struct FixedPoint.uq144x112"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 7324,
                    "name": "uq144x112",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 7240,
                    "src": "1764:9:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq144x112_$7240_storage_ptr",
                      "typeString": "struct FixedPoint.uq144x112"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "1763:18:20"
            },
            "scope": 7858,
            "src": "1694:237:20",
            "stateMutability": "pure",
            "virtual": false,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 7407,
              "nodeType": "Block",
              "src": "2109:190:20",
              "statements": [
                {
                  "assignments": [
                    7366
                  ],
                  "declarations": [
                    {
                      "constant": false,
                      "id": 7366,
                      "mutability": "mutable",
                      "name": "z",
                      "nodeType": "VariableDeclaration",
                      "overrides": null,
                      "scope": 7407,
                      "src": "2119:9:20",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      },
                      "typeName": {
                        "id": 7365,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "2119:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      "value": null,
                      "visibility": "internal"
                    }
                  ],
                  "id": 7383,
                  "initialValue": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "expression": {
                          "argumentTypes": null,
                          "id": 7369,
                          "name": "self",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7358,
                          "src": "2147:4:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                            "typeString": "struct FixedPoint.uq112x112 memory"
                          }
                        },
                        "id": 7370,
                        "isConstant": false,
                        "isLValue": true,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "_x",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 7236,
                        "src": "2147:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      },
                      {
                        "argumentTypes": null,
                        "arguments": [
                          {
                            "argumentTypes": null,
                            "condition": {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              },
                              "id": 7375,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "argumentTypes": null,
                                "id": 7373,
                                "name": "y",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7360,
                                "src": "2164:1:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<",
                              "rightExpression": {
                                "argumentTypes": null,
                                "hexValue": "30",
                                "id": 7374,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2168:1:20",
                                "subdenomination": null,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "2164:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "falseExpression": {
                              "argumentTypes": null,
                              "id": 7378,
                              "name": "y",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7360,
                              "src": "2177:1:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            },
                            "id": 7379,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "Conditional",
                            "src": "2164:14:20",
                            "trueExpression": {
                              "argumentTypes": null,
                              "id": 7377,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "UnaryOperation",
                              "operator": "-",
                              "prefix": true,
                              "src": "2172:2:20",
                              "subExpression": {
                                "argumentTypes": null,
                                "id": 7376,
                                "name": "y",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7360,
                                "src": "2173:1:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                }
                              },
                              "typeDescriptions": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_int256",
                              "typeString": "int256"
                            }
                          }
                        ],
                        "expression": {
                          "argumentTypes": [
                            {
                              "typeIdentifier": "t_int256",
                              "typeString": "int256"
                            }
                          ],
                          "id": 7372,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "lValueRequested": false,
                          "nodeType": "ElementaryTypeNameExpression",
                          "src": "2156:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_type$_t_uint256_$",
                            "typeString": "type(uint256)"
                          },
                          "typeName": {
                            "id": 7371,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "2156:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": null,
                              "typeString": null
                            }
                          }
                        },
                        "id": 7380,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "kind": "typeConversion",
                        "lValueRequested": false,
                        "names": [],
                        "nodeType": "FunctionCall",
                        "src": "2156:23:20",
                        "tryCall": false,
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      {
                        "argumentTypes": null,
                        "id": 7381,
                        "name": "Q112",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 7246,
                        "src": "2181:4:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      ],
                      "expression": {
                        "argumentTypes": null,
                        "id": 7367,
                        "name": "FullMath",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 8079,
                        "src": "2131:8:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_type$_t_contract$_FullMath_$8079_$",
                          "typeString": "type(library FullMath)"
                        }
                      },
                      "id": 7368,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "lValueRequested": false,
                      "memberName": "mulDiv",
                      "nodeType": "MemberAccess",
                      "referencedDeclaration": 8078,
                      "src": "2131:15:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                        "typeString": "function (uint256,uint256,uint256) pure returns (uint256)"
                      }
                    },
                    "id": 7382,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "2131:55:20",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "nodeType": "VariableDeclarationStatement",
                  "src": "2119:67:20"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "commonType": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "id": 7389,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "lValueRequested": false,
                        "leftExpression": {
                          "argumentTypes": null,
                          "id": 7385,
                          "name": "z",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7366,
                          "src": "2204:1:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "BinaryOperation",
                        "operator": "<",
                        "rightExpression": {
                          "argumentTypes": null,
                          "commonType": {
                            "typeIdentifier": "t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819968_by_1",
                            "typeString": "int_const 5789...(69 digits omitted)...9968"
                          },
                          "id": 7388,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "lValueRequested": false,
                          "leftExpression": {
                            "argumentTypes": null,
                            "hexValue": "32",
                            "id": 7386,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "2208:1:20",
                            "subdenomination": null,
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_2_by_1",
                              "typeString": "int_const 2"
                            },
                            "value": "2"
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "**",
                          "rightExpression": {
                            "argumentTypes": null,
                            "hexValue": "323535",
                            "id": 7387,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "2211:3:20",
                            "subdenomination": null,
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_255_by_1",
                              "typeString": "int_const 255"
                            },
                            "value": "255"
                          },
                          "src": "2208:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819968_by_1",
                            "typeString": "int_const 5789...(69 digits omitted)...9968"
                          }
                        },
                        "src": "2204:10:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      },
                      {
                        "argumentTypes": null,
                        "hexValue": "4669786564506f696e743a3a6d756c693a206f766572666c6f77",
                        "id": 7390,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "string",
                        "lValueRequested": false,
                        "nodeType": "Literal",
                        "src": "2216:28:20",
                        "subdenomination": null,
                        "typeDescriptions": {
                          "typeIdentifier": "t_stringliteral_a352085f3dae8adf2989a66ed19b1d5cfc2957ebdd82dbbc3ae8101610d3fd00",
                          "typeString": "literal_string \"FixedPoint::muli: overflow\""
                        },
                        "value": "FixedPoint::muli: overflow"
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        {
                          "typeIdentifier": "t_stringliteral_a352085f3dae8adf2989a66ed19b1d5cfc2957ebdd82dbbc3ae8101610d3fd00",
                          "typeString": "literal_string \"FixedPoint::muli: overflow\""
                        }
                      ],
                      "id": 7384,
                      "name": "require",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [
                        -18,
                        -18
                      ],
                      "referencedDeclaration": -18,
                      "src": "2196:7:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                        "typeString": "function (bool,string memory) pure"
                      }
                    },
                    "id": 7391,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "2196:49:20",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_tuple$__$",
                      "typeString": "tuple()"
                    }
                  },
                  "id": 7392,
                  "nodeType": "ExpressionStatement",
                  "src": "2196:49:20"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "condition": {
                      "argumentTypes": null,
                      "commonType": {
                        "typeIdentifier": "t_int256",
                        "typeString": "int256"
                      },
                      "id": 7395,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "lValueRequested": false,
                      "leftExpression": {
                        "argumentTypes": null,
                        "id": 7393,
                        "name": "y",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 7360,
                        "src": "2262:1:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int256",
                          "typeString": "int256"
                        }
                      },
                      "nodeType": "BinaryOperation",
                      "operator": "<",
                      "rightExpression": {
                        "argumentTypes": null,
                        "hexValue": "30",
                        "id": 7394,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "number",
                        "lValueRequested": false,
                        "nodeType": "Literal",
                        "src": "2266:1:20",
                        "subdenomination": null,
                        "typeDescriptions": {
                          "typeIdentifier": "t_rational_0_by_1",
                          "typeString": "int_const 0"
                        },
                        "value": "0"
                      },
                      "src": "2262:5:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bool",
                        "typeString": "bool"
                      }
                    },
                    "falseExpression": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "id": 7403,
                          "name": "z",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7366,
                          "src": "2290:1:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        ],
                        "id": 7402,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "lValueRequested": false,
                        "nodeType": "ElementaryTypeNameExpression",
                        "src": "2283:6:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_type$_t_int256_$",
                          "typeString": "type(int256)"
                        },
                        "typeName": {
                          "id": 7401,
                          "name": "int256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2283:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": null,
                            "typeString": null
                          }
                        }
                      },
                      "id": 7404,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "kind": "typeConversion",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "2283:9:20",
                      "tryCall": false,
                      "typeDescriptions": {
                        "typeIdentifier": "t_int256",
                        "typeString": "int256"
                      }
                    },
                    "id": 7405,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "nodeType": "Conditional",
                    "src": "2262:30:20",
                    "trueExpression": {
                      "argumentTypes": null,
                      "id": 7400,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "lValueRequested": false,
                      "nodeType": "UnaryOperation",
                      "operator": "-",
                      "prefix": true,
                      "src": "2270:10:20",
                      "subExpression": {
                        "argumentTypes": null,
                        "arguments": [
                          {
                            "argumentTypes": null,
                            "id": 7398,
                            "name": "z",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7366,
                            "src": "2278:1:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          }
                        ],
                        "expression": {
                          "argumentTypes": [
                            {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          ],
                          "id": 7397,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "lValueRequested": false,
                          "nodeType": "ElementaryTypeNameExpression",
                          "src": "2271:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_type$_t_int256_$",
                            "typeString": "type(int256)"
                          },
                          "typeName": {
                            "id": 7396,
                            "name": "int256",
                            "nodeType": "ElementaryTypeName",
                            "src": "2271:6:20",
                            "typeDescriptions": {
                              "typeIdentifier": null,
                              "typeString": null
                            }
                          }
                        },
                        "id": 7399,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "kind": "typeConversion",
                        "lValueRequested": false,
                        "names": [],
                        "nodeType": "FunctionCall",
                        "src": "2271:9:20",
                        "tryCall": false,
                        "typeDescriptions": {
                          "typeIdentifier": "t_int256",
                          "typeString": "int256"
                        }
                      },
                      "typeDescriptions": {
                        "typeIdentifier": "t_int256",
                        "typeString": "int256"
                      }
                    },
                    "typeDescriptions": {
                      "typeIdentifier": "t_int256",
                      "typeString": "int256"
                    }
                  },
                  "functionReturnParameters": 7364,
                  "id": 7406,
                  "nodeType": "Return",
                  "src": "2255:37:20"
                }
              ]
            },
            "documentation": null,
            "id": 7408,
            "implemented": true,
            "kind": "function",
            "modifiers": [],
            "name": "muli",
            "nodeType": "FunctionDefinition",
            "overrides": null,
            "parameters": {
              "id": 7361,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 7358,
                  "mutability": "mutable",
                  "name": "self",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7408,
                  "src": "2045:21:20",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                    "typeString": "struct FixedPoint.uq112x112"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 7357,
                    "name": "uq112x112",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 7237,
                    "src": "2045:9:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq112x112_$7237_storage_ptr",
                      "typeString": "struct FixedPoint.uq112x112"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 7360,
                  "mutability": "mutable",
                  "name": "y",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7408,
                  "src": "2068:8:20",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_int256",
                    "typeString": "int256"
                  },
                  "typeName": {
                    "id": 7359,
                    "name": "int256",
                    "nodeType": "ElementaryTypeName",
                    "src": "2068:6:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_int256",
                      "typeString": "int256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "2044:33:20"
            },
            "returnParameters": {
              "id": 7364,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 7363,
                  "mutability": "mutable",
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7408,
                  "src": "2101:6:20",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_int256",
                    "typeString": "int256"
                  },
                  "typeName": {
                    "id": 7362,
                    "name": "int256",
                    "nodeType": "ElementaryTypeName",
                    "src": "2101:6:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_int256",
                      "typeString": "int256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "2100:8:20"
            },
            "scope": 7858,
            "src": "2031:268:20",
            "stateMutability": "pure",
            "virtual": false,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 7555,
              "nodeType": "Block",
              "src": "2487:1160:20",
              "statements": [
                {
                  "condition": {
                    "argumentTypes": null,
                    "commonType": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    },
                    "id": 7425,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftExpression": {
                      "argumentTypes": null,
                      "commonType": {
                        "typeIdentifier": "t_uint224",
                        "typeString": "uint224"
                      },
                      "id": 7420,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "lValueRequested": false,
                      "leftExpression": {
                        "argumentTypes": null,
                        "expression": {
                          "argumentTypes": null,
                          "id": 7417,
                          "name": "self",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7410,
                          "src": "2501:4:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                            "typeString": "struct FixedPoint.uq112x112 memory"
                          }
                        },
                        "id": 7418,
                        "isConstant": false,
                        "isLValue": true,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "_x",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 7236,
                        "src": "2501:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      },
                      "nodeType": "BinaryOperation",
                      "operator": "==",
                      "rightExpression": {
                        "argumentTypes": null,
                        "hexValue": "30",
                        "id": 7419,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "number",
                        "lValueRequested": false,
                        "nodeType": "Literal",
                        "src": "2512:1:20",
                        "subdenomination": null,
                        "typeDescriptions": {
                          "typeIdentifier": "t_rational_0_by_1",
                          "typeString": "int_const 0"
                        },
                        "value": "0"
                      },
                      "src": "2501:12:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bool",
                        "typeString": "bool"
                      }
                    },
                    "nodeType": "BinaryOperation",
                    "operator": "||",
                    "rightExpression": {
                      "argumentTypes": null,
                      "commonType": {
                        "typeIdentifier": "t_uint224",
                        "typeString": "uint224"
                      },
                      "id": 7424,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "lValueRequested": false,
                      "leftExpression": {
                        "argumentTypes": null,
                        "expression": {
                          "argumentTypes": null,
                          "id": 7421,
                          "name": "other",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7412,
                          "src": "2517:5:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                            "typeString": "struct FixedPoint.uq112x112 memory"
                          }
                        },
                        "id": 7422,
                        "isConstant": false,
                        "isLValue": true,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "_x",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 7236,
                        "src": "2517:8:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      },
                      "nodeType": "BinaryOperation",
                      "operator": "==",
                      "rightExpression": {
                        "argumentTypes": null,
                        "hexValue": "30",
                        "id": 7423,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "number",
                        "lValueRequested": false,
                        "nodeType": "Literal",
                        "src": "2529:1:20",
                        "subdenomination": null,
                        "typeDescriptions": {
                          "typeIdentifier": "t_rational_0_by_1",
                          "typeString": "int_const 0"
                        },
                        "value": "0"
                      },
                      "src": "2517:13:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bool",
                        "typeString": "bool"
                      }
                    },
                    "src": "2501:29:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "falseBody": null,
                  "id": 7431,
                  "nodeType": "IfStatement",
                  "src": "2497:79:20",
                  "trueBody": {
                    "id": 7430,
                    "nodeType": "Block",
                    "src": "2532:44:20",
                    "statements": [
                      {
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [
                            {
                              "argumentTypes": null,
                              "hexValue": "30",
                              "id": 7427,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2563:1:20",
                              "subdenomination": null,
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              "value": "0"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              }
                            ],
                            "id": 7426,
                            "name": "uq112x112",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7237,
                            "src": "2553:9:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_struct$_uq112x112_$7237_storage_ptr_$",
                              "typeString": "type(struct FixedPoint.uq112x112 storage pointer)"
                            }
                          },
                          "id": 7428,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "structConstructorCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2553:12:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                            "typeString": "struct FixedPoint.uq112x112 memory"
                          }
                        },
                        "functionReturnParameters": 7416,
                        "id": 7429,
                        "nodeType": "Return",
                        "src": "2546:19:20"
                      }
                    ]
                  }
                },
                {
                  "assignments": [
                    7433
                  ],
                  "declarations": [
                    {
                      "constant": false,
                      "id": 7433,
                      "mutability": "mutable",
                      "name": "upper_self",
                      "nodeType": "VariableDeclaration",
                      "overrides": null,
                      "scope": 7555,
                      "src": "2585:18:20",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint112",
                        "typeString": "uint112"
                      },
                      "typeName": {
                        "id": 7432,
                        "name": "uint112",
                        "nodeType": "ElementaryTypeName",
                        "src": "2585:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint112",
                          "typeString": "uint112"
                        }
                      },
                      "value": null,
                      "visibility": "internal"
                    }
                  ],
                  "id": 7441,
                  "initialValue": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "commonType": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "id": 7439,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "lValueRequested": false,
                        "leftExpression": {
                          "argumentTypes": null,
                          "expression": {
                            "argumentTypes": null,
                            "id": 7436,
                            "name": "self",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7410,
                            "src": "2614:4:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                              "typeString": "struct FixedPoint.uq112x112 memory"
                            }
                          },
                          "id": 7437,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "_x",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 7236,
                          "src": "2614:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "nodeType": "BinaryOperation",
                        "operator": ">>",
                        "rightExpression": {
                          "argumentTypes": null,
                          "id": 7438,
                          "name": "RESOLUTION",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7243,
                          "src": "2625:10:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "src": "2614:21:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      ],
                      "id": 7435,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": true,
                      "lValueRequested": false,
                      "nodeType": "ElementaryTypeNameExpression",
                      "src": "2606:7:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_type$_t_uint112_$",
                        "typeString": "type(uint112)"
                      },
                      "typeName": {
                        "id": 7434,
                        "name": "uint112",
                        "nodeType": "ElementaryTypeName",
                        "src": "2606:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": null,
                          "typeString": null
                        }
                      }
                    },
                    "id": 7440,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "typeConversion",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "2606:30:20",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint112",
                      "typeString": "uint112"
                    }
                  },
                  "nodeType": "VariableDeclarationStatement",
                  "src": "2585:51:20"
                },
                {
                  "assignments": [
                    7443
                  ],
                  "declarations": [
                    {
                      "constant": false,
                      "id": 7443,
                      "mutability": "mutable",
                      "name": "lower_self",
                      "nodeType": "VariableDeclaration",
                      "overrides": null,
                      "scope": 7555,
                      "src": "2655:18:20",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint112",
                        "typeString": "uint112"
                      },
                      "typeName": {
                        "id": 7442,
                        "name": "uint112",
                        "nodeType": "ElementaryTypeName",
                        "src": "2655:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint112",
                          "typeString": "uint112"
                        }
                      },
                      "value": null,
                      "visibility": "internal"
                    }
                  ],
                  "id": 7451,
                  "initialValue": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "commonType": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "id": 7449,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "lValueRequested": false,
                        "leftExpression": {
                          "argumentTypes": null,
                          "expression": {
                            "argumentTypes": null,
                            "id": 7446,
                            "name": "self",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7410,
                            "src": "2684:4:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                              "typeString": "struct FixedPoint.uq112x112 memory"
                            }
                          },
                          "id": 7447,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "_x",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 7236,
                          "src": "2684:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "nodeType": "BinaryOperation",
                        "operator": "&",
                        "rightExpression": {
                          "argumentTypes": null,
                          "id": 7448,
                          "name": "LOWER_MASK",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7252,
                          "src": "2694:10:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "src": "2684:20:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      ],
                      "id": 7445,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": true,
                      "lValueRequested": false,
                      "nodeType": "ElementaryTypeNameExpression",
                      "src": "2676:7:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_type$_t_uint112_$",
                        "typeString": "type(uint112)"
                      },
                      "typeName": {
                        "id": 7444,
                        "name": "uint112",
                        "nodeType": "ElementaryTypeName",
                        "src": "2676:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": null,
                          "typeString": null
                        }
                      }
                    },
                    "id": 7450,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "typeConversion",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "2676:29:20",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint112",
                      "typeString": "uint112"
                    }
                  },
                  "nodeType": "VariableDeclarationStatement",
                  "src": "2655:50:20"
                },
                {
                  "assignments": [
                    7453
                  ],
                  "declarations": [
                    {
                      "constant": false,
                      "id": 7453,
                      "mutability": "mutable",
                      "name": "upper_other",
                      "nodeType": "VariableDeclaration",
                      "overrides": null,
                      "scope": 7555,
                      "src": "2727:19:20",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint112",
                        "typeString": "uint112"
                      },
                      "typeName": {
                        "id": 7452,
                        "name": "uint112",
                        "nodeType": "ElementaryTypeName",
                        "src": "2727:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint112",
                          "typeString": "uint112"
                        }
                      },
                      "value": null,
                      "visibility": "internal"
                    }
                  ],
                  "id": 7461,
                  "initialValue": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "commonType": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "id": 7459,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "lValueRequested": false,
                        "leftExpression": {
                          "argumentTypes": null,
                          "expression": {
                            "argumentTypes": null,
                            "id": 7456,
                            "name": "other",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7412,
                            "src": "2757:5:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                              "typeString": "struct FixedPoint.uq112x112 memory"
                            }
                          },
                          "id": 7457,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "_x",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 7236,
                          "src": "2757:8:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "nodeType": "BinaryOperation",
                        "operator": ">>",
                        "rightExpression": {
                          "argumentTypes": null,
                          "id": 7458,
                          "name": "RESOLUTION",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7243,
                          "src": "2769:10:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "src": "2757:22:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      ],
                      "id": 7455,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": true,
                      "lValueRequested": false,
                      "nodeType": "ElementaryTypeNameExpression",
                      "src": "2749:7:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_type$_t_uint112_$",
                        "typeString": "type(uint112)"
                      },
                      "typeName": {
                        "id": 7454,
                        "name": "uint112",
                        "nodeType": "ElementaryTypeName",
                        "src": "2749:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": null,
                          "typeString": null
                        }
                      }
                    },
                    "id": 7460,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "typeConversion",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "2749:31:20",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint112",
                      "typeString": "uint112"
                    }
                  },
                  "nodeType": "VariableDeclarationStatement",
                  "src": "2727:53:20"
                },
                {
                  "assignments": [
                    7463
                  ],
                  "declarations": [
                    {
                      "constant": false,
                      "id": 7463,
                      "mutability": "mutable",
                      "name": "lower_other",
                      "nodeType": "VariableDeclaration",
                      "overrides": null,
                      "scope": 7555,
                      "src": "2799:19:20",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint112",
                        "typeString": "uint112"
                      },
                      "typeName": {
                        "id": 7462,
                        "name": "uint112",
                        "nodeType": "ElementaryTypeName",
                        "src": "2799:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint112",
                          "typeString": "uint112"
                        }
                      },
                      "value": null,
                      "visibility": "internal"
                    }
                  ],
                  "id": 7471,
                  "initialValue": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "commonType": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "id": 7469,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "lValueRequested": false,
                        "leftExpression": {
                          "argumentTypes": null,
                          "expression": {
                            "argumentTypes": null,
                            "id": 7466,
                            "name": "other",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7412,
                            "src": "2829:5:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                              "typeString": "struct FixedPoint.uq112x112 memory"
                            }
                          },
                          "id": 7467,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "_x",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 7236,
                          "src": "2829:8:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "nodeType": "BinaryOperation",
                        "operator": "&",
                        "rightExpression": {
                          "argumentTypes": null,
                          "id": 7468,
                          "name": "LOWER_MASK",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7252,
                          "src": "2840:10:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "src": "2829:21:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      ],
                      "id": 7465,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": true,
                      "lValueRequested": false,
                      "nodeType": "ElementaryTypeNameExpression",
                      "src": "2821:7:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_type$_t_uint112_$",
                        "typeString": "type(uint112)"
                      },
                      "typeName": {
                        "id": 7464,
                        "name": "uint112",
                        "nodeType": "ElementaryTypeName",
                        "src": "2821:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": null,
                          "typeString": null
                        }
                      }
                    },
                    "id": 7470,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "typeConversion",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "2821:30:20",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint112",
                      "typeString": "uint112"
                    }
                  },
                  "nodeType": "VariableDeclarationStatement",
                  "src": "2799:52:20"
                },
                {
                  "assignments": [
                    7473
                  ],
                  "declarations": [
                    {
                      "constant": false,
                      "id": 7473,
                      "mutability": "mutable",
                      "name": "upper",
                      "nodeType": "VariableDeclaration",
                      "overrides": null,
                      "scope": 7555,
                      "src": "2902:13:20",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint224",
                        "typeString": "uint224"
                      },
                      "typeName": {
                        "id": 7472,
                        "name": "uint224",
                        "nodeType": "ElementaryTypeName",
                        "src": "2902:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      },
                      "value": null,
                      "visibility": "internal"
                    }
                  ],
                  "id": 7480,
                  "initialValue": {
                    "argumentTypes": null,
                    "commonType": {
                      "typeIdentifier": "t_uint224",
                      "typeString": "uint224"
                    },
                    "id": 7479,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftExpression": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "id": 7476,
                          "name": "upper_self",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7433,
                          "src": "2926:10:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint112",
                            "typeString": "uint112"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_uint112",
                            "typeString": "uint112"
                          }
                        ],
                        "id": 7475,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "lValueRequested": false,
                        "nodeType": "ElementaryTypeNameExpression",
                        "src": "2918:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_type$_t_uint224_$",
                          "typeString": "type(uint224)"
                        },
                        "typeName": {
                          "id": 7474,
                          "name": "uint224",
                          "nodeType": "ElementaryTypeName",
                          "src": "2918:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": null,
                            "typeString": null
                          }
                        }
                      },
                      "id": 7477,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "kind": "typeConversion",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "2918:19:20",
                      "tryCall": false,
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint224",
                        "typeString": "uint224"
                      }
                    },
                    "nodeType": "BinaryOperation",
                    "operator": "*",
                    "rightExpression": {
                      "argumentTypes": null,
                      "id": 7478,
                      "name": "upper_other",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 7453,
                      "src": "2940:11:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint112",
                        "typeString": "uint112"
                      }
                    },
                    "src": "2918:33:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint224",
                      "typeString": "uint224"
                    }
                  },
                  "nodeType": "VariableDeclarationStatement",
                  "src": "2902:49:20"
                },
                {
                  "assignments": [
                    7482
                  ],
                  "declarations": [
                    {
                      "constant": false,
                      "id": 7482,
                      "mutability": "mutable",
                      "name": "lower",
                      "nodeType": "VariableDeclaration",
                      "overrides": null,
                      "scope": 7555,
                      "src": "2970:13:20",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint224",
                        "typeString": "uint224"
                      },
                      "typeName": {
                        "id": 7481,
                        "name": "uint224",
                        "nodeType": "ElementaryTypeName",
                        "src": "2970:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      },
                      "value": null,
                      "visibility": "internal"
                    }
                  ],
                  "id": 7489,
                  "initialValue": {
                    "argumentTypes": null,
                    "commonType": {
                      "typeIdentifier": "t_uint224",
                      "typeString": "uint224"
                    },
                    "id": 7488,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftExpression": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "id": 7485,
                          "name": "lower_self",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7443,
                          "src": "2994:10:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint112",
                            "typeString": "uint112"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_uint112",
                            "typeString": "uint112"
                          }
                        ],
                        "id": 7484,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "lValueRequested": false,
                        "nodeType": "ElementaryTypeNameExpression",
                        "src": "2986:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_type$_t_uint224_$",
                          "typeString": "type(uint224)"
                        },
                        "typeName": {
                          "id": 7483,
                          "name": "uint224",
                          "nodeType": "ElementaryTypeName",
                          "src": "2986:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": null,
                            "typeString": null
                          }
                        }
                      },
                      "id": 7486,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "kind": "typeConversion",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "2986:19:20",
                      "tryCall": false,
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint224",
                        "typeString": "uint224"
                      }
                    },
                    "nodeType": "BinaryOperation",
                    "operator": "*",
                    "rightExpression": {
                      "argumentTypes": null,
                      "id": 7487,
                      "name": "lower_other",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 7463,
                      "src": "3008:11:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint112",
                        "typeString": "uint112"
                      }
                    },
                    "src": "2986:33:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint224",
                      "typeString": "uint224"
                    }
                  },
                  "nodeType": "VariableDeclarationStatement",
                  "src": "2970:49:20"
                },
                {
                  "assignments": [
                    7491
                  ],
                  "declarations": [
                    {
                      "constant": false,
                      "id": 7491,
                      "mutability": "mutable",
                      "name": "uppers_lowero",
                      "nodeType": "VariableDeclaration",
                      "overrides": null,
                      "scope": 7555,
                      "src": "3041:21:20",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint224",
                        "typeString": "uint224"
                      },
                      "typeName": {
                        "id": 7490,
                        "name": "uint224",
                        "nodeType": "ElementaryTypeName",
                        "src": "3041:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      },
                      "value": null,
                      "visibility": "internal"
                    }
                  ],
                  "id": 7498,
                  "initialValue": {
                    "argumentTypes": null,
                    "commonType": {
                      "typeIdentifier": "t_uint224",
                      "typeString": "uint224"
                    },
                    "id": 7497,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftExpression": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "id": 7494,
                          "name": "upper_self",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7433,
                          "src": "3073:10:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint112",
                            "typeString": "uint112"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_uint112",
                            "typeString": "uint112"
                          }
                        ],
                        "id": 7493,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "lValueRequested": false,
                        "nodeType": "ElementaryTypeNameExpression",
                        "src": "3065:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_type$_t_uint224_$",
                          "typeString": "type(uint224)"
                        },
                        "typeName": {
                          "id": 7492,
                          "name": "uint224",
                          "nodeType": "ElementaryTypeName",
                          "src": "3065:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": null,
                            "typeString": null
                          }
                        }
                      },
                      "id": 7495,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "kind": "typeConversion",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "3065:19:20",
                      "tryCall": false,
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint224",
                        "typeString": "uint224"
                      }
                    },
                    "nodeType": "BinaryOperation",
                    "operator": "*",
                    "rightExpression": {
                      "argumentTypes": null,
                      "id": 7496,
                      "name": "lower_other",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 7463,
                      "src": "3087:11:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint112",
                        "typeString": "uint112"
                      }
                    },
                    "src": "3065:33:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint224",
                      "typeString": "uint224"
                    }
                  },
                  "nodeType": "VariableDeclarationStatement",
                  "src": "3041:57:20"
                },
                {
                  "assignments": [
                    7500
                  ],
                  "declarations": [
                    {
                      "constant": false,
                      "id": 7500,
                      "mutability": "mutable",
                      "name": "uppero_lowers",
                      "nodeType": "VariableDeclaration",
                      "overrides": null,
                      "scope": 7555,
                      "src": "3120:21:20",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint224",
                        "typeString": "uint224"
                      },
                      "typeName": {
                        "id": 7499,
                        "name": "uint224",
                        "nodeType": "ElementaryTypeName",
                        "src": "3120:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      },
                      "value": null,
                      "visibility": "internal"
                    }
                  ],
                  "id": 7507,
                  "initialValue": {
                    "argumentTypes": null,
                    "commonType": {
                      "typeIdentifier": "t_uint224",
                      "typeString": "uint224"
                    },
                    "id": 7506,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftExpression": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "id": 7503,
                          "name": "upper_other",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7453,
                          "src": "3152:11:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint112",
                            "typeString": "uint112"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_uint112",
                            "typeString": "uint112"
                          }
                        ],
                        "id": 7502,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "lValueRequested": false,
                        "nodeType": "ElementaryTypeNameExpression",
                        "src": "3144:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_type$_t_uint224_$",
                          "typeString": "type(uint224)"
                        },
                        "typeName": {
                          "id": 7501,
                          "name": "uint224",
                          "nodeType": "ElementaryTypeName",
                          "src": "3144:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": null,
                            "typeString": null
                          }
                        }
                      },
                      "id": 7504,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "kind": "typeConversion",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "3144:20:20",
                      "tryCall": false,
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint224",
                        "typeString": "uint224"
                      }
                    },
                    "nodeType": "BinaryOperation",
                    "operator": "*",
                    "rightExpression": {
                      "argumentTypes": null,
                      "id": 7505,
                      "name": "lower_self",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 7443,
                      "src": "3167:10:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint112",
                        "typeString": "uint112"
                      }
                    },
                    "src": "3144:33:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint224",
                      "typeString": "uint224"
                    }
                  },
                  "nodeType": "VariableDeclarationStatement",
                  "src": "3120:57:20"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "commonType": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "id": 7515,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "lValueRequested": false,
                        "leftExpression": {
                          "argumentTypes": null,
                          "id": 7509,
                          "name": "upper",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7473,
                          "src": "3254:5:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "nodeType": "BinaryOperation",
                        "operator": "<=",
                        "rightExpression": {
                          "argumentTypes": null,
                          "arguments": [
                            {
                              "argumentTypes": null,
                              "id": 7513,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "UnaryOperation",
                              "operator": "-",
                              "prefix": true,
                              "src": "3271:2:20",
                              "subExpression": {
                                "argumentTypes": null,
                                "hexValue": "31",
                                "id": 7512,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "3272:1:20",
                                "subdenomination": null,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_minus_1_by_1",
                                "typeString": "int_const -1"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_rational_minus_1_by_1",
                                "typeString": "int_const -1"
                              }
                            ],
                            "id": 7511,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "3263:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint112_$",
                              "typeString": "type(uint112)"
                            },
                            "typeName": {
                              "id": 7510,
                              "name": "uint112",
                              "nodeType": "ElementaryTypeName",
                              "src": "3263:7:20",
                              "typeDescriptions": {
                                "typeIdentifier": null,
                                "typeString": null
                              }
                            }
                          },
                          "id": 7514,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3263:11:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint112",
                            "typeString": "uint112"
                          }
                        },
                        "src": "3254:20:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      },
                      {
                        "argumentTypes": null,
                        "hexValue": "4669786564506f696e743a3a6d756c75713a207570706572206f766572666c6f77",
                        "id": 7516,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "string",
                        "lValueRequested": false,
                        "nodeType": "Literal",
                        "src": "3276:35:20",
                        "subdenomination": null,
                        "typeDescriptions": {
                          "typeIdentifier": "t_stringliteral_b52493e04417af33ef99b1a68ac11af8712869fc1c194d72e6b0646c5968b5de",
                          "typeString": "literal_string \"FixedPoint::muluq: upper overflow\""
                        },
                        "value": "FixedPoint::muluq: upper overflow"
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        {
                          "typeIdentifier": "t_stringliteral_b52493e04417af33ef99b1a68ac11af8712869fc1c194d72e6b0646c5968b5de",
                          "typeString": "literal_string \"FixedPoint::muluq: upper overflow\""
                        }
                      ],
                      "id": 7508,
                      "name": "require",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [
                        -18,
                        -18
                      ],
                      "referencedDeclaration": -18,
                      "src": "3246:7:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                        "typeString": "function (bool,string memory) pure"
                      }
                    },
                    "id": 7517,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "3246:66:20",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_tuple$__$",
                      "typeString": "tuple()"
                    }
                  },
                  "id": 7518,
                  "nodeType": "ExpressionStatement",
                  "src": "3246:66:20"
                },
                {
                  "assignments": [
                    7520
                  ],
                  "declarations": [
                    {
                      "constant": false,
                      "id": 7520,
                      "mutability": "mutable",
                      "name": "sum",
                      "nodeType": "VariableDeclaration",
                      "overrides": null,
                      "scope": 7555,
                      "src": "3387:11:20",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      },
                      "typeName": {
                        "id": 7519,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "3387:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      "value": null,
                      "visibility": "internal"
                    }
                  ],
                  "id": 7536,
                  "initialValue": {
                    "argumentTypes": null,
                    "commonType": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    },
                    "id": 7535,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftExpression": {
                      "argumentTypes": null,
                      "commonType": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      },
                      "id": 7530,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "lValueRequested": false,
                      "leftExpression": {
                        "argumentTypes": null,
                        "commonType": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "id": 7528,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "lValueRequested": false,
                        "leftExpression": {
                          "argumentTypes": null,
                          "arguments": [
                            {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              },
                              "id": 7525,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "argumentTypes": null,
                                "id": 7523,
                                "name": "upper",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7473,
                                "src": "3409:5:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<<",
                              "rightExpression": {
                                "argumentTypes": null,
                                "id": 7524,
                                "name": "RESOLUTION",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7243,
                                "src": "3418:10:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "src": "3409:19:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            ],
                            "id": 7522,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "3401:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint256_$",
                              "typeString": "type(uint256)"
                            },
                            "typeName": {
                              "id": 7521,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "3401:7:20",
                              "typeDescriptions": {
                                "typeIdentifier": null,
                                "typeString": null
                              }
                            }
                          },
                          "id": 7526,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3401:28:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "BinaryOperation",
                        "operator": "+",
                        "rightExpression": {
                          "argumentTypes": null,
                          "id": 7527,
                          "name": "uppers_lowero",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7491,
                          "src": "3432:13:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "src": "3401:44:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      "nodeType": "BinaryOperation",
                      "operator": "+",
                      "rightExpression": {
                        "argumentTypes": null,
                        "id": 7529,
                        "name": "uppero_lowers",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 7500,
                        "src": "3448:13:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      },
                      "src": "3401:60:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "nodeType": "BinaryOperation",
                    "operator": "+",
                    "rightExpression": {
                      "argumentTypes": null,
                      "components": [
                        {
                          "argumentTypes": null,
                          "commonType": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          },
                          "id": 7533,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "argumentTypes": null,
                            "id": 7531,
                            "name": "lower",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7482,
                            "src": "3465:5:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">>",
                          "rightExpression": {
                            "argumentTypes": null,
                            "id": 7532,
                            "name": "RESOLUTION",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7243,
                            "src": "3474:10:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "3465:19:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        }
                      ],
                      "id": 7534,
                      "isConstant": false,
                      "isInlineArray": false,
                      "isLValue": false,
                      "isPure": false,
                      "lValueRequested": false,
                      "nodeType": "TupleExpression",
                      "src": "3464:21:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint224",
                        "typeString": "uint224"
                      }
                    },
                    "src": "3401:84:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "nodeType": "VariableDeclarationStatement",
                  "src": "3387:98:20"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "commonType": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "id": 7544,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "lValueRequested": false,
                        "leftExpression": {
                          "argumentTypes": null,
                          "id": 7538,
                          "name": "sum",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7520,
                          "src": "3545:3:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "BinaryOperation",
                        "operator": "<=",
                        "rightExpression": {
                          "argumentTypes": null,
                          "arguments": [
                            {
                              "argumentTypes": null,
                              "id": 7542,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "UnaryOperation",
                              "operator": "-",
                              "prefix": true,
                              "src": "3560:2:20",
                              "subExpression": {
                                "argumentTypes": null,
                                "hexValue": "31",
                                "id": 7541,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "3561:1:20",
                                "subdenomination": null,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_minus_1_by_1",
                                "typeString": "int_const -1"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_rational_minus_1_by_1",
                                "typeString": "int_const -1"
                              }
                            ],
                            "id": 7540,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "3552:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint224_$",
                              "typeString": "type(uint224)"
                            },
                            "typeName": {
                              "id": 7539,
                              "name": "uint224",
                              "nodeType": "ElementaryTypeName",
                              "src": "3552:7:20",
                              "typeDescriptions": {
                                "typeIdentifier": null,
                                "typeString": null
                              }
                            }
                          },
                          "id": 7543,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3552:11:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "src": "3545:18:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      },
                      {
                        "argumentTypes": null,
                        "hexValue": "4669786564506f696e743a3a6d756c75713a2073756d206f766572666c6f77",
                        "id": 7545,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "string",
                        "lValueRequested": false,
                        "nodeType": "Literal",
                        "src": "3565:33:20",
                        "subdenomination": null,
                        "typeDescriptions": {
                          "typeIdentifier": "t_stringliteral_a26cd9bd987e78cd1c5f6e66afec1e08b996885c9b9c44f1a5fd3a63466b2eff",
                          "typeString": "literal_string \"FixedPoint::muluq: sum overflow\""
                        },
                        "value": "FixedPoint::muluq: sum overflow"
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        {
                          "typeIdentifier": "t_stringliteral_a26cd9bd987e78cd1c5f6e66afec1e08b996885c9b9c44f1a5fd3a63466b2eff",
                          "typeString": "literal_string \"FixedPoint::muluq: sum overflow\""
                        }
                      ],
                      "id": 7537,
                      "name": "require",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [
                        -18,
                        -18
                      ],
                      "referencedDeclaration": -18,
                      "src": "3537:7:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                        "typeString": "function (bool,string memory) pure"
                      }
                    },
                    "id": 7546,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "3537:62:20",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_tuple$__$",
                      "typeString": "tuple()"
                    }
                  },
                  "id": 7547,
                  "nodeType": "ExpressionStatement",
                  "src": "3537:62:20"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "arguments": [
                          {
                            "argumentTypes": null,
                            "id": 7551,
                            "name": "sum",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7520,
                            "src": "3635:3:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          }
                        ],
                        "expression": {
                          "argumentTypes": [
                            {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          ],
                          "id": 7550,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "lValueRequested": false,
                          "nodeType": "ElementaryTypeNameExpression",
                          "src": "3627:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_type$_t_uint224_$",
                            "typeString": "type(uint224)"
                          },
                          "typeName": {
                            "id": 7549,
                            "name": "uint224",
                            "nodeType": "ElementaryTypeName",
                            "src": "3627:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": null,
                              "typeString": null
                            }
                          }
                        },
                        "id": 7552,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "kind": "typeConversion",
                        "lValueRequested": false,
                        "names": [],
                        "nodeType": "FunctionCall",
                        "src": "3627:12:20",
                        "tryCall": false,
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      ],
                      "id": 7548,
                      "name": "uq112x112",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 7237,
                      "src": "3617:9:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_type$_t_struct$_uq112x112_$7237_storage_ptr_$",
                        "typeString": "type(struct FixedPoint.uq112x112 storage pointer)"
                      }
                    },
                    "id": 7553,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "structConstructorCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "3617:23:20",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                      "typeString": "struct FixedPoint.uq112x112 memory"
                    }
                  },
                  "functionReturnParameters": 7416,
                  "id": 7554,
                  "nodeType": "Return",
                  "src": "3610:30:20"
                }
              ]
            },
            "documentation": null,
            "id": 7556,
            "implemented": true,
            "kind": "function",
            "modifiers": [],
            "name": "muluq",
            "nodeType": "FunctionDefinition",
            "overrides": null,
            "parameters": {
              "id": 7413,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 7410,
                  "mutability": "mutable",
                  "name": "self",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7556,
                  "src": "2399:21:20",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                    "typeString": "struct FixedPoint.uq112x112"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 7409,
                    "name": "uq112x112",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 7237,
                    "src": "2399:9:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq112x112_$7237_storage_ptr",
                      "typeString": "struct FixedPoint.uq112x112"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 7412,
                  "mutability": "mutable",
                  "name": "other",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7556,
                  "src": "2422:22:20",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                    "typeString": "struct FixedPoint.uq112x112"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 7411,
                    "name": "uq112x112",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 7237,
                    "src": "2422:9:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq112x112_$7237_storage_ptr",
                      "typeString": "struct FixedPoint.uq112x112"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "2398:47:20"
            },
            "returnParameters": {
              "id": 7416,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 7415,
                  "mutability": "mutable",
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7556,
                  "src": "2469:16:20",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                    "typeString": "struct FixedPoint.uq112x112"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 7414,
                    "name": "uq112x112",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 7237,
                    "src": "2469:9:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq112x112_$7237_storage_ptr",
                      "typeString": "struct FixedPoint.uq112x112"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "2468:18:20"
            },
            "scope": 7858,
            "src": "2384:1263:20",
            "stateMutability": "pure",
            "virtual": false,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 7658,
              "nodeType": "Block",
              "src": "3820:590:20",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "commonType": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "id": 7569,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "lValueRequested": false,
                        "leftExpression": {
                          "argumentTypes": null,
                          "expression": {
                            "argumentTypes": null,
                            "id": 7566,
                            "name": "other",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7560,
                            "src": "3838:5:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                              "typeString": "struct FixedPoint.uq112x112 memory"
                            }
                          },
                          "id": 7567,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "_x",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 7236,
                          "src": "3838:8:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "nodeType": "BinaryOperation",
                        "operator": ">",
                        "rightExpression": {
                          "argumentTypes": null,
                          "hexValue": "30",
                          "id": 7568,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "3849:1:20",
                          "subdenomination": null,
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "src": "3838:12:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      },
                      {
                        "argumentTypes": null,
                        "hexValue": "4669786564506f696e743a3a64697675713a206469766973696f6e206279207a65726f",
                        "id": 7570,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "string",
                        "lValueRequested": false,
                        "nodeType": "Literal",
                        "src": "3852:37:20",
                        "subdenomination": null,
                        "typeDescriptions": {
                          "typeIdentifier": "t_stringliteral_422bc21f2eb91510a9cc7c0ead94b70d98345c9617c11cff466b9a69e8fa701d",
                          "typeString": "literal_string \"FixedPoint::divuq: division by zero\""
                        },
                        "value": "FixedPoint::divuq: division by zero"
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        {
                          "typeIdentifier": "t_stringliteral_422bc21f2eb91510a9cc7c0ead94b70d98345c9617c11cff466b9a69e8fa701d",
                          "typeString": "literal_string \"FixedPoint::divuq: division by zero\""
                        }
                      ],
                      "id": 7565,
                      "name": "require",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [
                        -18,
                        -18
                      ],
                      "referencedDeclaration": -18,
                      "src": "3830:7:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                        "typeString": "function (bool,string memory) pure"
                      }
                    },
                    "id": 7571,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "3830:60:20",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_tuple$__$",
                      "typeString": "tuple()"
                    }
                  },
                  "id": 7572,
                  "nodeType": "ExpressionStatement",
                  "src": "3830:60:20"
                },
                {
                  "condition": {
                    "argumentTypes": null,
                    "commonType": {
                      "typeIdentifier": "t_uint224",
                      "typeString": "uint224"
                    },
                    "id": 7577,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftExpression": {
                      "argumentTypes": null,
                      "expression": {
                        "argumentTypes": null,
                        "id": 7573,
                        "name": "self",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 7558,
                        "src": "3904:4:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                          "typeString": "struct FixedPoint.uq112x112 memory"
                        }
                      },
                      "id": 7574,
                      "isConstant": false,
                      "isLValue": true,
                      "isPure": false,
                      "lValueRequested": false,
                      "memberName": "_x",
                      "nodeType": "MemberAccess",
                      "referencedDeclaration": 7236,
                      "src": "3904:7:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint224",
                        "typeString": "uint224"
                      }
                    },
                    "nodeType": "BinaryOperation",
                    "operator": "==",
                    "rightExpression": {
                      "argumentTypes": null,
                      "expression": {
                        "argumentTypes": null,
                        "id": 7575,
                        "name": "other",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 7560,
                        "src": "3915:5:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                          "typeString": "struct FixedPoint.uq112x112 memory"
                        }
                      },
                      "id": 7576,
                      "isConstant": false,
                      "isLValue": true,
                      "isPure": false,
                      "lValueRequested": false,
                      "memberName": "_x",
                      "nodeType": "MemberAccess",
                      "referencedDeclaration": 7236,
                      "src": "3915:8:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint224",
                        "typeString": "uint224"
                      }
                    },
                    "src": "3904:19:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "falseBody": null,
                  "id": 7586,
                  "nodeType": "IfStatement",
                  "src": "3900:81:20",
                  "trueBody": {
                    "id": 7585,
                    "nodeType": "Block",
                    "src": "3925:56:20",
                    "statements": [
                      {
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [
                            {
                              "argumentTypes": null,
                              "arguments": [
                                {
                                  "argumentTypes": null,
                                  "id": 7581,
                                  "name": "Q112",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7246,
                                  "src": "3964:4:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 7580,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3956:7:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint224_$",
                                  "typeString": "type(uint224)"
                                },
                                "typeName": {
                                  "id": 7579,
                                  "name": "uint224",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3956:7:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": null,
                                    "typeString": null
                                  }
                                }
                              },
                              "id": 7582,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3956:13:20",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            ],
                            "id": 7578,
                            "name": "uq112x112",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7237,
                            "src": "3946:9:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_struct$_uq112x112_$7237_storage_ptr_$",
                              "typeString": "type(struct FixedPoint.uq112x112 storage pointer)"
                            }
                          },
                          "id": 7583,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "structConstructorCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3946:24:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                            "typeString": "struct FixedPoint.uq112x112 memory"
                          }
                        },
                        "functionReturnParameters": 7564,
                        "id": 7584,
                        "nodeType": "Return",
                        "src": "3939:31:20"
                      }
                    ]
                  }
                },
                {
                  "condition": {
                    "argumentTypes": null,
                    "commonType": {
                      "typeIdentifier": "t_uint224",
                      "typeString": "uint224"
                    },
                    "id": 7594,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftExpression": {
                      "argumentTypes": null,
                      "expression": {
                        "argumentTypes": null,
                        "id": 7587,
                        "name": "self",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 7558,
                        "src": "3994:4:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                          "typeString": "struct FixedPoint.uq112x112 memory"
                        }
                      },
                      "id": 7588,
                      "isConstant": false,
                      "isLValue": true,
                      "isPure": false,
                      "lValueRequested": false,
                      "memberName": "_x",
                      "nodeType": "MemberAccess",
                      "referencedDeclaration": 7236,
                      "src": "3994:7:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint224",
                        "typeString": "uint224"
                      }
                    },
                    "nodeType": "BinaryOperation",
                    "operator": "<=",
                    "rightExpression": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "id": 7592,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "lValueRequested": false,
                          "nodeType": "UnaryOperation",
                          "operator": "-",
                          "prefix": true,
                          "src": "4013:2:20",
                          "subExpression": {
                            "argumentTypes": null,
                            "hexValue": "31",
                            "id": 7591,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4014:1:20",
                            "subdenomination": null,
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_1_by_1",
                              "typeString": "int_const 1"
                            },
                            "value": "1"
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_minus_1_by_1",
                            "typeString": "int_const -1"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_rational_minus_1_by_1",
                            "typeString": "int_const -1"
                          }
                        ],
                        "id": 7590,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "lValueRequested": false,
                        "nodeType": "ElementaryTypeNameExpression",
                        "src": "4005:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_type$_t_uint144_$",
                          "typeString": "type(uint144)"
                        },
                        "typeName": {
                          "id": 7589,
                          "name": "uint144",
                          "nodeType": "ElementaryTypeName",
                          "src": "4005:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": null,
                            "typeString": null
                          }
                        }
                      },
                      "id": 7593,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": true,
                      "kind": "typeConversion",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "4005:11:20",
                      "tryCall": false,
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint144",
                        "typeString": "uint144"
                      }
                    },
                    "src": "3994:22:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "falseBody": null,
                  "id": 7628,
                  "nodeType": "IfStatement",
                  "src": "3990:232:20",
                  "trueBody": {
                    "id": 7627,
                    "nodeType": "Block",
                    "src": "4018:204:20",
                    "statements": [
                      {
                        "assignments": [
                          7596
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7596,
                            "mutability": "mutable",
                            "name": "value",
                            "nodeType": "VariableDeclaration",
                            "overrides": null,
                            "scope": 7627,
                            "src": "4032:13:20",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 7595,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4032:7:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "value": null,
                            "visibility": "internal"
                          }
                        ],
                        "id": 7608,
                        "initialValue": {
                          "argumentTypes": null,
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 7607,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "argumentTypes": null,
                            "components": [
                              {
                                "argumentTypes": null,
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 7603,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "argumentTypes": null,
                                  "arguments": [
                                    {
                                      "argumentTypes": null,
                                      "expression": {
                                        "argumentTypes": null,
                                        "id": 7599,
                                        "name": "self",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7558,
                                        "src": "4057:4:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                                          "typeString": "struct FixedPoint.uq112x112 memory"
                                        }
                                      },
                                      "id": 7600,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "_x",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 7236,
                                      "src": "4057:7:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint224",
                                        "typeString": "uint224"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint224",
                                        "typeString": "uint224"
                                      }
                                    ],
                                    "id": 7598,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "4049:7:20",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_uint256_$",
                                      "typeString": "type(uint256)"
                                    },
                                    "typeName": {
                                      "id": 7597,
                                      "name": "uint256",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "4049:7:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": null,
                                        "typeString": null
                                      }
                                    }
                                  },
                                  "id": 7601,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "4049:16:20",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<<",
                                "rightExpression": {
                                  "argumentTypes": null,
                                  "id": 7602,
                                  "name": "RESOLUTION",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7243,
                                  "src": "4069:10:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "src": "4049:30:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "id": 7604,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "4048:32:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "/",
                          "rightExpression": {
                            "argumentTypes": null,
                            "expression": {
                              "argumentTypes": null,
                              "id": 7605,
                              "name": "other",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7560,
                              "src": "4083:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                                "typeString": "struct FixedPoint.uq112x112 memory"
                              }
                            },
                            "id": 7606,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "_x",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 7236,
                            "src": "4083:8:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "src": "4048:43:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4032:59:20"
                      },
                      {
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [
                            {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 7616,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "argumentTypes": null,
                                "id": 7610,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7596,
                                "src": "4113:5:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "argumentTypes": null,
                                "arguments": [
                                  {
                                    "argumentTypes": null,
                                    "id": 7614,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "UnaryOperation",
                                    "operator": "-",
                                    "prefix": true,
                                    "src": "4130:2:20",
                                    "subExpression": {
                                      "argumentTypes": null,
                                      "hexValue": "31",
                                      "id": 7613,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "4131:1:20",
                                      "subdenomination": null,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_rational_1_by_1",
                                        "typeString": "int_const 1"
                                      },
                                      "value": "1"
                                    },
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_minus_1_by_1",
                                      "typeString": "int_const -1"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_minus_1_by_1",
                                      "typeString": "int_const -1"
                                    }
                                  ],
                                  "id": 7612,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "4122:7:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_uint224_$",
                                    "typeString": "type(uint224)"
                                  },
                                  "typeName": {
                                    "id": 7611,
                                    "name": "uint224",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "4122:7:20",
                                    "typeDescriptions": {
                                      "typeIdentifier": null,
                                      "typeString": null
                                    }
                                  }
                                },
                                "id": 7615,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "4122:11:20",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "src": "4113:20:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "argumentTypes": null,
                              "hexValue": "4669786564506f696e743a3a64697675713a206f766572666c6f77",
                              "id": 7617,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4135:29:20",
                              "subdenomination": null,
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_3f2635ef6119740811945e2425893e62b117b25251f7d0aaa9a8ce883079e0ad",
                                "typeString": "literal_string \"FixedPoint::divuq: overflow\""
                              },
                              "value": "FixedPoint::divuq: overflow"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_3f2635ef6119740811945e2425893e62b117b25251f7d0aaa9a8ce883079e0ad",
                                "typeString": "literal_string \"FixedPoint::divuq: overflow\""
                              }
                            ],
                            "id": 7609,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4105:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 7618,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4105:60:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7619,
                        "nodeType": "ExpressionStatement",
                        "src": "4105:60:20"
                      },
                      {
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [
                            {
                              "argumentTypes": null,
                              "arguments": [
                                {
                                  "argumentTypes": null,
                                  "id": 7623,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7596,
                                  "src": "4204:5:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 7622,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "4196:7:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint224_$",
                                  "typeString": "type(uint224)"
                                },
                                "typeName": {
                                  "id": 7621,
                                  "name": "uint224",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "4196:7:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": null,
                                    "typeString": null
                                  }
                                }
                              },
                              "id": 7624,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4196:14:20",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            ],
                            "id": 7620,
                            "name": "uq112x112",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7237,
                            "src": "4186:9:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_struct$_uq112x112_$7237_storage_ptr_$",
                              "typeString": "type(struct FixedPoint.uq112x112 storage pointer)"
                            }
                          },
                          "id": 7625,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "structConstructorCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4186:25:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                            "typeString": "struct FixedPoint.uq112x112 memory"
                          }
                        },
                        "functionReturnParameters": 7564,
                        "id": 7626,
                        "nodeType": "Return",
                        "src": "4179:32:20"
                      }
                    ]
                  }
                },
                {
                  "assignments": [
                    7630
                  ],
                  "declarations": [
                    {
                      "constant": false,
                      "id": 7630,
                      "mutability": "mutable",
                      "name": "result",
                      "nodeType": "VariableDeclaration",
                      "overrides": null,
                      "scope": 7658,
                      "src": "4232:14:20",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      },
                      "typeName": {
                        "id": 7629,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "4232:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      "value": null,
                      "visibility": "internal"
                    }
                  ],
                  "id": 7639,
                  "initialValue": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "id": 7633,
                        "name": "Q112",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 7246,
                        "src": "4265:4:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      {
                        "argumentTypes": null,
                        "expression": {
                          "argumentTypes": null,
                          "id": 7634,
                          "name": "self",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7558,
                          "src": "4271:4:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                            "typeString": "struct FixedPoint.uq112x112 memory"
                          }
                        },
                        "id": 7635,
                        "isConstant": false,
                        "isLValue": true,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "_x",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 7236,
                        "src": "4271:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      },
                      {
                        "argumentTypes": null,
                        "expression": {
                          "argumentTypes": null,
                          "id": 7636,
                          "name": "other",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7560,
                          "src": "4280:5:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                            "typeString": "struct FixedPoint.uq112x112 memory"
                          }
                        },
                        "id": 7637,
                        "isConstant": false,
                        "isLValue": true,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "_x",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 7236,
                        "src": "4280:8:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      ],
                      "expression": {
                        "argumentTypes": null,
                        "id": 7631,
                        "name": "FullMath",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 8079,
                        "src": "4249:8:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_type$_t_contract$_FullMath_$8079_$",
                          "typeString": "type(library FullMath)"
                        }
                      },
                      "id": 7632,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "lValueRequested": false,
                      "memberName": "mulDiv",
                      "nodeType": "MemberAccess",
                      "referencedDeclaration": 8078,
                      "src": "4249:15:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                        "typeString": "function (uint256,uint256,uint256) pure returns (uint256)"
                      }
                    },
                    "id": 7638,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "4249:40:20",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "nodeType": "VariableDeclarationStatement",
                  "src": "4232:57:20"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "commonType": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "id": 7647,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "lValueRequested": false,
                        "leftExpression": {
                          "argumentTypes": null,
                          "id": 7641,
                          "name": "result",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7630,
                          "src": "4307:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "BinaryOperation",
                        "operator": "<=",
                        "rightExpression": {
                          "argumentTypes": null,
                          "arguments": [
                            {
                              "argumentTypes": null,
                              "id": 7645,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "UnaryOperation",
                              "operator": "-",
                              "prefix": true,
                              "src": "4325:2:20",
                              "subExpression": {
                                "argumentTypes": null,
                                "hexValue": "31",
                                "id": 7644,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "4326:1:20",
                                "subdenomination": null,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_minus_1_by_1",
                                "typeString": "int_const -1"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_rational_minus_1_by_1",
                                "typeString": "int_const -1"
                              }
                            ],
                            "id": 7643,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "4317:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint224_$",
                              "typeString": "type(uint224)"
                            },
                            "typeName": {
                              "id": 7642,
                              "name": "uint224",
                              "nodeType": "ElementaryTypeName",
                              "src": "4317:7:20",
                              "typeDescriptions": {
                                "typeIdentifier": null,
                                "typeString": null
                              }
                            }
                          },
                          "id": 7646,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4317:11:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "src": "4307:21:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      },
                      {
                        "argumentTypes": null,
                        "hexValue": "4669786564506f696e743a3a64697675713a206f766572666c6f77",
                        "id": 7648,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "string",
                        "lValueRequested": false,
                        "nodeType": "Literal",
                        "src": "4330:29:20",
                        "subdenomination": null,
                        "typeDescriptions": {
                          "typeIdentifier": "t_stringliteral_3f2635ef6119740811945e2425893e62b117b25251f7d0aaa9a8ce883079e0ad",
                          "typeString": "literal_string \"FixedPoint::divuq: overflow\""
                        },
                        "value": "FixedPoint::divuq: overflow"
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        {
                          "typeIdentifier": "t_stringliteral_3f2635ef6119740811945e2425893e62b117b25251f7d0aaa9a8ce883079e0ad",
                          "typeString": "literal_string \"FixedPoint::divuq: overflow\""
                        }
                      ],
                      "id": 7640,
                      "name": "require",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [
                        -18,
                        -18
                      ],
                      "referencedDeclaration": -18,
                      "src": "4299:7:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                        "typeString": "function (bool,string memory) pure"
                      }
                    },
                    "id": 7649,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "4299:61:20",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_tuple$__$",
                      "typeString": "tuple()"
                    }
                  },
                  "id": 7650,
                  "nodeType": "ExpressionStatement",
                  "src": "4299:61:20"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "arguments": [
                          {
                            "argumentTypes": null,
                            "id": 7654,
                            "name": "result",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7630,
                            "src": "4395:6:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          }
                        ],
                        "expression": {
                          "argumentTypes": [
                            {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          ],
                          "id": 7653,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "lValueRequested": false,
                          "nodeType": "ElementaryTypeNameExpression",
                          "src": "4387:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_type$_t_uint224_$",
                            "typeString": "type(uint224)"
                          },
                          "typeName": {
                            "id": 7652,
                            "name": "uint224",
                            "nodeType": "ElementaryTypeName",
                            "src": "4387:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": null,
                              "typeString": null
                            }
                          }
                        },
                        "id": 7655,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "kind": "typeConversion",
                        "lValueRequested": false,
                        "names": [],
                        "nodeType": "FunctionCall",
                        "src": "4387:15:20",
                        "tryCall": false,
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      ],
                      "id": 7651,
                      "name": "uq112x112",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 7237,
                      "src": "4377:9:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_type$_t_struct$_uq112x112_$7237_storage_ptr_$",
                        "typeString": "type(struct FixedPoint.uq112x112 storage pointer)"
                      }
                    },
                    "id": 7656,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "structConstructorCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "4377:26:20",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                      "typeString": "struct FixedPoint.uq112x112 memory"
                    }
                  },
                  "functionReturnParameters": 7564,
                  "id": 7657,
                  "nodeType": "Return",
                  "src": "4370:33:20"
                }
              ]
            },
            "documentation": null,
            "id": 7659,
            "implemented": true,
            "kind": "function",
            "modifiers": [],
            "name": "divuq",
            "nodeType": "FunctionDefinition",
            "overrides": null,
            "parameters": {
              "id": 7561,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 7558,
                  "mutability": "mutable",
                  "name": "self",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7659,
                  "src": "3732:21:20",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                    "typeString": "struct FixedPoint.uq112x112"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 7557,
                    "name": "uq112x112",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 7237,
                    "src": "3732:9:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq112x112_$7237_storage_ptr",
                      "typeString": "struct FixedPoint.uq112x112"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 7560,
                  "mutability": "mutable",
                  "name": "other",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7659,
                  "src": "3755:22:20",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                    "typeString": "struct FixedPoint.uq112x112"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 7559,
                    "name": "uq112x112",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 7237,
                    "src": "3755:9:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq112x112_$7237_storage_ptr",
                      "typeString": "struct FixedPoint.uq112x112"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "3731:47:20"
            },
            "returnParameters": {
              "id": 7564,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 7563,
                  "mutability": "mutable",
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7659,
                  "src": "3802:16:20",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                    "typeString": "struct FixedPoint.uq112x112"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 7562,
                    "name": "uq112x112",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 7237,
                    "src": "3802:9:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq112x112_$7237_storage_ptr",
                      "typeString": "struct FixedPoint.uq112x112"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "3801:18:20"
            },
            "scope": 7858,
            "src": "3717:693:20",
            "stateMutability": "pure",
            "virtual": false,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 7748,
              "nodeType": "Block",
              "src": "4625:607:20",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "commonType": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "id": 7671,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "lValueRequested": false,
                        "leftExpression": {
                          "argumentTypes": null,
                          "id": 7669,
                          "name": "denominator",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7663,
                          "src": "4643:11:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "BinaryOperation",
                        "operator": ">",
                        "rightExpression": {
                          "argumentTypes": null,
                          "hexValue": "30",
                          "id": 7670,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "4657:1:20",
                          "subdenomination": null,
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "src": "4643:15:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      },
                      {
                        "argumentTypes": null,
                        "hexValue": "4669786564506f696e743a3a6672616374696f6e3a206469766973696f6e206279207a65726f",
                        "id": 7672,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "string",
                        "lValueRequested": false,
                        "nodeType": "Literal",
                        "src": "4660:40:20",
                        "subdenomination": null,
                        "typeDescriptions": {
                          "typeIdentifier": "t_stringliteral_5e8a6c8dfacd0a41f2501735d8ee26d996b9e7e81ff5467dfdfd11a3728a15e7",
                          "typeString": "literal_string \"FixedPoint::fraction: division by zero\""
                        },
                        "value": "FixedPoint::fraction: division by zero"
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        {
                          "typeIdentifier": "t_stringliteral_5e8a6c8dfacd0a41f2501735d8ee26d996b9e7e81ff5467dfdfd11a3728a15e7",
                          "typeString": "literal_string \"FixedPoint::fraction: division by zero\""
                        }
                      ],
                      "id": 7668,
                      "name": "require",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [
                        -18,
                        -18
                      ],
                      "referencedDeclaration": -18,
                      "src": "4635:7:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                        "typeString": "function (bool,string memory) pure"
                      }
                    },
                    "id": 7673,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "4635:66:20",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_tuple$__$",
                      "typeString": "tuple()"
                    }
                  },
                  "id": 7674,
                  "nodeType": "ExpressionStatement",
                  "src": "4635:66:20"
                },
                {
                  "condition": {
                    "argumentTypes": null,
                    "commonType": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    },
                    "id": 7677,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftExpression": {
                      "argumentTypes": null,
                      "id": 7675,
                      "name": "numerator",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 7661,
                      "src": "4715:9:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "nodeType": "BinaryOperation",
                    "operator": "==",
                    "rightExpression": {
                      "argumentTypes": null,
                      "hexValue": "30",
                      "id": 7676,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": true,
                      "kind": "number",
                      "lValueRequested": false,
                      "nodeType": "Literal",
                      "src": "4728:1:20",
                      "subdenomination": null,
                      "typeDescriptions": {
                        "typeIdentifier": "t_rational_0_by_1",
                        "typeString": "int_const 0"
                      },
                      "value": "0"
                    },
                    "src": "4715:14:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "falseBody": null,
                  "id": 7683,
                  "nodeType": "IfStatement",
                  "src": "4711:50:20",
                  "trueBody": {
                    "expression": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "hexValue": "30",
                          "id": 7680,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "4759:1:20",
                          "subdenomination": null,
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          }
                        ],
                        "expression": {
                          "argumentTypes": null,
                          "id": 7678,
                          "name": "FixedPoint",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7858,
                          "src": "4738:10:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_type$_t_contract$_FixedPoint_$7858_$",
                            "typeString": "type(library FixedPoint)"
                          }
                        },
                        "id": 7679,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "uq112x112",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 7237,
                        "src": "4738:20:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_type$_t_struct$_uq112x112_$7237_storage_ptr_$",
                          "typeString": "type(struct FixedPoint.uq112x112 storage pointer)"
                        }
                      },
                      "id": 7681,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": true,
                      "kind": "structConstructorCall",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "4738:23:20",
                      "tryCall": false,
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                        "typeString": "struct FixedPoint.uq112x112 memory"
                      }
                    },
                    "functionReturnParameters": 7667,
                    "id": 7682,
                    "nodeType": "Return",
                    "src": "4731:30:20"
                  }
                },
                {
                  "condition": {
                    "argumentTypes": null,
                    "commonType": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    },
                    "id": 7690,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftExpression": {
                      "argumentTypes": null,
                      "id": 7684,
                      "name": "numerator",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 7661,
                      "src": "4776:9:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "nodeType": "BinaryOperation",
                    "operator": "<=",
                    "rightExpression": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "id": 7688,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "lValueRequested": false,
                          "nodeType": "UnaryOperation",
                          "operator": "-",
                          "prefix": true,
                          "src": "4797:2:20",
                          "subExpression": {
                            "argumentTypes": null,
                            "hexValue": "31",
                            "id": 7687,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4798:1:20",
                            "subdenomination": null,
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_1_by_1",
                              "typeString": "int_const 1"
                            },
                            "value": "1"
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_minus_1_by_1",
                            "typeString": "int_const -1"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_rational_minus_1_by_1",
                            "typeString": "int_const -1"
                          }
                        ],
                        "id": 7686,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "lValueRequested": false,
                        "nodeType": "ElementaryTypeNameExpression",
                        "src": "4789:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_type$_t_uint144_$",
                          "typeString": "type(uint144)"
                        },
                        "typeName": {
                          "id": 7685,
                          "name": "uint144",
                          "nodeType": "ElementaryTypeName",
                          "src": "4789:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": null,
                            "typeString": null
                          }
                        }
                      },
                      "id": 7689,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": true,
                      "kind": "typeConversion",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "4789:11:20",
                      "tryCall": false,
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint144",
                        "typeString": "uint144"
                      }
                    },
                    "src": "4776:24:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "falseBody": {
                    "id": 7746,
                    "nodeType": "Block",
                    "src": "5014:212:20",
                    "statements": [
                      {
                        "assignments": [
                          7720
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7720,
                            "mutability": "mutable",
                            "name": "result",
                            "nodeType": "VariableDeclaration",
                            "overrides": null,
                            "scope": 7746,
                            "src": "5028:14:20",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 7719,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "5028:7:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "value": null,
                            "visibility": "internal"
                          }
                        ],
                        "id": 7727,
                        "initialValue": {
                          "argumentTypes": null,
                          "arguments": [
                            {
                              "argumentTypes": null,
                              "id": 7723,
                              "name": "numerator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7661,
                              "src": "5061:9:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "argumentTypes": null,
                              "id": 7724,
                              "name": "Q112",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7246,
                              "src": "5072:4:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "argumentTypes": null,
                              "id": 7725,
                              "name": "denominator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7663,
                              "src": "5078:11:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "argumentTypes": null,
                              "id": 7721,
                              "name": "FullMath",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8079,
                              "src": "5045:8:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_FullMath_$8079_$",
                                "typeString": "type(library FullMath)"
                              }
                            },
                            "id": 7722,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "mulDiv",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8078,
                            "src": "5045:15:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256,uint256,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 7726,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5045:45:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5028:62:20"
                      },
                      {
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [
                            {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 7735,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "argumentTypes": null,
                                "id": 7729,
                                "name": "result",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7720,
                                "src": "5112:6:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "argumentTypes": null,
                                "arguments": [
                                  {
                                    "argumentTypes": null,
                                    "id": 7733,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "UnaryOperation",
                                    "operator": "-",
                                    "prefix": true,
                                    "src": "5130:2:20",
                                    "subExpression": {
                                      "argumentTypes": null,
                                      "hexValue": "31",
                                      "id": 7732,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "5131:1:20",
                                      "subdenomination": null,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_rational_1_by_1",
                                        "typeString": "int_const 1"
                                      },
                                      "value": "1"
                                    },
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_minus_1_by_1",
                                      "typeString": "int_const -1"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_minus_1_by_1",
                                      "typeString": "int_const -1"
                                    }
                                  ],
                                  "id": 7731,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "5122:7:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_uint224_$",
                                    "typeString": "type(uint224)"
                                  },
                                  "typeName": {
                                    "id": 7730,
                                    "name": "uint224",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "5122:7:20",
                                    "typeDescriptions": {
                                      "typeIdentifier": null,
                                      "typeString": null
                                    }
                                  }
                                },
                                "id": 7734,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5122:11:20",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "src": "5112:21:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "argumentTypes": null,
                              "hexValue": "4669786564506f696e743a3a6672616374696f6e3a206f766572666c6f77",
                              "id": 7736,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5135:32:20",
                              "subdenomination": null,
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_9fe8d10e95984e9ccfd1797a961d8375075b4df29dfe16192bd5e7445ed87d53",
                                "typeString": "literal_string \"FixedPoint::fraction: overflow\""
                              },
                              "value": "FixedPoint::fraction: overflow"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_9fe8d10e95984e9ccfd1797a961d8375075b4df29dfe16192bd5e7445ed87d53",
                                "typeString": "literal_string \"FixedPoint::fraction: overflow\""
                              }
                            ],
                            "id": 7728,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "5104:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 7737,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5104:64:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7738,
                        "nodeType": "ExpressionStatement",
                        "src": "5104:64:20"
                      },
                      {
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [
                            {
                              "argumentTypes": null,
                              "arguments": [
                                {
                                  "argumentTypes": null,
                                  "id": 7742,
                                  "name": "result",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7720,
                                  "src": "5207:6:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 7741,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "5199:7:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint224_$",
                                  "typeString": "type(uint224)"
                                },
                                "typeName": {
                                  "id": 7740,
                                  "name": "uint224",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "5199:7:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": null,
                                    "typeString": null
                                  }
                                }
                              },
                              "id": 7743,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5199:15:20",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            ],
                            "id": 7739,
                            "name": "uq112x112",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7237,
                            "src": "5189:9:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_struct$_uq112x112_$7237_storage_ptr_$",
                              "typeString": "type(struct FixedPoint.uq112x112 storage pointer)"
                            }
                          },
                          "id": 7744,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "structConstructorCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5189:26:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                            "typeString": "struct FixedPoint.uq112x112 memory"
                          }
                        },
                        "functionReturnParameters": 7667,
                        "id": 7745,
                        "nodeType": "Return",
                        "src": "5182:33:20"
                      }
                    ]
                  },
                  "id": 7747,
                  "nodeType": "IfStatement",
                  "src": "4772:454:20",
                  "trueBody": {
                    "id": 7718,
                    "nodeType": "Block",
                    "src": "4802:206:20",
                    "statements": [
                      {
                        "assignments": [
                          7692
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7692,
                            "mutability": "mutable",
                            "name": "result",
                            "nodeType": "VariableDeclaration",
                            "overrides": null,
                            "scope": 7718,
                            "src": "4816:14:20",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 7691,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4816:7:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "value": null,
                            "visibility": "internal"
                          }
                        ],
                        "id": 7699,
                        "initialValue": {
                          "argumentTypes": null,
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 7698,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "argumentTypes": null,
                            "components": [
                              {
                                "argumentTypes": null,
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 7695,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "argumentTypes": null,
                                  "id": 7693,
                                  "name": "numerator",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7661,
                                  "src": "4834:9:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<<",
                                "rightExpression": {
                                  "argumentTypes": null,
                                  "id": 7694,
                                  "name": "RESOLUTION",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7243,
                                  "src": "4847:10:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "src": "4834:23:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "id": 7696,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "4833:25:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "/",
                          "rightExpression": {
                            "argumentTypes": null,
                            "id": 7697,
                            "name": "denominator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7663,
                            "src": "4861:11:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "4833:39:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4816:56:20"
                      },
                      {
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [
                            {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 7707,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "argumentTypes": null,
                                "id": 7701,
                                "name": "result",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7692,
                                "src": "4894:6:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "argumentTypes": null,
                                "arguments": [
                                  {
                                    "argumentTypes": null,
                                    "id": 7705,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "UnaryOperation",
                                    "operator": "-",
                                    "prefix": true,
                                    "src": "4912:2:20",
                                    "subExpression": {
                                      "argumentTypes": null,
                                      "hexValue": "31",
                                      "id": 7704,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "4913:1:20",
                                      "subdenomination": null,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_rational_1_by_1",
                                        "typeString": "int_const 1"
                                      },
                                      "value": "1"
                                    },
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_minus_1_by_1",
                                      "typeString": "int_const -1"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_minus_1_by_1",
                                      "typeString": "int_const -1"
                                    }
                                  ],
                                  "id": 7703,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "4904:7:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_uint224_$",
                                    "typeString": "type(uint224)"
                                  },
                                  "typeName": {
                                    "id": 7702,
                                    "name": "uint224",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "4904:7:20",
                                    "typeDescriptions": {
                                      "typeIdentifier": null,
                                      "typeString": null
                                    }
                                  }
                                },
                                "id": 7706,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "4904:11:20",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "src": "4894:21:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "argumentTypes": null,
                              "hexValue": "4669786564506f696e743a3a6672616374696f6e3a206f766572666c6f77",
                              "id": 7708,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4917:32:20",
                              "subdenomination": null,
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_9fe8d10e95984e9ccfd1797a961d8375075b4df29dfe16192bd5e7445ed87d53",
                                "typeString": "literal_string \"FixedPoint::fraction: overflow\""
                              },
                              "value": "FixedPoint::fraction: overflow"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_9fe8d10e95984e9ccfd1797a961d8375075b4df29dfe16192bd5e7445ed87d53",
                                "typeString": "literal_string \"FixedPoint::fraction: overflow\""
                              }
                            ],
                            "id": 7700,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4886:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 7709,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4886:64:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7710,
                        "nodeType": "ExpressionStatement",
                        "src": "4886:64:20"
                      },
                      {
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [
                            {
                              "argumentTypes": null,
                              "arguments": [
                                {
                                  "argumentTypes": null,
                                  "id": 7714,
                                  "name": "result",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7692,
                                  "src": "4989:6:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 7713,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "4981:7:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint224_$",
                                  "typeString": "type(uint224)"
                                },
                                "typeName": {
                                  "id": 7712,
                                  "name": "uint224",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "4981:7:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": null,
                                    "typeString": null
                                  }
                                }
                              },
                              "id": 7715,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4981:15:20",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            ],
                            "id": 7711,
                            "name": "uq112x112",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7237,
                            "src": "4971:9:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_struct$_uq112x112_$7237_storage_ptr_$",
                              "typeString": "type(struct FixedPoint.uq112x112 storage pointer)"
                            }
                          },
                          "id": 7716,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "structConstructorCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4971:26:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                            "typeString": "struct FixedPoint.uq112x112 memory"
                          }
                        },
                        "functionReturnParameters": 7667,
                        "id": 7717,
                        "nodeType": "Return",
                        "src": "4964:33:20"
                      }
                    ]
                  }
                }
              ]
            },
            "documentation": null,
            "id": 7749,
            "implemented": true,
            "kind": "function",
            "modifiers": [],
            "name": "fraction",
            "nodeType": "FunctionDefinition",
            "overrides": null,
            "parameters": {
              "id": 7664,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 7661,
                  "mutability": "mutable",
                  "name": "numerator",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7749,
                  "src": "4544:17:20",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 7660,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "4544:7:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 7663,
                  "mutability": "mutable",
                  "name": "denominator",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7749,
                  "src": "4563:19:20",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 7662,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "4563:7:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "4543:40:20"
            },
            "returnParameters": {
              "id": 7667,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 7666,
                  "mutability": "mutable",
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7749,
                  "src": "4607:16:20",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                    "typeString": "struct FixedPoint.uq112x112"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 7665,
                    "name": "uq112x112",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 7237,
                    "src": "4607:9:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq112x112_$7237_storage_ptr",
                      "typeString": "struct FixedPoint.uq112x112"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "4606:18:20"
            },
            "scope": 7858,
            "src": "4526:706:20",
            "stateMutability": "pure",
            "virtual": false,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 7782,
              "nodeType": "Block",
              "src": "5404:202:20",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "commonType": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "id": 7760,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "lValueRequested": false,
                        "leftExpression": {
                          "argumentTypes": null,
                          "expression": {
                            "argumentTypes": null,
                            "id": 7757,
                            "name": "self",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7751,
                            "src": "5422:4:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                              "typeString": "struct FixedPoint.uq112x112 memory"
                            }
                          },
                          "id": 7758,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "_x",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 7236,
                          "src": "5422:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "nodeType": "BinaryOperation",
                        "operator": "!=",
                        "rightExpression": {
                          "argumentTypes": null,
                          "hexValue": "30",
                          "id": 7759,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "5433:1:20",
                          "subdenomination": null,
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "src": "5422:12:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      },
                      {
                        "argumentTypes": null,
                        "hexValue": "4669786564506f696e743a3a7265636970726f63616c3a207265636970726f63616c206f66207a65726f",
                        "id": 7761,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "string",
                        "lValueRequested": false,
                        "nodeType": "Literal",
                        "src": "5436:44:20",
                        "subdenomination": null,
                        "typeDescriptions": {
                          "typeIdentifier": "t_stringliteral_d3029a5a93a398fe526ba88b78683cb8409b11161a7a6252d5ccb5c8f4f8aea1",
                          "typeString": "literal_string \"FixedPoint::reciprocal: reciprocal of zero\""
                        },
                        "value": "FixedPoint::reciprocal: reciprocal of zero"
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        {
                          "typeIdentifier": "t_stringliteral_d3029a5a93a398fe526ba88b78683cb8409b11161a7a6252d5ccb5c8f4f8aea1",
                          "typeString": "literal_string \"FixedPoint::reciprocal: reciprocal of zero\""
                        }
                      ],
                      "id": 7756,
                      "name": "require",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [
                        -18,
                        -18
                      ],
                      "referencedDeclaration": -18,
                      "src": "5414:7:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                        "typeString": "function (bool,string memory) pure"
                      }
                    },
                    "id": 7762,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "5414:67:20",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_tuple$__$",
                      "typeString": "tuple()"
                    }
                  },
                  "id": 7763,
                  "nodeType": "ExpressionStatement",
                  "src": "5414:67:20"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "commonType": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "id": 7768,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "lValueRequested": false,
                        "leftExpression": {
                          "argumentTypes": null,
                          "expression": {
                            "argumentTypes": null,
                            "id": 7765,
                            "name": "self",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7751,
                            "src": "5499:4:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                              "typeString": "struct FixedPoint.uq112x112 memory"
                            }
                          },
                          "id": 7766,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "_x",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 7236,
                          "src": "5499:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "nodeType": "BinaryOperation",
                        "operator": "!=",
                        "rightExpression": {
                          "argumentTypes": null,
                          "hexValue": "31",
                          "id": 7767,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "5510:1:20",
                          "subdenomination": null,
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_1_by_1",
                            "typeString": "int_const 1"
                          },
                          "value": "1"
                        },
                        "src": "5499:12:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      },
                      {
                        "argumentTypes": null,
                        "hexValue": "4669786564506f696e743a3a7265636970726f63616c3a206f766572666c6f77",
                        "id": 7769,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "string",
                        "lValueRequested": false,
                        "nodeType": "Literal",
                        "src": "5513:34:20",
                        "subdenomination": null,
                        "typeDescriptions": {
                          "typeIdentifier": "t_stringliteral_d0c2f767026b31296fb6fcaacdf9d3529986be99f9a71f7d756dd15015fdbac1",
                          "typeString": "literal_string \"FixedPoint::reciprocal: overflow\""
                        },
                        "value": "FixedPoint::reciprocal: overflow"
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        {
                          "typeIdentifier": "t_stringliteral_d0c2f767026b31296fb6fcaacdf9d3529986be99f9a71f7d756dd15015fdbac1",
                          "typeString": "literal_string \"FixedPoint::reciprocal: overflow\""
                        }
                      ],
                      "id": 7764,
                      "name": "require",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [
                        -18,
                        -18
                      ],
                      "referencedDeclaration": -18,
                      "src": "5491:7:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                        "typeString": "function (bool,string memory) pure"
                      }
                    },
                    "id": 7770,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "5491:57:20",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_tuple$__$",
                      "typeString": "tuple()"
                    }
                  },
                  "id": 7771,
                  "nodeType": "ExpressionStatement",
                  "src": "5491:57:20"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "arguments": [
                          {
                            "argumentTypes": null,
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 7778,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "argumentTypes": null,
                              "id": 7775,
                              "name": "Q224",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7249,
                              "src": "5583:4:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "/",
                            "rightExpression": {
                              "argumentTypes": null,
                              "expression": {
                                "argumentTypes": null,
                                "id": 7776,
                                "name": "self",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7751,
                                "src": "5590:4:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                                  "typeString": "struct FixedPoint.uq112x112 memory"
                                }
                              },
                              "id": 7777,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "_x",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 7236,
                              "src": "5590:7:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            },
                            "src": "5583:14:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          }
                        ],
                        "expression": {
                          "argumentTypes": [
                            {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          ],
                          "id": 7774,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "lValueRequested": false,
                          "nodeType": "ElementaryTypeNameExpression",
                          "src": "5575:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_type$_t_uint224_$",
                            "typeString": "type(uint224)"
                          },
                          "typeName": {
                            "id": 7773,
                            "name": "uint224",
                            "nodeType": "ElementaryTypeName",
                            "src": "5575:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": null,
                              "typeString": null
                            }
                          }
                        },
                        "id": 7779,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "kind": "typeConversion",
                        "lValueRequested": false,
                        "names": [],
                        "nodeType": "FunctionCall",
                        "src": "5575:23:20",
                        "tryCall": false,
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      ],
                      "id": 7772,
                      "name": "uq112x112",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 7237,
                      "src": "5565:9:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_type$_t_struct$_uq112x112_$7237_storage_ptr_$",
                        "typeString": "type(struct FixedPoint.uq112x112 storage pointer)"
                      }
                    },
                    "id": 7780,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "structConstructorCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "5565:34:20",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                      "typeString": "struct FixedPoint.uq112x112 memory"
                    }
                  },
                  "functionReturnParameters": 7755,
                  "id": 7781,
                  "nodeType": "Return",
                  "src": "5558:41:20"
                }
              ]
            },
            "documentation": null,
            "id": 7783,
            "implemented": true,
            "kind": "function",
            "modifiers": [],
            "name": "reciprocal",
            "nodeType": "FunctionDefinition",
            "overrides": null,
            "parameters": {
              "id": 7752,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 7751,
                  "mutability": "mutable",
                  "name": "self",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7783,
                  "src": "5340:21:20",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                    "typeString": "struct FixedPoint.uq112x112"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 7750,
                    "name": "uq112x112",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 7237,
                    "src": "5340:9:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq112x112_$7237_storage_ptr",
                      "typeString": "struct FixedPoint.uq112x112"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "5339:23:20"
            },
            "returnParameters": {
              "id": 7755,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 7754,
                  "mutability": "mutable",
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7783,
                  "src": "5386:16:20",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                    "typeString": "struct FixedPoint.uq112x112"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 7753,
                    "name": "uq112x112",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 7237,
                    "src": "5386:9:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq112x112_$7237_storage_ptr",
                      "typeString": "struct FixedPoint.uq112x112"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "5385:18:20"
            },
            "scope": 7858,
            "src": "5320:286:20",
            "stateMutability": "pure",
            "virtual": false,
            "visibility": "internal"
          },
          {
            "body": {
              "id": 7856,
              "nodeType": "Block",
              "src": "5761:372:20",
              "statements": [
                {
                  "condition": {
                    "argumentTypes": null,
                    "commonType": {
                      "typeIdentifier": "t_uint224",
                      "typeString": "uint224"
                    },
                    "id": 7797,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftExpression": {
                      "argumentTypes": null,
                      "expression": {
                        "argumentTypes": null,
                        "id": 7790,
                        "name": "self",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 7785,
                        "src": "5775:4:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                          "typeString": "struct FixedPoint.uq112x112 memory"
                        }
                      },
                      "id": 7791,
                      "isConstant": false,
                      "isLValue": true,
                      "isPure": false,
                      "lValueRequested": false,
                      "memberName": "_x",
                      "nodeType": "MemberAccess",
                      "referencedDeclaration": 7236,
                      "src": "5775:7:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint224",
                        "typeString": "uint224"
                      }
                    },
                    "nodeType": "BinaryOperation",
                    "operator": "<=",
                    "rightExpression": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "id": 7795,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "lValueRequested": false,
                          "nodeType": "UnaryOperation",
                          "operator": "-",
                          "prefix": true,
                          "src": "5794:2:20",
                          "subExpression": {
                            "argumentTypes": null,
                            "hexValue": "31",
                            "id": 7794,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5795:1:20",
                            "subdenomination": null,
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_1_by_1",
                              "typeString": "int_const 1"
                            },
                            "value": "1"
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_minus_1_by_1",
                            "typeString": "int_const -1"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_rational_minus_1_by_1",
                            "typeString": "int_const -1"
                          }
                        ],
                        "id": 7793,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "lValueRequested": false,
                        "nodeType": "ElementaryTypeNameExpression",
                        "src": "5786:7:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_type$_t_uint144_$",
                          "typeString": "type(uint144)"
                        },
                        "typeName": {
                          "id": 7792,
                          "name": "uint144",
                          "nodeType": "ElementaryTypeName",
                          "src": "5786:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": null,
                            "typeString": null
                          }
                        }
                      },
                      "id": 7796,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": true,
                      "kind": "typeConversion",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "5786:11:20",
                      "tryCall": false,
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint144",
                        "typeString": "uint144"
                      }
                    },
                    "src": "5775:22:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "falseBody": null,
                  "id": 7815,
                  "nodeType": "IfStatement",
                  "src": "5771:120:20",
                  "trueBody": {
                    "id": 7814,
                    "nodeType": "Block",
                    "src": "5799:92:20",
                    "statements": [
                      {
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [
                            {
                              "argumentTypes": null,
                              "arguments": [
                                {
                                  "argumentTypes": null,
                                  "arguments": [
                                    {
                                      "argumentTypes": null,
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 7809,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "argumentTypes": null,
                                        "arguments": [
                                          {
                                            "argumentTypes": null,
                                            "expression": {
                                              "argumentTypes": null,
                                              "id": 7805,
                                              "name": "self",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 7785,
                                              "src": "5862:4:20",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                                                "typeString": "struct FixedPoint.uq112x112 memory"
                                              }
                                            },
                                            "id": 7806,
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "memberName": "_x",
                                            "nodeType": "MemberAccess",
                                            "referencedDeclaration": 7236,
                                            "src": "5862:7:20",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint224",
                                              "typeString": "uint224"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_uint224",
                                              "typeString": "uint224"
                                            }
                                          ],
                                          "id": 7804,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "nodeType": "ElementaryTypeNameExpression",
                                          "src": "5854:7:20",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_type$_t_uint256_$",
                                            "typeString": "type(uint256)"
                                          },
                                          "typeName": {
                                            "id": 7803,
                                            "name": "uint256",
                                            "nodeType": "ElementaryTypeName",
                                            "src": "5854:7:20",
                                            "typeDescriptions": {
                                              "typeIdentifier": null,
                                              "typeString": null
                                            }
                                          }
                                        },
                                        "id": 7807,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "typeConversion",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "5854:16:20",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "<<",
                                      "rightExpression": {
                                        "argumentTypes": null,
                                        "hexValue": "313132",
                                        "id": 7808,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "5874:3:20",
                                        "subdenomination": null,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_112_by_1",
                                          "typeString": "int_const 112"
                                        },
                                        "value": "112"
                                      },
                                      "src": "5854:23:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": null,
                                      "id": 7801,
                                      "name": "Babylonian",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 6951,
                                      "src": "5838:10:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_Babylonian_$6951_$",
                                        "typeString": "type(library Babylonian)"
                                      }
                                    },
                                    "id": 7802,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "sqrt",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 6950,
                                    "src": "5838:15:20",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_uint256_$",
                                      "typeString": "function (uint256) pure returns (uint256)"
                                    }
                                  },
                                  "id": 7810,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "5838:40:20",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 7800,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "5830:7:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint224_$",
                                  "typeString": "type(uint224)"
                                },
                                "typeName": {
                                  "id": 7799,
                                  "name": "uint224",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "5830:7:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": null,
                                    "typeString": null
                                  }
                                }
                              },
                              "id": 7811,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5830:49:20",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            ],
                            "id": 7798,
                            "name": "uq112x112",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7237,
                            "src": "5820:9:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_struct$_uq112x112_$7237_storage_ptr_$",
                              "typeString": "type(struct FixedPoint.uq112x112 storage pointer)"
                            }
                          },
                          "id": 7812,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "structConstructorCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5820:60:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                            "typeString": "struct FixedPoint.uq112x112 memory"
                          }
                        },
                        "functionReturnParameters": 7789,
                        "id": 7813,
                        "nodeType": "Return",
                        "src": "5813:67:20"
                      }
                    ]
                  }
                },
                {
                  "assignments": [
                    7817
                  ],
                  "declarations": [
                    {
                      "constant": false,
                      "id": 7817,
                      "mutability": "mutable",
                      "name": "safeShiftBits",
                      "nodeType": "VariableDeclaration",
                      "overrides": null,
                      "scope": 7856,
                      "src": "5901:19:20",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint8",
                        "typeString": "uint8"
                      },
                      "typeName": {
                        "id": 7816,
                        "name": "uint8",
                        "nodeType": "ElementaryTypeName",
                        "src": "5901:5:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        }
                      },
                      "value": null,
                      "visibility": "internal"
                    }
                  ],
                  "id": 7825,
                  "initialValue": {
                    "argumentTypes": null,
                    "commonType": {
                      "typeIdentifier": "t_uint8",
                      "typeString": "uint8"
                    },
                    "id": 7824,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftExpression": {
                      "argumentTypes": null,
                      "hexValue": "323535",
                      "id": 7818,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": true,
                      "kind": "number",
                      "lValueRequested": false,
                      "nodeType": "Literal",
                      "src": "5923:3:20",
                      "subdenomination": null,
                      "typeDescriptions": {
                        "typeIdentifier": "t_rational_255_by_1",
                        "typeString": "int_const 255"
                      },
                      "value": "255"
                    },
                    "nodeType": "BinaryOperation",
                    "operator": "-",
                    "rightExpression": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "expression": {
                            "argumentTypes": null,
                            "id": 7821,
                            "name": "self",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7785,
                            "src": "5956:4:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                              "typeString": "struct FixedPoint.uq112x112 memory"
                            }
                          },
                          "id": 7822,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "_x",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 7236,
                          "src": "5956:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        ],
                        "expression": {
                          "argumentTypes": null,
                          "id": 7819,
                          "name": "BitMath",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7229,
                          "src": "5929:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_type$_t_contract$_BitMath_$7229_$",
                            "typeString": "type(library BitMath)"
                          }
                        },
                        "id": 7820,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "mostSignificantBit",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 7067,
                        "src": "5929:26:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_uint8_$",
                          "typeString": "function (uint256) pure returns (uint8)"
                        }
                      },
                      "id": 7823,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "kind": "functionCall",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "5929:35:20",
                      "tryCall": false,
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint8",
                        "typeString": "uint8"
                      }
                    },
                    "src": "5923:41:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint8",
                      "typeString": "uint8"
                    }
                  },
                  "nodeType": "VariableDeclarationStatement",
                  "src": "5901:63:20"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 7830,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 7826,
                      "name": "safeShiftBits",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 7817,
                      "src": "5974:13:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint8",
                        "typeString": "uint8"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "-=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "commonType": {
                        "typeIdentifier": "t_uint8",
                        "typeString": "uint8"
                      },
                      "id": 7829,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "lValueRequested": false,
                      "leftExpression": {
                        "argumentTypes": null,
                        "id": 7827,
                        "name": "safeShiftBits",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 7817,
                        "src": "5991:13:20",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        }
                      },
                      "nodeType": "BinaryOperation",
                      "operator": "%",
                      "rightExpression": {
                        "argumentTypes": null,
                        "hexValue": "32",
                        "id": 7828,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "number",
                        "lValueRequested": false,
                        "nodeType": "Literal",
                        "src": "6007:1:20",
                        "subdenomination": null,
                        "typeDescriptions": {
                          "typeIdentifier": "t_rational_2_by_1",
                          "typeString": "int_const 2"
                        },
                        "value": "2"
                      },
                      "src": "5991:17:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint8",
                        "typeString": "uint8"
                      }
                    },
                    "src": "5974:34:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint8",
                      "typeString": "uint8"
                    }
                  },
                  "id": 7831,
                  "nodeType": "ExpressionStatement",
                  "src": "5974:34:20"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "arguments": [
                          {
                            "argumentTypes": null,
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 7852,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "argumentTypes": null,
                              "arguments": [
                                {
                                  "argumentTypes": null,
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 7843,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "argumentTypes": null,
                                    "arguments": [
                                      {
                                        "argumentTypes": null,
                                        "expression": {
                                          "argumentTypes": null,
                                          "id": 7839,
                                          "name": "self",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 7785,
                                          "src": "6067:4:20",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                                            "typeString": "struct FixedPoint.uq112x112 memory"
                                          }
                                        },
                                        "id": 7840,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "_x",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 7236,
                                        "src": "6067:7:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint224",
                                          "typeString": "uint224"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_uint224",
                                          "typeString": "uint224"
                                        }
                                      ],
                                      "id": 7838,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "6059:7:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint256_$",
                                        "typeString": "type(uint256)"
                                      },
                                      "typeName": {
                                        "id": 7837,
                                        "name": "uint256",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "6059:7:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": null,
                                          "typeString": null
                                        }
                                      }
                                    },
                                    "id": 7841,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "6059:16:20",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "<<",
                                  "rightExpression": {
                                    "argumentTypes": null,
                                    "id": 7842,
                                    "name": "safeShiftBits",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7817,
                                    "src": "6079:13:20",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "src": "6059:33:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": null,
                                  "id": 7835,
                                  "name": "Babylonian",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6951,
                                  "src": "6043:10:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_contract$_Babylonian_$6951_$",
                                    "typeString": "type(library Babylonian)"
                                  }
                                },
                                "id": 7836,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "sqrt",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 6950,
                                "src": "6043:15:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_uint256_$",
                                  "typeString": "function (uint256) pure returns (uint256)"
                                }
                              },
                              "id": 7844,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6043:50:20",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<<",
                            "rightExpression": {
                              "argumentTypes": null,
                              "components": [
                                {
                                  "argumentTypes": null,
                                  "commonType": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  },
                                  "id": 7850,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "argumentTypes": null,
                                    "components": [
                                      {
                                        "argumentTypes": null,
                                        "commonType": {
                                          "typeIdentifier": "t_uint8",
                                          "typeString": "uint8"
                                        },
                                        "id": 7847,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "argumentTypes": null,
                                          "hexValue": "313132",
                                          "id": 7845,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "number",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "6099:3:20",
                                          "subdenomination": null,
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_rational_112_by_1",
                                            "typeString": "int_const 112"
                                          },
                                          "value": "112"
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "-",
                                        "rightExpression": {
                                          "argumentTypes": null,
                                          "id": 7846,
                                          "name": "safeShiftBits",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 7817,
                                          "src": "6105:13:20",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint8",
                                            "typeString": "uint8"
                                          }
                                        },
                                        "src": "6099:19:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint8",
                                          "typeString": "uint8"
                                        }
                                      }
                                    ],
                                    "id": 7848,
                                    "isConstant": false,
                                    "isInlineArray": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "TupleExpression",
                                    "src": "6098:21:20",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "/",
                                  "rightExpression": {
                                    "argumentTypes": null,
                                    "hexValue": "32",
                                    "id": 7849,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "6122:1:20",
                                    "subdenomination": null,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_2_by_1",
                                      "typeString": "int_const 2"
                                    },
                                    "value": "2"
                                  },
                                  "src": "6098:25:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                }
                              ],
                              "id": 7851,
                              "isConstant": false,
                              "isInlineArray": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "TupleExpression",
                              "src": "6097:27:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "src": "6043:81:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          }
                        ],
                        "expression": {
                          "argumentTypes": [
                            {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          ],
                          "id": 7834,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "lValueRequested": false,
                          "nodeType": "ElementaryTypeNameExpression",
                          "src": "6035:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_type$_t_uint224_$",
                            "typeString": "type(uint224)"
                          },
                          "typeName": {
                            "id": 7833,
                            "name": "uint224",
                            "nodeType": "ElementaryTypeName",
                            "src": "6035:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": null,
                              "typeString": null
                            }
                          }
                        },
                        "id": 7853,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "kind": "typeConversion",
                        "lValueRequested": false,
                        "names": [],
                        "nodeType": "FunctionCall",
                        "src": "6035:90:20",
                        "tryCall": false,
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      ],
                      "id": 7832,
                      "name": "uq112x112",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 7237,
                      "src": "6025:9:20",
                      "typeDescriptions": {
                        "typeIdentifier": "t_type$_t_struct$_uq112x112_$7237_storage_ptr_$",
                        "typeString": "type(struct FixedPoint.uq112x112 storage pointer)"
                      }
                    },
                    "id": 7854,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "structConstructorCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "6025:101:20",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                      "typeString": "struct FixedPoint.uq112x112 memory"
                    }
                  },
                  "functionReturnParameters": 7789,
                  "id": 7855,
                  "nodeType": "Return",
                  "src": "6018:108:20"
                }
              ]
            },
            "documentation": null,
            "id": 7857,
            "implemented": true,
            "kind": "function",
            "modifiers": [],
            "name": "sqrt",
            "nodeType": "FunctionDefinition",
            "overrides": null,
            "parameters": {
              "id": 7786,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 7785,
                  "mutability": "mutable",
                  "name": "self",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7857,
                  "src": "5697:21:20",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                    "typeString": "struct FixedPoint.uq112x112"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 7784,
                    "name": "uq112x112",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 7237,
                    "src": "5697:9:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq112x112_$7237_storage_ptr",
                      "typeString": "struct FixedPoint.uq112x112"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "5696:23:20"
            },
            "returnParameters": {
              "id": 7789,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 7788,
                  "mutability": "mutable",
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "overrides": null,
                  "scope": 7857,
                  "src": "5743:16:20",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_uq112x112_$7237_memory_ptr",
                    "typeString": "struct FixedPoint.uq112x112"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 7787,
                    "name": "uq112x112",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 7237,
                    "src": "5743:9:20",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_uq112x112_$7237_storage_ptr",
                      "typeString": "struct FixedPoint.uq112x112"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "5742:18:20"
            },
            "scope": 7858,
            "src": "5683:450:20",
            "stateMutability": "pure",
            "virtual": false,
            "visibility": "internal"
          }
        ],
        "scope": 7859,
        "src": "251:5884:20"
      }
    ],
    "src": "45:6091:20"
  },
  "legacyAST": {
    "attributes": {
      "absolutePath": "moonwalkerswap-libraries/contracts/libraries/FixedPoint.sol",
      "exportedSymbols": {
        "FixedPoint": [
          7858
        ]
      }
    },
    "children": [
      {
        "attributes": {
          "literals": [
            "solidity",
            ">=",
            "0.4",
            ".0"
          ]
        },
        "id": 7231,
        "name": "PragmaDirective",
        "src": "45:24:20"
      },
      {
        "attributes": {
          "SourceUnit": 8080,
          "absolutePath": "moonwalkerswap-libraries/contracts/libraries/FullMath.sol",
          "file": "./FullMath.sol",
          "scope": 7859,
          "symbolAliases": [
            null
          ],
          "unitAlias": ""
        },
        "id": 7232,
        "name": "ImportDirective",
        "src": "71:24:20"
      },
      {
        "attributes": {
          "SourceUnit": 6952,
          "absolutePath": "moonwalkerswap-libraries/contracts/libraries/Babylonian.sol",
          "file": "./Babylonian.sol",
          "scope": 7859,
          "symbolAliases": [
            null
          ],
          "unitAlias": ""
        },
        "id": 7233,
        "name": "ImportDirective",
        "src": "96:26:20"
      },
      {
        "attributes": {
          "SourceUnit": 7230,
          "absolutePath": "moonwalkerswap-libraries/contracts/libraries/BitMath.sol",
          "file": "./BitMath.sol",
          "scope": 7859,
          "symbolAliases": [
            null
          ],
          "unitAlias": ""
        },
        "id": 7234,
        "name": "ImportDirective",
        "src": "123:23:20"
      },
      {
        "attributes": {
          "abstract": false,
          "baseContracts": [
            null
          ],
          "contractDependencies": [
            null
          ],
          "contractKind": "library",
          "documentation": null,
          "fullyImplemented": true,
          "linearizedBaseContracts": [
            7858
          ],
          "name": "FixedPoint",
          "scope": 7859
        },
        "children": [
          {
            "attributes": {
              "canonicalName": "FixedPoint.uq112x112",
              "name": "uq112x112",
              "scope": 7858,
              "visibility": "public"
            },
            "children": [
              {
                "attributes": {
                  "constant": false,
                  "mutability": "mutable",
                  "name": "_x",
                  "overrides": null,
                  "scope": 7237,
                  "stateVariable": false,
                  "storageLocation": "default",
                  "type": "uint224",
                  "value": null,
                  "visibility": "internal"
                },
                "children": [
                  {
                    "attributes": {
                      "name": "uint224",
                      "type": "uint224"
                    },
                    "id": 7235,
                    "name": "ElementaryTypeName",
                    "src": "363:7:20"
                  }
                ],
                "id": 7236,
                "name": "VariableDeclaration",
                "src": "363:10:20"
              }
            ],
            "id": 7237,
            "name": "StructDefinition",
            "src": "336:44:20"
          },
          {
            "attributes": {
              "canonicalName": "FixedPoint.uq144x112",
              "name": "uq144x112",
              "scope": 7858,
              "visibility": "public"
            },
            "children": [
              {
                "attributes": {
                  "constant": false,
                  "mutability": "mutable",
                  "name": "_x",
                  "overrides": null,
                  "scope": 7240,
                  "stateVariable": false,
                  "storageLocation": "default",
                  "type": "uint256",
                  "value": null,
                  "visibility": "internal"
                },
                "children": [
                  {
                    "attributes": {
                      "name": "uint256",
                      "type": "uint256"
                    },
                    "id": 7238,
                    "name": "ElementaryTypeName",
                    "src": "473:7:20"
                  }
                ],
                "id": 7239,
                "name": "VariableDeclaration",
                "src": "473:10:20"
              }
            ],
            "id": 7240,
            "name": "StructDefinition",
            "src": "446:44:20"
          },
          {
            "attributes": {
              "constant": true,
              "functionSelector": "552f888a",
              "mutability": "constant",
              "name": "RESOLUTION",
              "overrides": null,
              "scope": 7858,
              "stateVariable": true,
              "storageLocation": "default",
              "type": "uint8",
              "visibility": "public"
            },
            "children": [
              {
                "attributes": {
                  "name": "uint8",
                  "type": "uint8"
                },
                "id": 7241,
                "name": "ElementaryTypeName",
                "src": "496:5:20"
              },
              {
                "attributes": {
                  "argumentTypes": null,
                  "hexvalue": "313132",
                  "isConstant": false,
                  "isLValue": false,
                  "isPure": true,
                  "lValueRequested": false,
                  "subdenomination": null,
                  "token": "number",
                  "type": "int_const 112",
                  "value": "112"
                },
                "id": 7242,
                "name": "Literal",
                "src": "531:3:20"
              }
            ],
            "id": 7243,
            "name": "VariableDeclaration",
            "src": "496:38:20"
          },
          {
            "attributes": {
              "constant": true,
              "functionSelector": "3bf7a83e",
              "mutability": "constant",
              "name": "Q112",
              "overrides": null,
              "scope": 7858,
              "stateVariable": true,
              "storageLocation": "default",
              "type": "uint256",
              "visibility": "public"
            },
            "children": [
              {
                "attributes": {
                  "name": "uint256",
                  "type": "uint256"
                },
                "id": 7244,
                "name": "ElementaryTypeName",
                "src": "540:7:20"
              },
              {
                "attributes": {
                  "argumentTypes": null,
                  "hexvalue": "30783130303030303030303030303030303030303030303030303030303030",
                  "isConstant": false,
                  "isLValue": false,
                  "isPure": true,
                  "lValueRequested": false,
                  "subdenomination": null,
                  "token": "number",
                  "type": "int_const 5192...(26 digits omitted)...0096",
                  "value": "0x10000000000000000000000000000"
                },
                "id": 7245,
                "name": "Literal",
                "src": "571:31:20"
              }
            ],
            "id": 7246,
            "name": "VariableDeclaration",
            "src": "540:62:20"
          },
          {
            "attributes": {
              "constant": true,
              "mutability": "constant",
              "name": "Q224",
              "overrides": null,
              "scope": 7858,
              "stateVariable": true,
              "storageLocation": "default",
              "type": "uint256",
              "visibility": "private"
            },
            "children": [
              {
                "attributes": {
                  "name": "uint256",
                  "type": "uint256"
                },
                "id": 7247,
                "name": "ElementaryTypeName",
                "src": "618:7:20"
              },
              {
                "attributes": {
                  "argumentTypes": null,
                  "hexvalue": "3078313030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030",
                  "isConstant": false,
                  "isLValue": false,
                  "isPure": true,
                  "lValueRequested": false,
                  "subdenomination": null,
                  "token": "number",
                  "type": "int_const 2695...(60 digits omitted)...9216",
                  "value": "0x100000000000000000000000000000000000000000000000000000000"
                },
                "id": 7248,
                "name": "Literal",
                "src": "650:59:20"
              }
            ],
            "id": 7249,
            "name": "VariableDeclaration",
            "src": "618:91:20"
          },
          {
            "attributes": {
              "constant": true,
              "mutability": "constant",
              "name": "LOWER_MASK",
              "overrides": null,
              "scope": 7858,
              "stateVariable": true,
              "storageLocation": "default",
              "type": "uint256",
              "visibility": "private"
            },
            "children": [
              {
                "attributes": {
                  "name": "uint256",
                  "type": "uint256"
                },
                "id": 7250,
                "name": "ElementaryTypeName",
                "src": "725:7:20"
              },
              {
                "attributes": {
                  "argumentTypes": null,
                  "hexvalue": "307866666666666666666666666666666666666666666666666666666666",
                  "isConstant": false,
                  "isLValue": false,
                  "isPure": true,
                  "lValueRequested": false,
                  "subdenomination": null,
                  "token": "number",
                  "type": "int_const 5192...(26 digits omitted)...0095",
                  "value": "0xffffffffffffffffffffffffffff"
                },
                "id": 7251,
                "name": "Literal",
                "src": "763:30:20"
              }
            ],
            "id": 7252,
            "name": "VariableDeclaration",
            "src": "725:68:20"
          },
          {
            "attributes": {
              "documentation": null,
              "implemented": true,
              "isConstructor": false,
              "kind": "function",
              "modifiers": [
                null
              ],
              "name": "encode",
              "overrides": null,
              "scope": 7858,
              "stateMutability": "pure",
              "virtual": false,
              "visibility": "internal"
            },
            "children": [
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "x",
                      "overrides": null,
                      "scope": 7269,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint112",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint112",
                          "type": "uint112"
                        },
                        "id": 7253,
                        "name": "ElementaryTypeName",
                        "src": "894:7:20"
                      }
                    ],
                    "id": 7254,
                    "name": "VariableDeclaration",
                    "src": "894:9:20"
                  }
                ],
                "id": 7255,
                "name": "ParameterList",
                "src": "893:11:20"
              },
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "",
                      "overrides": null,
                      "scope": 7269,
                      "stateVariable": false,
                      "storageLocation": "memory",
                      "type": "struct FixedPoint.uq112x112",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "contractScope": null,
                          "name": "uq112x112",
                          "referencedDeclaration": 7237,
                          "type": "struct FixedPoint.uq112x112"
                        },
                        "id": 7256,
                        "name": "UserDefinedTypeName",
                        "src": "928:9:20"
                      }
                    ],
                    "id": 7257,
                    "name": "VariableDeclaration",
                    "src": "928:16:20"
                  }
                ],
                "id": 7258,
                "name": "ParameterList",
                "src": "927:18:20"
              },
              {
                "children": [
                  {
                    "attributes": {
                      "functionReturnParameters": 7258
                    },
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "isStructConstructorCall": true,
                          "lValueRequested": false,
                          "names": [
                            null
                          ],
                          "tryCall": false,
                          "type": "struct FixedPoint.uq112x112 memory",
                          "type_conversion": false
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              ],
                              "overloadedDeclarations": [
                                null
                              ],
                              "referencedDeclaration": 7237,
                              "type": "type(struct FixedPoint.uq112x112 storage pointer)",
                              "value": "uq112x112"
                            },
                            "id": 7259,
                            "name": "Identifier",
                            "src": "963:9:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              },
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "operator": "<<",
                              "type": "uint224"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "isStructConstructorCall": false,
                                  "lValueRequested": false,
                                  "names": [
                                    null
                                  ],
                                  "tryCall": false,
                                  "type": "uint224",
                                  "type_conversion": true
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_uint112",
                                          "typeString": "uint112"
                                        }
                                      ],
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "type": "type(uint224)"
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "name": "uint224",
                                          "type": null
                                        },
                                        "id": 7260,
                                        "name": "ElementaryTypeName",
                                        "src": "973:7:20"
                                      }
                                    ],
                                    "id": 7261,
                                    "name": "ElementaryTypeNameExpression",
                                    "src": "973:7:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7254,
                                      "type": "uint112",
                                      "value": "x"
                                    },
                                    "id": 7262,
                                    "name": "Identifier",
                                    "src": "981:1:20"
                                  }
                                ],
                                "id": 7263,
                                "name": "FunctionCall",
                                "src": "973:10:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7243,
                                  "type": "uint8",
                                  "value": "RESOLUTION"
                                },
                                "id": 7264,
                                "name": "Identifier",
                                "src": "987:10:20"
                              }
                            ],
                            "id": 7265,
                            "name": "BinaryOperation",
                            "src": "973:24:20"
                          }
                        ],
                        "id": 7266,
                        "name": "FunctionCall",
                        "src": "963:35:20"
                      }
                    ],
                    "id": 7267,
                    "name": "Return",
                    "src": "956:42:20"
                  }
                ],
                "id": 7268,
                "name": "Block",
                "src": "946:59:20"
              }
            ],
            "id": 7269,
            "name": "FunctionDefinition",
            "src": "878:127:20"
          },
          {
            "attributes": {
              "documentation": null,
              "implemented": true,
              "isConstructor": false,
              "kind": "function",
              "modifiers": [
                null
              ],
              "name": "encode144",
              "overrides": null,
              "scope": 7858,
              "stateMutability": "pure",
              "virtual": false,
              "visibility": "internal"
            },
            "children": [
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "x",
                      "overrides": null,
                      "scope": 7286,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint144",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint144",
                          "type": "uint144"
                        },
                        "id": 7270,
                        "name": "ElementaryTypeName",
                        "src": "1070:7:20"
                      }
                    ],
                    "id": 7271,
                    "name": "VariableDeclaration",
                    "src": "1070:9:20"
                  }
                ],
                "id": 7272,
                "name": "ParameterList",
                "src": "1069:11:20"
              },
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "",
                      "overrides": null,
                      "scope": 7286,
                      "stateVariable": false,
                      "storageLocation": "memory",
                      "type": "struct FixedPoint.uq144x112",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "contractScope": null,
                          "name": "uq144x112",
                          "referencedDeclaration": 7240,
                          "type": "struct FixedPoint.uq144x112"
                        },
                        "id": 7273,
                        "name": "UserDefinedTypeName",
                        "src": "1104:9:20"
                      }
                    ],
                    "id": 7274,
                    "name": "VariableDeclaration",
                    "src": "1104:16:20"
                  }
                ],
                "id": 7275,
                "name": "ParameterList",
                "src": "1103:18:20"
              },
              {
                "children": [
                  {
                    "attributes": {
                      "functionReturnParameters": 7275
                    },
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "isStructConstructorCall": true,
                          "lValueRequested": false,
                          "names": [
                            null
                          ],
                          "tryCall": false,
                          "type": "struct FixedPoint.uq144x112 memory",
                          "type_conversion": false
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "overloadedDeclarations": [
                                null
                              ],
                              "referencedDeclaration": 7240,
                              "type": "type(struct FixedPoint.uq144x112 storage pointer)",
                              "value": "uq144x112"
                            },
                            "id": 7276,
                            "name": "Identifier",
                            "src": "1139:9:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "operator": "<<",
                              "type": "uint256"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "isStructConstructorCall": false,
                                  "lValueRequested": false,
                                  "names": [
                                    null
                                  ],
                                  "tryCall": false,
                                  "type": "uint256",
                                  "type_conversion": true
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_uint144",
                                          "typeString": "uint144"
                                        }
                                      ],
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "type": "type(uint256)"
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "name": "uint256",
                                          "type": null
                                        },
                                        "id": 7277,
                                        "name": "ElementaryTypeName",
                                        "src": "1149:7:20"
                                      }
                                    ],
                                    "id": 7278,
                                    "name": "ElementaryTypeNameExpression",
                                    "src": "1149:7:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7271,
                                      "type": "uint144",
                                      "value": "x"
                                    },
                                    "id": 7279,
                                    "name": "Identifier",
                                    "src": "1157:1:20"
                                  }
                                ],
                                "id": 7280,
                                "name": "FunctionCall",
                                "src": "1149:10:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7243,
                                  "type": "uint8",
                                  "value": "RESOLUTION"
                                },
                                "id": 7281,
                                "name": "Identifier",
                                "src": "1163:10:20"
                              }
                            ],
                            "id": 7282,
                            "name": "BinaryOperation",
                            "src": "1149:24:20"
                          }
                        ],
                        "id": 7283,
                        "name": "FunctionCall",
                        "src": "1139:35:20"
                      }
                    ],
                    "id": 7284,
                    "name": "Return",
                    "src": "1132:42:20"
                  }
                ],
                "id": 7285,
                "name": "Block",
                "src": "1122:59:20"
              }
            ],
            "id": 7286,
            "name": "FunctionDefinition",
            "src": "1051:130:20"
          },
          {
            "attributes": {
              "documentation": null,
              "implemented": true,
              "isConstructor": false,
              "kind": "function",
              "modifiers": [
                null
              ],
              "name": "decode",
              "overrides": null,
              "scope": 7858,
              "stateMutability": "pure",
              "virtual": false,
              "visibility": "internal"
            },
            "children": [
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "self",
                      "overrides": null,
                      "scope": 7302,
                      "stateVariable": false,
                      "storageLocation": "memory",
                      "type": "struct FixedPoint.uq112x112",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "contractScope": null,
                          "name": "uq112x112",
                          "referencedDeclaration": 7237,
                          "type": "struct FixedPoint.uq112x112"
                        },
                        "id": 7287,
                        "name": "UserDefinedTypeName",
                        "src": "1280:9:20"
                      }
                    ],
                    "id": 7288,
                    "name": "VariableDeclaration",
                    "src": "1280:21:20"
                  }
                ],
                "id": 7289,
                "name": "ParameterList",
                "src": "1279:23:20"
              },
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "",
                      "overrides": null,
                      "scope": 7302,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint112",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint112",
                          "type": "uint112"
                        },
                        "id": 7290,
                        "name": "ElementaryTypeName",
                        "src": "1326:7:20"
                      }
                    ],
                    "id": 7291,
                    "name": "VariableDeclaration",
                    "src": "1326:7:20"
                  }
                ],
                "id": 7292,
                "name": "ParameterList",
                "src": "1325:9:20"
              },
              {
                "children": [
                  {
                    "attributes": {
                      "functionReturnParameters": 7292
                    },
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "isStructConstructorCall": false,
                          "lValueRequested": false,
                          "names": [
                            null
                          ],
                          "tryCall": false,
                          "type": "uint112",
                          "type_conversion": true
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              ],
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "type": "type(uint112)"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "name": "uint112",
                                  "type": null
                                },
                                "id": 7293,
                                "name": "ElementaryTypeName",
                                "src": "1352:7:20"
                              }
                            ],
                            "id": 7294,
                            "name": "ElementaryTypeNameExpression",
                            "src": "1352:7:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              },
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "operator": ">>",
                              "type": "uint224"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "member_name": "_x",
                                  "referencedDeclaration": 7236,
                                  "type": "uint224"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7288,
                                      "type": "struct FixedPoint.uq112x112 memory",
                                      "value": "self"
                                    },
                                    "id": 7295,
                                    "name": "Identifier",
                                    "src": "1360:4:20"
                                  }
                                ],
                                "id": 7296,
                                "name": "MemberAccess",
                                "src": "1360:7:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7243,
                                  "type": "uint8",
                                  "value": "RESOLUTION"
                                },
                                "id": 7297,
                                "name": "Identifier",
                                "src": "1371:10:20"
                              }
                            ],
                            "id": 7298,
                            "name": "BinaryOperation",
                            "src": "1360:21:20"
                          }
                        ],
                        "id": 7299,
                        "name": "FunctionCall",
                        "src": "1352:30:20"
                      }
                    ],
                    "id": 7300,
                    "name": "Return",
                    "src": "1345:37:20"
                  }
                ],
                "id": 7301,
                "name": "Block",
                "src": "1335:54:20"
              }
            ],
            "id": 7302,
            "name": "FunctionDefinition",
            "src": "1264:125:20"
          },
          {
            "attributes": {
              "documentation": null,
              "implemented": true,
              "isConstructor": false,
              "kind": "function",
              "modifiers": [
                null
              ],
              "name": "decode144",
              "overrides": null,
              "scope": 7858,
              "stateMutability": "pure",
              "virtual": false,
              "visibility": "internal"
            },
            "children": [
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "self",
                      "overrides": null,
                      "scope": 7318,
                      "stateVariable": false,
                      "storageLocation": "memory",
                      "type": "struct FixedPoint.uq144x112",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "contractScope": null,
                          "name": "uq144x112",
                          "referencedDeclaration": 7240,
                          "type": "struct FixedPoint.uq144x112"
                        },
                        "id": 7303,
                        "name": "UserDefinedTypeName",
                        "src": "1491:9:20"
                      }
                    ],
                    "id": 7304,
                    "name": "VariableDeclaration",
                    "src": "1491:21:20"
                  }
                ],
                "id": 7305,
                "name": "ParameterList",
                "src": "1490:23:20"
              },
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "",
                      "overrides": null,
                      "scope": 7318,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint144",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint144",
                          "type": "uint144"
                        },
                        "id": 7306,
                        "name": "ElementaryTypeName",
                        "src": "1537:7:20"
                      }
                    ],
                    "id": 7307,
                    "name": "VariableDeclaration",
                    "src": "1537:7:20"
                  }
                ],
                "id": 7308,
                "name": "ParameterList",
                "src": "1536:9:20"
              },
              {
                "children": [
                  {
                    "attributes": {
                      "functionReturnParameters": 7308
                    },
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "isStructConstructorCall": false,
                          "lValueRequested": false,
                          "names": [
                            null
                          ],
                          "tryCall": false,
                          "type": "uint144",
                          "type_conversion": true
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "type": "type(uint144)"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "name": "uint144",
                                  "type": null
                                },
                                "id": 7309,
                                "name": "ElementaryTypeName",
                                "src": "1563:7:20"
                              }
                            ],
                            "id": 7310,
                            "name": "ElementaryTypeNameExpression",
                            "src": "1563:7:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "operator": ">>",
                              "type": "uint256"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "member_name": "_x",
                                  "referencedDeclaration": 7239,
                                  "type": "uint256"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7304,
                                      "type": "struct FixedPoint.uq144x112 memory",
                                      "value": "self"
                                    },
                                    "id": 7311,
                                    "name": "Identifier",
                                    "src": "1571:4:20"
                                  }
                                ],
                                "id": 7312,
                                "name": "MemberAccess",
                                "src": "1571:7:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7243,
                                  "type": "uint8",
                                  "value": "RESOLUTION"
                                },
                                "id": 7313,
                                "name": "Identifier",
                                "src": "1582:10:20"
                              }
                            ],
                            "id": 7314,
                            "name": "BinaryOperation",
                            "src": "1571:21:20"
                          }
                        ],
                        "id": 7315,
                        "name": "FunctionCall",
                        "src": "1563:30:20"
                      }
                    ],
                    "id": 7316,
                    "name": "Return",
                    "src": "1556:37:20"
                  }
                ],
                "id": 7317,
                "name": "Block",
                "src": "1546:54:20"
              }
            ],
            "id": 7318,
            "name": "FunctionDefinition",
            "src": "1472:128:20"
          },
          {
            "attributes": {
              "documentation": null,
              "implemented": true,
              "isConstructor": false,
              "kind": "function",
              "modifiers": [
                null
              ],
              "name": "mul",
              "overrides": null,
              "scope": 7858,
              "stateMutability": "pure",
              "virtual": false,
              "visibility": "internal"
            },
            "children": [
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "self",
                      "overrides": null,
                      "scope": 7356,
                      "stateVariable": false,
                      "storageLocation": "memory",
                      "type": "struct FixedPoint.uq112x112",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "contractScope": null,
                          "name": "uq112x112",
                          "referencedDeclaration": 7237,
                          "type": "struct FixedPoint.uq112x112"
                        },
                        "id": 7319,
                        "name": "UserDefinedTypeName",
                        "src": "1707:9:20"
                      }
                    ],
                    "id": 7320,
                    "name": "VariableDeclaration",
                    "src": "1707:21:20"
                  },
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "y",
                      "overrides": null,
                      "scope": 7356,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint256",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint256",
                          "type": "uint256"
                        },
                        "id": 7321,
                        "name": "ElementaryTypeName",
                        "src": "1730:7:20"
                      }
                    ],
                    "id": 7322,
                    "name": "VariableDeclaration",
                    "src": "1730:9:20"
                  }
                ],
                "id": 7323,
                "name": "ParameterList",
                "src": "1706:34:20"
              },
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "",
                      "overrides": null,
                      "scope": 7356,
                      "stateVariable": false,
                      "storageLocation": "memory",
                      "type": "struct FixedPoint.uq144x112",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "contractScope": null,
                          "name": "uq144x112",
                          "referencedDeclaration": 7240,
                          "type": "struct FixedPoint.uq144x112"
                        },
                        "id": 7324,
                        "name": "UserDefinedTypeName",
                        "src": "1764:9:20"
                      }
                    ],
                    "id": 7325,
                    "name": "VariableDeclaration",
                    "src": "1764:16:20"
                  }
                ],
                "id": 7326,
                "name": "ParameterList",
                "src": "1763:18:20"
              },
              {
                "children": [
                  {
                    "attributes": {
                      "assignments": [
                        7328
                      ]
                    },
                    "children": [
                      {
                        "attributes": {
                          "constant": false,
                          "mutability": "mutable",
                          "name": "z",
                          "overrides": null,
                          "scope": 7355,
                          "stateVariable": false,
                          "storageLocation": "default",
                          "type": "uint256",
                          "value": null,
                          "visibility": "internal"
                        },
                        "children": [
                          {
                            "attributes": {
                              "name": "uint256",
                              "type": "uint256"
                            },
                            "id": 7327,
                            "name": "ElementaryTypeName",
                            "src": "1792:7:20"
                          }
                        ],
                        "id": 7328,
                        "name": "VariableDeclaration",
                        "src": "1792:9:20"
                      },
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "hexvalue": "30",
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "lValueRequested": false,
                          "subdenomination": null,
                          "token": "number",
                          "type": "int_const 0",
                          "value": "0"
                        },
                        "id": 7329,
                        "name": "Literal",
                        "src": "1804:1:20"
                      }
                    ],
                    "id": 7330,
                    "name": "VariableDeclarationStatement",
                    "src": "1792:13:20"
                  },
                  {
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "isStructConstructorCall": false,
                          "lValueRequested": false,
                          "names": [
                            null
                          ],
                          "tryCall": false,
                          "type": "tuple()",
                          "type_conversion": false
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                {
                                  "typeIdentifier": "t_stringliteral_4948de739aba85946a14984f472451f25a4920e9fae93fb8ed011d3024f8abcf",
                                  "typeString": "literal_string \"FixedPoint::mul: overflow\""
                                }
                              ],
                              "overloadedDeclarations": [
                                -18,
                                -18
                              ],
                              "referencedDeclaration": -18,
                              "type": "function (bool,string memory) pure",
                              "value": "require"
                            },
                            "id": 7331,
                            "name": "Identifier",
                            "src": "1815:7:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "operator": "||",
                              "type": "bool"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "operator": "==",
                                  "type": "bool"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7322,
                                      "type": "uint256",
                                      "value": "y"
                                    },
                                    "id": 7332,
                                    "name": "Identifier",
                                    "src": "1823:1:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "hexvalue": "30",
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "subdenomination": null,
                                      "token": "number",
                                      "type": "int_const 0",
                                      "value": "0"
                                    },
                                    "id": 7333,
                                    "name": "Literal",
                                    "src": "1828:1:20"
                                  }
                                ],
                                "id": 7334,
                                "name": "BinaryOperation",
                                "src": "1823:6:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "operator": "==",
                                  "type": "bool"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "operator": "/",
                                      "type": "uint256"
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "isConstant": false,
                                          "isInlineArray": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "type": "uint256"
                                        },
                                        "children": [
                                          {
                                            "attributes": {
                                              "argumentTypes": null,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "operator": "=",
                                              "type": "uint256"
                                            },
                                            "children": [
                                              {
                                                "attributes": {
                                                  "argumentTypes": null,
                                                  "overloadedDeclarations": [
                                                    null
                                                  ],
                                                  "referencedDeclaration": 7328,
                                                  "type": "uint256",
                                                  "value": "z"
                                                },
                                                "id": 7335,
                                                "name": "Identifier",
                                                "src": "1834:1:20"
                                              },
                                              {
                                                "attributes": {
                                                  "argumentTypes": null,
                                                  "commonType": {
                                                    "typeIdentifier": "t_uint256",
                                                    "typeString": "uint256"
                                                  },
                                                  "isConstant": false,
                                                  "isLValue": false,
                                                  "isPure": false,
                                                  "lValueRequested": false,
                                                  "operator": "*",
                                                  "type": "uint256"
                                                },
                                                "children": [
                                                  {
                                                    "attributes": {
                                                      "argumentTypes": null,
                                                      "isConstant": false,
                                                      "isLValue": true,
                                                      "isPure": false,
                                                      "lValueRequested": false,
                                                      "member_name": "_x",
                                                      "referencedDeclaration": 7236,
                                                      "type": "uint224"
                                                    },
                                                    "children": [
                                                      {
                                                        "attributes": {
                                                          "argumentTypes": null,
                                                          "overloadedDeclarations": [
                                                            null
                                                          ],
                                                          "referencedDeclaration": 7320,
                                                          "type": "struct FixedPoint.uq112x112 memory",
                                                          "value": "self"
                                                        },
                                                        "id": 7336,
                                                        "name": "Identifier",
                                                        "src": "1838:4:20"
                                                      }
                                                    ],
                                                    "id": 7337,
                                                    "name": "MemberAccess",
                                                    "src": "1838:7:20"
                                                  },
                                                  {
                                                    "attributes": {
                                                      "argumentTypes": null,
                                                      "overloadedDeclarations": [
                                                        null
                                                      ],
                                                      "referencedDeclaration": 7322,
                                                      "type": "uint256",
                                                      "value": "y"
                                                    },
                                                    "id": 7338,
                                                    "name": "Identifier",
                                                    "src": "1848:1:20"
                                                  }
                                                ],
                                                "id": 7339,
                                                "name": "BinaryOperation",
                                                "src": "1838:11:20"
                                              }
                                            ],
                                            "id": 7340,
                                            "name": "Assignment",
                                            "src": "1834:15:20"
                                          }
                                        ],
                                        "id": 7341,
                                        "name": "TupleExpression",
                                        "src": "1833:17:20"
                                      },
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "overloadedDeclarations": [
                                            null
                                          ],
                                          "referencedDeclaration": 7322,
                                          "type": "uint256",
                                          "value": "y"
                                        },
                                        "id": 7342,
                                        "name": "Identifier",
                                        "src": "1853:1:20"
                                      }
                                    ],
                                    "id": 7343,
                                    "name": "BinaryOperation",
                                    "src": "1833:21:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "member_name": "_x",
                                      "referencedDeclaration": 7236,
                                      "type": "uint224"
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "overloadedDeclarations": [
                                            null
                                          ],
                                          "referencedDeclaration": 7320,
                                          "type": "struct FixedPoint.uq112x112 memory",
                                          "value": "self"
                                        },
                                        "id": 7344,
                                        "name": "Identifier",
                                        "src": "1858:4:20"
                                      }
                                    ],
                                    "id": 7345,
                                    "name": "MemberAccess",
                                    "src": "1858:7:20"
                                  }
                                ],
                                "id": 7346,
                                "name": "BinaryOperation",
                                "src": "1833:32:20"
                              }
                            ],
                            "id": 7347,
                            "name": "BinaryOperation",
                            "src": "1823:42:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "hexvalue": "4669786564506f696e743a3a6d756c3a206f766572666c6f77",
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "subdenomination": null,
                              "token": "string",
                              "type": "literal_string \"FixedPoint::mul: overflow\"",
                              "value": "FixedPoint::mul: overflow"
                            },
                            "id": 7348,
                            "name": "Literal",
                            "src": "1867:27:20"
                          }
                        ],
                        "id": 7349,
                        "name": "FunctionCall",
                        "src": "1815:80:20"
                      }
                    ],
                    "id": 7350,
                    "name": "ExpressionStatement",
                    "src": "1815:80:20"
                  },
                  {
                    "attributes": {
                      "functionReturnParameters": 7326
                    },
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "isStructConstructorCall": true,
                          "lValueRequested": false,
                          "names": [
                            null
                          ],
                          "tryCall": false,
                          "type": "struct FixedPoint.uq144x112 memory",
                          "type_conversion": false
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "overloadedDeclarations": [
                                null
                              ],
                              "referencedDeclaration": 7240,
                              "type": "type(struct FixedPoint.uq144x112 storage pointer)",
                              "value": "uq144x112"
                            },
                            "id": 7351,
                            "name": "Identifier",
                            "src": "1912:9:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "overloadedDeclarations": [
                                null
                              ],
                              "referencedDeclaration": 7328,
                              "type": "uint256",
                              "value": "z"
                            },
                            "id": 7352,
                            "name": "Identifier",
                            "src": "1922:1:20"
                          }
                        ],
                        "id": 7353,
                        "name": "FunctionCall",
                        "src": "1912:12:20"
                      }
                    ],
                    "id": 7354,
                    "name": "Return",
                    "src": "1905:19:20"
                  }
                ],
                "id": 7355,
                "name": "Block",
                "src": "1782:149:20"
              }
            ],
            "id": 7356,
            "name": "FunctionDefinition",
            "src": "1694:237:20"
          },
          {
            "attributes": {
              "documentation": null,
              "implemented": true,
              "isConstructor": false,
              "kind": "function",
              "modifiers": [
                null
              ],
              "name": "muli",
              "overrides": null,
              "scope": 7858,
              "stateMutability": "pure",
              "virtual": false,
              "visibility": "internal"
            },
            "children": [
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "self",
                      "overrides": null,
                      "scope": 7408,
                      "stateVariable": false,
                      "storageLocation": "memory",
                      "type": "struct FixedPoint.uq112x112",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "contractScope": null,
                          "name": "uq112x112",
                          "referencedDeclaration": 7237,
                          "type": "struct FixedPoint.uq112x112"
                        },
                        "id": 7357,
                        "name": "UserDefinedTypeName",
                        "src": "2045:9:20"
                      }
                    ],
                    "id": 7358,
                    "name": "VariableDeclaration",
                    "src": "2045:21:20"
                  },
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "y",
                      "overrides": null,
                      "scope": 7408,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "int256",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "int256",
                          "type": "int256"
                        },
                        "id": 7359,
                        "name": "ElementaryTypeName",
                        "src": "2068:6:20"
                      }
                    ],
                    "id": 7360,
                    "name": "VariableDeclaration",
                    "src": "2068:8:20"
                  }
                ],
                "id": 7361,
                "name": "ParameterList",
                "src": "2044:33:20"
              },
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "",
                      "overrides": null,
                      "scope": 7408,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "int256",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "int256",
                          "type": "int256"
                        },
                        "id": 7362,
                        "name": "ElementaryTypeName",
                        "src": "2101:6:20"
                      }
                    ],
                    "id": 7363,
                    "name": "VariableDeclaration",
                    "src": "2101:6:20"
                  }
                ],
                "id": 7364,
                "name": "ParameterList",
                "src": "2100:8:20"
              },
              {
                "children": [
                  {
                    "attributes": {
                      "assignments": [
                        7366
                      ]
                    },
                    "children": [
                      {
                        "attributes": {
                          "constant": false,
                          "mutability": "mutable",
                          "name": "z",
                          "overrides": null,
                          "scope": 7407,
                          "stateVariable": false,
                          "storageLocation": "default",
                          "type": "uint256",
                          "value": null,
                          "visibility": "internal"
                        },
                        "children": [
                          {
                            "attributes": {
                              "name": "uint256",
                              "type": "uint256"
                            },
                            "id": 7365,
                            "name": "ElementaryTypeName",
                            "src": "2119:7:20"
                          }
                        ],
                        "id": 7366,
                        "name": "VariableDeclaration",
                        "src": "2119:9:20"
                      },
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "isStructConstructorCall": false,
                          "lValueRequested": false,
                          "names": [
                            null
                          ],
                          "tryCall": false,
                          "type": "uint256",
                          "type_conversion": false
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                },
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "member_name": "mulDiv",
                              "referencedDeclaration": 8078,
                              "type": "function (uint256,uint256,uint256) pure returns (uint256)"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 8079,
                                  "type": "type(library FullMath)",
                                  "value": "FullMath"
                                },
                                "id": 7367,
                                "name": "Identifier",
                                "src": "2131:8:20"
                              }
                            ],
                            "id": 7368,
                            "name": "MemberAccess",
                            "src": "2131:15:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "member_name": "_x",
                              "referencedDeclaration": 7236,
                              "type": "uint224"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7358,
                                  "type": "struct FixedPoint.uq112x112 memory",
                                  "value": "self"
                                },
                                "id": 7369,
                                "name": "Identifier",
                                "src": "2147:4:20"
                              }
                            ],
                            "id": 7370,
                            "name": "MemberAccess",
                            "src": "2147:7:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "isStructConstructorCall": false,
                              "lValueRequested": false,
                              "names": [
                                null
                              ],
                              "tryCall": false,
                              "type": "uint256",
                              "type_conversion": true
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_int256",
                                      "typeString": "int256"
                                    }
                                  ],
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "type": "type(uint256)"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "name": "uint256",
                                      "type": null
                                    },
                                    "id": 7371,
                                    "name": "ElementaryTypeName",
                                    "src": "2156:7:20"
                                  }
                                ],
                                "id": 7372,
                                "name": "ElementaryTypeNameExpression",
                                "src": "2156:7:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "type": "int256"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "commonType": {
                                        "typeIdentifier": "t_int256",
                                        "typeString": "int256"
                                      },
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "operator": "<",
                                      "type": "bool"
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "overloadedDeclarations": [
                                            null
                                          ],
                                          "referencedDeclaration": 7360,
                                          "type": "int256",
                                          "value": "y"
                                        },
                                        "id": 7373,
                                        "name": "Identifier",
                                        "src": "2164:1:20"
                                      },
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "hexvalue": "30",
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "subdenomination": null,
                                          "token": "number",
                                          "type": "int_const 0",
                                          "value": "0"
                                        },
                                        "id": 7374,
                                        "name": "Literal",
                                        "src": "2168:1:20"
                                      }
                                    ],
                                    "id": 7375,
                                    "name": "BinaryOperation",
                                    "src": "2164:5:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "operator": "-",
                                      "prefix": true,
                                      "type": "int256"
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "overloadedDeclarations": [
                                            null
                                          ],
                                          "referencedDeclaration": 7360,
                                          "type": "int256",
                                          "value": "y"
                                        },
                                        "id": 7376,
                                        "name": "Identifier",
                                        "src": "2173:1:20"
                                      }
                                    ],
                                    "id": 7377,
                                    "name": "UnaryOperation",
                                    "src": "2172:2:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7360,
                                      "type": "int256",
                                      "value": "y"
                                    },
                                    "id": 7378,
                                    "name": "Identifier",
                                    "src": "2177:1:20"
                                  }
                                ],
                                "id": 7379,
                                "name": "Conditional",
                                "src": "2164:14:20"
                              }
                            ],
                            "id": 7380,
                            "name": "FunctionCall",
                            "src": "2156:23:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "overloadedDeclarations": [
                                null
                              ],
                              "referencedDeclaration": 7246,
                              "type": "uint256",
                              "value": "Q112"
                            },
                            "id": 7381,
                            "name": "Identifier",
                            "src": "2181:4:20"
                          }
                        ],
                        "id": 7382,
                        "name": "FunctionCall",
                        "src": "2131:55:20"
                      }
                    ],
                    "id": 7383,
                    "name": "VariableDeclarationStatement",
                    "src": "2119:67:20"
                  },
                  {
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "isStructConstructorCall": false,
                          "lValueRequested": false,
                          "names": [
                            null
                          ],
                          "tryCall": false,
                          "type": "tuple()",
                          "type_conversion": false
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                {
                                  "typeIdentifier": "t_stringliteral_a352085f3dae8adf2989a66ed19b1d5cfc2957ebdd82dbbc3ae8101610d3fd00",
                                  "typeString": "literal_string \"FixedPoint::muli: overflow\""
                                }
                              ],
                              "overloadedDeclarations": [
                                -18,
                                -18
                              ],
                              "referencedDeclaration": -18,
                              "type": "function (bool,string memory) pure",
                              "value": "require"
                            },
                            "id": 7384,
                            "name": "Identifier",
                            "src": "2196:7:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "operator": "<",
                              "type": "bool"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7366,
                                  "type": "uint256",
                                  "value": "z"
                                },
                                "id": 7385,
                                "name": "Identifier",
                                "src": "2204:1:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "commonType": {
                                    "typeIdentifier": "t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819968_by_1",
                                    "typeString": "int_const 5789...(69 digits omitted)...9968"
                                  },
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "operator": "**",
                                  "type": "int_const 5789...(69 digits omitted)...9968"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "hexvalue": "32",
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "subdenomination": null,
                                      "token": "number",
                                      "type": "int_const 2",
                                      "value": "2"
                                    },
                                    "id": 7386,
                                    "name": "Literal",
                                    "src": "2208:1:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "hexvalue": "323535",
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "subdenomination": null,
                                      "token": "number",
                                      "type": "int_const 255",
                                      "value": "255"
                                    },
                                    "id": 7387,
                                    "name": "Literal",
                                    "src": "2211:3:20"
                                  }
                                ],
                                "id": 7388,
                                "name": "BinaryOperation",
                                "src": "2208:6:20"
                              }
                            ],
                            "id": 7389,
                            "name": "BinaryOperation",
                            "src": "2204:10:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "hexvalue": "4669786564506f696e743a3a6d756c693a206f766572666c6f77",
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "subdenomination": null,
                              "token": "string",
                              "type": "literal_string \"FixedPoint::muli: overflow\"",
                              "value": "FixedPoint::muli: overflow"
                            },
                            "id": 7390,
                            "name": "Literal",
                            "src": "2216:28:20"
                          }
                        ],
                        "id": 7391,
                        "name": "FunctionCall",
                        "src": "2196:49:20"
                      }
                    ],
                    "id": 7392,
                    "name": "ExpressionStatement",
                    "src": "2196:49:20"
                  },
                  {
                    "attributes": {
                      "functionReturnParameters": 7364
                    },
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "type": "int256"
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              },
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "operator": "<",
                              "type": "bool"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7360,
                                  "type": "int256",
                                  "value": "y"
                                },
                                "id": 7393,
                                "name": "Identifier",
                                "src": "2262:1:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "hexvalue": "30",
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "subdenomination": null,
                                  "token": "number",
                                  "type": "int_const 0",
                                  "value": "0"
                                },
                                "id": 7394,
                                "name": "Literal",
                                "src": "2266:1:20"
                              }
                            ],
                            "id": 7395,
                            "name": "BinaryOperation",
                            "src": "2262:5:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "operator": "-",
                              "prefix": true,
                              "type": "int256"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "isStructConstructorCall": false,
                                  "lValueRequested": false,
                                  "names": [
                                    null
                                  ],
                                  "tryCall": false,
                                  "type": "int256",
                                  "type_conversion": true
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      ],
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "type": "type(int256)"
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "name": "int256",
                                          "type": null
                                        },
                                        "id": 7396,
                                        "name": "ElementaryTypeName",
                                        "src": "2271:6:20"
                                      }
                                    ],
                                    "id": 7397,
                                    "name": "ElementaryTypeNameExpression",
                                    "src": "2271:6:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7366,
                                      "type": "uint256",
                                      "value": "z"
                                    },
                                    "id": 7398,
                                    "name": "Identifier",
                                    "src": "2278:1:20"
                                  }
                                ],
                                "id": 7399,
                                "name": "FunctionCall",
                                "src": "2271:9:20"
                              }
                            ],
                            "id": 7400,
                            "name": "UnaryOperation",
                            "src": "2270:10:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "isStructConstructorCall": false,
                              "lValueRequested": false,
                              "names": [
                                null
                              ],
                              "tryCall": false,
                              "type": "int256",
                              "type_conversion": true
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "type": "type(int256)"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "name": "int256",
                                      "type": null
                                    },
                                    "id": 7401,
                                    "name": "ElementaryTypeName",
                                    "src": "2283:6:20"
                                  }
                                ],
                                "id": 7402,
                                "name": "ElementaryTypeNameExpression",
                                "src": "2283:6:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7366,
                                  "type": "uint256",
                                  "value": "z"
                                },
                                "id": 7403,
                                "name": "Identifier",
                                "src": "2290:1:20"
                              }
                            ],
                            "id": 7404,
                            "name": "FunctionCall",
                            "src": "2283:9:20"
                          }
                        ],
                        "id": 7405,
                        "name": "Conditional",
                        "src": "2262:30:20"
                      }
                    ],
                    "id": 7406,
                    "name": "Return",
                    "src": "2255:37:20"
                  }
                ],
                "id": 7407,
                "name": "Block",
                "src": "2109:190:20"
              }
            ],
            "id": 7408,
            "name": "FunctionDefinition",
            "src": "2031:268:20"
          },
          {
            "attributes": {
              "documentation": null,
              "implemented": true,
              "isConstructor": false,
              "kind": "function",
              "modifiers": [
                null
              ],
              "name": "muluq",
              "overrides": null,
              "scope": 7858,
              "stateMutability": "pure",
              "virtual": false,
              "visibility": "internal"
            },
            "children": [
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "self",
                      "overrides": null,
                      "scope": 7556,
                      "stateVariable": false,
                      "storageLocation": "memory",
                      "type": "struct FixedPoint.uq112x112",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "contractScope": null,
                          "name": "uq112x112",
                          "referencedDeclaration": 7237,
                          "type": "struct FixedPoint.uq112x112"
                        },
                        "id": 7409,
                        "name": "UserDefinedTypeName",
                        "src": "2399:9:20"
                      }
                    ],
                    "id": 7410,
                    "name": "VariableDeclaration",
                    "src": "2399:21:20"
                  },
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "other",
                      "overrides": null,
                      "scope": 7556,
                      "stateVariable": false,
                      "storageLocation": "memory",
                      "type": "struct FixedPoint.uq112x112",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "contractScope": null,
                          "name": "uq112x112",
                          "referencedDeclaration": 7237,
                          "type": "struct FixedPoint.uq112x112"
                        },
                        "id": 7411,
                        "name": "UserDefinedTypeName",
                        "src": "2422:9:20"
                      }
                    ],
                    "id": 7412,
                    "name": "VariableDeclaration",
                    "src": "2422:22:20"
                  }
                ],
                "id": 7413,
                "name": "ParameterList",
                "src": "2398:47:20"
              },
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "",
                      "overrides": null,
                      "scope": 7556,
                      "stateVariable": false,
                      "storageLocation": "memory",
                      "type": "struct FixedPoint.uq112x112",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "contractScope": null,
                          "name": "uq112x112",
                          "referencedDeclaration": 7237,
                          "type": "struct FixedPoint.uq112x112"
                        },
                        "id": 7414,
                        "name": "UserDefinedTypeName",
                        "src": "2469:9:20"
                      }
                    ],
                    "id": 7415,
                    "name": "VariableDeclaration",
                    "src": "2469:16:20"
                  }
                ],
                "id": 7416,
                "name": "ParameterList",
                "src": "2468:18:20"
              },
              {
                "children": [
                  {
                    "attributes": {
                      "falseBody": null
                    },
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "operator": "||",
                          "type": "bool"
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              },
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "operator": "==",
                              "type": "bool"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "member_name": "_x",
                                  "referencedDeclaration": 7236,
                                  "type": "uint224"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7410,
                                      "type": "struct FixedPoint.uq112x112 memory",
                                      "value": "self"
                                    },
                                    "id": 7417,
                                    "name": "Identifier",
                                    "src": "2501:4:20"
                                  }
                                ],
                                "id": 7418,
                                "name": "MemberAccess",
                                "src": "2501:7:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "hexvalue": "30",
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "subdenomination": null,
                                  "token": "number",
                                  "type": "int_const 0",
                                  "value": "0"
                                },
                                "id": 7419,
                                "name": "Literal",
                                "src": "2512:1:20"
                              }
                            ],
                            "id": 7420,
                            "name": "BinaryOperation",
                            "src": "2501:12:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              },
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "operator": "==",
                              "type": "bool"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "member_name": "_x",
                                  "referencedDeclaration": 7236,
                                  "type": "uint224"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7412,
                                      "type": "struct FixedPoint.uq112x112 memory",
                                      "value": "other"
                                    },
                                    "id": 7421,
                                    "name": "Identifier",
                                    "src": "2517:5:20"
                                  }
                                ],
                                "id": 7422,
                                "name": "MemberAccess",
                                "src": "2517:8:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "hexvalue": "30",
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "subdenomination": null,
                                  "token": "number",
                                  "type": "int_const 0",
                                  "value": "0"
                                },
                                "id": 7423,
                                "name": "Literal",
                                "src": "2529:1:20"
                              }
                            ],
                            "id": 7424,
                            "name": "BinaryOperation",
                            "src": "2517:13:20"
                          }
                        ],
                        "id": 7425,
                        "name": "BinaryOperation",
                        "src": "2501:29:20"
                      },
                      {
                        "children": [
                          {
                            "attributes": {
                              "functionReturnParameters": 7416
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "isStructConstructorCall": true,
                                  "lValueRequested": false,
                                  "names": [
                                    null
                                  ],
                                  "tryCall": false,
                                  "type": "struct FixedPoint.uq112x112 memory",
                                  "type_conversion": false
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_rational_0_by_1",
                                          "typeString": "int_const 0"
                                        }
                                      ],
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7237,
                                      "type": "type(struct FixedPoint.uq112x112 storage pointer)",
                                      "value": "uq112x112"
                                    },
                                    "id": 7426,
                                    "name": "Identifier",
                                    "src": "2553:9:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "hexvalue": "30",
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "subdenomination": null,
                                      "token": "number",
                                      "type": "int_const 0",
                                      "value": "0"
                                    },
                                    "id": 7427,
                                    "name": "Literal",
                                    "src": "2563:1:20"
                                  }
                                ],
                                "id": 7428,
                                "name": "FunctionCall",
                                "src": "2553:12:20"
                              }
                            ],
                            "id": 7429,
                            "name": "Return",
                            "src": "2546:19:20"
                          }
                        ],
                        "id": 7430,
                        "name": "Block",
                        "src": "2532:44:20"
                      }
                    ],
                    "id": 7431,
                    "name": "IfStatement",
                    "src": "2497:79:20"
                  },
                  {
                    "attributes": {
                      "assignments": [
                        7433
                      ]
                    },
                    "children": [
                      {
                        "attributes": {
                          "constant": false,
                          "mutability": "mutable",
                          "name": "upper_self",
                          "overrides": null,
                          "scope": 7555,
                          "stateVariable": false,
                          "storageLocation": "default",
                          "type": "uint112",
                          "value": null,
                          "visibility": "internal"
                        },
                        "children": [
                          {
                            "attributes": {
                              "name": "uint112",
                              "type": "uint112"
                            },
                            "id": 7432,
                            "name": "ElementaryTypeName",
                            "src": "2585:7:20"
                          }
                        ],
                        "id": 7433,
                        "name": "VariableDeclaration",
                        "src": "2585:18:20"
                      },
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "isStructConstructorCall": false,
                          "lValueRequested": false,
                          "names": [
                            null
                          ],
                          "tryCall": false,
                          "type": "uint112",
                          "type_conversion": true
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              ],
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "type": "type(uint112)"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "name": "uint112",
                                  "type": null
                                },
                                "id": 7434,
                                "name": "ElementaryTypeName",
                                "src": "2606:7:20"
                              }
                            ],
                            "id": 7435,
                            "name": "ElementaryTypeNameExpression",
                            "src": "2606:7:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              },
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "operator": ">>",
                              "type": "uint224"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "member_name": "_x",
                                  "referencedDeclaration": 7236,
                                  "type": "uint224"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7410,
                                      "type": "struct FixedPoint.uq112x112 memory",
                                      "value": "self"
                                    },
                                    "id": 7436,
                                    "name": "Identifier",
                                    "src": "2614:4:20"
                                  }
                                ],
                                "id": 7437,
                                "name": "MemberAccess",
                                "src": "2614:7:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7243,
                                  "type": "uint8",
                                  "value": "RESOLUTION"
                                },
                                "id": 7438,
                                "name": "Identifier",
                                "src": "2625:10:20"
                              }
                            ],
                            "id": 7439,
                            "name": "BinaryOperation",
                            "src": "2614:21:20"
                          }
                        ],
                        "id": 7440,
                        "name": "FunctionCall",
                        "src": "2606:30:20"
                      }
                    ],
                    "id": 7441,
                    "name": "VariableDeclarationStatement",
                    "src": "2585:51:20"
                  },
                  {
                    "attributes": {
                      "assignments": [
                        7443
                      ]
                    },
                    "children": [
                      {
                        "attributes": {
                          "constant": false,
                          "mutability": "mutable",
                          "name": "lower_self",
                          "overrides": null,
                          "scope": 7555,
                          "stateVariable": false,
                          "storageLocation": "default",
                          "type": "uint112",
                          "value": null,
                          "visibility": "internal"
                        },
                        "children": [
                          {
                            "attributes": {
                              "name": "uint112",
                              "type": "uint112"
                            },
                            "id": 7442,
                            "name": "ElementaryTypeName",
                            "src": "2655:7:20"
                          }
                        ],
                        "id": 7443,
                        "name": "VariableDeclaration",
                        "src": "2655:18:20"
                      },
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "isStructConstructorCall": false,
                          "lValueRequested": false,
                          "names": [
                            null
                          ],
                          "tryCall": false,
                          "type": "uint112",
                          "type_conversion": true
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "type": "type(uint112)"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "name": "uint112",
                                  "type": null
                                },
                                "id": 7444,
                                "name": "ElementaryTypeName",
                                "src": "2676:7:20"
                              }
                            ],
                            "id": 7445,
                            "name": "ElementaryTypeNameExpression",
                            "src": "2676:7:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "operator": "&",
                              "type": "uint256"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "member_name": "_x",
                                  "referencedDeclaration": 7236,
                                  "type": "uint224"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7410,
                                      "type": "struct FixedPoint.uq112x112 memory",
                                      "value": "self"
                                    },
                                    "id": 7446,
                                    "name": "Identifier",
                                    "src": "2684:4:20"
                                  }
                                ],
                                "id": 7447,
                                "name": "MemberAccess",
                                "src": "2684:7:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7252,
                                  "type": "uint256",
                                  "value": "LOWER_MASK"
                                },
                                "id": 7448,
                                "name": "Identifier",
                                "src": "2694:10:20"
                              }
                            ],
                            "id": 7449,
                            "name": "BinaryOperation",
                            "src": "2684:20:20"
                          }
                        ],
                        "id": 7450,
                        "name": "FunctionCall",
                        "src": "2676:29:20"
                      }
                    ],
                    "id": 7451,
                    "name": "VariableDeclarationStatement",
                    "src": "2655:50:20"
                  },
                  {
                    "attributes": {
                      "assignments": [
                        7453
                      ]
                    },
                    "children": [
                      {
                        "attributes": {
                          "constant": false,
                          "mutability": "mutable",
                          "name": "upper_other",
                          "overrides": null,
                          "scope": 7555,
                          "stateVariable": false,
                          "storageLocation": "default",
                          "type": "uint112",
                          "value": null,
                          "visibility": "internal"
                        },
                        "children": [
                          {
                            "attributes": {
                              "name": "uint112",
                              "type": "uint112"
                            },
                            "id": 7452,
                            "name": "ElementaryTypeName",
                            "src": "2727:7:20"
                          }
                        ],
                        "id": 7453,
                        "name": "VariableDeclaration",
                        "src": "2727:19:20"
                      },
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "isStructConstructorCall": false,
                          "lValueRequested": false,
                          "names": [
                            null
                          ],
                          "tryCall": false,
                          "type": "uint112",
                          "type_conversion": true
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              ],
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "type": "type(uint112)"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "name": "uint112",
                                  "type": null
                                },
                                "id": 7454,
                                "name": "ElementaryTypeName",
                                "src": "2749:7:20"
                              }
                            ],
                            "id": 7455,
                            "name": "ElementaryTypeNameExpression",
                            "src": "2749:7:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              },
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "operator": ">>",
                              "type": "uint224"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "member_name": "_x",
                                  "referencedDeclaration": 7236,
                                  "type": "uint224"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7412,
                                      "type": "struct FixedPoint.uq112x112 memory",
                                      "value": "other"
                                    },
                                    "id": 7456,
                                    "name": "Identifier",
                                    "src": "2757:5:20"
                                  }
                                ],
                                "id": 7457,
                                "name": "MemberAccess",
                                "src": "2757:8:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7243,
                                  "type": "uint8",
                                  "value": "RESOLUTION"
                                },
                                "id": 7458,
                                "name": "Identifier",
                                "src": "2769:10:20"
                              }
                            ],
                            "id": 7459,
                            "name": "BinaryOperation",
                            "src": "2757:22:20"
                          }
                        ],
                        "id": 7460,
                        "name": "FunctionCall",
                        "src": "2749:31:20"
                      }
                    ],
                    "id": 7461,
                    "name": "VariableDeclarationStatement",
                    "src": "2727:53:20"
                  },
                  {
                    "attributes": {
                      "assignments": [
                        7463
                      ]
                    },
                    "children": [
                      {
                        "attributes": {
                          "constant": false,
                          "mutability": "mutable",
                          "name": "lower_other",
                          "overrides": null,
                          "scope": 7555,
                          "stateVariable": false,
                          "storageLocation": "default",
                          "type": "uint112",
                          "value": null,
                          "visibility": "internal"
                        },
                        "children": [
                          {
                            "attributes": {
                              "name": "uint112",
                              "type": "uint112"
                            },
                            "id": 7462,
                            "name": "ElementaryTypeName",
                            "src": "2799:7:20"
                          }
                        ],
                        "id": 7463,
                        "name": "VariableDeclaration",
                        "src": "2799:19:20"
                      },
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "isStructConstructorCall": false,
                          "lValueRequested": false,
                          "names": [
                            null
                          ],
                          "tryCall": false,
                          "type": "uint112",
                          "type_conversion": true
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "type": "type(uint112)"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "name": "uint112",
                                  "type": null
                                },
                                "id": 7464,
                                "name": "ElementaryTypeName",
                                "src": "2821:7:20"
                              }
                            ],
                            "id": 7465,
                            "name": "ElementaryTypeNameExpression",
                            "src": "2821:7:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "operator": "&",
                              "type": "uint256"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "member_name": "_x",
                                  "referencedDeclaration": 7236,
                                  "type": "uint224"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7412,
                                      "type": "struct FixedPoint.uq112x112 memory",
                                      "value": "other"
                                    },
                                    "id": 7466,
                                    "name": "Identifier",
                                    "src": "2829:5:20"
                                  }
                                ],
                                "id": 7467,
                                "name": "MemberAccess",
                                "src": "2829:8:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7252,
                                  "type": "uint256",
                                  "value": "LOWER_MASK"
                                },
                                "id": 7468,
                                "name": "Identifier",
                                "src": "2840:10:20"
                              }
                            ],
                            "id": 7469,
                            "name": "BinaryOperation",
                            "src": "2829:21:20"
                          }
                        ],
                        "id": 7470,
                        "name": "FunctionCall",
                        "src": "2821:30:20"
                      }
                    ],
                    "id": 7471,
                    "name": "VariableDeclarationStatement",
                    "src": "2799:52:20"
                  },
                  {
                    "attributes": {
                      "assignments": [
                        7473
                      ]
                    },
                    "children": [
                      {
                        "attributes": {
                          "constant": false,
                          "mutability": "mutable",
                          "name": "upper",
                          "overrides": null,
                          "scope": 7555,
                          "stateVariable": false,
                          "storageLocation": "default",
                          "type": "uint224",
                          "value": null,
                          "visibility": "internal"
                        },
                        "children": [
                          {
                            "attributes": {
                              "name": "uint224",
                              "type": "uint224"
                            },
                            "id": 7472,
                            "name": "ElementaryTypeName",
                            "src": "2902:7:20"
                          }
                        ],
                        "id": 7473,
                        "name": "VariableDeclaration",
                        "src": "2902:13:20"
                      },
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "commonType": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          },
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "operator": "*",
                          "type": "uint224"
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "isStructConstructorCall": false,
                              "lValueRequested": false,
                              "names": [
                                null
                              ],
                              "tryCall": false,
                              "type": "uint224",
                              "type_conversion": true
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint112",
                                      "typeString": "uint112"
                                    }
                                  ],
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "type": "type(uint224)"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "name": "uint224",
                                      "type": null
                                    },
                                    "id": 7474,
                                    "name": "ElementaryTypeName",
                                    "src": "2918:7:20"
                                  }
                                ],
                                "id": 7475,
                                "name": "ElementaryTypeNameExpression",
                                "src": "2918:7:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7433,
                                  "type": "uint112",
                                  "value": "upper_self"
                                },
                                "id": 7476,
                                "name": "Identifier",
                                "src": "2926:10:20"
                              }
                            ],
                            "id": 7477,
                            "name": "FunctionCall",
                            "src": "2918:19:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "overloadedDeclarations": [
                                null
                              ],
                              "referencedDeclaration": 7453,
                              "type": "uint112",
                              "value": "upper_other"
                            },
                            "id": 7478,
                            "name": "Identifier",
                            "src": "2940:11:20"
                          }
                        ],
                        "id": 7479,
                        "name": "BinaryOperation",
                        "src": "2918:33:20"
                      }
                    ],
                    "id": 7480,
                    "name": "VariableDeclarationStatement",
                    "src": "2902:49:20"
                  },
                  {
                    "attributes": {
                      "assignments": [
                        7482
                      ]
                    },
                    "children": [
                      {
                        "attributes": {
                          "constant": false,
                          "mutability": "mutable",
                          "name": "lower",
                          "overrides": null,
                          "scope": 7555,
                          "stateVariable": false,
                          "storageLocation": "default",
                          "type": "uint224",
                          "value": null,
                          "visibility": "internal"
                        },
                        "children": [
                          {
                            "attributes": {
                              "name": "uint224",
                              "type": "uint224"
                            },
                            "id": 7481,
                            "name": "ElementaryTypeName",
                            "src": "2970:7:20"
                          }
                        ],
                        "id": 7482,
                        "name": "VariableDeclaration",
                        "src": "2970:13:20"
                      },
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "commonType": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          },
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "operator": "*",
                          "type": "uint224"
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "isStructConstructorCall": false,
                              "lValueRequested": false,
                              "names": [
                                null
                              ],
                              "tryCall": false,
                              "type": "uint224",
                              "type_conversion": true
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint112",
                                      "typeString": "uint112"
                                    }
                                  ],
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "type": "type(uint224)"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "name": "uint224",
                                      "type": null
                                    },
                                    "id": 7483,
                                    "name": "ElementaryTypeName",
                                    "src": "2986:7:20"
                                  }
                                ],
                                "id": 7484,
                                "name": "ElementaryTypeNameExpression",
                                "src": "2986:7:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7443,
                                  "type": "uint112",
                                  "value": "lower_self"
                                },
                                "id": 7485,
                                "name": "Identifier",
                                "src": "2994:10:20"
                              }
                            ],
                            "id": 7486,
                            "name": "FunctionCall",
                            "src": "2986:19:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "overloadedDeclarations": [
                                null
                              ],
                              "referencedDeclaration": 7463,
                              "type": "uint112",
                              "value": "lower_other"
                            },
                            "id": 7487,
                            "name": "Identifier",
                            "src": "3008:11:20"
                          }
                        ],
                        "id": 7488,
                        "name": "BinaryOperation",
                        "src": "2986:33:20"
                      }
                    ],
                    "id": 7489,
                    "name": "VariableDeclarationStatement",
                    "src": "2970:49:20"
                  },
                  {
                    "attributes": {
                      "assignments": [
                        7491
                      ]
                    },
                    "children": [
                      {
                        "attributes": {
                          "constant": false,
                          "mutability": "mutable",
                          "name": "uppers_lowero",
                          "overrides": null,
                          "scope": 7555,
                          "stateVariable": false,
                          "storageLocation": "default",
                          "type": "uint224",
                          "value": null,
                          "visibility": "internal"
                        },
                        "children": [
                          {
                            "attributes": {
                              "name": "uint224",
                              "type": "uint224"
                            },
                            "id": 7490,
                            "name": "ElementaryTypeName",
                            "src": "3041:7:20"
                          }
                        ],
                        "id": 7491,
                        "name": "VariableDeclaration",
                        "src": "3041:21:20"
                      },
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "commonType": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          },
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "operator": "*",
                          "type": "uint224"
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "isStructConstructorCall": false,
                              "lValueRequested": false,
                              "names": [
                                null
                              ],
                              "tryCall": false,
                              "type": "uint224",
                              "type_conversion": true
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint112",
                                      "typeString": "uint112"
                                    }
                                  ],
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "type": "type(uint224)"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "name": "uint224",
                                      "type": null
                                    },
                                    "id": 7492,
                                    "name": "ElementaryTypeName",
                                    "src": "3065:7:20"
                                  }
                                ],
                                "id": 7493,
                                "name": "ElementaryTypeNameExpression",
                                "src": "3065:7:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7433,
                                  "type": "uint112",
                                  "value": "upper_self"
                                },
                                "id": 7494,
                                "name": "Identifier",
                                "src": "3073:10:20"
                              }
                            ],
                            "id": 7495,
                            "name": "FunctionCall",
                            "src": "3065:19:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "overloadedDeclarations": [
                                null
                              ],
                              "referencedDeclaration": 7463,
                              "type": "uint112",
                              "value": "lower_other"
                            },
                            "id": 7496,
                            "name": "Identifier",
                            "src": "3087:11:20"
                          }
                        ],
                        "id": 7497,
                        "name": "BinaryOperation",
                        "src": "3065:33:20"
                      }
                    ],
                    "id": 7498,
                    "name": "VariableDeclarationStatement",
                    "src": "3041:57:20"
                  },
                  {
                    "attributes": {
                      "assignments": [
                        7500
                      ]
                    },
                    "children": [
                      {
                        "attributes": {
                          "constant": false,
                          "mutability": "mutable",
                          "name": "uppero_lowers",
                          "overrides": null,
                          "scope": 7555,
                          "stateVariable": false,
                          "storageLocation": "default",
                          "type": "uint224",
                          "value": null,
                          "visibility": "internal"
                        },
                        "children": [
                          {
                            "attributes": {
                              "name": "uint224",
                              "type": "uint224"
                            },
                            "id": 7499,
                            "name": "ElementaryTypeName",
                            "src": "3120:7:20"
                          }
                        ],
                        "id": 7500,
                        "name": "VariableDeclaration",
                        "src": "3120:21:20"
                      },
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "commonType": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          },
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "operator": "*",
                          "type": "uint224"
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "isStructConstructorCall": false,
                              "lValueRequested": false,
                              "names": [
                                null
                              ],
                              "tryCall": false,
                              "type": "uint224",
                              "type_conversion": true
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint112",
                                      "typeString": "uint112"
                                    }
                                  ],
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "type": "type(uint224)"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "name": "uint224",
                                      "type": null
                                    },
                                    "id": 7501,
                                    "name": "ElementaryTypeName",
                                    "src": "3144:7:20"
                                  }
                                ],
                                "id": 7502,
                                "name": "ElementaryTypeNameExpression",
                                "src": "3144:7:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7453,
                                  "type": "uint112",
                                  "value": "upper_other"
                                },
                                "id": 7503,
                                "name": "Identifier",
                                "src": "3152:11:20"
                              }
                            ],
                            "id": 7504,
                            "name": "FunctionCall",
                            "src": "3144:20:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "overloadedDeclarations": [
                                null
                              ],
                              "referencedDeclaration": 7443,
                              "type": "uint112",
                              "value": "lower_self"
                            },
                            "id": 7505,
                            "name": "Identifier",
                            "src": "3167:10:20"
                          }
                        ],
                        "id": 7506,
                        "name": "BinaryOperation",
                        "src": "3144:33:20"
                      }
                    ],
                    "id": 7507,
                    "name": "VariableDeclarationStatement",
                    "src": "3120:57:20"
                  },
                  {
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "isStructConstructorCall": false,
                          "lValueRequested": false,
                          "names": [
                            null
                          ],
                          "tryCall": false,
                          "type": "tuple()",
                          "type_conversion": false
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                {
                                  "typeIdentifier": "t_stringliteral_b52493e04417af33ef99b1a68ac11af8712869fc1c194d72e6b0646c5968b5de",
                                  "typeString": "literal_string \"FixedPoint::muluq: upper overflow\""
                                }
                              ],
                              "overloadedDeclarations": [
                                -18,
                                -18
                              ],
                              "referencedDeclaration": -18,
                              "type": "function (bool,string memory) pure",
                              "value": "require"
                            },
                            "id": 7508,
                            "name": "Identifier",
                            "src": "3246:7:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              },
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "operator": "<=",
                              "type": "bool"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7473,
                                  "type": "uint224",
                                  "value": "upper"
                                },
                                "id": 7509,
                                "name": "Identifier",
                                "src": "3254:5:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "isStructConstructorCall": false,
                                  "lValueRequested": false,
                                  "names": [
                                    null
                                  ],
                                  "tryCall": false,
                                  "type": "uint112",
                                  "type_conversion": true
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_rational_minus_1_by_1",
                                          "typeString": "int_const -1"
                                        }
                                      ],
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "type": "type(uint112)"
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "name": "uint112",
                                          "type": null
                                        },
                                        "id": 7510,
                                        "name": "ElementaryTypeName",
                                        "src": "3263:7:20"
                                      }
                                    ],
                                    "id": 7511,
                                    "name": "ElementaryTypeNameExpression",
                                    "src": "3263:7:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "operator": "-",
                                      "prefix": true,
                                      "type": "int_const -1"
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "hexvalue": "31",
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "subdenomination": null,
                                          "token": "number",
                                          "type": "int_const 1",
                                          "value": "1"
                                        },
                                        "id": 7512,
                                        "name": "Literal",
                                        "src": "3272:1:20"
                                      }
                                    ],
                                    "id": 7513,
                                    "name": "UnaryOperation",
                                    "src": "3271:2:20"
                                  }
                                ],
                                "id": 7514,
                                "name": "FunctionCall",
                                "src": "3263:11:20"
                              }
                            ],
                            "id": 7515,
                            "name": "BinaryOperation",
                            "src": "3254:20:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "hexvalue": "4669786564506f696e743a3a6d756c75713a207570706572206f766572666c6f77",
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "subdenomination": null,
                              "token": "string",
                              "type": "literal_string \"FixedPoint::muluq: upper overflow\"",
                              "value": "FixedPoint::muluq: upper overflow"
                            },
                            "id": 7516,
                            "name": "Literal",
                            "src": "3276:35:20"
                          }
                        ],
                        "id": 7517,
                        "name": "FunctionCall",
                        "src": "3246:66:20"
                      }
                    ],
                    "id": 7518,
                    "name": "ExpressionStatement",
                    "src": "3246:66:20"
                  },
                  {
                    "attributes": {
                      "assignments": [
                        7520
                      ]
                    },
                    "children": [
                      {
                        "attributes": {
                          "constant": false,
                          "mutability": "mutable",
                          "name": "sum",
                          "overrides": null,
                          "scope": 7555,
                          "stateVariable": false,
                          "storageLocation": "default",
                          "type": "uint256",
                          "value": null,
                          "visibility": "internal"
                        },
                        "children": [
                          {
                            "attributes": {
                              "name": "uint256",
                              "type": "uint256"
                            },
                            "id": 7519,
                            "name": "ElementaryTypeName",
                            "src": "3387:7:20"
                          }
                        ],
                        "id": 7520,
                        "name": "VariableDeclaration",
                        "src": "3387:11:20"
                      },
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "operator": "+",
                          "type": "uint256"
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "operator": "+",
                              "type": "uint256"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "operator": "+",
                                  "type": "uint256"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "isStructConstructorCall": false,
                                      "lValueRequested": false,
                                      "names": [
                                        null
                                      ],
                                      "tryCall": false,
                                      "type": "uint256",
                                      "type_conversion": true
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_uint224",
                                              "typeString": "uint224"
                                            }
                                          ],
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "type": "type(uint256)"
                                        },
                                        "children": [
                                          {
                                            "attributes": {
                                              "name": "uint256",
                                              "type": null
                                            },
                                            "id": 7521,
                                            "name": "ElementaryTypeName",
                                            "src": "3401:7:20"
                                          }
                                        ],
                                        "id": 7522,
                                        "name": "ElementaryTypeNameExpression",
                                        "src": "3401:7:20"
                                      },
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "commonType": {
                                            "typeIdentifier": "t_uint224",
                                            "typeString": "uint224"
                                          },
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "operator": "<<",
                                          "type": "uint224"
                                        },
                                        "children": [
                                          {
                                            "attributes": {
                                              "argumentTypes": null,
                                              "overloadedDeclarations": [
                                                null
                                              ],
                                              "referencedDeclaration": 7473,
                                              "type": "uint224",
                                              "value": "upper"
                                            },
                                            "id": 7523,
                                            "name": "Identifier",
                                            "src": "3409:5:20"
                                          },
                                          {
                                            "attributes": {
                                              "argumentTypes": null,
                                              "overloadedDeclarations": [
                                                null
                                              ],
                                              "referencedDeclaration": 7243,
                                              "type": "uint8",
                                              "value": "RESOLUTION"
                                            },
                                            "id": 7524,
                                            "name": "Identifier",
                                            "src": "3418:10:20"
                                          }
                                        ],
                                        "id": 7525,
                                        "name": "BinaryOperation",
                                        "src": "3409:19:20"
                                      }
                                    ],
                                    "id": 7526,
                                    "name": "FunctionCall",
                                    "src": "3401:28:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7491,
                                      "type": "uint224",
                                      "value": "uppers_lowero"
                                    },
                                    "id": 7527,
                                    "name": "Identifier",
                                    "src": "3432:13:20"
                                  }
                                ],
                                "id": 7528,
                                "name": "BinaryOperation",
                                "src": "3401:44:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7500,
                                  "type": "uint224",
                                  "value": "uppero_lowers"
                                },
                                "id": 7529,
                                "name": "Identifier",
                                "src": "3448:13:20"
                              }
                            ],
                            "id": 7530,
                            "name": "BinaryOperation",
                            "src": "3401:60:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "isConstant": false,
                              "isInlineArray": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "type": "uint224"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "commonType": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  },
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "operator": ">>",
                                  "type": "uint224"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7482,
                                      "type": "uint224",
                                      "value": "lower"
                                    },
                                    "id": 7531,
                                    "name": "Identifier",
                                    "src": "3465:5:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7243,
                                      "type": "uint8",
                                      "value": "RESOLUTION"
                                    },
                                    "id": 7532,
                                    "name": "Identifier",
                                    "src": "3474:10:20"
                                  }
                                ],
                                "id": 7533,
                                "name": "BinaryOperation",
                                "src": "3465:19:20"
                              }
                            ],
                            "id": 7534,
                            "name": "TupleExpression",
                            "src": "3464:21:20"
                          }
                        ],
                        "id": 7535,
                        "name": "BinaryOperation",
                        "src": "3401:84:20"
                      }
                    ],
                    "id": 7536,
                    "name": "VariableDeclarationStatement",
                    "src": "3387:98:20"
                  },
                  {
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "isStructConstructorCall": false,
                          "lValueRequested": false,
                          "names": [
                            null
                          ],
                          "tryCall": false,
                          "type": "tuple()",
                          "type_conversion": false
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                {
                                  "typeIdentifier": "t_stringliteral_a26cd9bd987e78cd1c5f6e66afec1e08b996885c9b9c44f1a5fd3a63466b2eff",
                                  "typeString": "literal_string \"FixedPoint::muluq: sum overflow\""
                                }
                              ],
                              "overloadedDeclarations": [
                                -18,
                                -18
                              ],
                              "referencedDeclaration": -18,
                              "type": "function (bool,string memory) pure",
                              "value": "require"
                            },
                            "id": 7537,
                            "name": "Identifier",
                            "src": "3537:7:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "operator": "<=",
                              "type": "bool"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7520,
                                  "type": "uint256",
                                  "value": "sum"
                                },
                                "id": 7538,
                                "name": "Identifier",
                                "src": "3545:3:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "isStructConstructorCall": false,
                                  "lValueRequested": false,
                                  "names": [
                                    null
                                  ],
                                  "tryCall": false,
                                  "type": "uint224",
                                  "type_conversion": true
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_rational_minus_1_by_1",
                                          "typeString": "int_const -1"
                                        }
                                      ],
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "type": "type(uint224)"
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "name": "uint224",
                                          "type": null
                                        },
                                        "id": 7539,
                                        "name": "ElementaryTypeName",
                                        "src": "3552:7:20"
                                      }
                                    ],
                                    "id": 7540,
                                    "name": "ElementaryTypeNameExpression",
                                    "src": "3552:7:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "operator": "-",
                                      "prefix": true,
                                      "type": "int_const -1"
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "hexvalue": "31",
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "subdenomination": null,
                                          "token": "number",
                                          "type": "int_const 1",
                                          "value": "1"
                                        },
                                        "id": 7541,
                                        "name": "Literal",
                                        "src": "3561:1:20"
                                      }
                                    ],
                                    "id": 7542,
                                    "name": "UnaryOperation",
                                    "src": "3560:2:20"
                                  }
                                ],
                                "id": 7543,
                                "name": "FunctionCall",
                                "src": "3552:11:20"
                              }
                            ],
                            "id": 7544,
                            "name": "BinaryOperation",
                            "src": "3545:18:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "hexvalue": "4669786564506f696e743a3a6d756c75713a2073756d206f766572666c6f77",
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "subdenomination": null,
                              "token": "string",
                              "type": "literal_string \"FixedPoint::muluq: sum overflow\"",
                              "value": "FixedPoint::muluq: sum overflow"
                            },
                            "id": 7545,
                            "name": "Literal",
                            "src": "3565:33:20"
                          }
                        ],
                        "id": 7546,
                        "name": "FunctionCall",
                        "src": "3537:62:20"
                      }
                    ],
                    "id": 7547,
                    "name": "ExpressionStatement",
                    "src": "3537:62:20"
                  },
                  {
                    "attributes": {
                      "functionReturnParameters": 7416
                    },
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "isStructConstructorCall": true,
                          "lValueRequested": false,
                          "names": [
                            null
                          ],
                          "tryCall": false,
                          "type": "struct FixedPoint.uq112x112 memory",
                          "type_conversion": false
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              ],
                              "overloadedDeclarations": [
                                null
                              ],
                              "referencedDeclaration": 7237,
                              "type": "type(struct FixedPoint.uq112x112 storage pointer)",
                              "value": "uq112x112"
                            },
                            "id": 7548,
                            "name": "Identifier",
                            "src": "3617:9:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "isStructConstructorCall": false,
                              "lValueRequested": false,
                              "names": [
                                null
                              ],
                              "tryCall": false,
                              "type": "uint224",
                              "type_conversion": true
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "type": "type(uint224)"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "name": "uint224",
                                      "type": null
                                    },
                                    "id": 7549,
                                    "name": "ElementaryTypeName",
                                    "src": "3627:7:20"
                                  }
                                ],
                                "id": 7550,
                                "name": "ElementaryTypeNameExpression",
                                "src": "3627:7:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7520,
                                  "type": "uint256",
                                  "value": "sum"
                                },
                                "id": 7551,
                                "name": "Identifier",
                                "src": "3635:3:20"
                              }
                            ],
                            "id": 7552,
                            "name": "FunctionCall",
                            "src": "3627:12:20"
                          }
                        ],
                        "id": 7553,
                        "name": "FunctionCall",
                        "src": "3617:23:20"
                      }
                    ],
                    "id": 7554,
                    "name": "Return",
                    "src": "3610:30:20"
                  }
                ],
                "id": 7555,
                "name": "Block",
                "src": "2487:1160:20"
              }
            ],
            "id": 7556,
            "name": "FunctionDefinition",
            "src": "2384:1263:20"
          },
          {
            "attributes": {
              "documentation": null,
              "implemented": true,
              "isConstructor": false,
              "kind": "function",
              "modifiers": [
                null
              ],
              "name": "divuq",
              "overrides": null,
              "scope": 7858,
              "stateMutability": "pure",
              "virtual": false,
              "visibility": "internal"
            },
            "children": [
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "self",
                      "overrides": null,
                      "scope": 7659,
                      "stateVariable": false,
                      "storageLocation": "memory",
                      "type": "struct FixedPoint.uq112x112",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "contractScope": null,
                          "name": "uq112x112",
                          "referencedDeclaration": 7237,
                          "type": "struct FixedPoint.uq112x112"
                        },
                        "id": 7557,
                        "name": "UserDefinedTypeName",
                        "src": "3732:9:20"
                      }
                    ],
                    "id": 7558,
                    "name": "VariableDeclaration",
                    "src": "3732:21:20"
                  },
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "other",
                      "overrides": null,
                      "scope": 7659,
                      "stateVariable": false,
                      "storageLocation": "memory",
                      "type": "struct FixedPoint.uq112x112",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "contractScope": null,
                          "name": "uq112x112",
                          "referencedDeclaration": 7237,
                          "type": "struct FixedPoint.uq112x112"
                        },
                        "id": 7559,
                        "name": "UserDefinedTypeName",
                        "src": "3755:9:20"
                      }
                    ],
                    "id": 7560,
                    "name": "VariableDeclaration",
                    "src": "3755:22:20"
                  }
                ],
                "id": 7561,
                "name": "ParameterList",
                "src": "3731:47:20"
              },
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "",
                      "overrides": null,
                      "scope": 7659,
                      "stateVariable": false,
                      "storageLocation": "memory",
                      "type": "struct FixedPoint.uq112x112",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "contractScope": null,
                          "name": "uq112x112",
                          "referencedDeclaration": 7237,
                          "type": "struct FixedPoint.uq112x112"
                        },
                        "id": 7562,
                        "name": "UserDefinedTypeName",
                        "src": "3802:9:20"
                      }
                    ],
                    "id": 7563,
                    "name": "VariableDeclaration",
                    "src": "3802:16:20"
                  }
                ],
                "id": 7564,
                "name": "ParameterList",
                "src": "3801:18:20"
              },
              {
                "children": [
                  {
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "isStructConstructorCall": false,
                          "lValueRequested": false,
                          "names": [
                            null
                          ],
                          "tryCall": false,
                          "type": "tuple()",
                          "type_conversion": false
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                {
                                  "typeIdentifier": "t_stringliteral_422bc21f2eb91510a9cc7c0ead94b70d98345c9617c11cff466b9a69e8fa701d",
                                  "typeString": "literal_string \"FixedPoint::divuq: division by zero\""
                                }
                              ],
                              "overloadedDeclarations": [
                                -18,
                                -18
                              ],
                              "referencedDeclaration": -18,
                              "type": "function (bool,string memory) pure",
                              "value": "require"
                            },
                            "id": 7565,
                            "name": "Identifier",
                            "src": "3830:7:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              },
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "operator": ">",
                              "type": "bool"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "member_name": "_x",
                                  "referencedDeclaration": 7236,
                                  "type": "uint224"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7560,
                                      "type": "struct FixedPoint.uq112x112 memory",
                                      "value": "other"
                                    },
                                    "id": 7566,
                                    "name": "Identifier",
                                    "src": "3838:5:20"
                                  }
                                ],
                                "id": 7567,
                                "name": "MemberAccess",
                                "src": "3838:8:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "hexvalue": "30",
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "subdenomination": null,
                                  "token": "number",
                                  "type": "int_const 0",
                                  "value": "0"
                                },
                                "id": 7568,
                                "name": "Literal",
                                "src": "3849:1:20"
                              }
                            ],
                            "id": 7569,
                            "name": "BinaryOperation",
                            "src": "3838:12:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "hexvalue": "4669786564506f696e743a3a64697675713a206469766973696f6e206279207a65726f",
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "subdenomination": null,
                              "token": "string",
                              "type": "literal_string \"FixedPoint::divuq: division by zero\"",
                              "value": "FixedPoint::divuq: division by zero"
                            },
                            "id": 7570,
                            "name": "Literal",
                            "src": "3852:37:20"
                          }
                        ],
                        "id": 7571,
                        "name": "FunctionCall",
                        "src": "3830:60:20"
                      }
                    ],
                    "id": 7572,
                    "name": "ExpressionStatement",
                    "src": "3830:60:20"
                  },
                  {
                    "attributes": {
                      "falseBody": null
                    },
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "commonType": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          },
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "operator": "==",
                          "type": "bool"
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "member_name": "_x",
                              "referencedDeclaration": 7236,
                              "type": "uint224"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7558,
                                  "type": "struct FixedPoint.uq112x112 memory",
                                  "value": "self"
                                },
                                "id": 7573,
                                "name": "Identifier",
                                "src": "3904:4:20"
                              }
                            ],
                            "id": 7574,
                            "name": "MemberAccess",
                            "src": "3904:7:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "member_name": "_x",
                              "referencedDeclaration": 7236,
                              "type": "uint224"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7560,
                                  "type": "struct FixedPoint.uq112x112 memory",
                                  "value": "other"
                                },
                                "id": 7575,
                                "name": "Identifier",
                                "src": "3915:5:20"
                              }
                            ],
                            "id": 7576,
                            "name": "MemberAccess",
                            "src": "3915:8:20"
                          }
                        ],
                        "id": 7577,
                        "name": "BinaryOperation",
                        "src": "3904:19:20"
                      },
                      {
                        "children": [
                          {
                            "attributes": {
                              "functionReturnParameters": 7564
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "isStructConstructorCall": true,
                                  "lValueRequested": false,
                                  "names": [
                                    null
                                  ],
                                  "tryCall": false,
                                  "type": "struct FixedPoint.uq112x112 memory",
                                  "type_conversion": false
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_uint224",
                                          "typeString": "uint224"
                                        }
                                      ],
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7237,
                                      "type": "type(struct FixedPoint.uq112x112 storage pointer)",
                                      "value": "uq112x112"
                                    },
                                    "id": 7578,
                                    "name": "Identifier",
                                    "src": "3946:9:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "isStructConstructorCall": false,
                                      "lValueRequested": false,
                                      "names": [
                                        null
                                      ],
                                      "tryCall": false,
                                      "type": "uint224",
                                      "type_conversion": true
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          ],
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "type": "type(uint224)"
                                        },
                                        "children": [
                                          {
                                            "attributes": {
                                              "name": "uint224",
                                              "type": null
                                            },
                                            "id": 7579,
                                            "name": "ElementaryTypeName",
                                            "src": "3956:7:20"
                                          }
                                        ],
                                        "id": 7580,
                                        "name": "ElementaryTypeNameExpression",
                                        "src": "3956:7:20"
                                      },
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "overloadedDeclarations": [
                                            null
                                          ],
                                          "referencedDeclaration": 7246,
                                          "type": "uint256",
                                          "value": "Q112"
                                        },
                                        "id": 7581,
                                        "name": "Identifier",
                                        "src": "3964:4:20"
                                      }
                                    ],
                                    "id": 7582,
                                    "name": "FunctionCall",
                                    "src": "3956:13:20"
                                  }
                                ],
                                "id": 7583,
                                "name": "FunctionCall",
                                "src": "3946:24:20"
                              }
                            ],
                            "id": 7584,
                            "name": "Return",
                            "src": "3939:31:20"
                          }
                        ],
                        "id": 7585,
                        "name": "Block",
                        "src": "3925:56:20"
                      }
                    ],
                    "id": 7586,
                    "name": "IfStatement",
                    "src": "3900:81:20"
                  },
                  {
                    "attributes": {
                      "falseBody": null
                    },
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "commonType": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          },
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "operator": "<=",
                          "type": "bool"
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "member_name": "_x",
                              "referencedDeclaration": 7236,
                              "type": "uint224"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7558,
                                  "type": "struct FixedPoint.uq112x112 memory",
                                  "value": "self"
                                },
                                "id": 7587,
                                "name": "Identifier",
                                "src": "3994:4:20"
                              }
                            ],
                            "id": 7588,
                            "name": "MemberAccess",
                            "src": "3994:7:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "isStructConstructorCall": false,
                              "lValueRequested": false,
                              "names": [
                                null
                              ],
                              "tryCall": false,
                              "type": "uint144",
                              "type_conversion": true
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_minus_1_by_1",
                                      "typeString": "int_const -1"
                                    }
                                  ],
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "type": "type(uint144)"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "name": "uint144",
                                      "type": null
                                    },
                                    "id": 7589,
                                    "name": "ElementaryTypeName",
                                    "src": "4005:7:20"
                                  }
                                ],
                                "id": 7590,
                                "name": "ElementaryTypeNameExpression",
                                "src": "4005:7:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "operator": "-",
                                  "prefix": true,
                                  "type": "int_const -1"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "hexvalue": "31",
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "subdenomination": null,
                                      "token": "number",
                                      "type": "int_const 1",
                                      "value": "1"
                                    },
                                    "id": 7591,
                                    "name": "Literal",
                                    "src": "4014:1:20"
                                  }
                                ],
                                "id": 7592,
                                "name": "UnaryOperation",
                                "src": "4013:2:20"
                              }
                            ],
                            "id": 7593,
                            "name": "FunctionCall",
                            "src": "4005:11:20"
                          }
                        ],
                        "id": 7594,
                        "name": "BinaryOperation",
                        "src": "3994:22:20"
                      },
                      {
                        "children": [
                          {
                            "attributes": {
                              "assignments": [
                                7596
                              ]
                            },
                            "children": [
                              {
                                "attributes": {
                                  "constant": false,
                                  "mutability": "mutable",
                                  "name": "value",
                                  "overrides": null,
                                  "scope": 7627,
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "type": "uint256",
                                  "value": null,
                                  "visibility": "internal"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "name": "uint256",
                                      "type": "uint256"
                                    },
                                    "id": 7595,
                                    "name": "ElementaryTypeName",
                                    "src": "4032:7:20"
                                  }
                                ],
                                "id": 7596,
                                "name": "VariableDeclaration",
                                "src": "4032:13:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "operator": "/",
                                  "type": "uint256"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "isConstant": false,
                                      "isInlineArray": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "type": "uint256"
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "commonType": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          },
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "operator": "<<",
                                          "type": "uint256"
                                        },
                                        "children": [
                                          {
                                            "attributes": {
                                              "argumentTypes": null,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "isStructConstructorCall": false,
                                              "lValueRequested": false,
                                              "names": [
                                                null
                                              ],
                                              "tryCall": false,
                                              "type": "uint256",
                                              "type_conversion": true
                                            },
                                            "children": [
                                              {
                                                "attributes": {
                                                  "argumentTypes": [
                                                    {
                                                      "typeIdentifier": "t_uint224",
                                                      "typeString": "uint224"
                                                    }
                                                  ],
                                                  "isConstant": false,
                                                  "isLValue": false,
                                                  "isPure": true,
                                                  "lValueRequested": false,
                                                  "type": "type(uint256)"
                                                },
                                                "children": [
                                                  {
                                                    "attributes": {
                                                      "name": "uint256",
                                                      "type": null
                                                    },
                                                    "id": 7597,
                                                    "name": "ElementaryTypeName",
                                                    "src": "4049:7:20"
                                                  }
                                                ],
                                                "id": 7598,
                                                "name": "ElementaryTypeNameExpression",
                                                "src": "4049:7:20"
                                              },
                                              {
                                                "attributes": {
                                                  "argumentTypes": null,
                                                  "isConstant": false,
                                                  "isLValue": true,
                                                  "isPure": false,
                                                  "lValueRequested": false,
                                                  "member_name": "_x",
                                                  "referencedDeclaration": 7236,
                                                  "type": "uint224"
                                                },
                                                "children": [
                                                  {
                                                    "attributes": {
                                                      "argumentTypes": null,
                                                      "overloadedDeclarations": [
                                                        null
                                                      ],
                                                      "referencedDeclaration": 7558,
                                                      "type": "struct FixedPoint.uq112x112 memory",
                                                      "value": "self"
                                                    },
                                                    "id": 7599,
                                                    "name": "Identifier",
                                                    "src": "4057:4:20"
                                                  }
                                                ],
                                                "id": 7600,
                                                "name": "MemberAccess",
                                                "src": "4057:7:20"
                                              }
                                            ],
                                            "id": 7601,
                                            "name": "FunctionCall",
                                            "src": "4049:16:20"
                                          },
                                          {
                                            "attributes": {
                                              "argumentTypes": null,
                                              "overloadedDeclarations": [
                                                null
                                              ],
                                              "referencedDeclaration": 7243,
                                              "type": "uint8",
                                              "value": "RESOLUTION"
                                            },
                                            "id": 7602,
                                            "name": "Identifier",
                                            "src": "4069:10:20"
                                          }
                                        ],
                                        "id": 7603,
                                        "name": "BinaryOperation",
                                        "src": "4049:30:20"
                                      }
                                    ],
                                    "id": 7604,
                                    "name": "TupleExpression",
                                    "src": "4048:32:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "member_name": "_x",
                                      "referencedDeclaration": 7236,
                                      "type": "uint224"
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "overloadedDeclarations": [
                                            null
                                          ],
                                          "referencedDeclaration": 7560,
                                          "type": "struct FixedPoint.uq112x112 memory",
                                          "value": "other"
                                        },
                                        "id": 7605,
                                        "name": "Identifier",
                                        "src": "4083:5:20"
                                      }
                                    ],
                                    "id": 7606,
                                    "name": "MemberAccess",
                                    "src": "4083:8:20"
                                  }
                                ],
                                "id": 7607,
                                "name": "BinaryOperation",
                                "src": "4048:43:20"
                              }
                            ],
                            "id": 7608,
                            "name": "VariableDeclarationStatement",
                            "src": "4032:59:20"
                          },
                          {
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "isStructConstructorCall": false,
                                  "lValueRequested": false,
                                  "names": [
                                    null
                                  ],
                                  "tryCall": false,
                                  "type": "tuple()",
                                  "type_conversion": false
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_bool",
                                          "typeString": "bool"
                                        },
                                        {
                                          "typeIdentifier": "t_stringliteral_3f2635ef6119740811945e2425893e62b117b25251f7d0aaa9a8ce883079e0ad",
                                          "typeString": "literal_string \"FixedPoint::divuq: overflow\""
                                        }
                                      ],
                                      "overloadedDeclarations": [
                                        -18,
                                        -18
                                      ],
                                      "referencedDeclaration": -18,
                                      "type": "function (bool,string memory) pure",
                                      "value": "require"
                                    },
                                    "id": 7609,
                                    "name": "Identifier",
                                    "src": "4105:7:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "operator": "<=",
                                      "type": "bool"
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "overloadedDeclarations": [
                                            null
                                          ],
                                          "referencedDeclaration": 7596,
                                          "type": "uint256",
                                          "value": "value"
                                        },
                                        "id": 7610,
                                        "name": "Identifier",
                                        "src": "4113:5:20"
                                      },
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "isStructConstructorCall": false,
                                          "lValueRequested": false,
                                          "names": [
                                            null
                                          ],
                                          "tryCall": false,
                                          "type": "uint224",
                                          "type_conversion": true
                                        },
                                        "children": [
                                          {
                                            "attributes": {
                                              "argumentTypes": [
                                                {
                                                  "typeIdentifier": "t_rational_minus_1_by_1",
                                                  "typeString": "int_const -1"
                                                }
                                              ],
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": true,
                                              "lValueRequested": false,
                                              "type": "type(uint224)"
                                            },
                                            "children": [
                                              {
                                                "attributes": {
                                                  "name": "uint224",
                                                  "type": null
                                                },
                                                "id": 7611,
                                                "name": "ElementaryTypeName",
                                                "src": "4122:7:20"
                                              }
                                            ],
                                            "id": 7612,
                                            "name": "ElementaryTypeNameExpression",
                                            "src": "4122:7:20"
                                          },
                                          {
                                            "attributes": {
                                              "argumentTypes": null,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": true,
                                              "lValueRequested": false,
                                              "operator": "-",
                                              "prefix": true,
                                              "type": "int_const -1"
                                            },
                                            "children": [
                                              {
                                                "attributes": {
                                                  "argumentTypes": null,
                                                  "hexvalue": "31",
                                                  "isConstant": false,
                                                  "isLValue": false,
                                                  "isPure": true,
                                                  "lValueRequested": false,
                                                  "subdenomination": null,
                                                  "token": "number",
                                                  "type": "int_const 1",
                                                  "value": "1"
                                                },
                                                "id": 7613,
                                                "name": "Literal",
                                                "src": "4131:1:20"
                                              }
                                            ],
                                            "id": 7614,
                                            "name": "UnaryOperation",
                                            "src": "4130:2:20"
                                          }
                                        ],
                                        "id": 7615,
                                        "name": "FunctionCall",
                                        "src": "4122:11:20"
                                      }
                                    ],
                                    "id": 7616,
                                    "name": "BinaryOperation",
                                    "src": "4113:20:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "hexvalue": "4669786564506f696e743a3a64697675713a206f766572666c6f77",
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "subdenomination": null,
                                      "token": "string",
                                      "type": "literal_string \"FixedPoint::divuq: overflow\"",
                                      "value": "FixedPoint::divuq: overflow"
                                    },
                                    "id": 7617,
                                    "name": "Literal",
                                    "src": "4135:29:20"
                                  }
                                ],
                                "id": 7618,
                                "name": "FunctionCall",
                                "src": "4105:60:20"
                              }
                            ],
                            "id": 7619,
                            "name": "ExpressionStatement",
                            "src": "4105:60:20"
                          },
                          {
                            "attributes": {
                              "functionReturnParameters": 7564
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "isStructConstructorCall": true,
                                  "lValueRequested": false,
                                  "names": [
                                    null
                                  ],
                                  "tryCall": false,
                                  "type": "struct FixedPoint.uq112x112 memory",
                                  "type_conversion": false
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_uint224",
                                          "typeString": "uint224"
                                        }
                                      ],
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7237,
                                      "type": "type(struct FixedPoint.uq112x112 storage pointer)",
                                      "value": "uq112x112"
                                    },
                                    "id": 7620,
                                    "name": "Identifier",
                                    "src": "4186:9:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "isStructConstructorCall": false,
                                      "lValueRequested": false,
                                      "names": [
                                        null
                                      ],
                                      "tryCall": false,
                                      "type": "uint224",
                                      "type_conversion": true
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          ],
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "type": "type(uint224)"
                                        },
                                        "children": [
                                          {
                                            "attributes": {
                                              "name": "uint224",
                                              "type": null
                                            },
                                            "id": 7621,
                                            "name": "ElementaryTypeName",
                                            "src": "4196:7:20"
                                          }
                                        ],
                                        "id": 7622,
                                        "name": "ElementaryTypeNameExpression",
                                        "src": "4196:7:20"
                                      },
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "overloadedDeclarations": [
                                            null
                                          ],
                                          "referencedDeclaration": 7596,
                                          "type": "uint256",
                                          "value": "value"
                                        },
                                        "id": 7623,
                                        "name": "Identifier",
                                        "src": "4204:5:20"
                                      }
                                    ],
                                    "id": 7624,
                                    "name": "FunctionCall",
                                    "src": "4196:14:20"
                                  }
                                ],
                                "id": 7625,
                                "name": "FunctionCall",
                                "src": "4186:25:20"
                              }
                            ],
                            "id": 7626,
                            "name": "Return",
                            "src": "4179:32:20"
                          }
                        ],
                        "id": 7627,
                        "name": "Block",
                        "src": "4018:204:20"
                      }
                    ],
                    "id": 7628,
                    "name": "IfStatement",
                    "src": "3990:232:20"
                  },
                  {
                    "attributes": {
                      "assignments": [
                        7630
                      ]
                    },
                    "children": [
                      {
                        "attributes": {
                          "constant": false,
                          "mutability": "mutable",
                          "name": "result",
                          "overrides": null,
                          "scope": 7658,
                          "stateVariable": false,
                          "storageLocation": "default",
                          "type": "uint256",
                          "value": null,
                          "visibility": "internal"
                        },
                        "children": [
                          {
                            "attributes": {
                              "name": "uint256",
                              "type": "uint256"
                            },
                            "id": 7629,
                            "name": "ElementaryTypeName",
                            "src": "4232:7:20"
                          }
                        ],
                        "id": 7630,
                        "name": "VariableDeclaration",
                        "src": "4232:14:20"
                      },
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "isStructConstructorCall": false,
                          "lValueRequested": false,
                          "names": [
                            null
                          ],
                          "tryCall": false,
                          "type": "uint256",
                          "type_conversion": false
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                },
                                {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              ],
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "member_name": "mulDiv",
                              "referencedDeclaration": 8078,
                              "type": "function (uint256,uint256,uint256) pure returns (uint256)"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 8079,
                                  "type": "type(library FullMath)",
                                  "value": "FullMath"
                                },
                                "id": 7631,
                                "name": "Identifier",
                                "src": "4249:8:20"
                              }
                            ],
                            "id": 7632,
                            "name": "MemberAccess",
                            "src": "4249:15:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "overloadedDeclarations": [
                                null
                              ],
                              "referencedDeclaration": 7246,
                              "type": "uint256",
                              "value": "Q112"
                            },
                            "id": 7633,
                            "name": "Identifier",
                            "src": "4265:4:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "member_name": "_x",
                              "referencedDeclaration": 7236,
                              "type": "uint224"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7558,
                                  "type": "struct FixedPoint.uq112x112 memory",
                                  "value": "self"
                                },
                                "id": 7634,
                                "name": "Identifier",
                                "src": "4271:4:20"
                              }
                            ],
                            "id": 7635,
                            "name": "MemberAccess",
                            "src": "4271:7:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "member_name": "_x",
                              "referencedDeclaration": 7236,
                              "type": "uint224"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7560,
                                  "type": "struct FixedPoint.uq112x112 memory",
                                  "value": "other"
                                },
                                "id": 7636,
                                "name": "Identifier",
                                "src": "4280:5:20"
                              }
                            ],
                            "id": 7637,
                            "name": "MemberAccess",
                            "src": "4280:8:20"
                          }
                        ],
                        "id": 7638,
                        "name": "FunctionCall",
                        "src": "4249:40:20"
                      }
                    ],
                    "id": 7639,
                    "name": "VariableDeclarationStatement",
                    "src": "4232:57:20"
                  },
                  {
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "isStructConstructorCall": false,
                          "lValueRequested": false,
                          "names": [
                            null
                          ],
                          "tryCall": false,
                          "type": "tuple()",
                          "type_conversion": false
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                {
                                  "typeIdentifier": "t_stringliteral_3f2635ef6119740811945e2425893e62b117b25251f7d0aaa9a8ce883079e0ad",
                                  "typeString": "literal_string \"FixedPoint::divuq: overflow\""
                                }
                              ],
                              "overloadedDeclarations": [
                                -18,
                                -18
                              ],
                              "referencedDeclaration": -18,
                              "type": "function (bool,string memory) pure",
                              "value": "require"
                            },
                            "id": 7640,
                            "name": "Identifier",
                            "src": "4299:7:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "operator": "<=",
                              "type": "bool"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7630,
                                  "type": "uint256",
                                  "value": "result"
                                },
                                "id": 7641,
                                "name": "Identifier",
                                "src": "4307:6:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "isStructConstructorCall": false,
                                  "lValueRequested": false,
                                  "names": [
                                    null
                                  ],
                                  "tryCall": false,
                                  "type": "uint224",
                                  "type_conversion": true
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_rational_minus_1_by_1",
                                          "typeString": "int_const -1"
                                        }
                                      ],
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "type": "type(uint224)"
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "name": "uint224",
                                          "type": null
                                        },
                                        "id": 7642,
                                        "name": "ElementaryTypeName",
                                        "src": "4317:7:20"
                                      }
                                    ],
                                    "id": 7643,
                                    "name": "ElementaryTypeNameExpression",
                                    "src": "4317:7:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "operator": "-",
                                      "prefix": true,
                                      "type": "int_const -1"
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "hexvalue": "31",
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "subdenomination": null,
                                          "token": "number",
                                          "type": "int_const 1",
                                          "value": "1"
                                        },
                                        "id": 7644,
                                        "name": "Literal",
                                        "src": "4326:1:20"
                                      }
                                    ],
                                    "id": 7645,
                                    "name": "UnaryOperation",
                                    "src": "4325:2:20"
                                  }
                                ],
                                "id": 7646,
                                "name": "FunctionCall",
                                "src": "4317:11:20"
                              }
                            ],
                            "id": 7647,
                            "name": "BinaryOperation",
                            "src": "4307:21:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "hexvalue": "4669786564506f696e743a3a64697675713a206f766572666c6f77",
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "subdenomination": null,
                              "token": "string",
                              "type": "literal_string \"FixedPoint::divuq: overflow\"",
                              "value": "FixedPoint::divuq: overflow"
                            },
                            "id": 7648,
                            "name": "Literal",
                            "src": "4330:29:20"
                          }
                        ],
                        "id": 7649,
                        "name": "FunctionCall",
                        "src": "4299:61:20"
                      }
                    ],
                    "id": 7650,
                    "name": "ExpressionStatement",
                    "src": "4299:61:20"
                  },
                  {
                    "attributes": {
                      "functionReturnParameters": 7564
                    },
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "isStructConstructorCall": true,
                          "lValueRequested": false,
                          "names": [
                            null
                          ],
                          "tryCall": false,
                          "type": "struct FixedPoint.uq112x112 memory",
                          "type_conversion": false
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              ],
                              "overloadedDeclarations": [
                                null
                              ],
                              "referencedDeclaration": 7237,
                              "type": "type(struct FixedPoint.uq112x112 storage pointer)",
                              "value": "uq112x112"
                            },
                            "id": 7651,
                            "name": "Identifier",
                            "src": "4377:9:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "isStructConstructorCall": false,
                              "lValueRequested": false,
                              "names": [
                                null
                              ],
                              "tryCall": false,
                              "type": "uint224",
                              "type_conversion": true
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "type": "type(uint224)"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "name": "uint224",
                                      "type": null
                                    },
                                    "id": 7652,
                                    "name": "ElementaryTypeName",
                                    "src": "4387:7:20"
                                  }
                                ],
                                "id": 7653,
                                "name": "ElementaryTypeNameExpression",
                                "src": "4387:7:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7630,
                                  "type": "uint256",
                                  "value": "result"
                                },
                                "id": 7654,
                                "name": "Identifier",
                                "src": "4395:6:20"
                              }
                            ],
                            "id": 7655,
                            "name": "FunctionCall",
                            "src": "4387:15:20"
                          }
                        ],
                        "id": 7656,
                        "name": "FunctionCall",
                        "src": "4377:26:20"
                      }
                    ],
                    "id": 7657,
                    "name": "Return",
                    "src": "4370:33:20"
                  }
                ],
                "id": 7658,
                "name": "Block",
                "src": "3820:590:20"
              }
            ],
            "id": 7659,
            "name": "FunctionDefinition",
            "src": "3717:693:20"
          },
          {
            "attributes": {
              "documentation": null,
              "implemented": true,
              "isConstructor": false,
              "kind": "function",
              "modifiers": [
                null
              ],
              "name": "fraction",
              "overrides": null,
              "scope": 7858,
              "stateMutability": "pure",
              "virtual": false,
              "visibility": "internal"
            },
            "children": [
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "numerator",
                      "overrides": null,
                      "scope": 7749,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint256",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint256",
                          "type": "uint256"
                        },
                        "id": 7660,
                        "name": "ElementaryTypeName",
                        "src": "4544:7:20"
                      }
                    ],
                    "id": 7661,
                    "name": "VariableDeclaration",
                    "src": "4544:17:20"
                  },
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "denominator",
                      "overrides": null,
                      "scope": 7749,
                      "stateVariable": false,
                      "storageLocation": "default",
                      "type": "uint256",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "name": "uint256",
                          "type": "uint256"
                        },
                        "id": 7662,
                        "name": "ElementaryTypeName",
                        "src": "4563:7:20"
                      }
                    ],
                    "id": 7663,
                    "name": "VariableDeclaration",
                    "src": "4563:19:20"
                  }
                ],
                "id": 7664,
                "name": "ParameterList",
                "src": "4543:40:20"
              },
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "",
                      "overrides": null,
                      "scope": 7749,
                      "stateVariable": false,
                      "storageLocation": "memory",
                      "type": "struct FixedPoint.uq112x112",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "contractScope": null,
                          "name": "uq112x112",
                          "referencedDeclaration": 7237,
                          "type": "struct FixedPoint.uq112x112"
                        },
                        "id": 7665,
                        "name": "UserDefinedTypeName",
                        "src": "4607:9:20"
                      }
                    ],
                    "id": 7666,
                    "name": "VariableDeclaration",
                    "src": "4607:16:20"
                  }
                ],
                "id": 7667,
                "name": "ParameterList",
                "src": "4606:18:20"
              },
              {
                "children": [
                  {
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "isStructConstructorCall": false,
                          "lValueRequested": false,
                          "names": [
                            null
                          ],
                          "tryCall": false,
                          "type": "tuple()",
                          "type_conversion": false
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                {
                                  "typeIdentifier": "t_stringliteral_5e8a6c8dfacd0a41f2501735d8ee26d996b9e7e81ff5467dfdfd11a3728a15e7",
                                  "typeString": "literal_string \"FixedPoint::fraction: division by zero\""
                                }
                              ],
                              "overloadedDeclarations": [
                                -18,
                                -18
                              ],
                              "referencedDeclaration": -18,
                              "type": "function (bool,string memory) pure",
                              "value": "require"
                            },
                            "id": 7668,
                            "name": "Identifier",
                            "src": "4635:7:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "operator": ">",
                              "type": "bool"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7663,
                                  "type": "uint256",
                                  "value": "denominator"
                                },
                                "id": 7669,
                                "name": "Identifier",
                                "src": "4643:11:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "hexvalue": "30",
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "subdenomination": null,
                                  "token": "number",
                                  "type": "int_const 0",
                                  "value": "0"
                                },
                                "id": 7670,
                                "name": "Literal",
                                "src": "4657:1:20"
                              }
                            ],
                            "id": 7671,
                            "name": "BinaryOperation",
                            "src": "4643:15:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "hexvalue": "4669786564506f696e743a3a6672616374696f6e3a206469766973696f6e206279207a65726f",
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "subdenomination": null,
                              "token": "string",
                              "type": "literal_string \"FixedPoint::fraction: division by zero\"",
                              "value": "FixedPoint::fraction: division by zero"
                            },
                            "id": 7672,
                            "name": "Literal",
                            "src": "4660:40:20"
                          }
                        ],
                        "id": 7673,
                        "name": "FunctionCall",
                        "src": "4635:66:20"
                      }
                    ],
                    "id": 7674,
                    "name": "ExpressionStatement",
                    "src": "4635:66:20"
                  },
                  {
                    "attributes": {
                      "falseBody": null
                    },
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "operator": "==",
                          "type": "bool"
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "overloadedDeclarations": [
                                null
                              ],
                              "referencedDeclaration": 7661,
                              "type": "uint256",
                              "value": "numerator"
                            },
                            "id": 7675,
                            "name": "Identifier",
                            "src": "4715:9:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "hexvalue": "30",
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "subdenomination": null,
                              "token": "number",
                              "type": "int_const 0",
                              "value": "0"
                            },
                            "id": 7676,
                            "name": "Literal",
                            "src": "4728:1:20"
                          }
                        ],
                        "id": 7677,
                        "name": "BinaryOperation",
                        "src": "4715:14:20"
                      },
                      {
                        "attributes": {
                          "functionReturnParameters": 7667
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "isStructConstructorCall": true,
                              "lValueRequested": false,
                              "names": [
                                null
                              ],
                              "tryCall": false,
                              "type": "struct FixedPoint.uq112x112 memory",
                              "type_conversion": false
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "member_name": "uq112x112",
                                  "referencedDeclaration": 7237,
                                  "type": "type(struct FixedPoint.uq112x112 storage pointer)"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7858,
                                      "type": "type(library FixedPoint)",
                                      "value": "FixedPoint"
                                    },
                                    "id": 7678,
                                    "name": "Identifier",
                                    "src": "4738:10:20"
                                  }
                                ],
                                "id": 7679,
                                "name": "MemberAccess",
                                "src": "4738:20:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "hexvalue": "30",
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "subdenomination": null,
                                  "token": "number",
                                  "type": "int_const 0",
                                  "value": "0"
                                },
                                "id": 7680,
                                "name": "Literal",
                                "src": "4759:1:20"
                              }
                            ],
                            "id": 7681,
                            "name": "FunctionCall",
                            "src": "4738:23:20"
                          }
                        ],
                        "id": 7682,
                        "name": "Return",
                        "src": "4731:30:20"
                      }
                    ],
                    "id": 7683,
                    "name": "IfStatement",
                    "src": "4711:50:20"
                  },
                  {
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "operator": "<=",
                          "type": "bool"
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "overloadedDeclarations": [
                                null
                              ],
                              "referencedDeclaration": 7661,
                              "type": "uint256",
                              "value": "numerator"
                            },
                            "id": 7684,
                            "name": "Identifier",
                            "src": "4776:9:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "isStructConstructorCall": false,
                              "lValueRequested": false,
                              "names": [
                                null
                              ],
                              "tryCall": false,
                              "type": "uint144",
                              "type_conversion": true
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_minus_1_by_1",
                                      "typeString": "int_const -1"
                                    }
                                  ],
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "type": "type(uint144)"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "name": "uint144",
                                      "type": null
                                    },
                                    "id": 7685,
                                    "name": "ElementaryTypeName",
                                    "src": "4789:7:20"
                                  }
                                ],
                                "id": 7686,
                                "name": "ElementaryTypeNameExpression",
                                "src": "4789:7:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "operator": "-",
                                  "prefix": true,
                                  "type": "int_const -1"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "hexvalue": "31",
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "subdenomination": null,
                                      "token": "number",
                                      "type": "int_const 1",
                                      "value": "1"
                                    },
                                    "id": 7687,
                                    "name": "Literal",
                                    "src": "4798:1:20"
                                  }
                                ],
                                "id": 7688,
                                "name": "UnaryOperation",
                                "src": "4797:2:20"
                              }
                            ],
                            "id": 7689,
                            "name": "FunctionCall",
                            "src": "4789:11:20"
                          }
                        ],
                        "id": 7690,
                        "name": "BinaryOperation",
                        "src": "4776:24:20"
                      },
                      {
                        "children": [
                          {
                            "attributes": {
                              "assignments": [
                                7692
                              ]
                            },
                            "children": [
                              {
                                "attributes": {
                                  "constant": false,
                                  "mutability": "mutable",
                                  "name": "result",
                                  "overrides": null,
                                  "scope": 7718,
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "type": "uint256",
                                  "value": null,
                                  "visibility": "internal"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "name": "uint256",
                                      "type": "uint256"
                                    },
                                    "id": 7691,
                                    "name": "ElementaryTypeName",
                                    "src": "4816:7:20"
                                  }
                                ],
                                "id": 7692,
                                "name": "VariableDeclaration",
                                "src": "4816:14:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "operator": "/",
                                  "type": "uint256"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "isConstant": false,
                                      "isInlineArray": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "type": "uint256"
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "commonType": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          },
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "operator": "<<",
                                          "type": "uint256"
                                        },
                                        "children": [
                                          {
                                            "attributes": {
                                              "argumentTypes": null,
                                              "overloadedDeclarations": [
                                                null
                                              ],
                                              "referencedDeclaration": 7661,
                                              "type": "uint256",
                                              "value": "numerator"
                                            },
                                            "id": 7693,
                                            "name": "Identifier",
                                            "src": "4834:9:20"
                                          },
                                          {
                                            "attributes": {
                                              "argumentTypes": null,
                                              "overloadedDeclarations": [
                                                null
                                              ],
                                              "referencedDeclaration": 7243,
                                              "type": "uint8",
                                              "value": "RESOLUTION"
                                            },
                                            "id": 7694,
                                            "name": "Identifier",
                                            "src": "4847:10:20"
                                          }
                                        ],
                                        "id": 7695,
                                        "name": "BinaryOperation",
                                        "src": "4834:23:20"
                                      }
                                    ],
                                    "id": 7696,
                                    "name": "TupleExpression",
                                    "src": "4833:25:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7663,
                                      "type": "uint256",
                                      "value": "denominator"
                                    },
                                    "id": 7697,
                                    "name": "Identifier",
                                    "src": "4861:11:20"
                                  }
                                ],
                                "id": 7698,
                                "name": "BinaryOperation",
                                "src": "4833:39:20"
                              }
                            ],
                            "id": 7699,
                            "name": "VariableDeclarationStatement",
                            "src": "4816:56:20"
                          },
                          {
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "isStructConstructorCall": false,
                                  "lValueRequested": false,
                                  "names": [
                                    null
                                  ],
                                  "tryCall": false,
                                  "type": "tuple()",
                                  "type_conversion": false
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_bool",
                                          "typeString": "bool"
                                        },
                                        {
                                          "typeIdentifier": "t_stringliteral_9fe8d10e95984e9ccfd1797a961d8375075b4df29dfe16192bd5e7445ed87d53",
                                          "typeString": "literal_string \"FixedPoint::fraction: overflow\""
                                        }
                                      ],
                                      "overloadedDeclarations": [
                                        -18,
                                        -18
                                      ],
                                      "referencedDeclaration": -18,
                                      "type": "function (bool,string memory) pure",
                                      "value": "require"
                                    },
                                    "id": 7700,
                                    "name": "Identifier",
                                    "src": "4886:7:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "operator": "<=",
                                      "type": "bool"
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "overloadedDeclarations": [
                                            null
                                          ],
                                          "referencedDeclaration": 7692,
                                          "type": "uint256",
                                          "value": "result"
                                        },
                                        "id": 7701,
                                        "name": "Identifier",
                                        "src": "4894:6:20"
                                      },
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "isStructConstructorCall": false,
                                          "lValueRequested": false,
                                          "names": [
                                            null
                                          ],
                                          "tryCall": false,
                                          "type": "uint224",
                                          "type_conversion": true
                                        },
                                        "children": [
                                          {
                                            "attributes": {
                                              "argumentTypes": [
                                                {
                                                  "typeIdentifier": "t_rational_minus_1_by_1",
                                                  "typeString": "int_const -1"
                                                }
                                              ],
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": true,
                                              "lValueRequested": false,
                                              "type": "type(uint224)"
                                            },
                                            "children": [
                                              {
                                                "attributes": {
                                                  "name": "uint224",
                                                  "type": null
                                                },
                                                "id": 7702,
                                                "name": "ElementaryTypeName",
                                                "src": "4904:7:20"
                                              }
                                            ],
                                            "id": 7703,
                                            "name": "ElementaryTypeNameExpression",
                                            "src": "4904:7:20"
                                          },
                                          {
                                            "attributes": {
                                              "argumentTypes": null,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": true,
                                              "lValueRequested": false,
                                              "operator": "-",
                                              "prefix": true,
                                              "type": "int_const -1"
                                            },
                                            "children": [
                                              {
                                                "attributes": {
                                                  "argumentTypes": null,
                                                  "hexvalue": "31",
                                                  "isConstant": false,
                                                  "isLValue": false,
                                                  "isPure": true,
                                                  "lValueRequested": false,
                                                  "subdenomination": null,
                                                  "token": "number",
                                                  "type": "int_const 1",
                                                  "value": "1"
                                                },
                                                "id": 7704,
                                                "name": "Literal",
                                                "src": "4913:1:20"
                                              }
                                            ],
                                            "id": 7705,
                                            "name": "UnaryOperation",
                                            "src": "4912:2:20"
                                          }
                                        ],
                                        "id": 7706,
                                        "name": "FunctionCall",
                                        "src": "4904:11:20"
                                      }
                                    ],
                                    "id": 7707,
                                    "name": "BinaryOperation",
                                    "src": "4894:21:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "hexvalue": "4669786564506f696e743a3a6672616374696f6e3a206f766572666c6f77",
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "subdenomination": null,
                                      "token": "string",
                                      "type": "literal_string \"FixedPoint::fraction: overflow\"",
                                      "value": "FixedPoint::fraction: overflow"
                                    },
                                    "id": 7708,
                                    "name": "Literal",
                                    "src": "4917:32:20"
                                  }
                                ],
                                "id": 7709,
                                "name": "FunctionCall",
                                "src": "4886:64:20"
                              }
                            ],
                            "id": 7710,
                            "name": "ExpressionStatement",
                            "src": "4886:64:20"
                          },
                          {
                            "attributes": {
                              "functionReturnParameters": 7667
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "isStructConstructorCall": true,
                                  "lValueRequested": false,
                                  "names": [
                                    null
                                  ],
                                  "tryCall": false,
                                  "type": "struct FixedPoint.uq112x112 memory",
                                  "type_conversion": false
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_uint224",
                                          "typeString": "uint224"
                                        }
                                      ],
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7237,
                                      "type": "type(struct FixedPoint.uq112x112 storage pointer)",
                                      "value": "uq112x112"
                                    },
                                    "id": 7711,
                                    "name": "Identifier",
                                    "src": "4971:9:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "isStructConstructorCall": false,
                                      "lValueRequested": false,
                                      "names": [
                                        null
                                      ],
                                      "tryCall": false,
                                      "type": "uint224",
                                      "type_conversion": true
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          ],
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "type": "type(uint224)"
                                        },
                                        "children": [
                                          {
                                            "attributes": {
                                              "name": "uint224",
                                              "type": null
                                            },
                                            "id": 7712,
                                            "name": "ElementaryTypeName",
                                            "src": "4981:7:20"
                                          }
                                        ],
                                        "id": 7713,
                                        "name": "ElementaryTypeNameExpression",
                                        "src": "4981:7:20"
                                      },
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "overloadedDeclarations": [
                                            null
                                          ],
                                          "referencedDeclaration": 7692,
                                          "type": "uint256",
                                          "value": "result"
                                        },
                                        "id": 7714,
                                        "name": "Identifier",
                                        "src": "4989:6:20"
                                      }
                                    ],
                                    "id": 7715,
                                    "name": "FunctionCall",
                                    "src": "4981:15:20"
                                  }
                                ],
                                "id": 7716,
                                "name": "FunctionCall",
                                "src": "4971:26:20"
                              }
                            ],
                            "id": 7717,
                            "name": "Return",
                            "src": "4964:33:20"
                          }
                        ],
                        "id": 7718,
                        "name": "Block",
                        "src": "4802:206:20"
                      },
                      {
                        "children": [
                          {
                            "attributes": {
                              "assignments": [
                                7720
                              ]
                            },
                            "children": [
                              {
                                "attributes": {
                                  "constant": false,
                                  "mutability": "mutable",
                                  "name": "result",
                                  "overrides": null,
                                  "scope": 7746,
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "type": "uint256",
                                  "value": null,
                                  "visibility": "internal"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "name": "uint256",
                                      "type": "uint256"
                                    },
                                    "id": 7719,
                                    "name": "ElementaryTypeName",
                                    "src": "5028:7:20"
                                  }
                                ],
                                "id": 7720,
                                "name": "VariableDeclaration",
                                "src": "5028:14:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "isStructConstructorCall": false,
                                  "lValueRequested": false,
                                  "names": [
                                    null
                                  ],
                                  "tryCall": false,
                                  "type": "uint256",
                                  "type_conversion": false
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      ],
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "member_name": "mulDiv",
                                      "referencedDeclaration": 8078,
                                      "type": "function (uint256,uint256,uint256) pure returns (uint256)"
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "overloadedDeclarations": [
                                            null
                                          ],
                                          "referencedDeclaration": 8079,
                                          "type": "type(library FullMath)",
                                          "value": "FullMath"
                                        },
                                        "id": 7721,
                                        "name": "Identifier",
                                        "src": "5045:8:20"
                                      }
                                    ],
                                    "id": 7722,
                                    "name": "MemberAccess",
                                    "src": "5045:15:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7661,
                                      "type": "uint256",
                                      "value": "numerator"
                                    },
                                    "id": 7723,
                                    "name": "Identifier",
                                    "src": "5061:9:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7246,
                                      "type": "uint256",
                                      "value": "Q112"
                                    },
                                    "id": 7724,
                                    "name": "Identifier",
                                    "src": "5072:4:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7663,
                                      "type": "uint256",
                                      "value": "denominator"
                                    },
                                    "id": 7725,
                                    "name": "Identifier",
                                    "src": "5078:11:20"
                                  }
                                ],
                                "id": 7726,
                                "name": "FunctionCall",
                                "src": "5045:45:20"
                              }
                            ],
                            "id": 7727,
                            "name": "VariableDeclarationStatement",
                            "src": "5028:62:20"
                          },
                          {
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "isStructConstructorCall": false,
                                  "lValueRequested": false,
                                  "names": [
                                    null
                                  ],
                                  "tryCall": false,
                                  "type": "tuple()",
                                  "type_conversion": false
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_bool",
                                          "typeString": "bool"
                                        },
                                        {
                                          "typeIdentifier": "t_stringliteral_9fe8d10e95984e9ccfd1797a961d8375075b4df29dfe16192bd5e7445ed87d53",
                                          "typeString": "literal_string \"FixedPoint::fraction: overflow\""
                                        }
                                      ],
                                      "overloadedDeclarations": [
                                        -18,
                                        -18
                                      ],
                                      "referencedDeclaration": -18,
                                      "type": "function (bool,string memory) pure",
                                      "value": "require"
                                    },
                                    "id": 7728,
                                    "name": "Identifier",
                                    "src": "5104:7:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "operator": "<=",
                                      "type": "bool"
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "overloadedDeclarations": [
                                            null
                                          ],
                                          "referencedDeclaration": 7720,
                                          "type": "uint256",
                                          "value": "result"
                                        },
                                        "id": 7729,
                                        "name": "Identifier",
                                        "src": "5112:6:20"
                                      },
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "isStructConstructorCall": false,
                                          "lValueRequested": false,
                                          "names": [
                                            null
                                          ],
                                          "tryCall": false,
                                          "type": "uint224",
                                          "type_conversion": true
                                        },
                                        "children": [
                                          {
                                            "attributes": {
                                              "argumentTypes": [
                                                {
                                                  "typeIdentifier": "t_rational_minus_1_by_1",
                                                  "typeString": "int_const -1"
                                                }
                                              ],
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": true,
                                              "lValueRequested": false,
                                              "type": "type(uint224)"
                                            },
                                            "children": [
                                              {
                                                "attributes": {
                                                  "name": "uint224",
                                                  "type": null
                                                },
                                                "id": 7730,
                                                "name": "ElementaryTypeName",
                                                "src": "5122:7:20"
                                              }
                                            ],
                                            "id": 7731,
                                            "name": "ElementaryTypeNameExpression",
                                            "src": "5122:7:20"
                                          },
                                          {
                                            "attributes": {
                                              "argumentTypes": null,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": true,
                                              "lValueRequested": false,
                                              "operator": "-",
                                              "prefix": true,
                                              "type": "int_const -1"
                                            },
                                            "children": [
                                              {
                                                "attributes": {
                                                  "argumentTypes": null,
                                                  "hexvalue": "31",
                                                  "isConstant": false,
                                                  "isLValue": false,
                                                  "isPure": true,
                                                  "lValueRequested": false,
                                                  "subdenomination": null,
                                                  "token": "number",
                                                  "type": "int_const 1",
                                                  "value": "1"
                                                },
                                                "id": 7732,
                                                "name": "Literal",
                                                "src": "5131:1:20"
                                              }
                                            ],
                                            "id": 7733,
                                            "name": "UnaryOperation",
                                            "src": "5130:2:20"
                                          }
                                        ],
                                        "id": 7734,
                                        "name": "FunctionCall",
                                        "src": "5122:11:20"
                                      }
                                    ],
                                    "id": 7735,
                                    "name": "BinaryOperation",
                                    "src": "5112:21:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "hexvalue": "4669786564506f696e743a3a6672616374696f6e3a206f766572666c6f77",
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "subdenomination": null,
                                      "token": "string",
                                      "type": "literal_string \"FixedPoint::fraction: overflow\"",
                                      "value": "FixedPoint::fraction: overflow"
                                    },
                                    "id": 7736,
                                    "name": "Literal",
                                    "src": "5135:32:20"
                                  }
                                ],
                                "id": 7737,
                                "name": "FunctionCall",
                                "src": "5104:64:20"
                              }
                            ],
                            "id": 7738,
                            "name": "ExpressionStatement",
                            "src": "5104:64:20"
                          },
                          {
                            "attributes": {
                              "functionReturnParameters": 7667
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "isStructConstructorCall": true,
                                  "lValueRequested": false,
                                  "names": [
                                    null
                                  ],
                                  "tryCall": false,
                                  "type": "struct FixedPoint.uq112x112 memory",
                                  "type_conversion": false
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_uint224",
                                          "typeString": "uint224"
                                        }
                                      ],
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7237,
                                      "type": "type(struct FixedPoint.uq112x112 storage pointer)",
                                      "value": "uq112x112"
                                    },
                                    "id": 7739,
                                    "name": "Identifier",
                                    "src": "5189:9:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "isStructConstructorCall": false,
                                      "lValueRequested": false,
                                      "names": [
                                        null
                                      ],
                                      "tryCall": false,
                                      "type": "uint224",
                                      "type_conversion": true
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          ],
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "type": "type(uint224)"
                                        },
                                        "children": [
                                          {
                                            "attributes": {
                                              "name": "uint224",
                                              "type": null
                                            },
                                            "id": 7740,
                                            "name": "ElementaryTypeName",
                                            "src": "5199:7:20"
                                          }
                                        ],
                                        "id": 7741,
                                        "name": "ElementaryTypeNameExpression",
                                        "src": "5199:7:20"
                                      },
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "overloadedDeclarations": [
                                            null
                                          ],
                                          "referencedDeclaration": 7720,
                                          "type": "uint256",
                                          "value": "result"
                                        },
                                        "id": 7742,
                                        "name": "Identifier",
                                        "src": "5207:6:20"
                                      }
                                    ],
                                    "id": 7743,
                                    "name": "FunctionCall",
                                    "src": "5199:15:20"
                                  }
                                ],
                                "id": 7744,
                                "name": "FunctionCall",
                                "src": "5189:26:20"
                              }
                            ],
                            "id": 7745,
                            "name": "Return",
                            "src": "5182:33:20"
                          }
                        ],
                        "id": 7746,
                        "name": "Block",
                        "src": "5014:212:20"
                      }
                    ],
                    "id": 7747,
                    "name": "IfStatement",
                    "src": "4772:454:20"
                  }
                ],
                "id": 7748,
                "name": "Block",
                "src": "4625:607:20"
              }
            ],
            "id": 7749,
            "name": "FunctionDefinition",
            "src": "4526:706:20"
          },
          {
            "attributes": {
              "documentation": null,
              "implemented": true,
              "isConstructor": false,
              "kind": "function",
              "modifiers": [
                null
              ],
              "name": "reciprocal",
              "overrides": null,
              "scope": 7858,
              "stateMutability": "pure",
              "virtual": false,
              "visibility": "internal"
            },
            "children": [
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "self",
                      "overrides": null,
                      "scope": 7783,
                      "stateVariable": false,
                      "storageLocation": "memory",
                      "type": "struct FixedPoint.uq112x112",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "contractScope": null,
                          "name": "uq112x112",
                          "referencedDeclaration": 7237,
                          "type": "struct FixedPoint.uq112x112"
                        },
                        "id": 7750,
                        "name": "UserDefinedTypeName",
                        "src": "5340:9:20"
                      }
                    ],
                    "id": 7751,
                    "name": "VariableDeclaration",
                    "src": "5340:21:20"
                  }
                ],
                "id": 7752,
                "name": "ParameterList",
                "src": "5339:23:20"
              },
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "",
                      "overrides": null,
                      "scope": 7783,
                      "stateVariable": false,
                      "storageLocation": "memory",
                      "type": "struct FixedPoint.uq112x112",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "contractScope": null,
                          "name": "uq112x112",
                          "referencedDeclaration": 7237,
                          "type": "struct FixedPoint.uq112x112"
                        },
                        "id": 7753,
                        "name": "UserDefinedTypeName",
                        "src": "5386:9:20"
                      }
                    ],
                    "id": 7754,
                    "name": "VariableDeclaration",
                    "src": "5386:16:20"
                  }
                ],
                "id": 7755,
                "name": "ParameterList",
                "src": "5385:18:20"
              },
              {
                "children": [
                  {
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "isStructConstructorCall": false,
                          "lValueRequested": false,
                          "names": [
                            null
                          ],
                          "tryCall": false,
                          "type": "tuple()",
                          "type_conversion": false
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                {
                                  "typeIdentifier": "t_stringliteral_d3029a5a93a398fe526ba88b78683cb8409b11161a7a6252d5ccb5c8f4f8aea1",
                                  "typeString": "literal_string \"FixedPoint::reciprocal: reciprocal of zero\""
                                }
                              ],
                              "overloadedDeclarations": [
                                -18,
                                -18
                              ],
                              "referencedDeclaration": -18,
                              "type": "function (bool,string memory) pure",
                              "value": "require"
                            },
                            "id": 7756,
                            "name": "Identifier",
                            "src": "5414:7:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              },
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "operator": "!=",
                              "type": "bool"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "member_name": "_x",
                                  "referencedDeclaration": 7236,
                                  "type": "uint224"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7751,
                                      "type": "struct FixedPoint.uq112x112 memory",
                                      "value": "self"
                                    },
                                    "id": 7757,
                                    "name": "Identifier",
                                    "src": "5422:4:20"
                                  }
                                ],
                                "id": 7758,
                                "name": "MemberAccess",
                                "src": "5422:7:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "hexvalue": "30",
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "subdenomination": null,
                                  "token": "number",
                                  "type": "int_const 0",
                                  "value": "0"
                                },
                                "id": 7759,
                                "name": "Literal",
                                "src": "5433:1:20"
                              }
                            ],
                            "id": 7760,
                            "name": "BinaryOperation",
                            "src": "5422:12:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "hexvalue": "4669786564506f696e743a3a7265636970726f63616c3a207265636970726f63616c206f66207a65726f",
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "subdenomination": null,
                              "token": "string",
                              "type": "literal_string \"FixedPoint::reciprocal: reciprocal of zero\"",
                              "value": "FixedPoint::reciprocal: reciprocal of zero"
                            },
                            "id": 7761,
                            "name": "Literal",
                            "src": "5436:44:20"
                          }
                        ],
                        "id": 7762,
                        "name": "FunctionCall",
                        "src": "5414:67:20"
                      }
                    ],
                    "id": 7763,
                    "name": "ExpressionStatement",
                    "src": "5414:67:20"
                  },
                  {
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "isStructConstructorCall": false,
                          "lValueRequested": false,
                          "names": [
                            null
                          ],
                          "tryCall": false,
                          "type": "tuple()",
                          "type_conversion": false
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                {
                                  "typeIdentifier": "t_stringliteral_d0c2f767026b31296fb6fcaacdf9d3529986be99f9a71f7d756dd15015fdbac1",
                                  "typeString": "literal_string \"FixedPoint::reciprocal: overflow\""
                                }
                              ],
                              "overloadedDeclarations": [
                                -18,
                                -18
                              ],
                              "referencedDeclaration": -18,
                              "type": "function (bool,string memory) pure",
                              "value": "require"
                            },
                            "id": 7764,
                            "name": "Identifier",
                            "src": "5491:7:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              },
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "operator": "!=",
                              "type": "bool"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "member_name": "_x",
                                  "referencedDeclaration": 7236,
                                  "type": "uint224"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7751,
                                      "type": "struct FixedPoint.uq112x112 memory",
                                      "value": "self"
                                    },
                                    "id": 7765,
                                    "name": "Identifier",
                                    "src": "5499:4:20"
                                  }
                                ],
                                "id": 7766,
                                "name": "MemberAccess",
                                "src": "5499:7:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "hexvalue": "31",
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "subdenomination": null,
                                  "token": "number",
                                  "type": "int_const 1",
                                  "value": "1"
                                },
                                "id": 7767,
                                "name": "Literal",
                                "src": "5510:1:20"
                              }
                            ],
                            "id": 7768,
                            "name": "BinaryOperation",
                            "src": "5499:12:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "hexvalue": "4669786564506f696e743a3a7265636970726f63616c3a206f766572666c6f77",
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "subdenomination": null,
                              "token": "string",
                              "type": "literal_string \"FixedPoint::reciprocal: overflow\"",
                              "value": "FixedPoint::reciprocal: overflow"
                            },
                            "id": 7769,
                            "name": "Literal",
                            "src": "5513:34:20"
                          }
                        ],
                        "id": 7770,
                        "name": "FunctionCall",
                        "src": "5491:57:20"
                      }
                    ],
                    "id": 7771,
                    "name": "ExpressionStatement",
                    "src": "5491:57:20"
                  },
                  {
                    "attributes": {
                      "functionReturnParameters": 7755
                    },
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "isStructConstructorCall": true,
                          "lValueRequested": false,
                          "names": [
                            null
                          ],
                          "tryCall": false,
                          "type": "struct FixedPoint.uq112x112 memory",
                          "type_conversion": false
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              ],
                              "overloadedDeclarations": [
                                null
                              ],
                              "referencedDeclaration": 7237,
                              "type": "type(struct FixedPoint.uq112x112 storage pointer)",
                              "value": "uq112x112"
                            },
                            "id": 7772,
                            "name": "Identifier",
                            "src": "5565:9:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "isStructConstructorCall": false,
                              "lValueRequested": false,
                              "names": [
                                null
                              ],
                              "tryCall": false,
                              "type": "uint224",
                              "type_conversion": true
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "type": "type(uint224)"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "name": "uint224",
                                      "type": null
                                    },
                                    "id": 7773,
                                    "name": "ElementaryTypeName",
                                    "src": "5575:7:20"
                                  }
                                ],
                                "id": 7774,
                                "name": "ElementaryTypeNameExpression",
                                "src": "5575:7:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "operator": "/",
                                  "type": "uint256"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7249,
                                      "type": "uint256",
                                      "value": "Q224"
                                    },
                                    "id": 7775,
                                    "name": "Identifier",
                                    "src": "5583:4:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "member_name": "_x",
                                      "referencedDeclaration": 7236,
                                      "type": "uint224"
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "overloadedDeclarations": [
                                            null
                                          ],
                                          "referencedDeclaration": 7751,
                                          "type": "struct FixedPoint.uq112x112 memory",
                                          "value": "self"
                                        },
                                        "id": 7776,
                                        "name": "Identifier",
                                        "src": "5590:4:20"
                                      }
                                    ],
                                    "id": 7777,
                                    "name": "MemberAccess",
                                    "src": "5590:7:20"
                                  }
                                ],
                                "id": 7778,
                                "name": "BinaryOperation",
                                "src": "5583:14:20"
                              }
                            ],
                            "id": 7779,
                            "name": "FunctionCall",
                            "src": "5575:23:20"
                          }
                        ],
                        "id": 7780,
                        "name": "FunctionCall",
                        "src": "5565:34:20"
                      }
                    ],
                    "id": 7781,
                    "name": "Return",
                    "src": "5558:41:20"
                  }
                ],
                "id": 7782,
                "name": "Block",
                "src": "5404:202:20"
              }
            ],
            "id": 7783,
            "name": "FunctionDefinition",
            "src": "5320:286:20"
          },
          {
            "attributes": {
              "documentation": null,
              "implemented": true,
              "isConstructor": false,
              "kind": "function",
              "modifiers": [
                null
              ],
              "name": "sqrt",
              "overrides": null,
              "scope": 7858,
              "stateMutability": "pure",
              "virtual": false,
              "visibility": "internal"
            },
            "children": [
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "self",
                      "overrides": null,
                      "scope": 7857,
                      "stateVariable": false,
                      "storageLocation": "memory",
                      "type": "struct FixedPoint.uq112x112",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "contractScope": null,
                          "name": "uq112x112",
                          "referencedDeclaration": 7237,
                          "type": "struct FixedPoint.uq112x112"
                        },
                        "id": 7784,
                        "name": "UserDefinedTypeName",
                        "src": "5697:9:20"
                      }
                    ],
                    "id": 7785,
                    "name": "VariableDeclaration",
                    "src": "5697:21:20"
                  }
                ],
                "id": 7786,
                "name": "ParameterList",
                "src": "5696:23:20"
              },
              {
                "children": [
                  {
                    "attributes": {
                      "constant": false,
                      "mutability": "mutable",
                      "name": "",
                      "overrides": null,
                      "scope": 7857,
                      "stateVariable": false,
                      "storageLocation": "memory",
                      "type": "struct FixedPoint.uq112x112",
                      "value": null,
                      "visibility": "internal"
                    },
                    "children": [
                      {
                        "attributes": {
                          "contractScope": null,
                          "name": "uq112x112",
                          "referencedDeclaration": 7237,
                          "type": "struct FixedPoint.uq112x112"
                        },
                        "id": 7787,
                        "name": "UserDefinedTypeName",
                        "src": "5743:9:20"
                      }
                    ],
                    "id": 7788,
                    "name": "VariableDeclaration",
                    "src": "5743:16:20"
                  }
                ],
                "id": 7789,
                "name": "ParameterList",
                "src": "5742:18:20"
              },
              {
                "children": [
                  {
                    "attributes": {
                      "falseBody": null
                    },
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "commonType": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          },
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "operator": "<=",
                          "type": "bool"
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "member_name": "_x",
                              "referencedDeclaration": 7236,
                              "type": "uint224"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7785,
                                  "type": "struct FixedPoint.uq112x112 memory",
                                  "value": "self"
                                },
                                "id": 7790,
                                "name": "Identifier",
                                "src": "5775:4:20"
                              }
                            ],
                            "id": 7791,
                            "name": "MemberAccess",
                            "src": "5775:7:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "isStructConstructorCall": false,
                              "lValueRequested": false,
                              "names": [
                                null
                              ],
                              "tryCall": false,
                              "type": "uint144",
                              "type_conversion": true
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_minus_1_by_1",
                                      "typeString": "int_const -1"
                                    }
                                  ],
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "type": "type(uint144)"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "name": "uint144",
                                      "type": null
                                    },
                                    "id": 7792,
                                    "name": "ElementaryTypeName",
                                    "src": "5786:7:20"
                                  }
                                ],
                                "id": 7793,
                                "name": "ElementaryTypeNameExpression",
                                "src": "5786:7:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "operator": "-",
                                  "prefix": true,
                                  "type": "int_const -1"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "hexvalue": "31",
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "subdenomination": null,
                                      "token": "number",
                                      "type": "int_const 1",
                                      "value": "1"
                                    },
                                    "id": 7794,
                                    "name": "Literal",
                                    "src": "5795:1:20"
                                  }
                                ],
                                "id": 7795,
                                "name": "UnaryOperation",
                                "src": "5794:2:20"
                              }
                            ],
                            "id": 7796,
                            "name": "FunctionCall",
                            "src": "5786:11:20"
                          }
                        ],
                        "id": 7797,
                        "name": "BinaryOperation",
                        "src": "5775:22:20"
                      },
                      {
                        "children": [
                          {
                            "attributes": {
                              "functionReturnParameters": 7789
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "isStructConstructorCall": true,
                                  "lValueRequested": false,
                                  "names": [
                                    null
                                  ],
                                  "tryCall": false,
                                  "type": "struct FixedPoint.uq112x112 memory",
                                  "type_conversion": false
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_uint224",
                                          "typeString": "uint224"
                                        }
                                      ],
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7237,
                                      "type": "type(struct FixedPoint.uq112x112 storage pointer)",
                                      "value": "uq112x112"
                                    },
                                    "id": 7798,
                                    "name": "Identifier",
                                    "src": "5820:9:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "isStructConstructorCall": false,
                                      "lValueRequested": false,
                                      "names": [
                                        null
                                      ],
                                      "tryCall": false,
                                      "type": "uint224",
                                      "type_conversion": true
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          ],
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "type": "type(uint224)"
                                        },
                                        "children": [
                                          {
                                            "attributes": {
                                              "name": "uint224",
                                              "type": null
                                            },
                                            "id": 7799,
                                            "name": "ElementaryTypeName",
                                            "src": "5830:7:20"
                                          }
                                        ],
                                        "id": 7800,
                                        "name": "ElementaryTypeNameExpression",
                                        "src": "5830:7:20"
                                      },
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "isStructConstructorCall": false,
                                          "lValueRequested": false,
                                          "names": [
                                            null
                                          ],
                                          "tryCall": false,
                                          "type": "uint256",
                                          "type_conversion": false
                                        },
                                        "children": [
                                          {
                                            "attributes": {
                                              "argumentTypes": [
                                                {
                                                  "typeIdentifier": "t_uint256",
                                                  "typeString": "uint256"
                                                }
                                              ],
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "member_name": "sqrt",
                                              "referencedDeclaration": 6950,
                                              "type": "function (uint256) pure returns (uint256)"
                                            },
                                            "children": [
                                              {
                                                "attributes": {
                                                  "argumentTypes": null,
                                                  "overloadedDeclarations": [
                                                    null
                                                  ],
                                                  "referencedDeclaration": 6951,
                                                  "type": "type(library Babylonian)",
                                                  "value": "Babylonian"
                                                },
                                                "id": 7801,
                                                "name": "Identifier",
                                                "src": "5838:10:20"
                                              }
                                            ],
                                            "id": 7802,
                                            "name": "MemberAccess",
                                            "src": "5838:15:20"
                                          },
                                          {
                                            "attributes": {
                                              "argumentTypes": null,
                                              "commonType": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              },
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "operator": "<<",
                                              "type": "uint256"
                                            },
                                            "children": [
                                              {
                                                "attributes": {
                                                  "argumentTypes": null,
                                                  "isConstant": false,
                                                  "isLValue": false,
                                                  "isPure": false,
                                                  "isStructConstructorCall": false,
                                                  "lValueRequested": false,
                                                  "names": [
                                                    null
                                                  ],
                                                  "tryCall": false,
                                                  "type": "uint256",
                                                  "type_conversion": true
                                                },
                                                "children": [
                                                  {
                                                    "attributes": {
                                                      "argumentTypes": [
                                                        {
                                                          "typeIdentifier": "t_uint224",
                                                          "typeString": "uint224"
                                                        }
                                                      ],
                                                      "isConstant": false,
                                                      "isLValue": false,
                                                      "isPure": true,
                                                      "lValueRequested": false,
                                                      "type": "type(uint256)"
                                                    },
                                                    "children": [
                                                      {
                                                        "attributes": {
                                                          "name": "uint256",
                                                          "type": null
                                                        },
                                                        "id": 7803,
                                                        "name": "ElementaryTypeName",
                                                        "src": "5854:7:20"
                                                      }
                                                    ],
                                                    "id": 7804,
                                                    "name": "ElementaryTypeNameExpression",
                                                    "src": "5854:7:20"
                                                  },
                                                  {
                                                    "attributes": {
                                                      "argumentTypes": null,
                                                      "isConstant": false,
                                                      "isLValue": true,
                                                      "isPure": false,
                                                      "lValueRequested": false,
                                                      "member_name": "_x",
                                                      "referencedDeclaration": 7236,
                                                      "type": "uint224"
                                                    },
                                                    "children": [
                                                      {
                                                        "attributes": {
                                                          "argumentTypes": null,
                                                          "overloadedDeclarations": [
                                                            null
                                                          ],
                                                          "referencedDeclaration": 7785,
                                                          "type": "struct FixedPoint.uq112x112 memory",
                                                          "value": "self"
                                                        },
                                                        "id": 7805,
                                                        "name": "Identifier",
                                                        "src": "5862:4:20"
                                                      }
                                                    ],
                                                    "id": 7806,
                                                    "name": "MemberAccess",
                                                    "src": "5862:7:20"
                                                  }
                                                ],
                                                "id": 7807,
                                                "name": "FunctionCall",
                                                "src": "5854:16:20"
                                              },
                                              {
                                                "attributes": {
                                                  "argumentTypes": null,
                                                  "hexvalue": "313132",
                                                  "isConstant": false,
                                                  "isLValue": false,
                                                  "isPure": true,
                                                  "lValueRequested": false,
                                                  "subdenomination": null,
                                                  "token": "number",
                                                  "type": "int_const 112",
                                                  "value": "112"
                                                },
                                                "id": 7808,
                                                "name": "Literal",
                                                "src": "5874:3:20"
                                              }
                                            ],
                                            "id": 7809,
                                            "name": "BinaryOperation",
                                            "src": "5854:23:20"
                                          }
                                        ],
                                        "id": 7810,
                                        "name": "FunctionCall",
                                        "src": "5838:40:20"
                                      }
                                    ],
                                    "id": 7811,
                                    "name": "FunctionCall",
                                    "src": "5830:49:20"
                                  }
                                ],
                                "id": 7812,
                                "name": "FunctionCall",
                                "src": "5820:60:20"
                              }
                            ],
                            "id": 7813,
                            "name": "Return",
                            "src": "5813:67:20"
                          }
                        ],
                        "id": 7814,
                        "name": "Block",
                        "src": "5799:92:20"
                      }
                    ],
                    "id": 7815,
                    "name": "IfStatement",
                    "src": "5771:120:20"
                  },
                  {
                    "attributes": {
                      "assignments": [
                        7817
                      ]
                    },
                    "children": [
                      {
                        "attributes": {
                          "constant": false,
                          "mutability": "mutable",
                          "name": "safeShiftBits",
                          "overrides": null,
                          "scope": 7856,
                          "stateVariable": false,
                          "storageLocation": "default",
                          "type": "uint8",
                          "value": null,
                          "visibility": "internal"
                        },
                        "children": [
                          {
                            "attributes": {
                              "name": "uint8",
                              "type": "uint8"
                            },
                            "id": 7816,
                            "name": "ElementaryTypeName",
                            "src": "5901:5:20"
                          }
                        ],
                        "id": 7817,
                        "name": "VariableDeclaration",
                        "src": "5901:19:20"
                      },
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "commonType": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          },
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "operator": "-",
                          "type": "uint8"
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "hexvalue": "323535",
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "subdenomination": null,
                              "token": "number",
                              "type": "int_const 255",
                              "value": "255"
                            },
                            "id": 7818,
                            "name": "Literal",
                            "src": "5923:3:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "isStructConstructorCall": false,
                              "lValueRequested": false,
                              "names": [
                                null
                              ],
                              "tryCall": false,
                              "type": "uint8",
                              "type_conversion": false
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint224",
                                      "typeString": "uint224"
                                    }
                                  ],
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "member_name": "mostSignificantBit",
                                  "referencedDeclaration": 7067,
                                  "type": "function (uint256) pure returns (uint8)"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7229,
                                      "type": "type(library BitMath)",
                                      "value": "BitMath"
                                    },
                                    "id": 7819,
                                    "name": "Identifier",
                                    "src": "5929:7:20"
                                  }
                                ],
                                "id": 7820,
                                "name": "MemberAccess",
                                "src": "5929:26:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "member_name": "_x",
                                  "referencedDeclaration": 7236,
                                  "type": "uint224"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "overloadedDeclarations": [
                                        null
                                      ],
                                      "referencedDeclaration": 7785,
                                      "type": "struct FixedPoint.uq112x112 memory",
                                      "value": "self"
                                    },
                                    "id": 7821,
                                    "name": "Identifier",
                                    "src": "5956:4:20"
                                  }
                                ],
                                "id": 7822,
                                "name": "MemberAccess",
                                "src": "5956:7:20"
                              }
                            ],
                            "id": 7823,
                            "name": "FunctionCall",
                            "src": "5929:35:20"
                          }
                        ],
                        "id": 7824,
                        "name": "BinaryOperation",
                        "src": "5923:41:20"
                      }
                    ],
                    "id": 7825,
                    "name": "VariableDeclarationStatement",
                    "src": "5901:63:20"
                  },
                  {
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "operator": "-=",
                          "type": "uint8"
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "overloadedDeclarations": [
                                null
                              ],
                              "referencedDeclaration": 7817,
                              "type": "uint8",
                              "value": "safeShiftBits"
                            },
                            "id": 7826,
                            "name": "Identifier",
                            "src": "5974:13:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "commonType": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "operator": "%",
                              "type": "uint8"
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "overloadedDeclarations": [
                                    null
                                  ],
                                  "referencedDeclaration": 7817,
                                  "type": "uint8",
                                  "value": "safeShiftBits"
                                },
                                "id": 7827,
                                "name": "Identifier",
                                "src": "5991:13:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "hexvalue": "32",
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "subdenomination": null,
                                  "token": "number",
                                  "type": "int_const 2",
                                  "value": "2"
                                },
                                "id": 7828,
                                "name": "Literal",
                                "src": "6007:1:20"
                              }
                            ],
                            "id": 7829,
                            "name": "BinaryOperation",
                            "src": "5991:17:20"
                          }
                        ],
                        "id": 7830,
                        "name": "Assignment",
                        "src": "5974:34:20"
                      }
                    ],
                    "id": 7831,
                    "name": "ExpressionStatement",
                    "src": "5974:34:20"
                  },
                  {
                    "attributes": {
                      "functionReturnParameters": 7789
                    },
                    "children": [
                      {
                        "attributes": {
                          "argumentTypes": null,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "isStructConstructorCall": true,
                          "lValueRequested": false,
                          "names": [
                            null
                          ],
                          "tryCall": false,
                          "type": "struct FixedPoint.uq112x112 memory",
                          "type_conversion": false
                        },
                        "children": [
                          {
                            "attributes": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              ],
                              "overloadedDeclarations": [
                                null
                              ],
                              "referencedDeclaration": 7237,
                              "type": "type(struct FixedPoint.uq112x112 storage pointer)",
                              "value": "uq112x112"
                            },
                            "id": 7832,
                            "name": "Identifier",
                            "src": "6025:9:20"
                          },
                          {
                            "attributes": {
                              "argumentTypes": null,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "isStructConstructorCall": false,
                              "lValueRequested": false,
                              "names": [
                                null
                              ],
                              "tryCall": false,
                              "type": "uint224",
                              "type_conversion": true
                            },
                            "children": [
                              {
                                "attributes": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "type": "type(uint224)"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "name": "uint224",
                                      "type": null
                                    },
                                    "id": 7833,
                                    "name": "ElementaryTypeName",
                                    "src": "6035:7:20"
                                  }
                                ],
                                "id": 7834,
                                "name": "ElementaryTypeNameExpression",
                                "src": "6035:7:20"
                              },
                              {
                                "attributes": {
                                  "argumentTypes": null,
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "operator": "<<",
                                  "type": "uint256"
                                },
                                "children": [
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "isStructConstructorCall": false,
                                      "lValueRequested": false,
                                      "names": [
                                        null
                                      ],
                                      "tryCall": false,
                                      "type": "uint256",
                                      "type_conversion": false
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          ],
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "member_name": "sqrt",
                                          "referencedDeclaration": 6950,
                                          "type": "function (uint256) pure returns (uint256)"
                                        },
                                        "children": [
                                          {
                                            "attributes": {
                                              "argumentTypes": null,
                                              "overloadedDeclarations": [
                                                null
                                              ],
                                              "referencedDeclaration": 6951,
                                              "type": "type(library Babylonian)",
                                              "value": "Babylonian"
                                            },
                                            "id": 7835,
                                            "name": "Identifier",
                                            "src": "6043:10:20"
                                          }
                                        ],
                                        "id": 7836,
                                        "name": "MemberAccess",
                                        "src": "6043:15:20"
                                      },
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "commonType": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          },
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "operator": "<<",
                                          "type": "uint256"
                                        },
                                        "children": [
                                          {
                                            "attributes": {
                                              "argumentTypes": null,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "isStructConstructorCall": false,
                                              "lValueRequested": false,
                                              "names": [
                                                null
                                              ],
                                              "tryCall": false,
                                              "type": "uint256",
                                              "type_conversion": true
                                            },
                                            "children": [
                                              {
                                                "attributes": {
                                                  "argumentTypes": [
                                                    {
                                                      "typeIdentifier": "t_uint224",
                                                      "typeString": "uint224"
                                                    }
                                                  ],
                                                  "isConstant": false,
                                                  "isLValue": false,
                                                  "isPure": true,
                                                  "lValueRequested": false,
                                                  "type": "type(uint256)"
                                                },
                                                "children": [
                                                  {
                                                    "attributes": {
                                                      "name": "uint256",
                                                      "type": null
                                                    },
                                                    "id": 7837,
                                                    "name": "ElementaryTypeName",
                                                    "src": "6059:7:20"
                                                  }
                                                ],
                                                "id": 7838,
                                                "name": "ElementaryTypeNameExpression",
                                                "src": "6059:7:20"
                                              },
                                              {
                                                "attributes": {
                                                  "argumentTypes": null,
                                                  "isConstant": false,
                                                  "isLValue": true,
                                                  "isPure": false,
                                                  "lValueRequested": false,
                                                  "member_name": "_x",
                                                  "referencedDeclaration": 7236,
                                                  "type": "uint224"
                                                },
                                                "children": [
                                                  {
                                                    "attributes": {
                                                      "argumentTypes": null,
                                                      "overloadedDeclarations": [
                                                        null
                                                      ],
                                                      "referencedDeclaration": 7785,
                                                      "type": "struct FixedPoint.uq112x112 memory",
                                                      "value": "self"
                                                    },
                                                    "id": 7839,
                                                    "name": "Identifier",
                                                    "src": "6067:4:20"
                                                  }
                                                ],
                                                "id": 7840,
                                                "name": "MemberAccess",
                                                "src": "6067:7:20"
                                              }
                                            ],
                                            "id": 7841,
                                            "name": "FunctionCall",
                                            "src": "6059:16:20"
                                          },
                                          {
                                            "attributes": {
                                              "argumentTypes": null,
                                              "overloadedDeclarations": [
                                                null
                                              ],
                                              "referencedDeclaration": 7817,
                                              "type": "uint8",
                                              "value": "safeShiftBits"
                                            },
                                            "id": 7842,
                                            "name": "Identifier",
                                            "src": "6079:13:20"
                                          }
                                        ],
                                        "id": 7843,
                                        "name": "BinaryOperation",
                                        "src": "6059:33:20"
                                      }
                                    ],
                                    "id": 7844,
                                    "name": "FunctionCall",
                                    "src": "6043:50:20"
                                  },
                                  {
                                    "attributes": {
                                      "argumentTypes": null,
                                      "isConstant": false,
                                      "isInlineArray": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "type": "uint8"
                                    },
                                    "children": [
                                      {
                                        "attributes": {
                                          "argumentTypes": null,
                                          "commonType": {
                                            "typeIdentifier": "t_uint8",
                                            "typeString": "uint8"
                                          },
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "operator": "/",
                                          "type": "uint8"
                                        },
                                        "children": [
                                          {
                                            "attributes": {
                                              "argumentTypes": null,
                                              "isConstant": false,
                                              "isInlineArray": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "type": "uint8"
                                            },
                                            "children": [
                                              {
                                                "attributes": {
                                                  "argumentTypes": null,
                                                  "commonType": {
                                                    "typeIdentifier": "t_uint8",
                                                    "typeString": "uint8"
                                                  },
                                                  "isConstant": false,
                                                  "isLValue": false,
                                                  "isPure": false,
                                                  "lValueRequested": false,
                                                  "operator": "-",
                                                  "type": "uint8"
                                                },
                                                "children": [
                                                  {
                                                    "attributes": {
                                                      "argumentTypes": null,
                                                      "hexvalue": "313132",
                                                      "isConstant": false,
                                                      "isLValue": false,
                                                      "isPure": true,
                                                      "lValueRequested": false,
                                                      "subdenomination": null,
                                                      "token": "number",
                                                      "type": "int_const 112",
                                                      "value": "112"
                                                    },
                                                    "id": 7845,
                                                    "name": "Literal",
                                                    "src": "6099:3:20"
                                                  },
                                                  {
                                                    "attributes": {
                                                      "argumentTypes": null,
                                                      "overloadedDeclarations": [
                                                        null
                                                      ],
                                                      "referencedDeclaration": 7817,
                                                      "type": "uint8",
                                                      "value": "safeShiftBits"
                                                    },
                                                    "id": 7846,
                                                    "name": "Identifier",
                                                    "src": "6105:13:20"
                                                  }
                                                ],
                                                "id": 7847,
                                                "name": "BinaryOperation",
                                                "src": "6099:19:20"
                                              }
                                            ],
                                            "id": 7848,
                                            "name": "TupleExpression",
                                            "src": "6098:21:20"
                                          },
                                          {
                                            "attributes": {
                                              "argumentTypes": null,
                                              "hexvalue": "32",
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": true,
                                              "lValueRequested": false,
                                              "subdenomination": null,
                                              "token": "number",
                                              "type": "int_const 2",
                                              "value": "2"
                                            },
                                            "id": 7849,
                                            "name": "Literal",
                                            "src": "6122:1:20"
                                          }
                                        ],
                                        "id": 7850,
                                        "name": "BinaryOperation",
                                        "src": "6098:25:20"
                                      }
                                    ],
                                    "id": 7851,
                                    "name": "TupleExpression",
                                    "src": "6097:27:20"
                                  }
                                ],
                                "id": 7852,
                                "name": "BinaryOperation",
                                "src": "6043:81:20"
                              }
                            ],
                            "id": 7853,
                            "name": "FunctionCall",
                            "src": "6035:90:20"
                          }
                        ],
                        "id": 7854,
                        "name": "FunctionCall",
                        "src": "6025:101:20"
                      }
                    ],
                    "id": 7855,
                    "name": "Return",
                    "src": "6018:108:20"
                  }
                ],
                "id": 7856,
                "name": "Block",
                "src": "5761:372:20"
              }
            ],
            "id": 7857,
            "name": "FunctionDefinition",
            "src": "5683:450:20"
          }
        ],
        "id": 7858,
        "name": "ContractDefinition",
        "src": "251:5884:20"
      }
    ],
    "id": 7859,
    "name": "SourceUnit",
    "src": "45:6091:20"
  },
  "compiler": {
    "name": "solc",
    "version": "0.6.6+commit.6c089d02.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "3.4.1",
  "updatedAt": "2022-01-17T23:40:22.236Z",
  "devdoc": {
    "methods": {}
  },
  "userdoc": {
    "methods": {}
  }
}