{
  "contractName": "PermissionPolicyMock",
  "abi": [
    {
      "constant": true,
      "inputs": [],
      "name": "result",
      "outputs": [
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [
        {
          "name": "dataHash",
          "type": "bytes32"
        },
        {
          "name": "viewer",
          "type": "address"
        },
        {
          "name": "dataUri",
          "type": "string"
        }
      ],
      "name": "checkPolicy",
      "outputs": [
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": false,
      "inputs": [
        {
          "name": "newResult",
          "type": "bool"
        }
      ],
      "name": "setVal",
      "outputs": [],
      "payable": false,
      "stateMutability": "nonpayable",
      "type": "function"
    }
  ],
  "bytecode": "0x608060405260016000806101000a81548160ff02191690831515021790555034801561002a57600080fd5b506101b08061003a6000396000f300608060405260043610610057576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063653721471461005c5780639cf4898c1461008b578063da69cf5b1461010c575b600080fd5b34801561006857600080fd5b5061007161013b565b604051808215151515815260200191505060405180910390f35b34801561009757600080fd5b506100f26004803603810190808035600019169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190820180359060200191909192939192939050505061014d565b604051808215151515815260200191505060405180910390f35b34801561011857600080fd5b50610139600480360381019080803515159060200190929190505050610168565b005b6000809054906101000a900460ff1681565b60008060009054906101000a900460ff169050949350505050565b806000806101000a81548160ff021916908315150217905550505600a165627a7a72305820d4068cb0250a01b4839f8733ce7fe220791eab90cc0821967ee12f827e1375a60029",
  "deployedBytecode": "0x608060405260043610610057576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063653721471461005c5780639cf4898c1461008b578063da69cf5b1461010c575b600080fd5b34801561006857600080fd5b5061007161013b565b604051808215151515815260200191505060405180910390f35b34801561009757600080fd5b506100f26004803603810190808035600019169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190820180359060200191909192939192939050505061014d565b604051808215151515815260200191505060405180910390f35b34801561011857600080fd5b50610139600480360381019080803515159060200190929190505050610168565b005b6000809054906101000a900460ff1681565b60008060009054906101000a900460ff169050949350505050565b806000806101000a81548160ff021916908315150217905550505600a165627a7a72305820d4068cb0250a01b4839f8733ce7fe220791eab90cc0821967ee12f827e1375a60029",
  "sourceMap": "73:530:10:-;;;168:4;147:25;;;;;;;;;;;;;;;;;;;;73:530;8:9:-1;5:2;;;30:1;27;20:12;5:2;73:530:10;;;;;;;",
  "deployedSourceMap": "73:530:10:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;147:25:10;;;;;;;;;;;;;;;;;;;;;;;;;;;367:154;;8:9:-1;5:2;;;30:1;27;20:12;5:2;367:154:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;527:74;;8:9:-1;5:2;;;30:1;27;20:12;5:2;527:74:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;147:25;;;;;;;;;;;;;:::o;367:154::-;481:4;508:6;;;;;;;;;;;501:13;;367:154;;;;;;:::o;527:74::-;585:9;576:6;;:18;;;;;;;;;;;;;;;;;;527:74;:::o",
  "source": "pragma solidity 0.4.24;\n\nimport \"../interfaces/PermissionPolicyI.sol\";\n\n\ncontract /* interface */ PermissionPolicyMock is PermissionPolicyI {\n\n    bool public result = true;\n\n    /// @param viewer the user being granted permission to view the data\n    /// @param dataUri the path of the re-encrypted data\n    /// @param dataHash the hash of the data to be scored\n    function checkPolicy(bytes32 dataHash, address viewer, string dataUri)\n        view\n        external\n    returns (bool)\n    {\n        return result;\n    }\n\n    function setVal(bool newResult) public {\n        result = newResult;\n    }\n}\n",
  "sourcePath": "/Users/godfreyhobbs/repo/Linnia-Smart-Contracts/contracts/mock/PermissionPolicyMock.sol",
  "ast": {
    "absolutePath": "/Users/godfreyhobbs/repo/Linnia-Smart-Contracts/contracts/mock/PermissionPolicyMock.sol",
    "exportedSymbols": {
      "PermissionPolicyMock": [
        1863
      ]
    },
    "id": 1864,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 1832,
        "literals": [
          "solidity",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "0:23:10"
      },
      {
        "absolutePath": "/Users/godfreyhobbs/repo/Linnia-Smart-Contracts/contracts/interfaces/PermissionPolicyI.sol",
        "file": "../interfaces/PermissionPolicyI.sol",
        "id": 1833,
        "nodeType": "ImportDirective",
        "scope": 1864,
        "sourceUnit": 1692,
        "src": "25:45:10",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "baseContracts": [
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 1834,
              "name": "PermissionPolicyI",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 1691,
              "src": "122:17:10",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_PermissionPolicyI_$1691",
                "typeString": "contract PermissionPolicyI"
              }
            },
            "id": 1835,
            "nodeType": "InheritanceSpecifier",
            "src": "122:17:10"
          }
        ],
        "contractDependencies": [
          1691
        ],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": true,
        "id": 1863,
        "linearizedBaseContracts": [
          1863,
          1691
        ],
        "name": "PermissionPolicyMock",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "constant": false,
            "id": 1838,
            "name": "result",
            "nodeType": "VariableDeclaration",
            "scope": 1863,
            "src": "147:25:10",
            "stateVariable": true,
            "storageLocation": "default",
            "typeDescriptions": {
              "typeIdentifier": "t_bool",
              "typeString": "bool"
            },
            "typeName": {
              "id": 1836,
              "name": "bool",
              "nodeType": "ElementaryTypeName",
              "src": "147:4:10",
              "typeDescriptions": {
                "typeIdentifier": "t_bool",
                "typeString": "bool"
              }
            },
            "value": {
              "argumentTypes": null,
              "hexValue": "74727565",
              "id": 1837,
              "isConstant": false,
              "isLValue": false,
              "isPure": true,
              "kind": "bool",
              "lValueRequested": false,
              "nodeType": "Literal",
              "src": "168:4:10",
              "subdenomination": null,
              "typeDescriptions": {
                "typeIdentifier": "t_bool",
                "typeString": "bool"
              },
              "value": "true"
            },
            "visibility": "public"
          },
          {
            "body": {
              "id": 1851,
              "nodeType": "Block",
              "src": "491:30:10",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 1849,
                    "name": "result",
                    "nodeType": "Identifier",
                    "overloadedDeclarations": [],
                    "referencedDeclaration": 1838,
                    "src": "508:6:10",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "functionReturnParameters": 1848,
                  "id": 1850,
                  "nodeType": "Return",
                  "src": "501:13:10"
                }
              ]
            },
            "documentation": "@param viewer the user being granted permission to view the data\n @param dataUri the path of the re-encrypted data\n @param dataHash the hash of the data to be scored",
            "id": 1852,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "checkPolicy",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1845,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1840,
                  "name": "dataHash",
                  "nodeType": "VariableDeclaration",
                  "scope": 1852,
                  "src": "388:16:10",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 1839,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "388:7:10",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 1842,
                  "name": "viewer",
                  "nodeType": "VariableDeclaration",
                  "scope": 1852,
                  "src": "406:14:10",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 1841,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "406:7:10",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 1844,
                  "name": "dataUri",
                  "nodeType": "VariableDeclaration",
                  "scope": 1852,
                  "src": "422:14:10",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_calldata_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 1843,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "422:6:10",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "387:50:10"
            },
            "payable": false,
            "returnParameters": {
              "id": 1848,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1847,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 1852,
                  "src": "481:4:10",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 1846,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "481:4:10",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "480:6:10"
            },
            "scope": 1863,
            "src": "367:154:10",
            "stateMutability": "view",
            "superFunction": 1690,
            "visibility": "external"
          },
          {
            "body": {
              "id": 1861,
              "nodeType": "Block",
              "src": "566:35:10",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 1859,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 1857,
                      "name": "result",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 1838,
                      "src": "576:6:10",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bool",
                        "typeString": "bool"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "id": 1858,
                      "name": "newResult",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 1854,
                      "src": "585:9:10",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bool",
                        "typeString": "bool"
                      }
                    },
                    "src": "576:18:10",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "id": 1860,
                  "nodeType": "ExpressionStatement",
                  "src": "576:18:10"
                }
              ]
            },
            "documentation": null,
            "id": 1862,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "setVal",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1855,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1854,
                  "name": "newResult",
                  "nodeType": "VariableDeclaration",
                  "scope": 1862,
                  "src": "543:14:10",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 1853,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "543:4:10",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "542:16:10"
            },
            "payable": false,
            "returnParameters": {
              "id": 1856,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "566:0:10"
            },
            "scope": 1863,
            "src": "527:74:10",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 1864,
        "src": "73:530:10"
      }
    ],
    "src": "0:604:10"
  },
  "legacyAST": {
    "absolutePath": "/Users/godfreyhobbs/repo/Linnia-Smart-Contracts/contracts/mock/PermissionPolicyMock.sol",
    "exportedSymbols": {
      "PermissionPolicyMock": [
        1863
      ]
    },
    "id": 1864,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 1832,
        "literals": [
          "solidity",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "0:23:10"
      },
      {
        "absolutePath": "/Users/godfreyhobbs/repo/Linnia-Smart-Contracts/contracts/interfaces/PermissionPolicyI.sol",
        "file": "../interfaces/PermissionPolicyI.sol",
        "id": 1833,
        "nodeType": "ImportDirective",
        "scope": 1864,
        "sourceUnit": 1692,
        "src": "25:45:10",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "baseContracts": [
          {
            "arguments": null,
            "baseName": {
              "contractScope": null,
              "id": 1834,
              "name": "PermissionPolicyI",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 1691,
              "src": "122:17:10",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_PermissionPolicyI_$1691",
                "typeString": "contract PermissionPolicyI"
              }
            },
            "id": 1835,
            "nodeType": "InheritanceSpecifier",
            "src": "122:17:10"
          }
        ],
        "contractDependencies": [
          1691
        ],
        "contractKind": "contract",
        "documentation": null,
        "fullyImplemented": true,
        "id": 1863,
        "linearizedBaseContracts": [
          1863,
          1691
        ],
        "name": "PermissionPolicyMock",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "constant": false,
            "id": 1838,
            "name": "result",
            "nodeType": "VariableDeclaration",
            "scope": 1863,
            "src": "147:25:10",
            "stateVariable": true,
            "storageLocation": "default",
            "typeDescriptions": {
              "typeIdentifier": "t_bool",
              "typeString": "bool"
            },
            "typeName": {
              "id": 1836,
              "name": "bool",
              "nodeType": "ElementaryTypeName",
              "src": "147:4:10",
              "typeDescriptions": {
                "typeIdentifier": "t_bool",
                "typeString": "bool"
              }
            },
            "value": {
              "argumentTypes": null,
              "hexValue": "74727565",
              "id": 1837,
              "isConstant": false,
              "isLValue": false,
              "isPure": true,
              "kind": "bool",
              "lValueRequested": false,
              "nodeType": "Literal",
              "src": "168:4:10",
              "subdenomination": null,
              "typeDescriptions": {
                "typeIdentifier": "t_bool",
                "typeString": "bool"
              },
              "value": "true"
            },
            "visibility": "public"
          },
          {
            "body": {
              "id": 1851,
              "nodeType": "Block",
              "src": "491:30:10",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 1849,
                    "name": "result",
                    "nodeType": "Identifier",
                    "overloadedDeclarations": [],
                    "referencedDeclaration": 1838,
                    "src": "508:6:10",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "functionReturnParameters": 1848,
                  "id": 1850,
                  "nodeType": "Return",
                  "src": "501:13:10"
                }
              ]
            },
            "documentation": "@param viewer the user being granted permission to view the data\n @param dataUri the path of the re-encrypted data\n @param dataHash the hash of the data to be scored",
            "id": 1852,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "checkPolicy",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1845,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1840,
                  "name": "dataHash",
                  "nodeType": "VariableDeclaration",
                  "scope": 1852,
                  "src": "388:16:10",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 1839,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "388:7:10",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 1842,
                  "name": "viewer",
                  "nodeType": "VariableDeclaration",
                  "scope": 1852,
                  "src": "406:14:10",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 1841,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "406:7:10",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 1844,
                  "name": "dataUri",
                  "nodeType": "VariableDeclaration",
                  "scope": 1852,
                  "src": "422:14:10",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_calldata_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 1843,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "422:6:10",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "387:50:10"
            },
            "payable": false,
            "returnParameters": {
              "id": 1848,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1847,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 1852,
                  "src": "481:4:10",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 1846,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "481:4:10",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "480:6:10"
            },
            "scope": 1863,
            "src": "367:154:10",
            "stateMutability": "view",
            "superFunction": 1690,
            "visibility": "external"
          },
          {
            "body": {
              "id": 1861,
              "nodeType": "Block",
              "src": "566:35:10",
              "statements": [
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 1859,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 1857,
                      "name": "result",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 1838,
                      "src": "576:6:10",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bool",
                        "typeString": "bool"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "id": 1858,
                      "name": "newResult",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 1854,
                      "src": "585:9:10",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bool",
                        "typeString": "bool"
                      }
                    },
                    "src": "576:18:10",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "id": 1860,
                  "nodeType": "ExpressionStatement",
                  "src": "576:18:10"
                }
              ]
            },
            "documentation": null,
            "id": 1862,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "setVal",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 1855,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 1854,
                  "name": "newResult",
                  "nodeType": "VariableDeclaration",
                  "scope": 1862,
                  "src": "543:14:10",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 1853,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "543:4:10",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "542:16:10"
            },
            "payable": false,
            "returnParameters": {
              "id": 1856,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "566:0:10"
            },
            "scope": 1863,
            "src": "527:74:10",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 1864,
        "src": "73:530:10"
      }
    ],
    "src": "0:604:10"
  },
  "compiler": {
    "name": "solc",
    "version": "0.4.24+commit.e67f0147.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "2.0.0",
  "updatedAt": "2018-11-23T02:11:19.558Z"
}