utils1.nativecodeanalysis.sarif 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727
  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": "C6011",
  9. "message": {
  10. "text": "Dereferenzierender NULL-Zeiger \"newdata\". "
  11. },
  12. "locations": [
  13. {
  14. "physicalLocation": {
  15. "artifactLocation": {
  16. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/utils1.c"
  17. },
  18. "region": {
  19. "startLine": 696,
  20. "startColumn": 9,
  21. "endLine": 696,
  22. "endColumn": 34
  23. }
  24. },
  25. "logicalLocations": [
  26. {
  27. "decoratedName": "fileReplaceBytes",
  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/utils1.c"
  43. },
  44. "region": {
  45. "startLine": 675,
  46. "startColumn": 11
  47. }
  48. }
  49. },
  50. "importance": "unimportant"
  51. },
  52. {
  53. "location": {
  54. "physicalLocation": {
  55. "artifactLocation": {
  56. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/utils1.c"
  57. },
  58. "region": {
  59. "startLine": 675,
  60. "startColumn": 14
  61. }
  62. }
  63. },
  64. "importance": "unimportant"
  65. },
  66. {
  67. "location": {
  68. "physicalLocation": {
  69. "artifactLocation": {
  70. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/utils1.c"
  71. },
  72. "region": {
  73. "startLine": 676,
  74. "startColumn": 11
  75. }
  76. }
  77. },
  78. "importance": "unimportant"
  79. },
  80. {
  81. "location": {
  82. "physicalLocation": {
  83. "artifactLocation": {
  84. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/utils1.c"
  85. },
  86. "region": {
  87. "startLine": 676,
  88. "startColumn": 20
  89. }
  90. }
  91. },
  92. "importance": "unimportant"
  93. },
  94. {
  95. "location": {
  96. "physicalLocation": {
  97. "artifactLocation": {
  98. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/utils1.c"
  99. },
  100. "region": {
  101. "startLine": 677,
  102. "startColumn": 11
  103. }
  104. }
  105. },
  106. "importance": "unimportant"
  107. },
  108. {
  109. "location": {
  110. "physicalLocation": {
  111. "artifactLocation": {
  112. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/utils1.c"
  113. },
  114. "region": {
  115. "startLine": 677,
  116. "startColumn": 20
  117. }
  118. }
  119. },
  120. "importance": "unimportant"
  121. },
  122. {
  123. "location": {
  124. "physicalLocation": {
  125. "artifactLocation": {
  126. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/utils1.c"
  127. },
  128. "region": {
  129. "startLine": 679,
  130. "startColumn": 17
  131. }
  132. }
  133. },
  134. "importance": "unimportant"
  135. },
  136. {
  137. "location": {
  138. "physicalLocation": {
  139. "artifactLocation": {
  140. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/utils1.c"
  141. },
  142. "region": {
  143. "startLine": 682,
  144. "startColumn": 12
  145. }
  146. }
  147. },
  148. "importance": "unimportant"
  149. },
  150. {
  151. "location": {
  152. "physicalLocation": {
  153. "artifactLocation": {
  154. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/utils1.c"
  155. },
  156. "region": {
  157. "startLine": 683,
  158. "startColumn": 24
  159. }
  160. }
  161. },
  162. "importance": "unimportant"
  163. },
  164. {
  165. "location": {
  166. "physicalLocation": {
  167. "artifactLocation": {
  168. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/utils1.c"
  169. },
  170. "region": {
  171. "startLine": 686,
  172. "startColumn": 9
  173. }
  174. },
  175. "message": {
  176. "text": "\"newdata\" kann NULL sein. (In diese Verzweigung eintreten)"
  177. }
  178. },
  179. "kinds": [
  180. "branch"
  181. ],
  182. "importance": "important"
  183. },
  184. {
  185. "location": {
  186. "physicalLocation": {
  187. "artifactLocation": {
  188. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/utils1.c"
  189. },
  190. "region": {
  191. "startLine": 686,
  192. "startColumn": 27
  193. }
  194. }
  195. },
  196. "importance": "unimportant"
  197. },
  198. {
  199. "location": {
  200. "physicalLocation": {
  201. "artifactLocation": {
  202. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/utils1.c"
  203. },
  204. "region": {
  205. "startLine": 687,
  206. "startColumn": 14
  207. }
  208. }
  209. },
  210. "importance": "unimportant"
  211. },
  212. {
  213. "location": {
  214. "physicalLocation": {
  215. "artifactLocation": {
  216. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/utils1.c"
  217. },
  218. "region": {
  219. "startLine": 688,
  220. "startColumn": 57
  221. }
  222. },
  223. "message": {
  224. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  225. }
  226. },
  227. "kinds": [
  228. "branch"
  229. ],
  230. "importance": "important"
  231. },
  232. {
  233. "location": {
  234. "physicalLocation": {
  235. "artifactLocation": {
  236. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/utils1.c"
  237. },
  238. "region": {
  239. "startLine": 693,
  240. "startColumn": 12
  241. }
  242. }
  243. },
  244. "importance": "unimportant"
  245. },
  246. {
  247. "location": {
  248. "physicalLocation": {
  249. "artifactLocation": {
  250. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/utils1.c"
  251. },
  252. "region": {
  253. "startLine": 693,
  254. "startColumn": 19
  255. }
  256. },
  257. "message": {
  258. "text": "Diese Schleife überspringen (Annahme: \"i<start\" ist false)"
  259. }
  260. },
  261. "kinds": [
  262. "branch"
  263. ],
  264. "importance": "important"
  265. },
  266. {
  267. "location": {
  268. "physicalLocation": {
  269. "artifactLocation": {
  270. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/utils1.c"
  271. },
  272. "region": {
  273. "startLine": 695,
  274. "startColumn": 12
  275. }
  276. }
  277. },
  278. "importance": "unimportant"
  279. },
  280. {
  281. "location": {
  282. "physicalLocation": {
  283. "artifactLocation": {
  284. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/utils1.c"
  285. },
  286. "region": {
  287. "startLine": 695,
  288. "startColumn": 23
  289. }
  290. },
  291. "message": {
  292. "text": "In diese Schleife eintreten (Annahme: \"i<start+newsize\")"
  293. }
  294. },
  295. "kinds": [
  296. "branch"
  297. ],
  298. "importance": "important"
  299. },
  300. {
  301. "location": {
  302. "physicalLocation": {
  303. "artifactLocation": {
  304. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/utils1.c"
  305. },
  306. "region": {
  307. "startLine": 696,
  308. "startColumn": 20
  309. }
  310. },
  311. "message": {
  312. "text": "\"newdata\" wird dereferenziert, kann jedoch weiterhin NULL sein."
  313. }
  314. },
  315. "kinds": [
  316. "usage"
  317. ],
  318. "importance": "essential"
  319. }
  320. ]
  321. }
  322. ]
  323. }
  324. ]
  325. }
  326. ],
  327. "tool": {
  328. "driver": {
  329. "name": "PREfast",
  330. "fullName": "PREfast Code Analysis",
  331. "version": "14.29.30159.0",
  332. "informationUri": "https://aka.ms/cpp/ca"
  333. }
  334. },
  335. "invocations": [
  336. {
  337. "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_6a5f387bast -typedil -f ..\\..\\thirdparty\\leptonica\\src\\utils1.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\\utils1.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",
  338. "executionSuccessful": true
  339. }
  340. ],
  341. "artifacts": [
  342. {
  343. "location": {
  344. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bootnumgen4.c"
  345. },
  346. "roles": [
  347. "analysisTarget"
  348. ],
  349. "hashes": {
  350. "md5": "3a82f1ac44975b5317cf5d04fa947c01"
  351. }
  352. },
  353. {
  354. "location": {
  355. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/allheaders.h"
  356. },
  357. "hashes": {
  358. "md5": "999d534a4ad60a2b7511196f8e6509e4"
  359. }
  360. },
  361. {
  362. "location": {
  363. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/alltypes.h"
  364. },
  365. "hashes": {
  366. "md5": "a53441277a26b8f0bb926cb17df2dfb7"
  367. }
  368. },
  369. {
  370. "location": {
  371. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/scripts/tesseract/endianness.h"
  372. },
  373. "hashes": {
  374. "md5": "c5b34010ae58ee994fb431b8736f6f4c"
  375. }
  376. },
  377. {
  378. "location": {
  379. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/environ.h"
  380. },
  381. "hashes": {
  382. "md5": "f12002e24a0542a8b820943238c03777"
  383. }
  384. },
  385. {
  386. "location": {
  387. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/array.h"
  388. },
  389. "hashes": {
  390. "md5": "905c3a077932844148e6ce1a082ad3fd"
  391. }
  392. },
  393. {
  394. "location": {
  395. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bbuffer.h"
  396. },
  397. "hashes": {
  398. "md5": "9698e12ada03098f0d12a09c12cf6063"
  399. }
  400. },
  401. {
  402. "location": {
  403. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/hashmap.h"
  404. },
  405. "hashes": {
  406. "md5": "a67f5cea1a1d468a3c082936a3c6ceae"
  407. }
  408. },
  409. {
  410. "location": {
  411. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/heap.h"
  412. },
  413. "hashes": {
  414. "md5": "b4a5a51c54ae3ecf0da810f807a29c83"
  415. }
  416. },
  417. {
  418. "location": {
  419. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/list.h"
  420. },
  421. "hashes": {
  422. "md5": "c1df1f5c4859fcff277e25e2af485e32"
  423. }
  424. },
  425. {
  426. "location": {
  427. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ptra.h"
  428. },
  429. "hashes": {
  430. "md5": "09b92e82a1ea998e1f7e4023c008cf51"
  431. }
  432. },
  433. {
  434. "location": {
  435. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/queue.h"
  436. },
  437. "hashes": {
  438. "md5": "ceded2bcd4bc2c553683c2643f69e6a5"
  439. }
  440. },
  441. {
  442. "location": {
  443. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/rbtree.h"
  444. },
  445. "hashes": {
  446. "md5": "803860fffdd81a3fc3fff30294c8f8cb"
  447. }
  448. },
  449. {
  450. "location": {
  451. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/stack.h"
  452. },
  453. "hashes": {
  454. "md5": "0740173ae3e4e7de5f4c6fe821a4f0e7"
  455. }
  456. },
  457. {
  458. "location": {
  459. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/arrayaccess.h"
  460. },
  461. "hashes": {
  462. "md5": "dcb43ea7a43e1fddf264fe501878db3d"
  463. }
  464. },
  465. {
  466. "location": {
  467. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmf.h"
  468. },
  469. "hashes": {
  470. "md5": "e34a65325b94bfa5d1dca2f9424ca1f0"
  471. }
  472. },
  473. {
  474. "location": {
  475. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ccbord.h"
  476. },
  477. "hashes": {
  478. "md5": "90250b263699310ce40909628dbd7758"
  479. }
  480. },
  481. {
  482. "location": {
  483. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colorfill.h"
  484. },
  485. "hashes": {
  486. "md5": "c9cf5349852bf9054e7f3c5bbafac76e"
  487. }
  488. },
  489. {
  490. "location": {
  491. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dewarp.h"
  492. },
  493. "hashes": {
  494. "md5": "493b17891572abea870917ab41bf12c6"
  495. }
  496. },
  497. {
  498. "location": {
  499. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/gplot.h"
  500. },
  501. "hashes": {
  502. "md5": "55cf40c06fd537d7b8714aaf1f7a0042"
  503. }
  504. },
  505. {
  506. "location": {
  507. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/imageio.h"
  508. },
  509. "hashes": {
  510. "md5": "f517e3d907fee1ec4c974fad7dfdb29d"
  511. }
  512. },
  513. {
  514. "location": {
  515. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jbclass.h"
  516. },
  517. "hashes": {
  518. "md5": "c922deeb8eb844a7a2260f9c0a709218"
  519. }
  520. },
  521. {
  522. "location": {
  523. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/morph.h"
  524. },
  525. "hashes": {
  526. "md5": "44855c4ddac6a28583d89947fcdbfdfc"
  527. }
  528. },
  529. {
  530. "location": {
  531. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix.h"
  532. },
  533. "hashes": {
  534. "md5": "1fc6f88f9c79b5158469904b66645f7d"
  535. }
  536. },
  537. {
  538. "location": {
  539. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/recog.h"
  540. },
  541. "hashes": {
  542. "md5": "f49b37b951f9036fb2dcf726b741db4e"
  543. }
  544. },
  545. {
  546. "location": {
  547. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/regutils.h"
  548. },
  549. "hashes": {
  550. "md5": "fe7a3db017220d34590fd29869e5d61c"
  551. }
  552. },
  553. {
  554. "location": {
  555. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/stringcode.h"
  556. },
  557. "hashes": {
  558. "md5": "94fce55340931aded34d6d7fd60d842e"
  559. }
  560. },
  561. {
  562. "location": {
  563. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/sudoku.h"
  564. },
  565. "hashes": {
  566. "md5": "fb101a2c192580933be1b8236c2bdc15"
  567. }
  568. },
  569. {
  570. "location": {
  571. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/watershed.h"
  572. },
  573. "hashes": {
  574. "md5": "44a71dd892c2fab6459227f7bcc400ee"
  575. }
  576. },
  577. {
  578. "location": {
  579. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bootnumgen3.c"
  580. },
  581. "roles": [
  582. "analysisTarget"
  583. ],
  584. "hashes": {
  585. "md5": "b48614e975c09a03547e759b911f5359"
  586. }
  587. },
  588. {
  589. "location": {
  590. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bootnumgen2.c"
  591. },
  592. "roles": [
  593. "analysisTarget"
  594. ],
  595. "hashes": {
  596. "md5": "8ad6891f2edce3383af6916769c41602"
  597. }
  598. },
  599. {
  600. "location": {
  601. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bootnumgen1.c"
  602. },
  603. "roles": [
  604. "analysisTarget"
  605. ],
  606. "hashes": {
  607. "md5": "b7bcdd2390111aecc3149c70911a9db2"
  608. }
  609. },
  610. {
  611. "location": {
  612. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmpiostub.c"
  613. },
  614. "roles": [
  615. "analysisTarget"
  616. ],
  617. "hashes": {
  618. "md5": "fe53e17707c01ad1ef2333752ebc32ee"
  619. }
  620. },
  621. {
  622. "location": {
  623. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/bmpio.c"
  624. },
  625. "roles": [
  626. "analysisTarget",
  627. "resultFile"
  628. ],
  629. "hashes": {
  630. "md5": "367f3081ffba0952522913b49b13bf52"
  631. }
  632. },
  633. {
  634. "location": {
  635. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix_internal.h"
  636. },
  637. "hashes": {
  638. "md5": "4dd89382186e6b211b4078679810a19e"
  639. }
  640. },
  641. {
  642. "location": {
  643. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmp.h"
  644. },
  645. "hashes": {
  646. "md5": "942e4ba8687e01b1fe5afae65245bd29"
  647. }
  648. },
  649. {
  650. "location": {
  651. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmf.c"
  652. },
  653. "roles": [
  654. "analysisTarget"
  655. ],
  656. "hashes": {
  657. "md5": "2f5d274fa401e05d5d15d9e58a7ed8a5"
  658. }
  659. },
  660. {
  661. "location": {
  662. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bmfdata.h"
  663. },
  664. "hashes": {
  665. "md5": "4ded82c05fb39404bb67e686cd38b9cf"
  666. }
  667. },
  668. {
  669. "location": {
  670. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/blend.c"
  671. },
  672. "roles": [
  673. "analysisTarget",
  674. "resultFile"
  675. ],
  676. "hashes": {
  677. "md5": "f734d4b17d7b51568aa083f8444a8e7d"
  678. }
  679. },
  680. {
  681. "location": {
  682. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/binreduce.c"
  683. },
  684. "roles": [
  685. "analysisTarget"
  686. ],
  687. "hashes": {
  688. "md5": "a6bbc62580de9a69daca0ed4a05782ba"
  689. }
  690. },
  691. {
  692. "location": {
  693. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/binexpand.c"
  694. },
  695. "roles": [
  696. "analysisTarget"
  697. ],
  698. "hashes": {
  699. "md5": "a91e32559d5d0814d80b73b5bc7df24b"
  700. }
  701. },
  702. {
  703. "location": {
  704. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/binarize.c"
  705. },
  706. "roles": [
  707. "analysisTarget"
  708. ],
  709. "hashes": {
  710. "md5": "02c1761dcc6ab4bf416e6055f672ab07"
  711. }
  712. },
  713. {
  714. "location": {
  715. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bilinear.c"
  716. },
  717. "roles": [
  718. "analysisTarget"
  719. ],
  720. "hashes": {
  721. "md5": "4a09fe363bcb37df9bb1cd9adbf0c91a"
  722. }
  723. },
  724. {
  725. "location": {
  726. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bilateral.c"
  727. },
  728. "roles": [
  729. "analysisTarget"
  730. ],
  731. "hashes": {
  732. "md5": "bc1af17cf793ac23886176cb0d23b029"
  733. }
  734. },
  735. {
  736. "location": {
  737. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bilateral.h"
  738. },
  739. "hashes": {
  740. "md5": "d3078c8d7a38ea07d93a58f8a4982a8d"
  741. }
  742. },
  743. {
  744. "location": {
  745. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bbuffer.c"
  746. },
  747. "roles": [
  748. "analysisTarget"
  749. ],
  750. "hashes": {
  751. "md5": "8fd7f505a82a8b97b29e52618397178d"
  752. }
  753. },
  754. {
  755. "location": {
  756. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/baseline.c"
  757. },
  758. "roles": [
  759. "analysisTarget",
  760. "resultFile"
  761. ],
  762. "hashes": {
  763. "md5": "a4f7bc8214c6a7c7592a2e29d78addc1"
  764. }
  765. },
  766. {
  767. "location": {
  768. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/arrayaccess.c"
  769. },
  770. "roles": [
  771. "analysisTarget"
  772. ],
  773. "hashes": {
  774. "md5": "137a526c992e6e6683cf2b6ece5a016d"
  775. }
  776. },
  777. {
  778. "location": {
  779. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/affinecompose.c"
  780. },
  781. "roles": [
  782. "analysisTarget"
  783. ],
  784. "hashes": {
  785. "md5": "020190a9b3f19478dfb5484f3d4fc1e5"
  786. }
  787. },
  788. {
  789. "location": {
  790. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/affine.c"
  791. },
  792. "roles": [
  793. "analysisTarget"
  794. ],
  795. "hashes": {
  796. "md5": "8cea6c30ebe9cbe0f61f7482e81b4c5c"
  797. }
  798. },
  799. {
  800. "location": {
  801. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/adaptmap.c"
  802. },
  803. "roles": [
  804. "analysisTarget"
  805. ],
  806. "hashes": {
  807. "md5": "69c4c232ba768de8b5d9de5e0d23b399"
  808. }
  809. },
  810. {
  811. "location": {
  812. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/source/fitz/leptonica-wrap.c"
  813. },
  814. "roles": [
  815. "analysisTarget"
  816. ],
  817. "hashes": {
  818. "md5": "7f73dd56f3cfed6d45d19fd442396938"
  819. }
  820. },
  821. {
  822. "location": {
  823. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/source/fitz/leptonica-wrap.h"
  824. },
  825. "hashes": {
  826. "md5": "271e50e32565a028dadd3554dc7d6be9"
  827. }
  828. },
  829. {
  830. "location": {
  831. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz.h"
  832. },
  833. "hashes": {
  834. "md5": "c1da725222ed64f4094c94f9ec5fa9d3"
  835. }
  836. },
  837. {
  838. "location": {
  839. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/version.h"
  840. },
  841. "hashes": {
  842. "md5": "49b087287cd81a61255c9afad5a04a0e"
  843. }
  844. },
  845. {
  846. "location": {
  847. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/config.h"
  848. },
  849. "hashes": {
  850. "md5": "8152555cd3c484684047fd1c533eb1a6"
  851. }
  852. },
  853. {
  854. "location": {
  855. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/system.h"
  856. },
  857. "hashes": {
  858. "md5": "90ae89bc0bb247c30f11092380a6bf84"
  859. }
  860. },
  861. {
  862. "location": {
  863. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/export.h"
  864. },
  865. "hashes": {
  866. "md5": "9392a759e17aa12d7d4516ab296a9110"
  867. }
  868. },
  869. {
  870. "location": {
  871. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/memento.h"
  872. },
  873. "hashes": {
  874. "md5": "09ba15c0fd78518e062db9266c4a1239"
  875. }
  876. },
  877. {
  878. "location": {
  879. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/track-usage.h"
  880. },
  881. "hashes": {
  882. "md5": "9c2721d2c03d4b6e071d4c291e4f8eec"
  883. }
  884. },
  885. {
  886. "location": {
  887. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/context.h"
  888. },
  889. "hashes": {
  890. "md5": "0a8420b8805e435b64f295b16cab53af"
  891. }
  892. },
  893. {
  894. "location": {
  895. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/geometry.h"
  896. },
  897. "hashes": {
  898. "md5": "b90a31a4dca86a00ae7644b0735a3899"
  899. }
  900. },
  901. {
  902. "location": {
  903. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/output.h"
  904. },
  905. "hashes": {
  906. "md5": "f73558b9d27504499a5a45e8f3a3584a"
  907. }
  908. },
  909. {
  910. "location": {
  911. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/buffer.h"
  912. },
  913. "hashes": {
  914. "md5": "6fc8c6b8b9a2692519a1d0e505f71c6e"
  915. }
  916. },
  917. {
  918. "location": {
  919. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/string-util.h"
  920. },
  921. "hashes": {
  922. "md5": "4f84321fffde964fbdfa179e97b1fb5b"
  923. }
  924. },
  925. {
  926. "location": {
  927. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/stream.h"
  928. },
  929. "hashes": {
  930. "md5": "17262319f59df230360c31bff22506f4"
  931. }
  932. },
  933. {
  934. "location": {
  935. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/log.h"
  936. },
  937. "hashes": {
  938. "md5": "fdce0ca431e1f40c09081052f1b739cb"
  939. }
  940. },
  941. {
  942. "location": {
  943. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/crypt.h"
  944. },
  945. "hashes": {
  946. "md5": "9ffc8e340c06f2d28aa62b6fcd35dc5d"
  947. }
  948. },
  949. {
  950. "location": {
  951. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/getopt.h"
  952. },
  953. "hashes": {
  954. "md5": "e47118058134aec927847ca9dae5d390"
  955. }
  956. },
  957. {
  958. "location": {
  959. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/hash.h"
  960. },
  961. "hashes": {
  962. "md5": "d9b655ab558a40c18e24c7cdddeab1fc"
  963. }
  964. },
  965. {
  966. "location": {
  967. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/pool.h"
  968. },
  969. "hashes": {
  970. "md5": "2f150c59f73344040a7de6455c00529e"
  971. }
  972. },
  973. {
  974. "location": {
  975. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/tree.h"
  976. },
  977. "hashes": {
  978. "md5": "66441b22b31d2cc979eb50d828de8d89"
  979. }
  980. },
  981. {
  982. "location": {
  983. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/bidi.h"
  984. },
  985. "hashes": {
  986. "md5": "b3f22e9d6b6250f2a9dfd4c1620af41d"
  987. }
  988. },
  989. {
  990. "location": {
  991. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/xml.h"
  992. },
  993. "hashes": {
  994. "md5": "9e6cf72f1f3c757d8956f19631d1f942"
  995. }
  996. },
  997. {
  998. "location": {
  999. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/archive.h"
  1000. },
  1001. "hashes": {
  1002. "md5": "fe3a9fa4f6093e521afe5b0d4a214e89"
  1003. }
  1004. },
  1005. {
  1006. "location": {
  1007. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/json.h"
  1008. },
  1009. "hashes": {
  1010. "md5": "1ccd7f1e2c3cf9db156761b2341941bb"
  1011. }
  1012. },
  1013. {
  1014. "location": {
  1015. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/compress.h"
  1016. },
  1017. "hashes": {
  1018. "md5": "870b86535307b1bcf48a05cc86bac4f6"
  1019. }
  1020. },
  1021. {
  1022. "location": {
  1023. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/pixmap.h"
  1024. },
  1025. "hashes": {
  1026. "md5": "4a2994ca7e320d46c91af9462864e472"
  1027. }
  1028. },
  1029. {
  1030. "location": {
  1031. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/store.h"
  1032. },
  1033. "hashes": {
  1034. "md5": "613e60235eba9e2c0fe6735fbcbf444d"
  1035. }
  1036. },
  1037. {
  1038. "location": {
  1039. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/separation.h"
  1040. },
  1041. "hashes": {
  1042. "md5": "948f2a79178edd5a86cab9b357cc8f84"
  1043. }
  1044. },
  1045. {
  1046. "location": {
  1047. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/color.h"
  1048. },
  1049. "hashes": {
  1050. "md5": "c394579670ed653192ccdf07cc810543"
  1051. }
  1052. },
  1053. {
  1054. "location": {
  1055. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/compressed-buffer.h"
  1056. },
  1057. "hashes": {
  1058. "md5": "f0ad50536d7884e3d221498388a145a1"
  1059. }
  1060. },
  1061. {
  1062. "location": {
  1063. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/filter.h"
  1064. },
  1065. "hashes": {
  1066. "md5": "a20437fde476b45123005b54567b8b3c"
  1067. }
  1068. },
  1069. {
  1070. "location": {
  1071. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/heap.h"
  1072. },
  1073. "hashes": {
  1074. "md5": "1cbe01acfade2baf416ab5be1bd1907e"
  1075. }
  1076. },
  1077. {
  1078. "location": {
  1079. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/heap-imp.h"
  1080. },
  1081. "hashes": {
  1082. "md5": "9923f50e47c46bd4e02747da6de32946"
  1083. }
  1084. },
  1085. {
  1086. "location": {
  1087. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/image.h"
  1088. },
  1089. "hashes": {
  1090. "md5": "a987413ff35bef8ce2048369564be0e0"
  1091. }
  1092. },
  1093. {
  1094. "location": {
  1095. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/bitmap.h"
  1096. },
  1097. "hashes": {
  1098. "md5": "0e6ee78ac3a456106ea3ddca63ef5e35"
  1099. }
  1100. },
  1101. {
  1102. "location": {
  1103. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/shade.h"
  1104. },
  1105. "hashes": {
  1106. "md5": "c06b062bd0326fa40b071527b257ae24"
  1107. }
  1108. },
  1109. {
  1110. "location": {
  1111. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/font.h"
  1112. },
  1113. "hashes": {
  1114. "md5": "b667092834a21c0abe97b2817ace34a7"
  1115. }
  1116. },
  1117. {
  1118. "location": {
  1119. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/path.h"
  1120. },
  1121. "hashes": {
  1122. "md5": "200da6c866aa0a7faec7f24f176e47e9"
  1123. }
  1124. },
  1125. {
  1126. "location": {
  1127. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/text.h"
  1128. },
  1129. "hashes": {
  1130. "md5": "d8f8e0890cc682b0974ec3f779260f6e"
  1131. }
  1132. },
  1133. {
  1134. "location": {
  1135. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/glyph.h"
  1136. },
  1137. "hashes": {
  1138. "md5": "74fdb3bee7c6f25df43323008fcdf60a"
  1139. }
  1140. },
  1141. {
  1142. "location": {
  1143. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/device.h"
  1144. },
  1145. "hashes": {
  1146. "md5": "ba44b7292a72479dfe60b62352e57fd5"
  1147. }
  1148. },
  1149. {
  1150. "location": {
  1151. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/display-list.h"
  1152. },
  1153. "hashes": {
  1154. "md5": "4944d19bf380f14ccda5ced45ab04dcc"
  1155. }
  1156. },
  1157. {
  1158. "location": {
  1159. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/structured-text.h"
  1160. },
  1161. "hashes": {
  1162. "md5": "fdd5507292d57da0c3c2ee591f5f0d08"
  1163. }
  1164. },
  1165. {
  1166. "location": {
  1167. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/types.h"
  1168. },
  1169. "hashes": {
  1170. "md5": "385688b131d3b981c11fefca1c6bd08f"
  1171. }
  1172. },
  1173. {
  1174. "location": {
  1175. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/transition.h"
  1176. },
  1177. "hashes": {
  1178. "md5": "45a1a3da16cfa7a1135ed97b151d59e5"
  1179. }
  1180. },
  1181. {
  1182. "location": {
  1183. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/glyph-cache.h"
  1184. },
  1185. "hashes": {
  1186. "md5": "f8a51df4e57ec830f97cefefd04beb21"
  1187. }
  1188. },
  1189. {
  1190. "location": {
  1191. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/link.h"
  1192. },
  1193. "hashes": {
  1194. "md5": "e2beb74537ffa880d751627856f4ec2e"
  1195. }
  1196. },
  1197. {
  1198. "location": {
  1199. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/outline.h"
  1200. },
  1201. "hashes": {
  1202. "md5": "a4b090458246a9412f1822e8f69861e5"
  1203. }
  1204. },
  1205. {
  1206. "location": {
  1207. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/document.h"
  1208. },
  1209. "hashes": {
  1210. "md5": "d5dd17e54ecd7a0c4c420b7fba8bbbb8"
  1211. }
  1212. },
  1213. {
  1214. "location": {
  1215. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/util.h"
  1216. },
  1217. "hashes": {
  1218. "md5": "b52379b9e022798f7ffeb183e593355b"
  1219. }
  1220. },
  1221. {
  1222. "location": {
  1223. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/writer.h"
  1224. },
  1225. "hashes": {
  1226. "md5": "8f22433f8330cf7094af3c2c0221d1aa"
  1227. }
  1228. },
  1229. {
  1230. "location": {
  1231. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/band-writer.h"
  1232. },
  1233. "hashes": {
  1234. "md5": "cce70daf29f5059d81d3004bac3a529b"
  1235. }
  1236. },
  1237. {
  1238. "location": {
  1239. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/write-pixmap.h"
  1240. },
  1241. "hashes": {
  1242. "md5": "55a92a6277d51e8193cb9d68dbc04555"
  1243. }
  1244. },
  1245. {
  1246. "location": {
  1247. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/output-svg.h"
  1248. },
  1249. "hashes": {
  1250. "md5": "562415573a8921b26596771d6c4c5c67"
  1251. }
  1252. },
  1253. {
  1254. "location": {
  1255. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/story.h"
  1256. },
  1257. "hashes": {
  1258. "md5": "103650ee4814b1f96618672e45b766d4"
  1259. }
  1260. },
  1261. {
  1262. "location": {
  1263. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/story-writer.h"
  1264. },
  1265. "hashes": {
  1266. "md5": "aaafb6cf4f48ade004e1d15d06eaffe7"
  1267. }
  1268. },
  1269. {
  1270. "location": {
  1271. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/deskew.h"
  1272. },
  1273. "hashes": {
  1274. "md5": "9599a8121baecccfd203d91c95561903"
  1275. }
  1276. },
  1277. {
  1278. "location": {
  1279. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/include/mupdf/fitz/barcode.h"
  1280. },
  1281. "hashes": {
  1282. "md5": "58fc28d74fa337724ff70a29778ac6ed"
  1283. }
  1284. },
  1285. {
  1286. "location": {
  1287. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/convertfiles.c"
  1288. },
  1289. "roles": [
  1290. "analysisTarget"
  1291. ],
  1292. "hashes": {
  1293. "md5": "724f5d1e2f686dc7a5f62ee87cd4b7c0"
  1294. }
  1295. },
  1296. {
  1297. "location": {
  1298. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/conncomp.c"
  1299. },
  1300. "roles": [
  1301. "analysisTarget"
  1302. ],
  1303. "hashes": {
  1304. "md5": "439795e422d51c02d86e41c5f2612cca"
  1305. }
  1306. },
  1307. {
  1308. "location": {
  1309. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/compare.c"
  1310. },
  1311. "roles": [
  1312. "analysisTarget"
  1313. ],
  1314. "hashes": {
  1315. "md5": "32a03abbd3ffed661bfab2965b017a8b"
  1316. }
  1317. },
  1318. {
  1319. "location": {
  1320. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colorspace.c"
  1321. },
  1322. "roles": [
  1323. "analysisTarget"
  1324. ],
  1325. "hashes": {
  1326. "md5": "4f9001939678a369e7c84460dff9d21b"
  1327. }
  1328. },
  1329. {
  1330. "location": {
  1331. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/colorseg.c"
  1332. },
  1333. "roles": [
  1334. "analysisTarget",
  1335. "resultFile"
  1336. ],
  1337. "hashes": {
  1338. "md5": "1ab66c018aa504e6fee2bdca55a3da21"
  1339. }
  1340. },
  1341. {
  1342. "location": {
  1343. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/colorquant2.c"
  1344. },
  1345. "roles": [
  1346. "analysisTarget",
  1347. "resultFile"
  1348. ],
  1349. "hashes": {
  1350. "md5": "08cd6523f246d256d2e5b719eb667fd9"
  1351. }
  1352. },
  1353. {
  1354. "location": {
  1355. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colorquant1.c"
  1356. },
  1357. "roles": [
  1358. "analysisTarget"
  1359. ],
  1360. "hashes": {
  1361. "md5": "f40f68bd9d4f0559471f4519d089341c"
  1362. }
  1363. },
  1364. {
  1365. "location": {
  1366. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colormorph.c"
  1367. },
  1368. "roles": [
  1369. "analysisTarget"
  1370. ],
  1371. "hashes": {
  1372. "md5": "c7d2b1c8606d5cdc3213275c61eefc08"
  1373. }
  1374. },
  1375. {
  1376. "location": {
  1377. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colormap.c"
  1378. },
  1379. "roles": [
  1380. "analysisTarget"
  1381. ],
  1382. "hashes": {
  1383. "md5": "07d58362026f2ee8c4c94a12a850cf55"
  1384. }
  1385. },
  1386. {
  1387. "location": {
  1388. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/coloring.c"
  1389. },
  1390. "roles": [
  1391. "analysisTarget"
  1392. ],
  1393. "hashes": {
  1394. "md5": "0b2cd914abafa50c0a5d70fe0d70bed0"
  1395. }
  1396. },
  1397. {
  1398. "location": {
  1399. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/colorcontent.c"
  1400. },
  1401. "roles": [
  1402. "analysisTarget"
  1403. ],
  1404. "hashes": {
  1405. "md5": "f323d957cfd0b4804277e990bddc1052"
  1406. }
  1407. },
  1408. {
  1409. "location": {
  1410. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/classapp.c"
  1411. },
  1412. "roles": [
  1413. "analysisTarget"
  1414. ],
  1415. "hashes": {
  1416. "md5": "031c0fa9ce910dbe883833475136f167"
  1417. }
  1418. },
  1419. {
  1420. "location": {
  1421. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ccbord.c"
  1422. },
  1423. "roles": [
  1424. "analysisTarget",
  1425. "resultFile"
  1426. ],
  1427. "hashes": {
  1428. "md5": "698cbb131be6752bb74a9863349ba9f7"
  1429. }
  1430. },
  1431. {
  1432. "location": {
  1433. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ccbord_internal.h"
  1434. },
  1435. "hashes": {
  1436. "md5": "b4ffaa4ab3329f45a74769526364a5bd"
  1437. }
  1438. },
  1439. {
  1440. "location": {
  1441. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/bytearray.c"
  1442. },
  1443. "roles": [
  1444. "analysisTarget"
  1445. ],
  1446. "hashes": {
  1447. "md5": "f479426c83e521920ba5ef2a47f9eeea"
  1448. }
  1449. },
  1450. {
  1451. "location": {
  1452. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/array_internal.h"
  1453. },
  1454. "hashes": {
  1455. "md5": "47169f561e914a3f80dd1165d0cc9ac5"
  1456. }
  1457. },
  1458. {
  1459. "location": {
  1460. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxfunc5.c"
  1461. },
  1462. "roles": [
  1463. "analysisTarget"
  1464. ],
  1465. "hashes": {
  1466. "md5": "3bd669a71b8039fe8dc1465c6d9451ea"
  1467. }
  1468. },
  1469. {
  1470. "location": {
  1471. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxfunc4.c"
  1472. },
  1473. "roles": [
  1474. "analysisTarget"
  1475. ],
  1476. "hashes": {
  1477. "md5": "4350db99f137393092bb9e127c545533"
  1478. }
  1479. },
  1480. {
  1481. "location": {
  1482. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxfunc3.c"
  1483. },
  1484. "roles": [
  1485. "analysisTarget"
  1486. ],
  1487. "hashes": {
  1488. "md5": "5ffe93f9dac1ac164c76c827d6b99c2b"
  1489. }
  1490. },
  1491. {
  1492. "location": {
  1493. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/boxfunc2.c"
  1494. },
  1495. "roles": [
  1496. "analysisTarget",
  1497. "resultFile"
  1498. ],
  1499. "hashes": {
  1500. "md5": "06017e461354b622a898e964824feb0a"
  1501. }
  1502. },
  1503. {
  1504. "location": {
  1505. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxfunc1.c"
  1506. },
  1507. "roles": [
  1508. "analysisTarget"
  1509. ],
  1510. "hashes": {
  1511. "md5": "53c0cadfd70352d07c7059cb11b8996d"
  1512. }
  1513. },
  1514. {
  1515. "location": {
  1516. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/boxbasic.c"
  1517. },
  1518. "roles": [
  1519. "analysisTarget"
  1520. ],
  1521. "hashes": {
  1522. "md5": "9499af84bce2d2cec53f010406b849d0"
  1523. }
  1524. },
  1525. {
  1526. "location": {
  1527. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/fpix1.c"
  1528. },
  1529. "roles": [
  1530. "analysisTarget"
  1531. ],
  1532. "hashes": {
  1533. "md5": "32f9040600f84cde037e4633e458e61e"
  1534. }
  1535. },
  1536. {
  1537. "location": {
  1538. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/fmorphgenlow.1.c"
  1539. },
  1540. "roles": [
  1541. "analysisTarget"
  1542. ],
  1543. "hashes": {
  1544. "md5": "c2e6003fbf822c8846ffdfa4e00d3d97"
  1545. }
  1546. },
  1547. {
  1548. "location": {
  1549. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/fmorphgen.1.c"
  1550. },
  1551. "roles": [
  1552. "analysisTarget"
  1553. ],
  1554. "hashes": {
  1555. "md5": "1420b32f53bc6448bc82d942625ede55"
  1556. }
  1557. },
  1558. {
  1559. "location": {
  1560. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/fmorphauto.c"
  1561. },
  1562. "roles": [
  1563. "analysisTarget",
  1564. "resultFile"
  1565. ],
  1566. "hashes": {
  1567. "md5": "4960763af570d20b74f0b86ca5b79e17"
  1568. }
  1569. },
  1570. {
  1571. "location": {
  1572. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/fhmtgenlow.1.c"
  1573. },
  1574. "roles": [
  1575. "analysisTarget"
  1576. ],
  1577. "hashes": {
  1578. "md5": "580542b03b1dc496eb55441227c01c4d"
  1579. }
  1580. },
  1581. {
  1582. "location": {
  1583. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/fhmtauto.c"
  1584. },
  1585. "roles": [
  1586. "analysisTarget",
  1587. "resultFile"
  1588. ],
  1589. "hashes": {
  1590. "md5": "407f110417e1da69577f401016c308fa"
  1591. }
  1592. },
  1593. {
  1594. "location": {
  1595. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/enhance.c"
  1596. },
  1597. "roles": [
  1598. "analysisTarget"
  1599. ],
  1600. "hashes": {
  1601. "md5": "1fad11e14f7a7def3488fee226869f47"
  1602. }
  1603. },
  1604. {
  1605. "location": {
  1606. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/encoding.c"
  1607. },
  1608. "roles": [
  1609. "analysisTarget"
  1610. ],
  1611. "hashes": {
  1612. "md5": "663891ec7f132072632069f144467438"
  1613. }
  1614. },
  1615. {
  1616. "location": {
  1617. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/edge.c"
  1618. },
  1619. "roles": [
  1620. "analysisTarget"
  1621. ],
  1622. "hashes": {
  1623. "md5": "16a6b93b118ca74db85d082d2b5dbc30"
  1624. }
  1625. },
  1626. {
  1627. "location": {
  1628. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dwacomblow.2.c"
  1629. },
  1630. "roles": [
  1631. "analysisTarget"
  1632. ],
  1633. "hashes": {
  1634. "md5": "0788c556bc256df2d62891852f16e66e"
  1635. }
  1636. },
  1637. {
  1638. "location": {
  1639. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dwacomb.2.c"
  1640. },
  1641. "roles": [
  1642. "analysisTarget"
  1643. ],
  1644. "hashes": {
  1645. "md5": "ec998985a6538576f25814e7a54b6bc1"
  1646. }
  1647. },
  1648. {
  1649. "location": {
  1650. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dnahash.c"
  1651. },
  1652. "roles": [
  1653. "analysisTarget"
  1654. ],
  1655. "hashes": {
  1656. "md5": "a104970312798bb28670ec4b6f1306e5"
  1657. }
  1658. },
  1659. {
  1660. "location": {
  1661. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dnafunc1.c"
  1662. },
  1663. "roles": [
  1664. "analysisTarget"
  1665. ],
  1666. "hashes": {
  1667. "md5": "63832a12bd0d51e38cb8fe26df8036ad"
  1668. }
  1669. },
  1670. {
  1671. "location": {
  1672. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dnabasic.c"
  1673. },
  1674. "roles": [
  1675. "analysisTarget"
  1676. ],
  1677. "hashes": {
  1678. "md5": "2e8bddfb98a62a2819700b70e3af28da"
  1679. }
  1680. },
  1681. {
  1682. "location": {
  1683. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dewarp4.c"
  1684. },
  1685. "roles": [
  1686. "analysisTarget"
  1687. ],
  1688. "hashes": {
  1689. "md5": "2e5e5727028744821d98f4088779de2a"
  1690. }
  1691. },
  1692. {
  1693. "location": {
  1694. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/dewarp3.c"
  1695. },
  1696. "roles": [
  1697. "analysisTarget"
  1698. ],
  1699. "hashes": {
  1700. "md5": "d509becfa83c46484ab01c6acedf06d4"
  1701. }
  1702. },
  1703. {
  1704. "location": {
  1705. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/dewarp2.c"
  1706. },
  1707. "roles": [
  1708. "analysisTarget",
  1709. "resultFile"
  1710. ],
  1711. "hashes": {
  1712. "md5": "cfd9a80722d868d9374f4813abab8e96"
  1713. }
  1714. },
  1715. {
  1716. "location": {
  1717. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/dewarp1.c"
  1718. },
  1719. "roles": [
  1720. "analysisTarget",
  1721. "resultFile"
  1722. ],
  1723. "hashes": {
  1724. "md5": "674d27d0b21e55fd2d33eeb0ef2b67c3"
  1725. }
  1726. },
  1727. {
  1728. "location": {
  1729. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/correlscore.c"
  1730. },
  1731. "roles": [
  1732. "analysisTarget",
  1733. "resultFile"
  1734. ],
  1735. "hashes": {
  1736. "md5": "4c7a50e236fdc4014526b6de1876117e"
  1737. }
  1738. },
  1739. {
  1740. "location": {
  1741. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/convolve.c"
  1742. },
  1743. "roles": [
  1744. "analysisTarget"
  1745. ],
  1746. "hashes": {
  1747. "md5": "3a0ad6a7c7f1268eb3616f2c805cdd1f"
  1748. }
  1749. },
  1750. {
  1751. "location": {
  1752. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/morphdwa.c"
  1753. },
  1754. "roles": [
  1755. "analysisTarget",
  1756. "resultFile"
  1757. ],
  1758. "hashes": {
  1759. "md5": "3e4d53bbbcc92987244a35b83b63ab42"
  1760. }
  1761. },
  1762. {
  1763. "location": {
  1764. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/morphapp.c"
  1765. },
  1766. "roles": [
  1767. "analysisTarget"
  1768. ],
  1769. "hashes": {
  1770. "md5": "eb8705290a96113560ce5f90dd88b5ce"
  1771. }
  1772. },
  1773. {
  1774. "location": {
  1775. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/morph.c"
  1776. },
  1777. "roles": [
  1778. "analysisTarget",
  1779. "resultFile"
  1780. ],
  1781. "hashes": {
  1782. "md5": "69ef8f87618f68b78657248e445f7f09"
  1783. }
  1784. },
  1785. {
  1786. "location": {
  1787. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/map.c"
  1788. },
  1789. "roles": [
  1790. "analysisTarget"
  1791. ],
  1792. "hashes": {
  1793. "md5": "91fe339284bec6b1ee444f7214833ee9"
  1794. }
  1795. },
  1796. {
  1797. "location": {
  1798. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/list.c"
  1799. },
  1800. "roles": [
  1801. "analysisTarget"
  1802. ],
  1803. "hashes": {
  1804. "md5": "b478579934145f8267478dbf99474df2"
  1805. }
  1806. },
  1807. {
  1808. "location": {
  1809. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/libversions.c"
  1810. },
  1811. "roles": [
  1812. "analysisTarget"
  1813. ],
  1814. "hashes": {
  1815. "md5": "cb12910c25dc7195c3ba4303f814b006"
  1816. }
  1817. },
  1818. {
  1819. "location": {
  1820. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/kernel.c"
  1821. },
  1822. "roles": [
  1823. "analysisTarget"
  1824. ],
  1825. "hashes": {
  1826. "md5": "3129b905f075abf05742d64d347b3c61"
  1827. }
  1828. },
  1829. {
  1830. "location": {
  1831. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jpegiostub.c"
  1832. },
  1833. "roles": [
  1834. "analysisTarget"
  1835. ],
  1836. "hashes": {
  1837. "md5": "4b13eb283323dc6332edae19fd54887a"
  1838. }
  1839. },
  1840. {
  1841. "location": {
  1842. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jp2kiostub.c"
  1843. },
  1844. "roles": [
  1845. "analysisTarget"
  1846. ],
  1847. "hashes": {
  1848. "md5": "d73421f4dd5a240effeab0b7098d9e53"
  1849. }
  1850. },
  1851. {
  1852. "location": {
  1853. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jp2kheaderstub.c"
  1854. },
  1855. "roles": [
  1856. "analysisTarget"
  1857. ],
  1858. "hashes": {
  1859. "md5": "0a1cc9e8c5f3d046a2a70703aeb6eff6"
  1860. }
  1861. },
  1862. {
  1863. "location": {
  1864. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/jp2kheader.c"
  1865. },
  1866. "roles": [
  1867. "analysisTarget"
  1868. ],
  1869. "hashes": {
  1870. "md5": "31483ab4eab5d6a17be23b35406183ec"
  1871. }
  1872. },
  1873. {
  1874. "location": {
  1875. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/jbclass.c"
  1876. },
  1877. "roles": [
  1878. "analysisTarget",
  1879. "resultFile"
  1880. ],
  1881. "hashes": {
  1882. "md5": "39faac93361acf87962e489b12297a8f"
  1883. }
  1884. },
  1885. {
  1886. "location": {
  1887. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/heap.c"
  1888. },
  1889. "roles": [
  1890. "analysisTarget"
  1891. ],
  1892. "hashes": {
  1893. "md5": "9eae6bc65de71970e4bb1436e697fa78"
  1894. }
  1895. },
  1896. {
  1897. "location": {
  1898. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/hashmap.c"
  1899. },
  1900. "roles": [
  1901. "analysisTarget"
  1902. ],
  1903. "hashes": {
  1904. "md5": "4bd0c129d0c3017ecf74c97f300ff6a4"
  1905. }
  1906. },
  1907. {
  1908. "location": {
  1909. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/grayquant.c"
  1910. },
  1911. "roles": [
  1912. "analysisTarget"
  1913. ],
  1914. "hashes": {
  1915. "md5": "675b975e5cf01bb67bb9bfd141c95112"
  1916. }
  1917. },
  1918. {
  1919. "location": {
  1920. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/graymorph.c"
  1921. },
  1922. "roles": [
  1923. "analysisTarget"
  1924. ],
  1925. "hashes": {
  1926. "md5": "9ff2cc571cafe6e3fb33ec3d558ffd77"
  1927. }
  1928. },
  1929. {
  1930. "location": {
  1931. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/graphics.c"
  1932. },
  1933. "roles": [
  1934. "analysisTarget",
  1935. "resultFile"
  1936. ],
  1937. "hashes": {
  1938. "md5": "b05809f207b552b8cc275685e53bb0f0"
  1939. }
  1940. },
  1941. {
  1942. "location": {
  1943. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/gplot.c"
  1944. },
  1945. "roles": [
  1946. "analysisTarget"
  1947. ],
  1948. "hashes": {
  1949. "md5": "75946f43c0e93cd361e03ef6e001a56c"
  1950. }
  1951. },
  1952. {
  1953. "location": {
  1954. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/gifiostub.c"
  1955. },
  1956. "roles": [
  1957. "analysisTarget"
  1958. ],
  1959. "hashes": {
  1960. "md5": "4d08ccc55f0f2be4462075c3293604da"
  1961. }
  1962. },
  1963. {
  1964. "location": {
  1965. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/fpix2.c"
  1966. },
  1967. "roles": [
  1968. "analysisTarget"
  1969. ],
  1970. "hashes": {
  1971. "md5": "1c2d45e72c879edecb32c0592a5f5791"
  1972. }
  1973. },
  1974. {
  1975. "location": {
  1976. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pixafunc1.c"
  1977. },
  1978. "roles": [
  1979. "analysisTarget"
  1980. ],
  1981. "hashes": {
  1982. "md5": "4d52abb3948289851f749c429ed3192e"
  1983. }
  1984. },
  1985. {
  1986. "location": {
  1987. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pixacc.c"
  1988. },
  1989. "roles": [
  1990. "analysisTarget"
  1991. ],
  1992. "hashes": {
  1993. "md5": "216ab57597611bb9aeb36b806a144645"
  1994. }
  1995. },
  1996. {
  1997. "location": {
  1998. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pixabasic.c"
  1999. },
  2000. "roles": [
  2001. "analysisTarget"
  2002. ],
  2003. "hashes": {
  2004. "md5": "58a0ae2bad52778df9263722467a7c44"
  2005. }
  2006. },
  2007. {
  2008. "location": {
  2009. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix5.c"
  2010. },
  2011. "roles": [
  2012. "analysisTarget"
  2013. ],
  2014. "hashes": {
  2015. "md5": "dbaac99b65da51175877c1c29a30365e"
  2016. }
  2017. },
  2018. {
  2019. "location": {
  2020. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix4.c"
  2021. },
  2022. "roles": [
  2023. "analysisTarget"
  2024. ],
  2025. "hashes": {
  2026. "md5": "81c924dd928d7393fe53ff31b97e9ea0"
  2027. }
  2028. },
  2029. {
  2030. "location": {
  2031. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix3.c"
  2032. },
  2033. "roles": [
  2034. "analysisTarget"
  2035. ],
  2036. "hashes": {
  2037. "md5": "c01693b80af9e66439a7627da93496f8"
  2038. }
  2039. },
  2040. {
  2041. "location": {
  2042. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix2.c"
  2043. },
  2044. "roles": [
  2045. "analysisTarget"
  2046. ],
  2047. "hashes": {
  2048. "md5": "46735917afea0b54616f9a66e3690bc3"
  2049. }
  2050. },
  2051. {
  2052. "location": {
  2053. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pix1.c"
  2054. },
  2055. "roles": [
  2056. "analysisTarget"
  2057. ],
  2058. "hashes": {
  2059. "md5": "0676ad9f55879ba797211bacbc8abf29"
  2060. }
  2061. },
  2062. {
  2063. "location": {
  2064. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pdfio2stub.c"
  2065. },
  2066. "roles": [
  2067. "analysisTarget"
  2068. ],
  2069. "hashes": {
  2070. "md5": "e76c0edba8cc9774528c9298e480aab9"
  2071. }
  2072. },
  2073. {
  2074. "location": {
  2075. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pdfio2.c"
  2076. },
  2077. "roles": [
  2078. "analysisTarget",
  2079. "resultFile"
  2080. ],
  2081. "hashes": {
  2082. "md5": "48ae9eaaa0a93804838828f3c0615d2f"
  2083. }
  2084. },
  2085. {
  2086. "location": {
  2087. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pdfio1stub.c"
  2088. },
  2089. "roles": [
  2090. "analysisTarget"
  2091. ],
  2092. "hashes": {
  2093. "md5": "1bd2142521ee28d52748796a74159c74"
  2094. }
  2095. },
  2096. {
  2097. "location": {
  2098. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pdfio1.c"
  2099. },
  2100. "roles": [
  2101. "analysisTarget"
  2102. ],
  2103. "hashes": {
  2104. "md5": "4785b305bc75cddc076d099d0572a485"
  2105. }
  2106. },
  2107. {
  2108. "location": {
  2109. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/partition.c"
  2110. },
  2111. "roles": [
  2112. "analysisTarget"
  2113. ],
  2114. "hashes": {
  2115. "md5": "b22988b9e3f810313b20099498260757"
  2116. }
  2117. },
  2118. {
  2119. "location": {
  2120. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/partify.c"
  2121. },
  2122. "roles": [
  2123. "analysisTarget",
  2124. "resultFile"
  2125. ],
  2126. "hashes": {
  2127. "md5": "8223809e766d8a78632bfd68bc334e19"
  2128. }
  2129. },
  2130. {
  2131. "location": {
  2132. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/paintcmap.c"
  2133. },
  2134. "roles": [
  2135. "analysisTarget"
  2136. ],
  2137. "hashes": {
  2138. "md5": "1c6b18af964acf8970b91b9b128fae6b"
  2139. }
  2140. },
  2141. {
  2142. "location": {
  2143. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pageseg.c"
  2144. },
  2145. "roles": [
  2146. "analysisTarget"
  2147. ],
  2148. "hashes": {
  2149. "md5": "e50986593a9ed50e2da7387971dc6a46"
  2150. }
  2151. },
  2152. {
  2153. "location": {
  2154. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/numafunc2.c"
  2155. },
  2156. "roles": [
  2157. "analysisTarget"
  2158. ],
  2159. "hashes": {
  2160. "md5": "bcd70af9e7c601108c05686f4635d624"
  2161. }
  2162. },
  2163. {
  2164. "location": {
  2165. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/numafunc1.c"
  2166. },
  2167. "roles": [
  2168. "analysisTarget",
  2169. "resultFile"
  2170. ],
  2171. "hashes": {
  2172. "md5": "93365a9f528912c5c790d324964a9ff0"
  2173. }
  2174. },
  2175. {
  2176. "location": {
  2177. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/numabasic.c"
  2178. },
  2179. "roles": [
  2180. "analysisTarget"
  2181. ],
  2182. "hashes": {
  2183. "md5": "e3d4e7d2e9aae48518189a9195ab2f4a"
  2184. }
  2185. },
  2186. {
  2187. "location": {
  2188. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/morphseq.c"
  2189. },
  2190. "roles": [
  2191. "analysisTarget",
  2192. "resultFile"
  2193. ],
  2194. "hashes": {
  2195. "md5": "504d103e221fc15f4ce693e17fba4ac2"
  2196. }
  2197. },
  2198. {
  2199. "location": {
  2200. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/quadtree.c"
  2201. },
  2202. "roles": [
  2203. "analysisTarget",
  2204. "resultFile"
  2205. ],
  2206. "hashes": {
  2207. "md5": "4497d88041544aab921892de66df843d"
  2208. }
  2209. },
  2210. {
  2211. "location": {
  2212. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ptra.c"
  2213. },
  2214. "roles": [
  2215. "analysisTarget"
  2216. ],
  2217. "hashes": {
  2218. "md5": "82221557e81d38fbc5c248be6d183dad"
  2219. }
  2220. },
  2221. {
  2222. "location": {
  2223. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ptafunc2.c"
  2224. },
  2225. "roles": [
  2226. "analysisTarget"
  2227. ],
  2228. "hashes": {
  2229. "md5": "4efd7f1b43359b6d7e3c0be2fc34345e"
  2230. }
  2231. },
  2232. {
  2233. "location": {
  2234. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/ptafunc1.c"
  2235. },
  2236. "roles": [
  2237. "analysisTarget"
  2238. ],
  2239. "hashes": {
  2240. "md5": "509229ef0daffc3bfec6dd6d360659e3"
  2241. }
  2242. },
  2243. {
  2244. "location": {
  2245. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/ptabasic.c"
  2246. },
  2247. "roles": [
  2248. "analysisTarget",
  2249. "resultFile"
  2250. ],
  2251. "hashes": {
  2252. "md5": "f9fb63a9257bfd31540384aa340f8631"
  2253. }
  2254. },
  2255. {
  2256. "location": {
  2257. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/psio2stub.c"
  2258. },
  2259. "roles": [
  2260. "analysisTarget"
  2261. ],
  2262. "hashes": {
  2263. "md5": "330e57d34a37694d0b966a0fb66eae56"
  2264. }
  2265. },
  2266. {
  2267. "location": {
  2268. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/psio2.c"
  2269. },
  2270. "roles": [
  2271. "analysisTarget"
  2272. ],
  2273. "hashes": {
  2274. "md5": "7196b3104cde0d2f4ce0384ab17d4b1c"
  2275. }
  2276. },
  2277. {
  2278. "location": {
  2279. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/psio1stub.c"
  2280. },
  2281. "roles": [
  2282. "analysisTarget"
  2283. ],
  2284. "hashes": {
  2285. "md5": "3fff9ca2d02ae4176c033b5722bc3dd9"
  2286. }
  2287. },
  2288. {
  2289. "location": {
  2290. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/psio1.c"
  2291. },
  2292. "roles": [
  2293. "analysisTarget"
  2294. ],
  2295. "hashes": {
  2296. "md5": "0d5ba59e14a236d6a6c1cc952c5f11b8"
  2297. }
  2298. },
  2299. {
  2300. "location": {
  2301. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/projective.c"
  2302. },
  2303. "roles": [
  2304. "analysisTarget"
  2305. ],
  2306. "hashes": {
  2307. "md5": "8a6e2ebac0e637ebc736b30105f2a6f7"
  2308. }
  2309. },
  2310. {
  2311. "location": {
  2312. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pnmiostub.c"
  2313. },
  2314. "roles": [
  2315. "analysisTarget"
  2316. ],
  2317. "hashes": {
  2318. "md5": "1f552e08dc5c3cf210407dfd298348b1"
  2319. }
  2320. },
  2321. {
  2322. "location": {
  2323. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pnmio.c"
  2324. },
  2325. "roles": [
  2326. "analysisTarget"
  2327. ],
  2328. "hashes": {
  2329. "md5": "6f642f160ae4cfb9d3b978fb12b22a6d"
  2330. }
  2331. },
  2332. {
  2333. "location": {
  2334. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pngiostub.c"
  2335. },
  2336. "roles": [
  2337. "analysisTarget"
  2338. ],
  2339. "hashes": {
  2340. "md5": "4a353a2fb95b8296e0e28b27a6c3b62c"
  2341. }
  2342. },
  2343. {
  2344. "location": {
  2345. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pixtiling.c"
  2346. },
  2347. "roles": [
  2348. "analysisTarget"
  2349. ],
  2350. "hashes": {
  2351. "md5": "b3ef8d274431c4bd171d079443daa92a"
  2352. }
  2353. },
  2354. {
  2355. "location": {
  2356. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pixlabel.c"
  2357. },
  2358. "roles": [
  2359. "analysisTarget"
  2360. ],
  2361. "hashes": {
  2362. "md5": "63c33e6da783cdad108ef9b3c48aba27"
  2363. }
  2364. },
  2365. {
  2366. "location": {
  2367. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pixconv.c"
  2368. },
  2369. "roles": [
  2370. "analysisTarget"
  2371. ],
  2372. "hashes": {
  2373. "md5": "90c5b8f7fd5625d3cc4542453b556eaf"
  2374. }
  2375. },
  2376. {
  2377. "location": {
  2378. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pixcomp.c"
  2379. },
  2380. "roles": [
  2381. "analysisTarget"
  2382. ],
  2383. "hashes": {
  2384. "md5": "fa30a63a4e771df43aa4075b7bc4a5ef"
  2385. }
  2386. },
  2387. {
  2388. "location": {
  2389. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pixarith.c"
  2390. },
  2391. "roles": [
  2392. "analysisTarget"
  2393. ],
  2394. "hashes": {
  2395. "md5": "38a7a074c58727a9c1bd2e1730c2bc4e"
  2396. }
  2397. },
  2398. {
  2399. "location": {
  2400. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/pixalloc.c"
  2401. },
  2402. "roles": [
  2403. "analysisTarget"
  2404. ],
  2405. "hashes": {
  2406. "md5": "1a3e5449b0a7c3c2b6b9505644542e1d"
  2407. }
  2408. },
  2409. {
  2410. "location": {
  2411. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/pixafunc2.c"
  2412. },
  2413. "roles": [
  2414. "analysisTarget",
  2415. "resultFile"
  2416. ],
  2417. "hashes": {
  2418. "md5": "5e4e629c539211654f61070a07d8f8bf"
  2419. }
  2420. },
  2421. {
  2422. "location": {
  2423. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/selgen.c"
  2424. },
  2425. "roles": [
  2426. "analysisTarget",
  2427. "resultFile"
  2428. ],
  2429. "hashes": {
  2430. "md5": "ec343c8b1c06a28c06afa8de0144e88e"
  2431. }
  2432. },
  2433. {
  2434. "location": {
  2435. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/sel2.c"
  2436. },
  2437. "roles": [
  2438. "analysisTarget"
  2439. ],
  2440. "hashes": {
  2441. "md5": "b6715c55cca06b28fefadd5a0b83a09b"
  2442. }
  2443. },
  2444. {
  2445. "location": {
  2446. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/sel1.c"
  2447. },
  2448. "roles": [
  2449. "analysisTarget",
  2450. "resultFile"
  2451. ],
  2452. "hashes": {
  2453. "md5": "e3d38a8e061933f3a4584b17656d7c16"
  2454. }
  2455. },
  2456. {
  2457. "location": {
  2458. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/seedfill.c"
  2459. },
  2460. "roles": [
  2461. "analysisTarget"
  2462. ],
  2463. "hashes": {
  2464. "md5": "4f951c75d0a5f7412b1dc7d6aed39850"
  2465. }
  2466. },
  2467. {
  2468. "location": {
  2469. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/scale2.c"
  2470. },
  2471. "roles": [
  2472. "analysisTarget"
  2473. ],
  2474. "hashes": {
  2475. "md5": "06f9d9074dace5a245a0d11d8feb054e"
  2476. }
  2477. },
  2478. {
  2479. "location": {
  2480. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/scale1.c"
  2481. },
  2482. "roles": [
  2483. "analysisTarget"
  2484. ],
  2485. "hashes": {
  2486. "md5": "2f39b5456233140792d511576efb8d29"
  2487. }
  2488. },
  2489. {
  2490. "location": {
  2491. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/sarray2.c"
  2492. },
  2493. "roles": [
  2494. "analysisTarget"
  2495. ],
  2496. "hashes": {
  2497. "md5": "6ac8cdc8f4a4162ccee0b1c7d05165f2"
  2498. }
  2499. },
  2500. {
  2501. "location": {
  2502. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/sarray1.c"
  2503. },
  2504. "roles": [
  2505. "analysisTarget",
  2506. "resultFile"
  2507. ],
  2508. "hashes": {
  2509. "md5": "7ec8ece7860ceb9a1aeaf8a0aed39920"
  2510. }
  2511. },
  2512. {
  2513. "location": {
  2514. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/runlength.c"
  2515. },
  2516. "roles": [
  2517. "analysisTarget"
  2518. ],
  2519. "hashes": {
  2520. "md5": "d921c8039082faa76c64881b8c336eec"
  2521. }
  2522. },
  2523. {
  2524. "location": {
  2525. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/rotateshear.c"
  2526. },
  2527. "roles": [
  2528. "analysisTarget"
  2529. ],
  2530. "hashes": {
  2531. "md5": "fa94af9266d9d5a4c4623f42849cb2ce"
  2532. }
  2533. },
  2534. {
  2535. "location": {
  2536. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/rotateorth.c"
  2537. },
  2538. "roles": [
  2539. "analysisTarget"
  2540. ],
  2541. "hashes": {
  2542. "md5": "0925378fd888e1a3d1d1b6633850a00a"
  2543. }
  2544. },
  2545. {
  2546. "location": {
  2547. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/rotateam.c"
  2548. },
  2549. "roles": [
  2550. "analysisTarget"
  2551. ],
  2552. "hashes": {
  2553. "md5": "899fe0bea0b458c09845a54de74b2912"
  2554. }
  2555. },
  2556. {
  2557. "location": {
  2558. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/rotate.c"
  2559. },
  2560. "roles": [
  2561. "analysisTarget"
  2562. ],
  2563. "hashes": {
  2564. "md5": "aae9232d0d5f74399400429e49b23d60"
  2565. }
  2566. },
  2567. {
  2568. "location": {
  2569. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/roplow.c"
  2570. },
  2571. "roles": [
  2572. "analysisTarget",
  2573. "resultFile"
  2574. ],
  2575. "hashes": {
  2576. "md5": "a4c98c96a27ec6e021d5c90aee611e2a"
  2577. }
  2578. },
  2579. {
  2580. "location": {
  2581. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/rop.c"
  2582. },
  2583. "roles": [
  2584. "analysisTarget"
  2585. ],
  2586. "hashes": {
  2587. "md5": "bff4c44fd25d8f31517259d3055bf5aa"
  2588. }
  2589. },
  2590. {
  2591. "location": {
  2592. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/regutils.c"
  2593. },
  2594. "roles": [
  2595. "analysisTarget"
  2596. ],
  2597. "hashes": {
  2598. "md5": "8fef45f125a1a9befc9a848c55cbcd64"
  2599. }
  2600. },
  2601. {
  2602. "location": {
  2603. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/readfile.c"
  2604. },
  2605. "roles": [
  2606. "analysisTarget"
  2607. ],
  2608. "hashes": {
  2609. "md5": "3d2e9c5280ce6079fb6a686632bd424e"
  2610. }
  2611. },
  2612. {
  2613. "location": {
  2614. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/rbtree.c"
  2615. },
  2616. "roles": [
  2617. "analysisTarget"
  2618. ],
  2619. "hashes": {
  2620. "md5": "5ffef0f5c2a5ff6a9421713176cdd025"
  2621. }
  2622. },
  2623. {
  2624. "location": {
  2625. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/rank.c"
  2626. },
  2627. "roles": [
  2628. "analysisTarget"
  2629. ],
  2630. "hashes": {
  2631. "md5": "dfc790deb43f96f14e0fa3c06449dcd1"
  2632. }
  2633. },
  2634. {
  2635. "location": {
  2636. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/queue.c"
  2637. },
  2638. "roles": [
  2639. "analysisTarget"
  2640. ],
  2641. "hashes": {
  2642. "md5": "b3ad98bafd80cb3a9aa994209fa81778"
  2643. }
  2644. },
  2645. {
  2646. "location": {
  2647. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/zlibmemstub.c"
  2648. },
  2649. "roles": [
  2650. "analysisTarget"
  2651. ],
  2652. "hashes": {
  2653. "md5": "98e3c7c59eac70a4952fba417ad51300"
  2654. }
  2655. },
  2656. {
  2657. "location": {
  2658. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/zlibmem.c"
  2659. },
  2660. "roles": [
  2661. "analysisTarget"
  2662. ],
  2663. "hashes": {
  2664. "md5": "fd897883d2ea06f3cbd90ef883851f8f"
  2665. }
  2666. },
  2667. {
  2668. "location": {
  2669. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/writefile.c"
  2670. },
  2671. "roles": [
  2672. "analysisTarget",
  2673. "resultFile"
  2674. ],
  2675. "hashes": {
  2676. "md5": "e07802cbd79def9bdd270846251f3ddd"
  2677. }
  2678. },
  2679. {
  2680. "location": {
  2681. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/webpiostub.c"
  2682. },
  2683. "roles": [
  2684. "analysisTarget"
  2685. ],
  2686. "hashes": {
  2687. "md5": "151e6742f6b43f0d1410b44d47dc2f55"
  2688. }
  2689. },
  2690. {
  2691. "location": {
  2692. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/warper.c"
  2693. },
  2694. "roles": [
  2695. "analysisTarget"
  2696. ],
  2697. "hashes": {
  2698. "md5": "00e4f18bbffa7a84295e24cda3bd2281"
  2699. }
  2700. },
  2701. {
  2702. "location": {
  2703. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/leptonica/src/utils2.c"
  2704. },
  2705. "roles": [
  2706. "analysisTarget"
  2707. ],
  2708. "hashes": {
  2709. "md5": "593a6a69daae9d7d9d29ad50f486aa63"
  2710. }
  2711. },
  2712. {
  2713. "location": {
  2714. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/leptonica/src/utils1.c"
  2715. },
  2716. "roles": [
  2717. "analysisTarget",
  2718. "resultFile"
  2719. ],
  2720. "hashes": {
  2721. "md5": "72f1099a67c7cc16d69844098e138a90"
  2722. }
  2723. }
  2724. ]
  2725. }
  2726. ]
  2727. }