ptabasic.nativecodeanalysis.sarif 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316
  1. {
  2. "version": "2.1.0",
  3. "$schema": "https://schemastore.azurewebsites.net/schemas/json/sarif-2.1.0-rtm.5.json",
  4. "runs": [
  5. {
  6. "results": [
  7. {
  8. "ruleId": "C6054",
  9. "message": {
  10. "text": "Die Zeichenfolge \"typestr\" endet möglicherweise nicht auf 0 (null)."
  11. },
  12. "locations": [
  13. {
  14. "physicalLocation": {
  15. "artifactLocation": {
  16. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ptabasic.c"
  17. },
  18. "region": {
  19. "startLine": 684,
  20. "startColumn": 9,
  21. "endLine": 684,
  22. "endColumn": 26
  23. }
  24. },
  25. "logicalLocations": [
  26. {
  27. "decoratedName": "ptaReadStream",
  28. "kind": "function"
  29. }
  30. ]
  31. }
  32. ],
  33. "codeFlows": [
  34. {
  35. "threadFlows": [
  36. {
  37. "locations": [
  38. {
  39. "location": {
  40. "physicalLocation": {
  41. "artifactLocation": {
  42. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ptabasic.c"
  43. },
  44. "region": {
  45. "startLine": 664,
  46. "startColumn": 12
  47. }
  48. },
  49. "message": {
  50. "text": "Dieser Ausdruck darf \"typestr\" nicht mit 0 (null) beenden."
  51. }
  52. },
  53. "kinds": [
  54. "declaration"
  55. ],
  56. "importance": "essential"
  57. },
  58. {
  59. "location": {
  60. "physicalLocation": {
  61. "artifactLocation": {
  62. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ptabasic.c"
  63. },
  64. "region": {
  65. "startLine": 665,
  66. "startColumn": 12
  67. }
  68. }
  69. },
  70. "importance": "unimportant"
  71. },
  72. {
  73. "location": {
  74. "physicalLocation": {
  75. "artifactLocation": {
  76. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ptabasic.c"
  77. },
  78. "region": {
  79. "startLine": 665,
  80. "startColumn": 15
  81. }
  82. }
  83. },
  84. "importance": "unimportant"
  85. },
  86. {
  87. "location": {
  88. "physicalLocation": {
  89. "artifactLocation": {
  90. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ptabasic.c"
  91. },
  92. "region": {
  93. "startLine": 665,
  94. "startColumn": 18
  95. }
  96. }
  97. },
  98. "importance": "unimportant"
  99. },
  100. {
  101. "location": {
  102. "physicalLocation": {
  103. "artifactLocation": {
  104. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ptabasic.c"
  105. },
  106. "region": {
  107. "startLine": 665,
  108. "startColumn": 22
  109. }
  110. }
  111. },
  112. "importance": "unimportant"
  113. },
  114. {
  115. "location": {
  116. "physicalLocation": {
  117. "artifactLocation": {
  118. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ptabasic.c"
  119. },
  120. "region": {
  121. "startLine": 665,
  122. "startColumn": 26
  123. }
  124. }
  125. },
  126. "importance": "unimportant"
  127. },
  128. {
  129. "location": {
  130. "physicalLocation": {
  131. "artifactLocation": {
  132. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ptabasic.c"
  133. },
  134. "region": {
  135. "startLine": 665,
  136. "startColumn": 32
  137. }
  138. }
  139. },
  140. "importance": "unimportant"
  141. },
  142. {
  143. "location": {
  144. "physicalLocation": {
  145. "artifactLocation": {
  146. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ptabasic.c"
  147. },
  148. "region": {
  149. "startLine": 666,
  150. "startColumn": 12
  151. }
  152. }
  153. },
  154. "importance": "unimportant"
  155. },
  156. {
  157. "location": {
  158. "physicalLocation": {
  159. "artifactLocation": {
  160. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ptabasic.c"
  161. },
  162. "region": {
  163. "startLine": 666,
  164. "startColumn": 15
  165. }
  166. }
  167. },
  168. "importance": "unimportant"
  169. },
  170. {
  171. "location": {
  172. "physicalLocation": {
  173. "artifactLocation": {
  174. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ptabasic.c"
  175. },
  176. "region": {
  177. "startLine": 667,
  178. "startColumn": 12
  179. }
  180. }
  181. },
  182. "importance": "unimportant"
  183. },
  184. {
  185. "location": {
  186. "physicalLocation": {
  187. "artifactLocation": {
  188. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ptabasic.c"
  189. },
  190. "region": {
  191. "startLine": 669,
  192. "startColumn": 9
  193. }
  194. },
  195. "message": {
  196. "text": "Diese Verzweigung überspringen (Annahme: \"!fp\" ist false)"
  197. }
  198. },
  199. "kinds": [
  200. "branch"
  201. ],
  202. "importance": "important"
  203. },
  204. {
  205. "location": {
  206. "physicalLocation": {
  207. "artifactLocation": {
  208. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ptabasic.c"
  209. },
  210. "region": {
  211. "startLine": 672,
  212. "startColumn": 53
  213. }
  214. },
  215. "message": {
  216. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  217. }
  218. },
  219. "kinds": [
  220. "branch"
  221. ],
  222. "importance": "important"
  223. },
  224. {
  225. "location": {
  226. "physicalLocation": {
  227. "artifactLocation": {
  228. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ptabasic.c"
  229. },
  230. "region": {
  231. "startLine": 674,
  232. "startColumn": 17
  233. }
  234. },
  235. "message": {
  236. "text": "Diese Verzweigung überspringen (Annahme: \"version!=1\" ist false)"
  237. }
  238. },
  239. "kinds": [
  240. "branch"
  241. ],
  242. "importance": "important"
  243. },
  244. {
  245. "location": {
  246. "physicalLocation": {
  247. "artifactLocation": {
  248. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ptabasic.c"
  249. },
  250. "region": {
  251. "startLine": 676,
  252. "startColumn": 74
  253. }
  254. },
  255. "message": {
  256. "text": "\"typestr\" ist eine Ausgabe von \"fscanf\" (in c:\\program files (x86)\\windows kits\\10\\include\\10.0.22621.0\\ucrt\\stdio.h:1199 deklariert)"
  257. }
  258. },
  259. "kinds": [
  260. "declaration"
  261. ],
  262. "importance": "important"
  263. },
  264. {
  265. "location": {
  266. "physicalLocation": {
  267. "artifactLocation": {
  268. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ptabasic.c"
  269. },
  270. "region": {
  271. "startLine": 676,
  272. "startColumn": 74
  273. }
  274. },
  275. "message": {
  276. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  277. }
  278. },
  279. "kinds": [
  280. "branch"
  281. ],
  282. "importance": "important"
  283. },
  284. {
  285. "location": {
  286. "physicalLocation": {
  287. "artifactLocation": {
  288. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ptabasic.c"
  289. },
  290. "region": {
  291. "startLine": 678,
  292. "startColumn": 11
  293. }
  294. },
  295. "message": {
  296. "text": "Diese Verzweigung überspringen (Annahme: \"n<0\" ist false)"
  297. }
  298. },
  299. "kinds": [
  300. "branch"
  301. ],
  302. "importance": "important"
  303. },
  304. {
  305. "location": {
  306. "physicalLocation": {
  307. "artifactLocation": {
  308. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ptabasic.c"
  309. },
  310. "region": {
  311. "startLine": 680,
  312. "startColumn": 11
  313. }
  314. },
  315. "message": {
  316. "text": "Diese Verzweigung überspringen (Annahme: \"n>(l_int32)MaxArraySize\" ist false)"
  317. }
  318. },
  319. "kinds": [
  320. "branch"
  321. ],
  322. "importance": "important"
  323. },
  324. {
  325. "location": {
  326. "physicalLocation": {
  327. "artifactLocation": {
  328. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ptabasic.c"
  329. },
  330. "region": {
  331. "startLine": 682,
  332. "startColumn": 11
  333. }
  334. }
  335. },
  336. "importance": "unimportant"
  337. },
  338. {
  339. "location": {
  340. "physicalLocation": {
  341. "artifactLocation": {
  342. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ptabasic.c"
  343. },
  344. "region": {
  345. "startLine": 684,
  346. "startColumn": 9
  347. }
  348. },
  349. "message": {
  350. "text": "\"typestr\" ist eine Eingabe für \"strcmp\" (in <no file>:0 deklariert)"
  351. }
  352. },
  353. "kinds": [
  354. "usage"
  355. ],
  356. "importance": "important"
  357. },
  358. {
  359. "location": {
  360. "physicalLocation": {
  361. "artifactLocation": {
  362. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ptabasic.c"
  363. },
  364. "region": {
  365. "startLine": 684,
  366. "startColumn": 9
  367. }
  368. },
  369. "message": {
  370. "text": "\"typestr\" muss durch eine SAL-Anmerkung zu \"strcmp\" mit 0 (null) beendet werden."
  371. }
  372. },
  373. "kinds": [
  374. "usage"
  375. ],
  376. "importance": "essential"
  377. }
  378. ]
  379. }
  380. ]
  381. }
  382. ]
  383. }
  384. ],
  385. "tool": {
  386. "driver": {
  387. "name": "PREfast",
  388. "fullName": "PREfast Code Analysis",
  389. "version": "14.29.30159.0",
  390. "informationUri": "https://aka.ms/cpp/ca"
  391. }
  392. },
  393. "invocations": [
  394. {
  395. "commandLine": "D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\bin\\HostX64\\x64\\c1.dll -ACf{1F7B090C-16DB-4822-966A-A93D26ED4681} -ACpmspft140.dll -Alint -D_PREFAST_ -D_AST_FE_ -Analyze -zm0x00007FF62CE9FC60 -il C:\\Users\\wruser\\AppData\\Local\\Temp\\_CL_15f01a58ast -typedil -f ..\\..\\thirdparty\\leptonica\\src\\ptabasic.c -Ze -D_MSC_EXTENSIONS -Zp16 -pc \\:/ -D_MSC_VER=1929 -D_MSC_FULL_VER=192930159 -D_MSC_BUILD=0 -D_M_AMD64=100 -ZILP448 -D_M_X64=100 -D_WIN64 -D_WIN32 -I C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\include -I C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\thirdparty\\leptonica\\src -I C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\scripts\\tesseract -nologo -W 3 -diagnostics:column -GF -Og -Ot -Oy -Oi -ltcg -DCODE_ANALYSIS -DHAVE_LEPTONICA -DLEPTONICA_INTERCEPT_ALLOC=1 -DHAVE_LIBPNG=0 -DHAVE_LIBTIFF=0 -DHAVE_LIBJPEG=0 -DHAVE_LIBZ=0 -DHAVE_LIBGIF=0 -DHAVE_LIBUNGIF=0 -DHAVE_LIBWEBP=0 -DHAVE_LIBWEBP_ANIM=0 -DHAVE_LIBJP2K=0 -D_CRT_SECURE_NO_WARNINGS -DNDEBUG -D_LIB -D_UNICODE -D_MT -D_DLL -GS -D_M_FP_PRECISE -Fox64\\Release\\libleptonica\\ptabasic.obj -FdC:\\Users\\wruser\\source\\repos\\SharpMuPDF\\x64\\Release\\libleptonica.pdb -external:W 3 -Gd -wd 4018 -wd 4100 -wd 4101 -wd 4244 -wd 4200 -wd 4267 -wd 4305 -analyze:projectdirectory C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\platform\\win32 -analyze:rulesetdirectory ;D:\\Programme\\VS2022\\Team Tools\\Static Analysis Tools\\\\Rule Sets; -analyze:ruleset D:\\Programme\\VS2022\\Team Tools\\Static Analysis Tools\\Rule Sets\\NativeRecommendedRules.ruleset -analyze:quiet -analyze:plugin D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\bin\\HostX64\\x64\\EspXEngine.dll -FC -errorreport:prompt -I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\include -I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\atlmfc\\include -I D:\\Programme\\VS2022\\VC\\Auxiliary\\VS\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\ucrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8\\Include\\um -external:I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\include -I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\include -external:I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\atlmfc\\include -I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\atlmfc\\include -external:I D:\\Programme\\VS2022\\VC\\Auxiliary\\VS\\include -I D:\\Programme\\VS2022\\VC\\Auxiliary\\VS\\include -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\ucrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\ucrt -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\um -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\shared -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\winrt -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\cppwinrt -external:I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8\\Include\\um -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8\\Include\\um",
  396. "executionSuccessful": true
  397. }
  398. ],
  399. "artifacts": [
  400. {
  401. "location": {
  402. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bootnumgen4.c"
  403. },
  404. "roles": [
  405. "analysisTarget"
  406. ],
  407. "hashes": {
  408. "md5": "3a82f1ac44975b5317cf5d04fa947c01"
  409. }
  410. },
  411. {
  412. "location": {
  413. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/allheaders.h"
  414. },
  415. "hashes": {
  416. "md5": "999d534a4ad60a2b7511196f8e6509e4"
  417. }
  418. },
  419. {
  420. "location": {
  421. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/alltypes.h"
  422. },
  423. "hashes": {
  424. "md5": "a53441277a26b8f0bb926cb17df2dfb7"
  425. }
  426. },
  427. {
  428. "location": {
  429. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/scripts/tesseract/endianness.h"
  430. },
  431. "hashes": {
  432. "md5": "c5b34010ae58ee994fb431b8736f6f4c"
  433. }
  434. },
  435. {
  436. "location": {
  437. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/environ.h"
  438. },
  439. "hashes": {
  440. "md5": "f12002e24a0542a8b820943238c03777"
  441. }
  442. },
  443. {
  444. "location": {
  445. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/array.h"
  446. },
  447. "hashes": {
  448. "md5": "905c3a077932844148e6ce1a082ad3fd"
  449. }
  450. },
  451. {
  452. "location": {
  453. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bbuffer.h"
  454. },
  455. "hashes": {
  456. "md5": "9698e12ada03098f0d12a09c12cf6063"
  457. }
  458. },
  459. {
  460. "location": {
  461. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/hashmap.h"
  462. },
  463. "hashes": {
  464. "md5": "a67f5cea1a1d468a3c082936a3c6ceae"
  465. }
  466. },
  467. {
  468. "location": {
  469. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/heap.h"
  470. },
  471. "hashes": {
  472. "md5": "b4a5a51c54ae3ecf0da810f807a29c83"
  473. }
  474. },
  475. {
  476. "location": {
  477. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/list.h"
  478. },
  479. "hashes": {
  480. "md5": "c1df1f5c4859fcff277e25e2af485e32"
  481. }
  482. },
  483. {
  484. "location": {
  485. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ptra.h"
  486. },
  487. "hashes": {
  488. "md5": "09b92e82a1ea998e1f7e4023c008cf51"
  489. }
  490. },
  491. {
  492. "location": {
  493. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/queue.h"
  494. },
  495. "hashes": {
  496. "md5": "ceded2bcd4bc2c553683c2643f69e6a5"
  497. }
  498. },
  499. {
  500. "location": {
  501. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/rbtree.h"
  502. },
  503. "hashes": {
  504. "md5": "803860fffdd81a3fc3fff30294c8f8cb"
  505. }
  506. },
  507. {
  508. "location": {
  509. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/stack.h"
  510. },
  511. "hashes": {
  512. "md5": "0740173ae3e4e7de5f4c6fe821a4f0e7"
  513. }
  514. },
  515. {
  516. "location": {
  517. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/arrayaccess.h"
  518. },
  519. "hashes": {
  520. "md5": "dcb43ea7a43e1fddf264fe501878db3d"
  521. }
  522. },
  523. {
  524. "location": {
  525. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmf.h"
  526. },
  527. "hashes": {
  528. "md5": "e34a65325b94bfa5d1dca2f9424ca1f0"
  529. }
  530. },
  531. {
  532. "location": {
  533. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ccbord.h"
  534. },
  535. "hashes": {
  536. "md5": "90250b263699310ce40909628dbd7758"
  537. }
  538. },
  539. {
  540. "location": {
  541. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colorfill.h"
  542. },
  543. "hashes": {
  544. "md5": "c9cf5349852bf9054e7f3c5bbafac76e"
  545. }
  546. },
  547. {
  548. "location": {
  549. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dewarp.h"
  550. },
  551. "hashes": {
  552. "md5": "493b17891572abea870917ab41bf12c6"
  553. }
  554. },
  555. {
  556. "location": {
  557. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/gplot.h"
  558. },
  559. "hashes": {
  560. "md5": "55cf40c06fd537d7b8714aaf1f7a0042"
  561. }
  562. },
  563. {
  564. "location": {
  565. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/imageio.h"
  566. },
  567. "hashes": {
  568. "md5": "f517e3d907fee1ec4c974fad7dfdb29d"
  569. }
  570. },
  571. {
  572. "location": {
  573. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jbclass.h"
  574. },
  575. "hashes": {
  576. "md5": "c922deeb8eb844a7a2260f9c0a709218"
  577. }
  578. },
  579. {
  580. "location": {
  581. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/morph.h"
  582. },
  583. "hashes": {
  584. "md5": "44855c4ddac6a28583d89947fcdbfdfc"
  585. }
  586. },
  587. {
  588. "location": {
  589. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix.h"
  590. },
  591. "hashes": {
  592. "md5": "1fc6f88f9c79b5158469904b66645f7d"
  593. }
  594. },
  595. {
  596. "location": {
  597. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/recog.h"
  598. },
  599. "hashes": {
  600. "md5": "f49b37b951f9036fb2dcf726b741db4e"
  601. }
  602. },
  603. {
  604. "location": {
  605. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/regutils.h"
  606. },
  607. "hashes": {
  608. "md5": "fe7a3db017220d34590fd29869e5d61c"
  609. }
  610. },
  611. {
  612. "location": {
  613. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/stringcode.h"
  614. },
  615. "hashes": {
  616. "md5": "94fce55340931aded34d6d7fd60d842e"
  617. }
  618. },
  619. {
  620. "location": {
  621. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/sudoku.h"
  622. },
  623. "hashes": {
  624. "md5": "fb101a2c192580933be1b8236c2bdc15"
  625. }
  626. },
  627. {
  628. "location": {
  629. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/watershed.h"
  630. },
  631. "hashes": {
  632. "md5": "44a71dd892c2fab6459227f7bcc400ee"
  633. }
  634. },
  635. {
  636. "location": {
  637. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bootnumgen3.c"
  638. },
  639. "roles": [
  640. "analysisTarget"
  641. ],
  642. "hashes": {
  643. "md5": "b48614e975c09a03547e759b911f5359"
  644. }
  645. },
  646. {
  647. "location": {
  648. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bootnumgen2.c"
  649. },
  650. "roles": [
  651. "analysisTarget"
  652. ],
  653. "hashes": {
  654. "md5": "8ad6891f2edce3383af6916769c41602"
  655. }
  656. },
  657. {
  658. "location": {
  659. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bootnumgen1.c"
  660. },
  661. "roles": [
  662. "analysisTarget"
  663. ],
  664. "hashes": {
  665. "md5": "b7bcdd2390111aecc3149c70911a9db2"
  666. }
  667. },
  668. {
  669. "location": {
  670. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmpiostub.c"
  671. },
  672. "roles": [
  673. "analysisTarget"
  674. ],
  675. "hashes": {
  676. "md5": "fe53e17707c01ad1ef2333752ebc32ee"
  677. }
  678. },
  679. {
  680. "location": {
  681. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/bmpio.c"
  682. },
  683. "roles": [
  684. "analysisTarget",
  685. "resultFile"
  686. ],
  687. "hashes": {
  688. "md5": "367f3081ffba0952522913b49b13bf52"
  689. }
  690. },
  691. {
  692. "location": {
  693. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix_internal.h"
  694. },
  695. "hashes": {
  696. "md5": "4dd89382186e6b211b4078679810a19e"
  697. }
  698. },
  699. {
  700. "location": {
  701. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmp.h"
  702. },
  703. "hashes": {
  704. "md5": "942e4ba8687e01b1fe5afae65245bd29"
  705. }
  706. },
  707. {
  708. "location": {
  709. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmf.c"
  710. },
  711. "roles": [
  712. "analysisTarget"
  713. ],
  714. "hashes": {
  715. "md5": "2f5d274fa401e05d5d15d9e58a7ed8a5"
  716. }
  717. },
  718. {
  719. "location": {
  720. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmfdata.h"
  721. },
  722. "hashes": {
  723. "md5": "4ded82c05fb39404bb67e686cd38b9cf"
  724. }
  725. },
  726. {
  727. "location": {
  728. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/blend.c"
  729. },
  730. "roles": [
  731. "analysisTarget",
  732. "resultFile"
  733. ],
  734. "hashes": {
  735. "md5": "f734d4b17d7b51568aa083f8444a8e7d"
  736. }
  737. },
  738. {
  739. "location": {
  740. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/binreduce.c"
  741. },
  742. "roles": [
  743. "analysisTarget"
  744. ],
  745. "hashes": {
  746. "md5": "a6bbc62580de9a69daca0ed4a05782ba"
  747. }
  748. },
  749. {
  750. "location": {
  751. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/binexpand.c"
  752. },
  753. "roles": [
  754. "analysisTarget"
  755. ],
  756. "hashes": {
  757. "md5": "a91e32559d5d0814d80b73b5bc7df24b"
  758. }
  759. },
  760. {
  761. "location": {
  762. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/binarize.c"
  763. },
  764. "roles": [
  765. "analysisTarget"
  766. ],
  767. "hashes": {
  768. "md5": "02c1761dcc6ab4bf416e6055f672ab07"
  769. }
  770. },
  771. {
  772. "location": {
  773. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bilinear.c"
  774. },
  775. "roles": [
  776. "analysisTarget"
  777. ],
  778. "hashes": {
  779. "md5": "4a09fe363bcb37df9bb1cd9adbf0c91a"
  780. }
  781. },
  782. {
  783. "location": {
  784. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bilateral.c"
  785. },
  786. "roles": [
  787. "analysisTarget"
  788. ],
  789. "hashes": {
  790. "md5": "bc1af17cf793ac23886176cb0d23b029"
  791. }
  792. },
  793. {
  794. "location": {
  795. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bilateral.h"
  796. },
  797. "hashes": {
  798. "md5": "d3078c8d7a38ea07d93a58f8a4982a8d"
  799. }
  800. },
  801. {
  802. "location": {
  803. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bbuffer.c"
  804. },
  805. "roles": [
  806. "analysisTarget"
  807. ],
  808. "hashes": {
  809. "md5": "8fd7f505a82a8b97b29e52618397178d"
  810. }
  811. },
  812. {
  813. "location": {
  814. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/baseline.c"
  815. },
  816. "roles": [
  817. "analysisTarget",
  818. "resultFile"
  819. ],
  820. "hashes": {
  821. "md5": "a4f7bc8214c6a7c7592a2e29d78addc1"
  822. }
  823. },
  824. {
  825. "location": {
  826. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/arrayaccess.c"
  827. },
  828. "roles": [
  829. "analysisTarget"
  830. ],
  831. "hashes": {
  832. "md5": "137a526c992e6e6683cf2b6ece5a016d"
  833. }
  834. },
  835. {
  836. "location": {
  837. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/affinecompose.c"
  838. },
  839. "roles": [
  840. "analysisTarget"
  841. ],
  842. "hashes": {
  843. "md5": "020190a9b3f19478dfb5484f3d4fc1e5"
  844. }
  845. },
  846. {
  847. "location": {
  848. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/affine.c"
  849. },
  850. "roles": [
  851. "analysisTarget"
  852. ],
  853. "hashes": {
  854. "md5": "8cea6c30ebe9cbe0f61f7482e81b4c5c"
  855. }
  856. },
  857. {
  858. "location": {
  859. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/adaptmap.c"
  860. },
  861. "roles": [
  862. "analysisTarget"
  863. ],
  864. "hashes": {
  865. "md5": "69c4c232ba768de8b5d9de5e0d23b399"
  866. }
  867. },
  868. {
  869. "location": {
  870. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/source/fitz/leptonica-wrap.c"
  871. },
  872. "roles": [
  873. "analysisTarget"
  874. ],
  875. "hashes": {
  876. "md5": "7f73dd56f3cfed6d45d19fd442396938"
  877. }
  878. },
  879. {
  880. "location": {
  881. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/source/fitz/leptonica-wrap.h"
  882. },
  883. "hashes": {
  884. "md5": "271e50e32565a028dadd3554dc7d6be9"
  885. }
  886. },
  887. {
  888. "location": {
  889. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz.h"
  890. },
  891. "hashes": {
  892. "md5": "c1da725222ed64f4094c94f9ec5fa9d3"
  893. }
  894. },
  895. {
  896. "location": {
  897. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/version.h"
  898. },
  899. "hashes": {
  900. "md5": "49b087287cd81a61255c9afad5a04a0e"
  901. }
  902. },
  903. {
  904. "location": {
  905. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/config.h"
  906. },
  907. "hashes": {
  908. "md5": "8152555cd3c484684047fd1c533eb1a6"
  909. }
  910. },
  911. {
  912. "location": {
  913. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/system.h"
  914. },
  915. "hashes": {
  916. "md5": "90ae89bc0bb247c30f11092380a6bf84"
  917. }
  918. },
  919. {
  920. "location": {
  921. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/export.h"
  922. },
  923. "hashes": {
  924. "md5": "9392a759e17aa12d7d4516ab296a9110"
  925. }
  926. },
  927. {
  928. "location": {
  929. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/memento.h"
  930. },
  931. "hashes": {
  932. "md5": "09ba15c0fd78518e062db9266c4a1239"
  933. }
  934. },
  935. {
  936. "location": {
  937. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/track-usage.h"
  938. },
  939. "hashes": {
  940. "md5": "9c2721d2c03d4b6e071d4c291e4f8eec"
  941. }
  942. },
  943. {
  944. "location": {
  945. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/context.h"
  946. },
  947. "hashes": {
  948. "md5": "0a8420b8805e435b64f295b16cab53af"
  949. }
  950. },
  951. {
  952. "location": {
  953. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/geometry.h"
  954. },
  955. "hashes": {
  956. "md5": "b90a31a4dca86a00ae7644b0735a3899"
  957. }
  958. },
  959. {
  960. "location": {
  961. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/output.h"
  962. },
  963. "hashes": {
  964. "md5": "f73558b9d27504499a5a45e8f3a3584a"
  965. }
  966. },
  967. {
  968. "location": {
  969. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/buffer.h"
  970. },
  971. "hashes": {
  972. "md5": "6fc8c6b8b9a2692519a1d0e505f71c6e"
  973. }
  974. },
  975. {
  976. "location": {
  977. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/string-util.h"
  978. },
  979. "hashes": {
  980. "md5": "4f84321fffde964fbdfa179e97b1fb5b"
  981. }
  982. },
  983. {
  984. "location": {
  985. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/stream.h"
  986. },
  987. "hashes": {
  988. "md5": "17262319f59df230360c31bff22506f4"
  989. }
  990. },
  991. {
  992. "location": {
  993. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/log.h"
  994. },
  995. "hashes": {
  996. "md5": "fdce0ca431e1f40c09081052f1b739cb"
  997. }
  998. },
  999. {
  1000. "location": {
  1001. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/crypt.h"
  1002. },
  1003. "hashes": {
  1004. "md5": "9ffc8e340c06f2d28aa62b6fcd35dc5d"
  1005. }
  1006. },
  1007. {
  1008. "location": {
  1009. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/getopt.h"
  1010. },
  1011. "hashes": {
  1012. "md5": "e47118058134aec927847ca9dae5d390"
  1013. }
  1014. },
  1015. {
  1016. "location": {
  1017. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/hash.h"
  1018. },
  1019. "hashes": {
  1020. "md5": "d9b655ab558a40c18e24c7cdddeab1fc"
  1021. }
  1022. },
  1023. {
  1024. "location": {
  1025. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/pool.h"
  1026. },
  1027. "hashes": {
  1028. "md5": "2f150c59f73344040a7de6455c00529e"
  1029. }
  1030. },
  1031. {
  1032. "location": {
  1033. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/tree.h"
  1034. },
  1035. "hashes": {
  1036. "md5": "66441b22b31d2cc979eb50d828de8d89"
  1037. }
  1038. },
  1039. {
  1040. "location": {
  1041. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/bidi.h"
  1042. },
  1043. "hashes": {
  1044. "md5": "b3f22e9d6b6250f2a9dfd4c1620af41d"
  1045. }
  1046. },
  1047. {
  1048. "location": {
  1049. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/xml.h"
  1050. },
  1051. "hashes": {
  1052. "md5": "9e6cf72f1f3c757d8956f19631d1f942"
  1053. }
  1054. },
  1055. {
  1056. "location": {
  1057. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/archive.h"
  1058. },
  1059. "hashes": {
  1060. "md5": "fe3a9fa4f6093e521afe5b0d4a214e89"
  1061. }
  1062. },
  1063. {
  1064. "location": {
  1065. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/json.h"
  1066. },
  1067. "hashes": {
  1068. "md5": "1ccd7f1e2c3cf9db156761b2341941bb"
  1069. }
  1070. },
  1071. {
  1072. "location": {
  1073. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/compress.h"
  1074. },
  1075. "hashes": {
  1076. "md5": "870b86535307b1bcf48a05cc86bac4f6"
  1077. }
  1078. },
  1079. {
  1080. "location": {
  1081. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/pixmap.h"
  1082. },
  1083. "hashes": {
  1084. "md5": "4a2994ca7e320d46c91af9462864e472"
  1085. }
  1086. },
  1087. {
  1088. "location": {
  1089. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/store.h"
  1090. },
  1091. "hashes": {
  1092. "md5": "613e60235eba9e2c0fe6735fbcbf444d"
  1093. }
  1094. },
  1095. {
  1096. "location": {
  1097. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/separation.h"
  1098. },
  1099. "hashes": {
  1100. "md5": "948f2a79178edd5a86cab9b357cc8f84"
  1101. }
  1102. },
  1103. {
  1104. "location": {
  1105. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/color.h"
  1106. },
  1107. "hashes": {
  1108. "md5": "c394579670ed653192ccdf07cc810543"
  1109. }
  1110. },
  1111. {
  1112. "location": {
  1113. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/compressed-buffer.h"
  1114. },
  1115. "hashes": {
  1116. "md5": "f0ad50536d7884e3d221498388a145a1"
  1117. }
  1118. },
  1119. {
  1120. "location": {
  1121. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/filter.h"
  1122. },
  1123. "hashes": {
  1124. "md5": "a20437fde476b45123005b54567b8b3c"
  1125. }
  1126. },
  1127. {
  1128. "location": {
  1129. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/heap.h"
  1130. },
  1131. "hashes": {
  1132. "md5": "1cbe01acfade2baf416ab5be1bd1907e"
  1133. }
  1134. },
  1135. {
  1136. "location": {
  1137. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/heap-imp.h"
  1138. },
  1139. "hashes": {
  1140. "md5": "9923f50e47c46bd4e02747da6de32946"
  1141. }
  1142. },
  1143. {
  1144. "location": {
  1145. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/image.h"
  1146. },
  1147. "hashes": {
  1148. "md5": "a987413ff35bef8ce2048369564be0e0"
  1149. }
  1150. },
  1151. {
  1152. "location": {
  1153. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/bitmap.h"
  1154. },
  1155. "hashes": {
  1156. "md5": "0e6ee78ac3a456106ea3ddca63ef5e35"
  1157. }
  1158. },
  1159. {
  1160. "location": {
  1161. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/shade.h"
  1162. },
  1163. "hashes": {
  1164. "md5": "c06b062bd0326fa40b071527b257ae24"
  1165. }
  1166. },
  1167. {
  1168. "location": {
  1169. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/font.h"
  1170. },
  1171. "hashes": {
  1172. "md5": "b667092834a21c0abe97b2817ace34a7"
  1173. }
  1174. },
  1175. {
  1176. "location": {
  1177. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/path.h"
  1178. },
  1179. "hashes": {
  1180. "md5": "200da6c866aa0a7faec7f24f176e47e9"
  1181. }
  1182. },
  1183. {
  1184. "location": {
  1185. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/text.h"
  1186. },
  1187. "hashes": {
  1188. "md5": "d8f8e0890cc682b0974ec3f779260f6e"
  1189. }
  1190. },
  1191. {
  1192. "location": {
  1193. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/glyph.h"
  1194. },
  1195. "hashes": {
  1196. "md5": "74fdb3bee7c6f25df43323008fcdf60a"
  1197. }
  1198. },
  1199. {
  1200. "location": {
  1201. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/device.h"
  1202. },
  1203. "hashes": {
  1204. "md5": "ba44b7292a72479dfe60b62352e57fd5"
  1205. }
  1206. },
  1207. {
  1208. "location": {
  1209. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/display-list.h"
  1210. },
  1211. "hashes": {
  1212. "md5": "4944d19bf380f14ccda5ced45ab04dcc"
  1213. }
  1214. },
  1215. {
  1216. "location": {
  1217. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/structured-text.h"
  1218. },
  1219. "hashes": {
  1220. "md5": "fdd5507292d57da0c3c2ee591f5f0d08"
  1221. }
  1222. },
  1223. {
  1224. "location": {
  1225. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/types.h"
  1226. },
  1227. "hashes": {
  1228. "md5": "385688b131d3b981c11fefca1c6bd08f"
  1229. }
  1230. },
  1231. {
  1232. "location": {
  1233. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/transition.h"
  1234. },
  1235. "hashes": {
  1236. "md5": "45a1a3da16cfa7a1135ed97b151d59e5"
  1237. }
  1238. },
  1239. {
  1240. "location": {
  1241. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/glyph-cache.h"
  1242. },
  1243. "hashes": {
  1244. "md5": "f8a51df4e57ec830f97cefefd04beb21"
  1245. }
  1246. },
  1247. {
  1248. "location": {
  1249. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/link.h"
  1250. },
  1251. "hashes": {
  1252. "md5": "e2beb74537ffa880d751627856f4ec2e"
  1253. }
  1254. },
  1255. {
  1256. "location": {
  1257. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/outline.h"
  1258. },
  1259. "hashes": {
  1260. "md5": "a4b090458246a9412f1822e8f69861e5"
  1261. }
  1262. },
  1263. {
  1264. "location": {
  1265. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/document.h"
  1266. },
  1267. "hashes": {
  1268. "md5": "d5dd17e54ecd7a0c4c420b7fba8bbbb8"
  1269. }
  1270. },
  1271. {
  1272. "location": {
  1273. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/util.h"
  1274. },
  1275. "hashes": {
  1276. "md5": "b52379b9e022798f7ffeb183e593355b"
  1277. }
  1278. },
  1279. {
  1280. "location": {
  1281. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/writer.h"
  1282. },
  1283. "hashes": {
  1284. "md5": "8f22433f8330cf7094af3c2c0221d1aa"
  1285. }
  1286. },
  1287. {
  1288. "location": {
  1289. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/band-writer.h"
  1290. },
  1291. "hashes": {
  1292. "md5": "cce70daf29f5059d81d3004bac3a529b"
  1293. }
  1294. },
  1295. {
  1296. "location": {
  1297. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/write-pixmap.h"
  1298. },
  1299. "hashes": {
  1300. "md5": "55a92a6277d51e8193cb9d68dbc04555"
  1301. }
  1302. },
  1303. {
  1304. "location": {
  1305. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/output-svg.h"
  1306. },
  1307. "hashes": {
  1308. "md5": "562415573a8921b26596771d6c4c5c67"
  1309. }
  1310. },
  1311. {
  1312. "location": {
  1313. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/story.h"
  1314. },
  1315. "hashes": {
  1316. "md5": "103650ee4814b1f96618672e45b766d4"
  1317. }
  1318. },
  1319. {
  1320. "location": {
  1321. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/story-writer.h"
  1322. },
  1323. "hashes": {
  1324. "md5": "aaafb6cf4f48ade004e1d15d06eaffe7"
  1325. }
  1326. },
  1327. {
  1328. "location": {
  1329. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/deskew.h"
  1330. },
  1331. "hashes": {
  1332. "md5": "9599a8121baecccfd203d91c95561903"
  1333. }
  1334. },
  1335. {
  1336. "location": {
  1337. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/barcode.h"
  1338. },
  1339. "hashes": {
  1340. "md5": "58fc28d74fa337724ff70a29778ac6ed"
  1341. }
  1342. },
  1343. {
  1344. "location": {
  1345. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/convertfiles.c"
  1346. },
  1347. "roles": [
  1348. "analysisTarget"
  1349. ],
  1350. "hashes": {
  1351. "md5": "724f5d1e2f686dc7a5f62ee87cd4b7c0"
  1352. }
  1353. },
  1354. {
  1355. "location": {
  1356. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/conncomp.c"
  1357. },
  1358. "roles": [
  1359. "analysisTarget"
  1360. ],
  1361. "hashes": {
  1362. "md5": "439795e422d51c02d86e41c5f2612cca"
  1363. }
  1364. },
  1365. {
  1366. "location": {
  1367. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/compare.c"
  1368. },
  1369. "roles": [
  1370. "analysisTarget"
  1371. ],
  1372. "hashes": {
  1373. "md5": "32a03abbd3ffed661bfab2965b017a8b"
  1374. }
  1375. },
  1376. {
  1377. "location": {
  1378. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colorspace.c"
  1379. },
  1380. "roles": [
  1381. "analysisTarget"
  1382. ],
  1383. "hashes": {
  1384. "md5": "4f9001939678a369e7c84460dff9d21b"
  1385. }
  1386. },
  1387. {
  1388. "location": {
  1389. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/colorseg.c"
  1390. },
  1391. "roles": [
  1392. "analysisTarget",
  1393. "resultFile"
  1394. ],
  1395. "hashes": {
  1396. "md5": "1ab66c018aa504e6fee2bdca55a3da21"
  1397. }
  1398. },
  1399. {
  1400. "location": {
  1401. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/colorquant2.c"
  1402. },
  1403. "roles": [
  1404. "analysisTarget",
  1405. "resultFile"
  1406. ],
  1407. "hashes": {
  1408. "md5": "08cd6523f246d256d2e5b719eb667fd9"
  1409. }
  1410. },
  1411. {
  1412. "location": {
  1413. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colorquant1.c"
  1414. },
  1415. "roles": [
  1416. "analysisTarget"
  1417. ],
  1418. "hashes": {
  1419. "md5": "f40f68bd9d4f0559471f4519d089341c"
  1420. }
  1421. },
  1422. {
  1423. "location": {
  1424. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colormorph.c"
  1425. },
  1426. "roles": [
  1427. "analysisTarget"
  1428. ],
  1429. "hashes": {
  1430. "md5": "c7d2b1c8606d5cdc3213275c61eefc08"
  1431. }
  1432. },
  1433. {
  1434. "location": {
  1435. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colormap.c"
  1436. },
  1437. "roles": [
  1438. "analysisTarget"
  1439. ],
  1440. "hashes": {
  1441. "md5": "07d58362026f2ee8c4c94a12a850cf55"
  1442. }
  1443. },
  1444. {
  1445. "location": {
  1446. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/coloring.c"
  1447. },
  1448. "roles": [
  1449. "analysisTarget"
  1450. ],
  1451. "hashes": {
  1452. "md5": "0b2cd914abafa50c0a5d70fe0d70bed0"
  1453. }
  1454. },
  1455. {
  1456. "location": {
  1457. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colorcontent.c"
  1458. },
  1459. "roles": [
  1460. "analysisTarget"
  1461. ],
  1462. "hashes": {
  1463. "md5": "f323d957cfd0b4804277e990bddc1052"
  1464. }
  1465. },
  1466. {
  1467. "location": {
  1468. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/classapp.c"
  1469. },
  1470. "roles": [
  1471. "analysisTarget"
  1472. ],
  1473. "hashes": {
  1474. "md5": "031c0fa9ce910dbe883833475136f167"
  1475. }
  1476. },
  1477. {
  1478. "location": {
  1479. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1480. },
  1481. "roles": [
  1482. "analysisTarget",
  1483. "resultFile"
  1484. ],
  1485. "hashes": {
  1486. "md5": "698cbb131be6752bb74a9863349ba9f7"
  1487. }
  1488. },
  1489. {
  1490. "location": {
  1491. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ccbord_internal.h"
  1492. },
  1493. "hashes": {
  1494. "md5": "b4ffaa4ab3329f45a74769526364a5bd"
  1495. }
  1496. },
  1497. {
  1498. "location": {
  1499. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bytearray.c"
  1500. },
  1501. "roles": [
  1502. "analysisTarget"
  1503. ],
  1504. "hashes": {
  1505. "md5": "f479426c83e521920ba5ef2a47f9eeea"
  1506. }
  1507. },
  1508. {
  1509. "location": {
  1510. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/array_internal.h"
  1511. },
  1512. "hashes": {
  1513. "md5": "47169f561e914a3f80dd1165d0cc9ac5"
  1514. }
  1515. },
  1516. {
  1517. "location": {
  1518. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxfunc5.c"
  1519. },
  1520. "roles": [
  1521. "analysisTarget"
  1522. ],
  1523. "hashes": {
  1524. "md5": "3bd669a71b8039fe8dc1465c6d9451ea"
  1525. }
  1526. },
  1527. {
  1528. "location": {
  1529. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxfunc4.c"
  1530. },
  1531. "roles": [
  1532. "analysisTarget"
  1533. ],
  1534. "hashes": {
  1535. "md5": "4350db99f137393092bb9e127c545533"
  1536. }
  1537. },
  1538. {
  1539. "location": {
  1540. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxfunc3.c"
  1541. },
  1542. "roles": [
  1543. "analysisTarget"
  1544. ],
  1545. "hashes": {
  1546. "md5": "5ffe93f9dac1ac164c76c827d6b99c2b"
  1547. }
  1548. },
  1549. {
  1550. "location": {
  1551. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/boxfunc2.c"
  1552. },
  1553. "roles": [
  1554. "analysisTarget",
  1555. "resultFile"
  1556. ],
  1557. "hashes": {
  1558. "md5": "06017e461354b622a898e964824feb0a"
  1559. }
  1560. },
  1561. {
  1562. "location": {
  1563. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxfunc1.c"
  1564. },
  1565. "roles": [
  1566. "analysisTarget"
  1567. ],
  1568. "hashes": {
  1569. "md5": "53c0cadfd70352d07c7059cb11b8996d"
  1570. }
  1571. },
  1572. {
  1573. "location": {
  1574. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxbasic.c"
  1575. },
  1576. "roles": [
  1577. "analysisTarget"
  1578. ],
  1579. "hashes": {
  1580. "md5": "9499af84bce2d2cec53f010406b849d0"
  1581. }
  1582. },
  1583. {
  1584. "location": {
  1585. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/fpix1.c"
  1586. },
  1587. "roles": [
  1588. "analysisTarget"
  1589. ],
  1590. "hashes": {
  1591. "md5": "32f9040600f84cde037e4633e458e61e"
  1592. }
  1593. },
  1594. {
  1595. "location": {
  1596. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/fmorphgenlow.1.c"
  1597. },
  1598. "roles": [
  1599. "analysisTarget"
  1600. ],
  1601. "hashes": {
  1602. "md5": "c2e6003fbf822c8846ffdfa4e00d3d97"
  1603. }
  1604. },
  1605. {
  1606. "location": {
  1607. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/fmorphgen.1.c"
  1608. },
  1609. "roles": [
  1610. "analysisTarget"
  1611. ],
  1612. "hashes": {
  1613. "md5": "1420b32f53bc6448bc82d942625ede55"
  1614. }
  1615. },
  1616. {
  1617. "location": {
  1618. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/fmorphauto.c"
  1619. },
  1620. "roles": [
  1621. "analysisTarget",
  1622. "resultFile"
  1623. ],
  1624. "hashes": {
  1625. "md5": "4960763af570d20b74f0b86ca5b79e17"
  1626. }
  1627. },
  1628. {
  1629. "location": {
  1630. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/fhmtgenlow.1.c"
  1631. },
  1632. "roles": [
  1633. "analysisTarget"
  1634. ],
  1635. "hashes": {
  1636. "md5": "580542b03b1dc496eb55441227c01c4d"
  1637. }
  1638. },
  1639. {
  1640. "location": {
  1641. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/fhmtauto.c"
  1642. },
  1643. "roles": [
  1644. "analysisTarget",
  1645. "resultFile"
  1646. ],
  1647. "hashes": {
  1648. "md5": "407f110417e1da69577f401016c308fa"
  1649. }
  1650. },
  1651. {
  1652. "location": {
  1653. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/enhance.c"
  1654. },
  1655. "roles": [
  1656. "analysisTarget"
  1657. ],
  1658. "hashes": {
  1659. "md5": "1fad11e14f7a7def3488fee226869f47"
  1660. }
  1661. },
  1662. {
  1663. "location": {
  1664. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/encoding.c"
  1665. },
  1666. "roles": [
  1667. "analysisTarget"
  1668. ],
  1669. "hashes": {
  1670. "md5": "663891ec7f132072632069f144467438"
  1671. }
  1672. },
  1673. {
  1674. "location": {
  1675. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/edge.c"
  1676. },
  1677. "roles": [
  1678. "analysisTarget"
  1679. ],
  1680. "hashes": {
  1681. "md5": "16a6b93b118ca74db85d082d2b5dbc30"
  1682. }
  1683. },
  1684. {
  1685. "location": {
  1686. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dwacomblow.2.c"
  1687. },
  1688. "roles": [
  1689. "analysisTarget"
  1690. ],
  1691. "hashes": {
  1692. "md5": "0788c556bc256df2d62891852f16e66e"
  1693. }
  1694. },
  1695. {
  1696. "location": {
  1697. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dwacomb.2.c"
  1698. },
  1699. "roles": [
  1700. "analysisTarget"
  1701. ],
  1702. "hashes": {
  1703. "md5": "ec998985a6538576f25814e7a54b6bc1"
  1704. }
  1705. },
  1706. {
  1707. "location": {
  1708. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dnahash.c"
  1709. },
  1710. "roles": [
  1711. "analysisTarget"
  1712. ],
  1713. "hashes": {
  1714. "md5": "a104970312798bb28670ec4b6f1306e5"
  1715. }
  1716. },
  1717. {
  1718. "location": {
  1719. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dnafunc1.c"
  1720. },
  1721. "roles": [
  1722. "analysisTarget"
  1723. ],
  1724. "hashes": {
  1725. "md5": "63832a12bd0d51e38cb8fe26df8036ad"
  1726. }
  1727. },
  1728. {
  1729. "location": {
  1730. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dnabasic.c"
  1731. },
  1732. "roles": [
  1733. "analysisTarget"
  1734. ],
  1735. "hashes": {
  1736. "md5": "2e8bddfb98a62a2819700b70e3af28da"
  1737. }
  1738. },
  1739. {
  1740. "location": {
  1741. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dewarp4.c"
  1742. },
  1743. "roles": [
  1744. "analysisTarget"
  1745. ],
  1746. "hashes": {
  1747. "md5": "2e5e5727028744821d98f4088779de2a"
  1748. }
  1749. },
  1750. {
  1751. "location": {
  1752. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dewarp3.c"
  1753. },
  1754. "roles": [
  1755. "analysisTarget"
  1756. ],
  1757. "hashes": {
  1758. "md5": "d509becfa83c46484ab01c6acedf06d4"
  1759. }
  1760. },
  1761. {
  1762. "location": {
  1763. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/dewarp2.c"
  1764. },
  1765. "roles": [
  1766. "analysisTarget",
  1767. "resultFile"
  1768. ],
  1769. "hashes": {
  1770. "md5": "cfd9a80722d868d9374f4813abab8e96"
  1771. }
  1772. },
  1773. {
  1774. "location": {
  1775. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/dewarp1.c"
  1776. },
  1777. "roles": [
  1778. "analysisTarget",
  1779. "resultFile"
  1780. ],
  1781. "hashes": {
  1782. "md5": "674d27d0b21e55fd2d33eeb0ef2b67c3"
  1783. }
  1784. },
  1785. {
  1786. "location": {
  1787. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/correlscore.c"
  1788. },
  1789. "roles": [
  1790. "analysisTarget",
  1791. "resultFile"
  1792. ],
  1793. "hashes": {
  1794. "md5": "4c7a50e236fdc4014526b6de1876117e"
  1795. }
  1796. },
  1797. {
  1798. "location": {
  1799. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/convolve.c"
  1800. },
  1801. "roles": [
  1802. "analysisTarget"
  1803. ],
  1804. "hashes": {
  1805. "md5": "3a0ad6a7c7f1268eb3616f2c805cdd1f"
  1806. }
  1807. },
  1808. {
  1809. "location": {
  1810. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/morphdwa.c"
  1811. },
  1812. "roles": [
  1813. "analysisTarget",
  1814. "resultFile"
  1815. ],
  1816. "hashes": {
  1817. "md5": "3e4d53bbbcc92987244a35b83b63ab42"
  1818. }
  1819. },
  1820. {
  1821. "location": {
  1822. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/morphapp.c"
  1823. },
  1824. "roles": [
  1825. "analysisTarget"
  1826. ],
  1827. "hashes": {
  1828. "md5": "eb8705290a96113560ce5f90dd88b5ce"
  1829. }
  1830. },
  1831. {
  1832. "location": {
  1833. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/morph.c"
  1834. },
  1835. "roles": [
  1836. "analysisTarget",
  1837. "resultFile"
  1838. ],
  1839. "hashes": {
  1840. "md5": "69ef8f87618f68b78657248e445f7f09"
  1841. }
  1842. },
  1843. {
  1844. "location": {
  1845. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/map.c"
  1846. },
  1847. "roles": [
  1848. "analysisTarget"
  1849. ],
  1850. "hashes": {
  1851. "md5": "91fe339284bec6b1ee444f7214833ee9"
  1852. }
  1853. },
  1854. {
  1855. "location": {
  1856. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/list.c"
  1857. },
  1858. "roles": [
  1859. "analysisTarget"
  1860. ],
  1861. "hashes": {
  1862. "md5": "b478579934145f8267478dbf99474df2"
  1863. }
  1864. },
  1865. {
  1866. "location": {
  1867. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/libversions.c"
  1868. },
  1869. "roles": [
  1870. "analysisTarget"
  1871. ],
  1872. "hashes": {
  1873. "md5": "cb12910c25dc7195c3ba4303f814b006"
  1874. }
  1875. },
  1876. {
  1877. "location": {
  1878. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/kernel.c"
  1879. },
  1880. "roles": [
  1881. "analysisTarget"
  1882. ],
  1883. "hashes": {
  1884. "md5": "3129b905f075abf05742d64d347b3c61"
  1885. }
  1886. },
  1887. {
  1888. "location": {
  1889. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jpegiostub.c"
  1890. },
  1891. "roles": [
  1892. "analysisTarget"
  1893. ],
  1894. "hashes": {
  1895. "md5": "4b13eb283323dc6332edae19fd54887a"
  1896. }
  1897. },
  1898. {
  1899. "location": {
  1900. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jp2kiostub.c"
  1901. },
  1902. "roles": [
  1903. "analysisTarget"
  1904. ],
  1905. "hashes": {
  1906. "md5": "d73421f4dd5a240effeab0b7098d9e53"
  1907. }
  1908. },
  1909. {
  1910. "location": {
  1911. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jp2kheaderstub.c"
  1912. },
  1913. "roles": [
  1914. "analysisTarget"
  1915. ],
  1916. "hashes": {
  1917. "md5": "0a1cc9e8c5f3d046a2a70703aeb6eff6"
  1918. }
  1919. },
  1920. {
  1921. "location": {
  1922. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jp2kheader.c"
  1923. },
  1924. "roles": [
  1925. "analysisTarget"
  1926. ],
  1927. "hashes": {
  1928. "md5": "31483ab4eab5d6a17be23b35406183ec"
  1929. }
  1930. },
  1931. {
  1932. "location": {
  1933. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/jbclass.c"
  1934. },
  1935. "roles": [
  1936. "analysisTarget",
  1937. "resultFile"
  1938. ],
  1939. "hashes": {
  1940. "md5": "39faac93361acf87962e489b12297a8f"
  1941. }
  1942. },
  1943. {
  1944. "location": {
  1945. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/heap.c"
  1946. },
  1947. "roles": [
  1948. "analysisTarget"
  1949. ],
  1950. "hashes": {
  1951. "md5": "9eae6bc65de71970e4bb1436e697fa78"
  1952. }
  1953. },
  1954. {
  1955. "location": {
  1956. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/hashmap.c"
  1957. },
  1958. "roles": [
  1959. "analysisTarget"
  1960. ],
  1961. "hashes": {
  1962. "md5": "4bd0c129d0c3017ecf74c97f300ff6a4"
  1963. }
  1964. },
  1965. {
  1966. "location": {
  1967. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/grayquant.c"
  1968. },
  1969. "roles": [
  1970. "analysisTarget"
  1971. ],
  1972. "hashes": {
  1973. "md5": "675b975e5cf01bb67bb9bfd141c95112"
  1974. }
  1975. },
  1976. {
  1977. "location": {
  1978. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/graymorph.c"
  1979. },
  1980. "roles": [
  1981. "analysisTarget"
  1982. ],
  1983. "hashes": {
  1984. "md5": "9ff2cc571cafe6e3fb33ec3d558ffd77"
  1985. }
  1986. },
  1987. {
  1988. "location": {
  1989. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  1990. },
  1991. "roles": [
  1992. "analysisTarget",
  1993. "resultFile"
  1994. ],
  1995. "hashes": {
  1996. "md5": "b05809f207b552b8cc275685e53bb0f0"
  1997. }
  1998. },
  1999. {
  2000. "location": {
  2001. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/gplot.c"
  2002. },
  2003. "roles": [
  2004. "analysisTarget"
  2005. ],
  2006. "hashes": {
  2007. "md5": "75946f43c0e93cd361e03ef6e001a56c"
  2008. }
  2009. },
  2010. {
  2011. "location": {
  2012. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/gifiostub.c"
  2013. },
  2014. "roles": [
  2015. "analysisTarget"
  2016. ],
  2017. "hashes": {
  2018. "md5": "4d08ccc55f0f2be4462075c3293604da"
  2019. }
  2020. },
  2021. {
  2022. "location": {
  2023. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/fpix2.c"
  2024. },
  2025. "roles": [
  2026. "analysisTarget"
  2027. ],
  2028. "hashes": {
  2029. "md5": "1c2d45e72c879edecb32c0592a5f5791"
  2030. }
  2031. },
  2032. {
  2033. "location": {
  2034. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pixafunc1.c"
  2035. },
  2036. "roles": [
  2037. "analysisTarget"
  2038. ],
  2039. "hashes": {
  2040. "md5": "4d52abb3948289851f749c429ed3192e"
  2041. }
  2042. },
  2043. {
  2044. "location": {
  2045. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pixacc.c"
  2046. },
  2047. "roles": [
  2048. "analysisTarget"
  2049. ],
  2050. "hashes": {
  2051. "md5": "216ab57597611bb9aeb36b806a144645"
  2052. }
  2053. },
  2054. {
  2055. "location": {
  2056. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pixabasic.c"
  2057. },
  2058. "roles": [
  2059. "analysisTarget"
  2060. ],
  2061. "hashes": {
  2062. "md5": "58a0ae2bad52778df9263722467a7c44"
  2063. }
  2064. },
  2065. {
  2066. "location": {
  2067. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix5.c"
  2068. },
  2069. "roles": [
  2070. "analysisTarget"
  2071. ],
  2072. "hashes": {
  2073. "md5": "dbaac99b65da51175877c1c29a30365e"
  2074. }
  2075. },
  2076. {
  2077. "location": {
  2078. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix4.c"
  2079. },
  2080. "roles": [
  2081. "analysisTarget"
  2082. ],
  2083. "hashes": {
  2084. "md5": "81c924dd928d7393fe53ff31b97e9ea0"
  2085. }
  2086. },
  2087. {
  2088. "location": {
  2089. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix3.c"
  2090. },
  2091. "roles": [
  2092. "analysisTarget"
  2093. ],
  2094. "hashes": {
  2095. "md5": "c01693b80af9e66439a7627da93496f8"
  2096. }
  2097. },
  2098. {
  2099. "location": {
  2100. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix2.c"
  2101. },
  2102. "roles": [
  2103. "analysisTarget"
  2104. ],
  2105. "hashes": {
  2106. "md5": "46735917afea0b54616f9a66e3690bc3"
  2107. }
  2108. },
  2109. {
  2110. "location": {
  2111. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix1.c"
  2112. },
  2113. "roles": [
  2114. "analysisTarget"
  2115. ],
  2116. "hashes": {
  2117. "md5": "0676ad9f55879ba797211bacbc8abf29"
  2118. }
  2119. },
  2120. {
  2121. "location": {
  2122. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pdfio2stub.c"
  2123. },
  2124. "roles": [
  2125. "analysisTarget"
  2126. ],
  2127. "hashes": {
  2128. "md5": "e76c0edba8cc9774528c9298e480aab9"
  2129. }
  2130. },
  2131. {
  2132. "location": {
  2133. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  2134. },
  2135. "roles": [
  2136. "analysisTarget",
  2137. "resultFile"
  2138. ],
  2139. "hashes": {
  2140. "md5": "48ae9eaaa0a93804838828f3c0615d2f"
  2141. }
  2142. },
  2143. {
  2144. "location": {
  2145. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pdfio1stub.c"
  2146. },
  2147. "roles": [
  2148. "analysisTarget"
  2149. ],
  2150. "hashes": {
  2151. "md5": "1bd2142521ee28d52748796a74159c74"
  2152. }
  2153. },
  2154. {
  2155. "location": {
  2156. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pdfio1.c"
  2157. },
  2158. "roles": [
  2159. "analysisTarget"
  2160. ],
  2161. "hashes": {
  2162. "md5": "4785b305bc75cddc076d099d0572a485"
  2163. }
  2164. },
  2165. {
  2166. "location": {
  2167. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/partition.c"
  2168. },
  2169. "roles": [
  2170. "analysisTarget"
  2171. ],
  2172. "hashes": {
  2173. "md5": "b22988b9e3f810313b20099498260757"
  2174. }
  2175. },
  2176. {
  2177. "location": {
  2178. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/partify.c"
  2179. },
  2180. "roles": [
  2181. "analysisTarget",
  2182. "resultFile"
  2183. ],
  2184. "hashes": {
  2185. "md5": "8223809e766d8a78632bfd68bc334e19"
  2186. }
  2187. },
  2188. {
  2189. "location": {
  2190. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/paintcmap.c"
  2191. },
  2192. "roles": [
  2193. "analysisTarget"
  2194. ],
  2195. "hashes": {
  2196. "md5": "1c6b18af964acf8970b91b9b128fae6b"
  2197. }
  2198. },
  2199. {
  2200. "location": {
  2201. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pageseg.c"
  2202. },
  2203. "roles": [
  2204. "analysisTarget"
  2205. ],
  2206. "hashes": {
  2207. "md5": "e50986593a9ed50e2da7387971dc6a46"
  2208. }
  2209. },
  2210. {
  2211. "location": {
  2212. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/numafunc2.c"
  2213. },
  2214. "roles": [
  2215. "analysisTarget"
  2216. ],
  2217. "hashes": {
  2218. "md5": "bcd70af9e7c601108c05686f4635d624"
  2219. }
  2220. },
  2221. {
  2222. "location": {
  2223. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/numafunc1.c"
  2224. },
  2225. "roles": [
  2226. "analysisTarget",
  2227. "resultFile"
  2228. ],
  2229. "hashes": {
  2230. "md5": "93365a9f528912c5c790d324964a9ff0"
  2231. }
  2232. },
  2233. {
  2234. "location": {
  2235. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/numabasic.c"
  2236. },
  2237. "roles": [
  2238. "analysisTarget"
  2239. ],
  2240. "hashes": {
  2241. "md5": "e3d4e7d2e9aae48518189a9195ab2f4a"
  2242. }
  2243. },
  2244. {
  2245. "location": {
  2246. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/morphseq.c"
  2247. },
  2248. "roles": [
  2249. "analysisTarget",
  2250. "resultFile"
  2251. ],
  2252. "hashes": {
  2253. "md5": "504d103e221fc15f4ce693e17fba4ac2"
  2254. }
  2255. },
  2256. {
  2257. "location": {
  2258. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/quadtree.c"
  2259. },
  2260. "roles": [
  2261. "analysisTarget",
  2262. "resultFile"
  2263. ],
  2264. "hashes": {
  2265. "md5": "4497d88041544aab921892de66df843d"
  2266. }
  2267. },
  2268. {
  2269. "location": {
  2270. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ptra.c"
  2271. },
  2272. "roles": [
  2273. "analysisTarget"
  2274. ],
  2275. "hashes": {
  2276. "md5": "82221557e81d38fbc5c248be6d183dad"
  2277. }
  2278. },
  2279. {
  2280. "location": {
  2281. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ptafunc2.c"
  2282. },
  2283. "roles": [
  2284. "analysisTarget"
  2285. ],
  2286. "hashes": {
  2287. "md5": "4efd7f1b43359b6d7e3c0be2fc34345e"
  2288. }
  2289. },
  2290. {
  2291. "location": {
  2292. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ptafunc1.c"
  2293. },
  2294. "roles": [
  2295. "analysisTarget"
  2296. ],
  2297. "hashes": {
  2298. "md5": "509229ef0daffc3bfec6dd6d360659e3"
  2299. }
  2300. },
  2301. {
  2302. "location": {
  2303. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ptabasic.c"
  2304. },
  2305. "roles": [
  2306. "analysisTarget",
  2307. "resultFile"
  2308. ],
  2309. "hashes": {
  2310. "md5": "f9fb63a9257bfd31540384aa340f8631"
  2311. }
  2312. }
  2313. ]
  2314. }
  2315. ]
  2316. }