hb-buffer-verify.nativecodeanalysis.sarif 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205
  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": "C26439",
  9. "message": {
  10. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  11. },
  12. "locations": [
  13. {
  14. "physicalLocation": {
  15. "artifactLocation": {
  16. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-map.hh"
  17. },
  18. "region": {
  19. "startLine": 445,
  20. "startColumn": 3,
  21. "endLine": 445,
  22. "endColumn": 3
  23. }
  24. },
  25. "logicalLocations": [
  26. {
  27. "decoratedName": "??0hb_map_t@@QEAA@$$QEAU0@@Z",
  28. "kind": "function"
  29. }
  30. ]
  31. }
  32. ]
  33. },
  34. {
  35. "ruleId": "C26439",
  36. "message": {
  37. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  38. },
  39. "locations": [
  40. {
  41. "physicalLocation": {
  42. "artifactLocation": {
  43. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-map.hh"
  44. },
  45. "region": {
  46. "startLine": 47,
  47. "startColumn": 3,
  48. "endLine": 47,
  49. "endColumn": 3
  50. }
  51. },
  52. "logicalLocations": [
  53. {
  54. "decoratedName": "??0?$hb_hashmap_t@II$00@@QEAA@$$QEAU0@@Z",
  55. "kind": "function"
  56. }
  57. ]
  58. }
  59. ]
  60. }
  61. ],
  62. "tool": {
  63. "driver": {
  64. "name": "PREfast",
  65. "fullName": "PREfast Code Analysis",
  66. "version": "14.29.30159.0",
  67. "informationUri": "https://aka.ms/cpp/ca"
  68. }
  69. },
  70. "invocations": [
  71. {
  72. "commandLine": "D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\bin\\HostX64\\x64\\c1xx.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_256d1c28ast -typedil -f ..\\..\\thirdparty\\harfbuzz\\src\\hb-buffer-verify.cc -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 -GR -D_CPPRTTI -I C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\thirdparty\\freetype\\include -nologo -W 3 -diagnostics:column -GF -Og -Ot -Oy -Oi -ltcg -DCODE_ANALYSIS -DWIN64 -DNDEBUG -D_CRT_SECURE_NO_WARNINGS -DHB_NO_MT -Dhb_malloc_impl=fz_hb_malloc -Dhb_calloc_impl=fz_hb_calloc -Dhb_realloc_impl=fz_hb_realloc -Dhb_free_impl=fz_hb_free -DHAVE_FREETYPE -D_MBCS -EHs -D_CPPUNWIND -EHc -MD -D_MT -D_DLL -GS -D_M_FP_PRECISE -Zc:wchar_t -Zc:forScope -Fox64\\Release\\libharfbuzz\\hb-buffer-verify.obj -Fdx64\\Release\\libharfbuzz.pdb -external:W 3 -Gd -wd 4018 -wd 4244 -wd 4146 -wd 4267 -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 D:\\Programme\\VS2022\\VC\\Auxiliary\\VS\\UnitTest\\include -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 D:\\Programme\\VS2022\\VC\\Auxiliary\\VS\\UnitTest\\include -I D:\\Programme\\VS2022\\VC\\Auxiliary\\VS\\UnitTest\\include -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",
  73. "executionSuccessful": true
  74. }
  75. ],
  76. "artifacts": [
  77. {
  78. "location": {
  79. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-map.hh"
  80. },
  81. "roles": [
  82. "resultFile"
  83. ],
  84. "hashes": {
  85. "md5": "ff5a8277d5fcb14cbcc2b5e06feda4f6"
  86. }
  87. },
  88. {
  89. "location": {
  90. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-set.hh"
  91. },
  92. "roles": [
  93. "resultFile"
  94. ],
  95. "hashes": {
  96. "md5": "328ea1e7c279bd128f8d02e53b3c69b8"
  97. }
  98. },
  99. {
  100. "location": {
  101. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-set-invertible.hh"
  102. },
  103. "roles": [
  104. "resultFile"
  105. ],
  106. "hashes": {
  107. "md5": "b2a484c8afaf6a6642f15c165c53e321"
  108. }
  109. },
  110. {
  111. "location": {
  112. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-set.hh"
  113. },
  114. "roles": [
  115. "resultFile"
  116. ],
  117. "hashes": {
  118. "md5": "6071d676b81588f3cab4f0cb54b35ba4"
  119. }
  120. },
  121. {
  122. "location": {
  123. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  124. },
  125. "roles": [
  126. "resultFile"
  127. ],
  128. "hashes": {
  129. "md5": "8069474abf527e6766a557ec56acd85b"
  130. }
  131. },
  132. {
  133. "location": {
  134. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-map.cc"
  135. },
  136. "roles": [
  137. "analysisTarget",
  138. "resultFile"
  139. ],
  140. "hashes": {
  141. "md5": "e32990aced6a7aca7a5d4d13eeecea21"
  142. }
  143. },
  144. {
  145. "location": {
  146. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-vector.hh"
  147. },
  148. "roles": [
  149. "resultFile"
  150. ],
  151. "hashes": {
  152. "md5": "c61e323648e53704f465c3fee7b18ce4"
  153. }
  154. },
  155. {
  156. "location": {
  157. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  158. },
  159. "roles": [
  160. "resultFile"
  161. ],
  162. "hashes": {
  163. "md5": "556630f4a504776f82f927c0a7f1de43"
  164. }
  165. },
  166. {
  167. "location": {
  168. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb.hh"
  169. },
  170. "hashes": {
  171. "md5": "9e83818e264776a5a039633ad0af7e40"
  172. }
  173. },
  174. {
  175. "location": {
  176. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-config.hh"
  177. },
  178. "hashes": {
  179. "md5": "72e9b9ac69b98f07a023615f6a20fa88"
  180. }
  181. },
  182. {
  183. "location": {
  184. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb.h"
  185. },
  186. "hashes": {
  187. "md5": "a71dddd9ceffbe9ad7735e965fa31fa4"
  188. }
  189. },
  190. {
  191. "location": {
  192. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-blob.h"
  193. },
  194. "hashes": {
  195. "md5": "150c53768a43873da08b8fe485f31b11"
  196. }
  197. },
  198. {
  199. "location": {
  200. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-common.h"
  201. },
  202. "hashes": {
  203. "md5": "6d34414d1aa6c8312eb518eb5e089698"
  204. }
  205. },
  206. {
  207. "location": {
  208. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-rename.h"
  209. },
  210. "hashes": {
  211. "md5": "cdc9086001bbf18983525796b95a3a32"
  212. }
  213. },
  214. {
  215. "location": {
  216. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-buffer.h"
  217. },
  218. "hashes": {
  219. "md5": "280ee9b0cc5e21dfb997fe5e1a4fd92d"
  220. }
  221. },
  222. {
  223. "location": {
  224. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-unicode.h"
  225. },
  226. "hashes": {
  227. "md5": "7e94d2c5e3e1a7af4804b15af817f5dd"
  228. }
  229. },
  230. {
  231. "location": {
  232. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-font.h"
  233. },
  234. "hashes": {
  235. "md5": "a2621e17ead0c30af0c1018708c64c34"
  236. }
  237. },
  238. {
  239. "location": {
  240. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-face.h"
  241. },
  242. "hashes": {
  243. "md5": "f55b5e142357c36cb7f2b58d24f2d88c"
  244. }
  245. },
  246. {
  247. "location": {
  248. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-set.h"
  249. },
  250. "hashes": {
  251. "md5": "20a8f4c0626c2b2d6d73e0a04cd3d017"
  252. }
  253. },
  254. {
  255. "location": {
  256. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-draw.h"
  257. },
  258. "hashes": {
  259. "md5": "917b2456c4d3228be5ff3d5aab59e884"
  260. }
  261. },
  262. {
  263. "location": {
  264. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-deprecated.h"
  265. },
  266. "hashes": {
  267. "md5": "d779af772cc5ede9ddba22cb607ab06c"
  268. }
  269. },
  270. {
  271. "location": {
  272. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-map.h"
  273. },
  274. "hashes": {
  275. "md5": "654598015cf2ffd6992e511c67d77617"
  276. }
  277. },
  278. {
  279. "location": {
  280. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-shape.h"
  281. },
  282. "hashes": {
  283. "md5": "bb4be6a7031101fd4a62ae8c7d4c5000"
  284. }
  285. },
  286. {
  287. "location": {
  288. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-shape-plan.h"
  289. },
  290. "hashes": {
  291. "md5": "e8eac4b976461e1038c585d8fceec10b"
  292. }
  293. },
  294. {
  295. "location": {
  296. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-style.h"
  297. },
  298. "hashes": {
  299. "md5": "e5060f7cbf3cdf79a1e907601c33066a"
  300. }
  301. },
  302. {
  303. "location": {
  304. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-version.h"
  305. },
  306. "hashes": {
  307. "md5": "2ce6fb47c095f534d1aaec73565e454a"
  308. }
  309. },
  310. {
  311. "location": {
  312. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot.h"
  313. },
  314. "hashes": {
  315. "md5": "88b79a72bc7fe966bb770648ea55587e"
  316. }
  317. },
  318. {
  319. "location": {
  320. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-color.h"
  321. },
  322. "hashes": {
  323. "md5": "7a60ba0967b0441b9991a0cbca31810b"
  324. }
  325. },
  326. {
  327. "location": {
  328. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-name.h"
  329. },
  330. "hashes": {
  331. "md5": "d5811ae99bfc284dc9e98ba3172b1119"
  332. }
  333. },
  334. {
  335. "location": {
  336. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-deprecated.h"
  337. },
  338. "hashes": {
  339. "md5": "7f05c4d984f2283941c955dc59be58ed"
  340. }
  341. },
  342. {
  343. "location": {
  344. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-font.h"
  345. },
  346. "hashes": {
  347. "md5": "d7ee1240d446af9d1b24937b8ebd74de"
  348. }
  349. },
  350. {
  351. "location": {
  352. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout.h"
  353. },
  354. "hashes": {
  355. "md5": "e71405022c21180bb9fe727aa758cd29"
  356. }
  357. },
  358. {
  359. "location": {
  360. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-math.h"
  361. },
  362. "hashes": {
  363. "md5": "0da4f3b18ba2317ac94ae697e7fc9a81"
  364. }
  365. },
  366. {
  367. "location": {
  368. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-meta.h"
  369. },
  370. "hashes": {
  371. "md5": "7036bc3baf74206ebefe43d2004fac13"
  372. }
  373. },
  374. {
  375. "location": {
  376. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-metrics.h"
  377. },
  378. "hashes": {
  379. "md5": "afb89348296fe25677fd13a8e1fab75c"
  380. }
  381. },
  382. {
  383. "location": {
  384. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-shape.h"
  385. },
  386. "hashes": {
  387. "md5": "9e959af0731f2bdcc3f12fc93cf6fc83"
  388. }
  389. },
  390. {
  391. "location": {
  392. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-var.h"
  393. },
  394. "hashes": {
  395. "md5": "1f00f7feb631ffad88770150180e67b2"
  396. }
  397. },
  398. {
  399. "location": {
  400. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat.h"
  401. },
  402. "hashes": {
  403. "md5": "0c8d18fc93cb1113eacb718e4ba198fe"
  404. }
  405. },
  406. {
  407. "location": {
  408. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-layout.h"
  409. },
  410. "hashes": {
  411. "md5": "4b4a1524be1b795c0704d88437c3aca3"
  412. }
  413. },
  414. {
  415. "location": {
  416. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-cplusplus.hh"
  417. },
  418. "roles": [
  419. "resultFile"
  420. ],
  421. "hashes": {
  422. "md5": "cc6ecf9b201913bfc4f25c97e91afbfa"
  423. }
  424. },
  425. {
  426. "location": {
  427. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-meta.hh"
  428. },
  429. "hashes": {
  430. "md5": "24131b8ef7b63f8257bd7f45fbeb32c6"
  431. }
  432. },
  433. {
  434. "location": {
  435. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-mutex.hh"
  436. },
  437. "hashes": {
  438. "md5": "99002e53372a94ec3f8c4ee03e753501"
  439. }
  440. },
  441. {
  442. "location": {
  443. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-number.hh"
  444. },
  445. "hashes": {
  446. "md5": "f80eb7a71558c6caeab4bf03cf3a7413"
  447. }
  448. },
  449. {
  450. "location": {
  451. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-atomic.hh"
  452. },
  453. "hashes": {
  454. "md5": "951183c1ed2181c1d42da812d09215d5"
  455. }
  456. },
  457. {
  458. "location": {
  459. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-null.hh"
  460. },
  461. "hashes": {
  462. "md5": "060426e619ef484f2b13a79544199615"
  463. }
  464. },
  465. {
  466. "location": {
  467. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-algs.hh"
  468. },
  469. "hashes": {
  470. "md5": "db4f6801f6deef0087e10e6e12315333"
  471. }
  472. },
  473. {
  474. "location": {
  475. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  476. },
  477. "roles": [
  478. "resultFile"
  479. ],
  480. "hashes": {
  481. "md5": "8b8487829b25e2959f69e16f4e9eb104"
  482. }
  483. },
  484. {
  485. "location": {
  486. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-debug.hh"
  487. },
  488. "hashes": {
  489. "md5": "e04bd31cda6612ff06cce01d05304d32"
  490. }
  491. },
  492. {
  493. "location": {
  494. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-array.hh"
  495. },
  496. "hashes": {
  497. "md5": "8e209d94f950caa65d412ee8bde3f363"
  498. }
  499. },
  500. {
  501. "location": {
  502. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-object.hh"
  503. },
  504. "hashes": {
  505. "md5": "6153e989de17517cbccbfc32f6a96c2f"
  506. }
  507. },
  508. {
  509. "location": {
  510. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-map.hh"
  511. },
  512. "hashes": {
  513. "md5": "a7844bbe78b172a6055ed833c319c1dc"
  514. }
  515. },
  516. {
  517. "location": {
  518. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  519. },
  520. "roles": [
  521. "resultFile"
  522. ],
  523. "hashes": {
  524. "md5": "353126bead1e62cae5810c1e8fccbb19"
  525. }
  526. },
  527. {
  528. "location": {
  529. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-unicode.hh"
  530. },
  531. "hashes": {
  532. "md5": "16f1d95ff99040ed89da6afca082692e"
  533. }
  534. },
  535. {
  536. "location": {
  537. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-set-digest.hh"
  538. },
  539. "hashes": {
  540. "md5": "fc2d66eec3097c40c2c9869ea2a9ffa0"
  541. }
  542. },
  543. {
  544. "location": {
  545. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-machinery.hh"
  546. },
  547. "hashes": {
  548. "md5": "73d07cdd5dab7386ffb6cc0d01a97345"
  549. }
  550. },
  551. {
  552. "location": {
  553. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-blob.hh"
  554. },
  555. "hashes": {
  556. "md5": "3c8f2b1cfb0b66349f2bd7ce23523cd3"
  557. }
  558. },
  559. {
  560. "location": {
  561. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-dispatch.hh"
  562. },
  563. "hashes": {
  564. "md5": "241177eed3ec267287217798e8d1a58d"
  565. }
  566. },
  567. {
  568. "location": {
  569. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-sanitize.hh"
  570. },
  571. "hashes": {
  572. "md5": "188b6afcc937febb86d0ccfbca27de13"
  573. }
  574. },
  575. {
  576. "location": {
  577. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-serialize.hh"
  578. },
  579. "hashes": {
  580. "md5": "177a2f10f3f39c8d62b856177bcf27e2"
  581. }
  582. },
  583. {
  584. "location": {
  585. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-pool.hh"
  586. },
  587. "hashes": {
  588. "md5": "2b8edc0ca91f650a204d58a41b08b907"
  589. }
  590. },
  591. {
  592. "location": {
  593. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-shape.hh"
  594. },
  595. "hashes": {
  596. "md5": "4bbcb40517826ccbe9c2cbf903f5ad2f"
  597. }
  598. },
  599. {
  600. "location": {
  601. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-map.hh"
  602. },
  603. "hashes": {
  604. "md5": "b21571cf9c50d022046d38338b608655"
  605. }
  606. },
  607. {
  608. "location": {
  609. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout.hh"
  610. },
  611. "hashes": {
  612. "md5": "a446739860d83b5ccca95b4f2523c6c6"
  613. }
  614. },
  615. {
  616. "location": {
  617. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-font.hh"
  618. },
  619. "roles": [
  620. "resultFile"
  621. ],
  622. "hashes": {
  623. "md5": "d44aee950fcb503187e9b13c8563875d"
  624. }
  625. },
  626. {
  627. "location": {
  628. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-face.hh"
  629. },
  630. "roles": [
  631. "resultFile"
  632. ],
  633. "hashes": {
  634. "md5": "af006f8e6b4598a6997b531d6a2bcf3a"
  635. }
  636. },
  637. {
  638. "location": {
  639. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-shaper.hh"
  640. },
  641. "roles": [
  642. "resultFile"
  643. ],
  644. "hashes": {
  645. "md5": "1e85a9a61d4c84ad83a92ca2f9dabb31"
  646. }
  647. },
  648. {
  649. "location": {
  650. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-shaper-list.hh"
  651. },
  652. "hashes": {
  653. "md5": "7b2ff6cdaf723facbc3bf755a21d0493"
  654. }
  655. },
  656. {
  657. "location": {
  658. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-shape-plan.hh"
  659. },
  660. "hashes": {
  661. "md5": "9aac62480877c6bc8123a9db028c168e"
  662. }
  663. },
  664. {
  665. "location": {
  666. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-face.hh"
  667. },
  668. "roles": [
  669. "resultFile"
  670. ],
  671. "hashes": {
  672. "md5": "263c856b357733232aec1f15d07df495"
  673. }
  674. },
  675. {
  676. "location": {
  677. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-face-table-list.hh"
  678. },
  679. "hashes": {
  680. "md5": "ec044f287821ff4092a947c833c26ec9"
  681. }
  682. },
  683. {
  684. "location": {
  685. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-open-type.hh"
  686. },
  687. "roles": [
  688. "resultFile"
  689. ],
  690. "hashes": {
  691. "md5": "4c330fba65301df988cb2939d3dffa35"
  692. }
  693. },
  694. {
  695. "location": {
  696. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-subset.hh"
  697. },
  698. "hashes": {
  699. "md5": "25c6ff571fa13a6dbf66d4ef05cb5896"
  700. }
  701. },
  702. {
  703. "location": {
  704. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-subset.h"
  705. },
  706. "hashes": {
  707. "md5": "eeee85824ec99c2c18127bd7db14f692"
  708. }
  709. },
  710. {
  711. "location": {
  712. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-subset-input.hh"
  713. },
  714. "hashes": {
  715. "md5": "f2c75216169b71f344f7adbea0941b4d"
  716. }
  717. },
  718. {
  719. "location": {
  720. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-subset-accelerator.hh"
  721. },
  722. "hashes": {
  723. "md5": "ba12ab09aee1fb822ba02eb799a10522"
  724. }
  725. },
  726. {
  727. "location": {
  728. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-multimap.hh"
  729. },
  730. "hashes": {
  731. "md5": "1fb05badd1865ed9c8eb34899de34279"
  732. }
  733. },
  734. {
  735. "location": {
  736. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-bimap.hh"
  737. },
  738. "hashes": {
  739. "md5": "3236cfed6d09c1a8b030ba667bb8b41f"
  740. }
  741. },
  742. {
  743. "location": {
  744. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/Common/Coverage.hh"
  745. },
  746. "roles": [
  747. "resultFile"
  748. ],
  749. "hashes": {
  750. "md5": "d830c78a0d4bd3f6f789d2fc96fde11d"
  751. }
  752. },
  753. {
  754. "location": {
  755. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-gsubgpos.hh"
  756. },
  757. "roles": [
  758. "resultFile"
  759. ],
  760. "hashes": {
  761. "md5": "e2ac9b05249c15a50ef91e5ab6466279"
  762. }
  763. },
  764. {
  765. "location": {
  766. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-os2-table.hh"
  767. },
  768. "roles": [
  769. "resultFile"
  770. ],
  771. "hashes": {
  772. "md5": "a4588d624a9192615a0ba6e1ff90d077"
  773. }
  774. },
  775. {
  776. "location": {
  777. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/GSUB/ReverseChainSingleSubstFormat1.hh"
  778. },
  779. "roles": [
  780. "resultFile"
  781. ],
  782. "hashes": {
  783. "md5": "f52ad3a43931b7c0fc91cc8827897691"
  784. }
  785. },
  786. {
  787. "location": {
  788. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  789. },
  790. "roles": [
  791. "resultFile"
  792. ],
  793. "hashes": {
  794. "md5": "1f2f19e20ede933ed209b3c74eb5f1cd"
  795. }
  796. },
  797. {
  798. "location": {
  799. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/GPOS/SinglePos.hh"
  800. },
  801. "roles": [
  802. "resultFile"
  803. ],
  804. "hashes": {
  805. "md5": "b8da2baf30f3c40f5a9a27e64ccb8232"
  806. }
  807. },
  808. {
  809. "location": {
  810. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-aat-layout-kerx-table.hh"
  811. },
  812. "roles": [
  813. "resultFile"
  814. ],
  815. "hashes": {
  816. "md5": "dca0a1672055b36f5ace45ab4b191589"
  817. }
  818. },
  819. {
  820. "location": {
  821. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout.cc"
  822. },
  823. "roles": [
  824. "analysisTarget"
  825. ],
  826. "hashes": {
  827. "md5": "24be1e958344bf3d9cb51cd1d647a3f9"
  828. }
  829. },
  830. {
  831. "location": {
  832. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-kern-table.hh"
  833. },
  834. "hashes": {
  835. "md5": "ad9dc6fa0fd2192ff7afc5e917c2e4ff"
  836. }
  837. },
  838. {
  839. "location": {
  840. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-kern.hh"
  841. },
  842. "hashes": {
  843. "md5": "9989c9bd9a9c9981fd17b46856e9e07c"
  844. }
  845. },
  846. {
  847. "location": {
  848. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-layout-common.hh"
  849. },
  850. "hashes": {
  851. "md5": "6cfdd3e97f43fc4f974ce475360d1a08"
  852. }
  853. },
  854. {
  855. "location": {
  856. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-layout.hh"
  857. },
  858. "hashes": {
  859. "md5": "cb5219ebbbb85ab984dcbf4cd9a4eb90"
  860. }
  861. },
  862. {
  863. "location": {
  864. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-ltag-table.hh"
  865. },
  866. "hashes": {
  867. "md5": "c27577c1be7ae8e5c2e4078a088bbb55"
  868. }
  869. },
  870. {
  871. "location": {
  872. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-gpos-table.hh"
  873. },
  874. "hashes": {
  875. "md5": "a83c26e3c40334e8e2720325577939f8"
  876. }
  877. },
  878. {
  879. "location": {
  880. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/gpos.hh"
  881. },
  882. "hashes": {
  883. "md5": "d4b62d1a551fb3fe3cf34ed1a0462c07"
  884. }
  885. },
  886. {
  887. "location": {
  888. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/types.hh"
  889. },
  890. "hashes": {
  891. "md5": "d9150daa543714505e8e44a73553b462"
  892. }
  893. },
  894. {
  895. "location": {
  896. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/common/coverageformat1.hh"
  897. },
  898. "hashes": {
  899. "md5": "0060329b676c1795856ba9f5e2d1b936"
  900. }
  901. },
  902. {
  903. "location": {
  904. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/common/coverageformat2.hh"
  905. },
  906. "hashes": {
  907. "md5": "12cd65d70c76032546471a73dd7fb290"
  908. }
  909. },
  910. {
  911. "location": {
  912. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/common/rangerecord.hh"
  913. },
  914. "hashes": {
  915. "md5": "d9493528366e8bd174afd80bbd4d2615"
  916. }
  917. },
  918. {
  919. "location": {
  920. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-gdef-table.hh"
  921. },
  922. "hashes": {
  923. "md5": "5815ce664f62781de3eba8542be6b58e"
  924. }
  925. },
  926. {
  927. "location": {
  928. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/common.hh"
  929. },
  930. "hashes": {
  931. "md5": "17628a346a7d052b81a2c498adb3b67d"
  932. }
  933. },
  934. {
  935. "location": {
  936. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/poslookup.hh"
  937. },
  938. "hashes": {
  939. "md5": "422949158cc7e85a21d549434266007f"
  940. }
  941. },
  942. {
  943. "location": {
  944. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/poslookupsubtable.hh"
  945. },
  946. "hashes": {
  947. "md5": "fcc9167205a6a65bbac83418d57156c7"
  948. }
  949. },
  950. {
  951. "location": {
  952. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/singleposformat1.hh"
  953. },
  954. "hashes": {
  955. "md5": "410e7690608819f07be953b437bcd6b9"
  956. }
  957. },
  958. {
  959. "location": {
  960. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/valueformat.hh"
  961. },
  962. "hashes": {
  963. "md5": "1efb7fa3e4b8050b4232abc8fe5d9dea"
  964. }
  965. },
  966. {
  967. "location": {
  968. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/singleposformat2.hh"
  969. },
  970. "hashes": {
  971. "md5": "d15f5d00fb882f831093934905cd0e6c"
  972. }
  973. },
  974. {
  975. "location": {
  976. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/pairpos.hh"
  977. },
  978. "hashes": {
  979. "md5": "2b168dd217baa7531ff7df962f1de464"
  980. }
  981. },
  982. {
  983. "location": {
  984. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/pairposformat1.hh"
  985. },
  986. "hashes": {
  987. "md5": "a5bf42d1dfcf56f03aabcd20c854452d"
  988. }
  989. },
  990. {
  991. "location": {
  992. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/pairset.hh"
  993. },
  994. "hashes": {
  995. "md5": "621bed38dc3612201eeb81d8f17472af"
  996. }
  997. },
  998. {
  999. "location": {
  1000. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/pairvaluerecord.hh"
  1001. },
  1002. "hashes": {
  1003. "md5": "1db7c32f0aa712159ce960817452c4ec"
  1004. }
  1005. },
  1006. {
  1007. "location": {
  1008. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/pairposformat2.hh"
  1009. },
  1010. "hashes": {
  1011. "md5": "e8b43ff7379aa996d3c8fc7ff4e750ff"
  1012. }
  1013. },
  1014. {
  1015. "location": {
  1016. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/cursivepos.hh"
  1017. },
  1018. "hashes": {
  1019. "md5": "5878fa64b4a16f661b99970d7896a31b"
  1020. }
  1021. },
  1022. {
  1023. "location": {
  1024. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/cursiveposformat1.hh"
  1025. },
  1026. "hashes": {
  1027. "md5": "2473b3cb163d3c595af2d5575903d328"
  1028. }
  1029. },
  1030. {
  1031. "location": {
  1032. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/anchor.hh"
  1033. },
  1034. "hashes": {
  1035. "md5": "e8f1a4cb81e9ea1e529652071687f644"
  1036. }
  1037. },
  1038. {
  1039. "location": {
  1040. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/anchorformat1.hh"
  1041. },
  1042. "hashes": {
  1043. "md5": "f6a4117ec968bf72a621be6229b50521"
  1044. }
  1045. },
  1046. {
  1047. "location": {
  1048. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/anchorformat2.hh"
  1049. },
  1050. "hashes": {
  1051. "md5": "9af0cd569f8f909ce929d90c8f4f7e59"
  1052. }
  1053. },
  1054. {
  1055. "location": {
  1056. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/anchorformat3.hh"
  1057. },
  1058. "hashes": {
  1059. "md5": "71dac01f375122bc65573a515e01f1c3"
  1060. }
  1061. },
  1062. {
  1063. "location": {
  1064. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/markbasepos.hh"
  1065. },
  1066. "hashes": {
  1067. "md5": "ac71c453af288b5098c0610f1cc0518d"
  1068. }
  1069. },
  1070. {
  1071. "location": {
  1072. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/markbaseposformat1.hh"
  1073. },
  1074. "hashes": {
  1075. "md5": "fdc3fa6c813e1c6fd49b4b8d15f8e653"
  1076. }
  1077. },
  1078. {
  1079. "location": {
  1080. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/markarray.hh"
  1081. },
  1082. "hashes": {
  1083. "md5": "dae0c28a3a8953a896c0ae86dca25c10"
  1084. }
  1085. },
  1086. {
  1087. "location": {
  1088. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/anchormatrix.hh"
  1089. },
  1090. "hashes": {
  1091. "md5": "94b230d7853e02678ec212a5739b8b1a"
  1092. }
  1093. },
  1094. {
  1095. "location": {
  1096. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/markrecord.hh"
  1097. },
  1098. "hashes": {
  1099. "md5": "2f5e03b606f7e74bf137bf443715d6c8"
  1100. }
  1101. },
  1102. {
  1103. "location": {
  1104. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/markligpos.hh"
  1105. },
  1106. "hashes": {
  1107. "md5": "8b0233dd70ef2dde74f23ff63a748f0a"
  1108. }
  1109. },
  1110. {
  1111. "location": {
  1112. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/markligposformat1.hh"
  1113. },
  1114. "hashes": {
  1115. "md5": "1f2ad27761616fbac256a5eab34eff05"
  1116. }
  1117. },
  1118. {
  1119. "location": {
  1120. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/ligaturearray.hh"
  1121. },
  1122. "hashes": {
  1123. "md5": "c56ecf9dafca0a6ad7602e5263e7c6ec"
  1124. }
  1125. },
  1126. {
  1127. "location": {
  1128. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/markmarkpos.hh"
  1129. },
  1130. "hashes": {
  1131. "md5": "c76c51426e3661ad286a365f6b08e33c"
  1132. }
  1133. },
  1134. {
  1135. "location": {
  1136. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/markmarkposformat1.hh"
  1137. },
  1138. "hashes": {
  1139. "md5": "ff0f93b16f9c93a55aa720631a93670d"
  1140. }
  1141. },
  1142. {
  1143. "location": {
  1144. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/contextpos.hh"
  1145. },
  1146. "hashes": {
  1147. "md5": "5534d1bedef5e8c8fb4e20583df1af19"
  1148. }
  1149. },
  1150. {
  1151. "location": {
  1152. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/chaincontextpos.hh"
  1153. },
  1154. "hashes": {
  1155. "md5": "65308c499cd022980d02de9b707bd6ef"
  1156. }
  1157. },
  1158. {
  1159. "location": {
  1160. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/extensionpos.hh"
  1161. },
  1162. "hashes": {
  1163. "md5": "e5f7e9a60210cb910563b08145a9d2d1"
  1164. }
  1165. },
  1166. {
  1167. "location": {
  1168. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-layout-ankr-table.hh"
  1169. },
  1170. "hashes": {
  1171. "md5": "5b201c8df8925a81f9c496033847c7ed"
  1172. }
  1173. },
  1174. {
  1175. "location": {
  1176. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-gsub-table.hh"
  1177. },
  1178. "hashes": {
  1179. "md5": "97b8a6695545a4525de9161c570153c5"
  1180. }
  1181. },
  1182. {
  1183. "location": {
  1184. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/gsub.hh"
  1185. },
  1186. "hashes": {
  1187. "md5": "395ca6f0cf648e5f395c5a2aa9eb51d0"
  1188. }
  1189. },
  1190. {
  1191. "location": {
  1192. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/common.hh"
  1193. },
  1194. "hashes": {
  1195. "md5": "f920e78392709d5572a288a1324c16d4"
  1196. }
  1197. },
  1198. {
  1199. "location": {
  1200. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/substlookup.hh"
  1201. },
  1202. "hashes": {
  1203. "md5": "4aa52f43b36b1dc495631d4bc4a190bb"
  1204. }
  1205. },
  1206. {
  1207. "location": {
  1208. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/substlookupsubtable.hh"
  1209. },
  1210. "hashes": {
  1211. "md5": "e629342fa234daadbdeac480560837a9"
  1212. }
  1213. },
  1214. {
  1215. "location": {
  1216. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/singlesubst.hh"
  1217. },
  1218. "hashes": {
  1219. "md5": "ef6312cd1b9ea744af16d8929aedef56"
  1220. }
  1221. },
  1222. {
  1223. "location": {
  1224. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/singlesubstformat1.hh"
  1225. },
  1226. "hashes": {
  1227. "md5": "b188b2c15a9430bf325448eb8be1abde"
  1228. }
  1229. },
  1230. {
  1231. "location": {
  1232. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/singlesubstformat2.hh"
  1233. },
  1234. "hashes": {
  1235. "md5": "cf74acfcc46790d6440302e11b7b9e5d"
  1236. }
  1237. },
  1238. {
  1239. "location": {
  1240. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/multiplesubst.hh"
  1241. },
  1242. "hashes": {
  1243. "md5": "17c8783ce51ade55e28c4e0310b1fe31"
  1244. }
  1245. },
  1246. {
  1247. "location": {
  1248. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/multiplesubstformat1.hh"
  1249. },
  1250. "hashes": {
  1251. "md5": "fe73b5c2ff67dc270420e797b437956c"
  1252. }
  1253. },
  1254. {
  1255. "location": {
  1256. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/sequence.hh"
  1257. },
  1258. "hashes": {
  1259. "md5": "30c87c9f161d576b4763e6f8882c1fa4"
  1260. }
  1261. },
  1262. {
  1263. "location": {
  1264. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/alternatesubst.hh"
  1265. },
  1266. "hashes": {
  1267. "md5": "e17f7e04e117267b34be1d5222506fb5"
  1268. }
  1269. },
  1270. {
  1271. "location": {
  1272. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/alternatesubstformat1.hh"
  1273. },
  1274. "hashes": {
  1275. "md5": "38cdb3e6aad2fed8c0edbe5ea0ece73c"
  1276. }
  1277. },
  1278. {
  1279. "location": {
  1280. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/alternateset.hh"
  1281. },
  1282. "hashes": {
  1283. "md5": "d815246a84efade2060f4eb2eb02a057"
  1284. }
  1285. },
  1286. {
  1287. "location": {
  1288. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/ligaturesubst.hh"
  1289. },
  1290. "hashes": {
  1291. "md5": "19b1e32e7b0df4f41d4dfc05b6e040d7"
  1292. }
  1293. },
  1294. {
  1295. "location": {
  1296. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/ligaturesubstformat1.hh"
  1297. },
  1298. "hashes": {
  1299. "md5": "9a3fc168a60717282869fb7694e14018"
  1300. }
  1301. },
  1302. {
  1303. "location": {
  1304. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/ligatureset.hh"
  1305. },
  1306. "hashes": {
  1307. "md5": "3862040dbf63b9b9cae6dc9de0d0d273"
  1308. }
  1309. },
  1310. {
  1311. "location": {
  1312. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/ligature.hh"
  1313. },
  1314. "hashes": {
  1315. "md5": "4ec47174be25c39263a4d09d25e14279"
  1316. }
  1317. },
  1318. {
  1319. "location": {
  1320. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/contextsubst.hh"
  1321. },
  1322. "hashes": {
  1323. "md5": "eb2317eca7cb6778e3b2de1a1d0bd6b3"
  1324. }
  1325. },
  1326. {
  1327. "location": {
  1328. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/chaincontextsubst.hh"
  1329. },
  1330. "hashes": {
  1331. "md5": "8c58aa9df88257cf7397be9642c47dd1"
  1332. }
  1333. },
  1334. {
  1335. "location": {
  1336. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/extensionsubst.hh"
  1337. },
  1338. "hashes": {
  1339. "md5": "d79feb78281f37556ced7d8a0090af89"
  1340. }
  1341. },
  1342. {
  1343. "location": {
  1344. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/reversechainsinglesubst.hh"
  1345. },
  1346. "hashes": {
  1347. "md5": "c5c3cb48abd8c921db7d91beec15b13f"
  1348. }
  1349. },
  1350. {
  1351. "location": {
  1352. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-base-table.hh"
  1353. },
  1354. "hashes": {
  1355. "md5": "b81d054c4468a9d3560ccabe2763a5ed"
  1356. }
  1357. },
  1358. {
  1359. "location": {
  1360. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-jstf-table.hh"
  1361. },
  1362. "hashes": {
  1363. "md5": "6f8141f832882a61019883e21447eef1"
  1364. }
  1365. },
  1366. {
  1367. "location": {
  1368. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-name-table.hh"
  1369. },
  1370. "hashes": {
  1371. "md5": "063a246d87c52424e99fd5e6f68f63b5"
  1372. }
  1373. },
  1374. {
  1375. "location": {
  1376. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-name-language.hh"
  1377. },
  1378. "hashes": {
  1379. "md5": "d6754b18bdb5117e924b19efaf9c3c81"
  1380. }
  1381. },
  1382. {
  1383. "location": {
  1384. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-utf.hh"
  1385. },
  1386. "hashes": {
  1387. "md5": "01785426245d29d0ca41c5d79a8a0605"
  1388. }
  1389. },
  1390. {
  1391. "location": {
  1392. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-os2-unicode-ranges.hh"
  1393. },
  1394. "hashes": {
  1395. "md5": "bb199773d41e991ebc92b83667f1bdc8"
  1396. }
  1397. },
  1398. {
  1399. "location": {
  1400. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-layout-morx-table.hh"
  1401. },
  1402. "hashes": {
  1403. "md5": "7765ca3cfb4a2cff390ac3678039bd4d"
  1404. }
  1405. },
  1406. {
  1407. "location": {
  1408. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-layout-opbd-table.hh"
  1409. },
  1410. "hashes": {
  1411. "md5": "c4a6c8393ead4b85acbfa5c76d351f17"
  1412. }
  1413. },
  1414. {
  1415. "location": {
  1416. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cmap-table.hh"
  1417. },
  1418. "roles": [
  1419. "resultFile"
  1420. ],
  1421. "hashes": {
  1422. "md5": "f1a3e58420d37bb362414d038178d961"
  1423. }
  1424. },
  1425. {
  1426. "location": {
  1427. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-var-hvar-table.hh"
  1428. },
  1429. "roles": [
  1430. "resultFile"
  1431. ],
  1432. "hashes": {
  1433. "md5": "6612001c0653bf856cb55340bd48bfcb"
  1434. }
  1435. },
  1436. {
  1437. "location": {
  1438. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-var-gvar-table.hh"
  1439. },
  1440. "roles": [
  1441. "resultFile"
  1442. ],
  1443. "hashes": {
  1444. "md5": "90f4e4cbdc7d9f83ce9d5ae67c4e91fe"
  1445. }
  1446. },
  1447. {
  1448. "location": {
  1449. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-cff-interp-common.hh"
  1450. },
  1451. "roles": [
  1452. "resultFile"
  1453. ],
  1454. "hashes": {
  1455. "md5": "a268e83a0a60cb2363a3a640376b6e66"
  1456. }
  1457. },
  1458. {
  1459. "location": {
  1460. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cff1-table.hh"
  1461. },
  1462. "roles": [
  1463. "resultFile"
  1464. ],
  1465. "hashes": {
  1466. "md5": "17fd8abb660673c0eba2a905a9521acb"
  1467. }
  1468. },
  1469. {
  1470. "location": {
  1471. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-cff-interp-dict-common.hh"
  1472. },
  1473. "roles": [
  1474. "resultFile"
  1475. ],
  1476. "hashes": {
  1477. "md5": "8e3ae99bfdc956626cbcddc844a31b7d"
  1478. }
  1479. },
  1480. {
  1481. "location": {
  1482. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-vorg-table.hh"
  1483. },
  1484. "roles": [
  1485. "resultFile"
  1486. ],
  1487. "hashes": {
  1488. "md5": "a86cdcd103e8757fb6c149fe0fe490b4"
  1489. }
  1490. },
  1491. {
  1492. "location": {
  1493. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-color-colr-table.hh"
  1494. },
  1495. "roles": [
  1496. "resultFile"
  1497. ],
  1498. "hashes": {
  1499. "md5": "a35f365bb95cd123e3ed3e5baea91a57"
  1500. }
  1501. },
  1502. {
  1503. "location": {
  1504. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-cff2-table.hh"
  1505. },
  1506. "roles": [
  1507. "resultFile"
  1508. ],
  1509. "hashes": {
  1510. "md5": "0552b2fef297217b3c69602d336080b2"
  1511. }
  1512. },
  1513. {
  1514. "location": {
  1515. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/glyf/SubsetGlyph.hh"
  1516. },
  1517. "roles": [
  1518. "resultFile"
  1519. ],
  1520. "hashes": {
  1521. "md5": "fd92884fd721f0b5aa99e3348324eb96"
  1522. }
  1523. },
  1524. {
  1525. "location": {
  1526. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-font.cc"
  1527. },
  1528. "roles": [
  1529. "analysisTarget"
  1530. ],
  1531. "hashes": {
  1532. "md5": "ab59a5fdd7eab21d5b55d018f7b1904e"
  1533. }
  1534. },
  1535. {
  1536. "location": {
  1537. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-cache.hh"
  1538. },
  1539. "hashes": {
  1540. "md5": "dfb8b0b8c418555ba20a66a4da1dfd6a"
  1541. }
  1542. },
  1543. {
  1544. "location": {
  1545. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-shaper-arabic-pua.hh"
  1546. },
  1547. "hashes": {
  1548. "md5": "61a03b0432b7132ee103be6efd0a752b"
  1549. }
  1550. },
  1551. {
  1552. "location": {
  1553. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-glyf-table.hh"
  1554. },
  1555. "hashes": {
  1556. "md5": "0ce8149cb08a4da4e16a1efa87792854"
  1557. }
  1558. },
  1559. {
  1560. "location": {
  1561. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/glyf/glyf.hh"
  1562. },
  1563. "hashes": {
  1564. "md5": "a8152e2c0f09f2802dac58810d93a9ed"
  1565. }
  1566. },
  1567. {
  1568. "location": {
  1569. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-head-table.hh"
  1570. },
  1571. "hashes": {
  1572. "md5": "6950118b7ee0346a3b35ef08fe813b2c"
  1573. }
  1574. },
  1575. {
  1576. "location": {
  1577. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-hmtx-table.hh"
  1578. },
  1579. "hashes": {
  1580. "md5": "3cdb28561c64fe97dca574cc68efa7c6"
  1581. }
  1582. },
  1583. {
  1584. "location": {
  1585. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-maxp-table.hh"
  1586. },
  1587. "hashes": {
  1588. "md5": "c214347e225bb87a4aa099581b3d387a"
  1589. }
  1590. },
  1591. {
  1592. "location": {
  1593. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-hhea-table.hh"
  1594. },
  1595. "hashes": {
  1596. "md5": "c0d91d4a23198c7ad113b3742f76c8d9"
  1597. }
  1598. },
  1599. {
  1600. "location": {
  1601. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-var-common.hh"
  1602. },
  1603. "hashes": {
  1604. "md5": "b9fbb65d92cbab00b165433a2422a2a9"
  1605. }
  1606. },
  1607. {
  1608. "location": {
  1609. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-metrics.hh"
  1610. },
  1611. "hashes": {
  1612. "md5": "52f6741be90dee0999ac25ab5395d24d"
  1613. }
  1614. },
  1615. {
  1616. "location": {
  1617. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-draw.hh"
  1618. },
  1619. "hashes": {
  1620. "md5": "e0d061769f570f511f1c2df116dcd392"
  1621. }
  1622. },
  1623. {
  1624. "location": {
  1625. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/glyf/glyf-helpers.hh"
  1626. },
  1627. "hashes": {
  1628. "md5": "86d17f27c44498a6c45dbcb7bed40136"
  1629. }
  1630. },
  1631. {
  1632. "location": {
  1633. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/glyf/loca.hh"
  1634. },
  1635. "hashes": {
  1636. "md5": "4fc78848f50dde25c1d1960e3d3befab"
  1637. }
  1638. },
  1639. {
  1640. "location": {
  1641. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/glyf/glyph.hh"
  1642. },
  1643. "hashes": {
  1644. "md5": "2c6cd75a12b56d6c99d1d8a24ffc5905"
  1645. }
  1646. },
  1647. {
  1648. "location": {
  1649. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/glyf/glyphheader.hh"
  1650. },
  1651. "hashes": {
  1652. "md5": "f79faa523fb6d727d36b527e00320950"
  1653. }
  1654. },
  1655. {
  1656. "location": {
  1657. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/glyf/simpleglyph.hh"
  1658. },
  1659. "hashes": {
  1660. "md5": "6000a2847c2d057966114b8b9d7aa9d3"
  1661. }
  1662. },
  1663. {
  1664. "location": {
  1665. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/glyf/compositeglyph.hh"
  1666. },
  1667. "hashes": {
  1668. "md5": "dc67c6a3e8ca84f60aad647f9558d388"
  1669. }
  1670. },
  1671. {
  1672. "location": {
  1673. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/glyf/composite-iter.hh"
  1674. },
  1675. "hashes": {
  1676. "md5": "fa2be569b044cbf5a7cd24e3f60d5b05"
  1677. }
  1678. },
  1679. {
  1680. "location": {
  1681. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/glyf/varcompositeglyph.hh"
  1682. },
  1683. "hashes": {
  1684. "md5": "2afc28a41535950edf795446f91cd6d2"
  1685. }
  1686. },
  1687. {
  1688. "location": {
  1689. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/glyf/coord-setter.hh"
  1690. },
  1691. "hashes": {
  1692. "md5": "deed7cc328e2aed7e3b5cae4dc23e6f7"
  1693. }
  1694. },
  1695. {
  1696. "location": {
  1697. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/glyf/path-builder.hh"
  1698. },
  1699. "hashes": {
  1700. "md5": "6f606de65d71a7629bf9c6ab8b121b9a"
  1701. }
  1702. },
  1703. {
  1704. "location": {
  1705. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-cff-common.hh"
  1706. },
  1707. "hashes": {
  1708. "md5": "f1901205a54fb90d0855711e3b254b32"
  1709. }
  1710. },
  1711. {
  1712. "location": {
  1713. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-subset-cff1.hh"
  1714. },
  1715. "hashes": {
  1716. "md5": "dc623bd92d93d843b3ab8d58b980b35a"
  1717. }
  1718. },
  1719. {
  1720. "location": {
  1721. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-string-array.hh"
  1722. },
  1723. "hashes": {
  1724. "md5": "d1c6aa13c4490a050613a767b6649cab"
  1725. }
  1726. },
  1727. {
  1728. "location": {
  1729. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-cff1-std-str.hh"
  1730. },
  1731. "hashes": {
  1732. "md5": "ef327eb7cad0fdb6c7682cac03571e9c"
  1733. }
  1734. },
  1735. {
  1736. "location": {
  1737. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-subset-cff2.hh"
  1738. },
  1739. "hashes": {
  1740. "md5": "708e3b5098dff49bf76bf34e128174f8"
  1741. }
  1742. },
  1743. {
  1744. "location": {
  1745. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-post-table.hh"
  1746. },
  1747. "hashes": {
  1748. "md5": "7f0236fd8b3080a60acffefe8ffdd213"
  1749. }
  1750. },
  1751. {
  1752. "location": {
  1753. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-post-macroman.hh"
  1754. },
  1755. "hashes": {
  1756. "md5": "29f6a8855bc2749c562fe1cf6cbd06ab"
  1757. }
  1758. },
  1759. {
  1760. "location": {
  1761. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-stat-table.hh"
  1762. },
  1763. "hashes": {
  1764. "md5": "c3bc6b494f5570161ce011956107e23d"
  1765. }
  1766. },
  1767. {
  1768. "location": {
  1769. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-color-cbdt-table.hh"
  1770. },
  1771. "hashes": {
  1772. "md5": "c311e5a96aa03e890cba864333f82a60"
  1773. }
  1774. },
  1775. {
  1776. "location": {
  1777. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-color-sbix-table.hh"
  1778. },
  1779. "hashes": {
  1780. "md5": "b367abafb43f92761e83f5533f897931"
  1781. }
  1782. },
  1783. {
  1784. "location": {
  1785. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-face.cc"
  1786. },
  1787. "roles": [
  1788. "analysisTarget"
  1789. ],
  1790. "hashes": {
  1791. "md5": "62d02eab3c35f1c2b6efcca6409f1fb8"
  1792. }
  1793. },
  1794. {
  1795. "location": {
  1796. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-meta-table.hh"
  1797. },
  1798. "hashes": {
  1799. "md5": "883849c7864da0c0299a24f0d2f35a8c"
  1800. }
  1801. },
  1802. {
  1803. "location": {
  1804. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-color-svg-table.hh"
  1805. },
  1806. "hashes": {
  1807. "md5": "8db0b489cdfb4068396b0ce084e88a7e"
  1808. }
  1809. },
  1810. {
  1811. "location": {
  1812. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-color.cc"
  1813. },
  1814. "roles": [
  1815. "analysisTarget"
  1816. ],
  1817. "hashes": {
  1818. "md5": "1d939e82bc22d2742985b2aab315e630"
  1819. }
  1820. },
  1821. {
  1822. "location": {
  1823. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-color-cpal-table.hh"
  1824. },
  1825. "hashes": {
  1826. "md5": "59591cf3e1875f29dd2ec8d68fef83e9"
  1827. }
  1828. },
  1829. {
  1830. "location": {
  1831. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-cff-interp-cs-common.hh"
  1832. },
  1833. "roles": [
  1834. "resultFile"
  1835. ],
  1836. "hashes": {
  1837. "md5": "acc742aea03a716bd5c05aa44f04f49a"
  1838. }
  1839. },
  1840. {
  1841. "location": {
  1842. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-cff2-table.cc"
  1843. },
  1844. "roles": [
  1845. "analysisTarget"
  1846. ],
  1847. "hashes": {
  1848. "md5": "fa9dfc4d71d217d447ce731d51690c77"
  1849. }
  1850. },
  1851. {
  1852. "location": {
  1853. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-cff2-interp-cs.hh"
  1854. },
  1855. "hashes": {
  1856. "md5": "cc517aa26f758850535236f9efb1cdea"
  1857. }
  1858. },
  1859. {
  1860. "location": {
  1861. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-cff1-table.cc"
  1862. },
  1863. "roles": [
  1864. "analysisTarget"
  1865. ],
  1866. "hashes": {
  1867. "md5": "3a39a0d10610ef4406f650e44400cb00"
  1868. }
  1869. },
  1870. {
  1871. "location": {
  1872. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-cff1-interp-cs.hh"
  1873. },
  1874. "hashes": {
  1875. "md5": "29b823b6e2fbee5d00bd7004f34a1c80"
  1876. }
  1877. },
  1878. {
  1879. "location": {
  1880. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/platform/win32/hb-number-parser.hh"
  1881. },
  1882. "roles": [
  1883. "resultFile"
  1884. ]
  1885. },
  1886. {
  1887. "location": {
  1888. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-number.cc"
  1889. },
  1890. "roles": [
  1891. "analysisTarget"
  1892. ],
  1893. "hashes": {
  1894. "md5": "5feaf17a4e1ef0bf8e004d0513c61cdf"
  1895. }
  1896. },
  1897. {
  1898. "location": {
  1899. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-number-parser.hh"
  1900. },
  1901. "hashes": {
  1902. "md5": "23e39013777c2eaa7be2e21e8faa337d"
  1903. }
  1904. },
  1905. {
  1906. "location": {
  1907. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-map.cc"
  1908. },
  1909. "roles": [
  1910. "analysisTarget"
  1911. ],
  1912. "hashes": {
  1913. "md5": "6d08631134cc4af1e73dc2d51bd90cbe"
  1914. }
  1915. },
  1916. {
  1917. "location": {
  1918. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ft.cc"
  1919. },
  1920. "roles": [
  1921. "analysisTarget",
  1922. "resultFile"
  1923. ],
  1924. "hashes": {
  1925. "md5": "ad53fa0c3b9c13884006b8853245ae66"
  1926. }
  1927. },
  1928. {
  1929. "location": {
  1930. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ft.h"
  1931. },
  1932. "hashes": {
  1933. "md5": "bd15dd5644cfd8d486ce2fd3717324bd"
  1934. }
  1935. },
  1936. {
  1937. "location": {
  1938. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/ft2build.h"
  1939. },
  1940. "hashes": {
  1941. "md5": "284e0b8a11a5a3c29ef0b1d64b0b7f8d"
  1942. }
  1943. },
  1944. {
  1945. "location": {
  1946. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/config/ftheader.h"
  1947. },
  1948. "hashes": {
  1949. "md5": "9e68c37c8247a4d054ea236345b07239"
  1950. }
  1951. },
  1952. {
  1953. "location": {
  1954. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/freetype.h"
  1955. },
  1956. "hashes": {
  1957. "md5": "5336a07c6ff75a9cc62c2c1dcd7f3b06"
  1958. }
  1959. },
  1960. {
  1961. "location": {
  1962. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/config/ftconfig.h"
  1963. },
  1964. "hashes": {
  1965. "md5": "51741f5954c2b27ec5140fb964a80e1b"
  1966. }
  1967. },
  1968. {
  1969. "location": {
  1970. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/config/ftoption.h"
  1971. },
  1972. "hashes": {
  1973. "md5": "b15c2030b96ba6b7a925449939bf7abe"
  1974. }
  1975. },
  1976. {
  1977. "location": {
  1978. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/config/ftstdlib.h"
  1979. },
  1980. "hashes": {
  1981. "md5": "c6860da9fbb76d36140842f8cf381d14"
  1982. }
  1983. },
  1984. {
  1985. "location": {
  1986. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/config/integer-types.h"
  1987. },
  1988. "hashes": {
  1989. "md5": "23ffebefa73cb6fd68cb3101f7fb0412"
  1990. }
  1991. },
  1992. {
  1993. "location": {
  1994. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/config/public-macros.h"
  1995. },
  1996. "hashes": {
  1997. "md5": "7062a18c381185e4f2f1add27e165d2c"
  1998. }
  1999. },
  2000. {
  2001. "location": {
  2002. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/config/mac-support.h"
  2003. },
  2004. "hashes": {
  2005. "md5": "f18d33b644aaaab7cfeadac743e2e87b"
  2006. }
  2007. },
  2008. {
  2009. "location": {
  2010. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/fttypes.h"
  2011. },
  2012. "hashes": {
  2013. "md5": "72da99326e2ca0a7443194ddc7ed542b"
  2014. }
  2015. },
  2016. {
  2017. "location": {
  2018. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/ftsystem.h"
  2019. },
  2020. "hashes": {
  2021. "md5": "a85962fe4cd7992cb5c71d2dc6200ee7"
  2022. }
  2023. },
  2024. {
  2025. "location": {
  2026. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/ftimage.h"
  2027. },
  2028. "hashes": {
  2029. "md5": "47e1aa58a30adf1427d279aeca994a54"
  2030. }
  2031. },
  2032. {
  2033. "location": {
  2034. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/fterrors.h"
  2035. },
  2036. "hashes": {
  2037. "md5": "c02117103079e500862b09a44cda90c7"
  2038. }
  2039. },
  2040. {
  2041. "location": {
  2042. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/ftmoderr.h"
  2043. },
  2044. "hashes": {
  2045. "md5": "5125dd326d895b87879ebc44dd6cf197"
  2046. }
  2047. },
  2048. {
  2049. "location": {
  2050. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/fterrdef.h"
  2051. },
  2052. "hashes": {
  2053. "md5": "83787d76c6ac1ea1da29bf7da274d1e1"
  2054. }
  2055. },
  2056. {
  2057. "location": {
  2058. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/ftadvanc.h"
  2059. },
  2060. "hashes": {
  2061. "md5": "987eb8aed95120729f9cdd03a4e4f3d7"
  2062. }
  2063. },
  2064. {
  2065. "location": {
  2066. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/ftmm.h"
  2067. },
  2068. "hashes": {
  2069. "md5": "6842f11da835f599d4eeef49313ec37b"
  2070. }
  2071. },
  2072. {
  2073. "location": {
  2074. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/ftoutln.h"
  2075. },
  2076. "hashes": {
  2077. "md5": "ee9bf7d84da77d27ac433656b1ce38d2"
  2078. }
  2079. },
  2080. {
  2081. "location": {
  2082. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/freetype/include/freetype/tttables.h"
  2083. },
  2084. "hashes": {
  2085. "md5": "3412886fa7d2ec2cc38fbc3666321cbc"
  2086. }
  2087. },
  2088. {
  2089. "location": {
  2090. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-var-fvar-table.hh"
  2091. },
  2092. "roles": [
  2093. "resultFile"
  2094. ],
  2095. "hashes": {
  2096. "md5": "9761ccb5bc0516cd0661b9340a046c8f"
  2097. }
  2098. },
  2099. {
  2100. "location": {
  2101. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-font.cc"
  2102. },
  2103. "roles": [
  2104. "analysisTarget"
  2105. ],
  2106. "hashes": {
  2107. "md5": "c09c794076f729a32a0c91ea25ddc652"
  2108. }
  2109. },
  2110. {
  2111. "location": {
  2112. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-var-avar-table.hh"
  2113. },
  2114. "hashes": {
  2115. "md5": "f712314e1fabba75510710bd6fc76a3d"
  2116. }
  2117. },
  2118. {
  2119. "location": {
  2120. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-fallback-shape.cc"
  2121. },
  2122. "roles": [
  2123. "analysisTarget"
  2124. ],
  2125. "hashes": {
  2126. "md5": "9c7630c26e3e4806e166564d871fdcfd"
  2127. }
  2128. },
  2129. {
  2130. "location": {
  2131. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-shaper-impl.hh"
  2132. },
  2133. "hashes": {
  2134. "md5": "6af3673be036e82a1c5fc0cf5165f0db"
  2135. }
  2136. },
  2137. {
  2138. "location": {
  2139. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-face.cc"
  2140. },
  2141. "roles": [
  2142. "analysisTarget"
  2143. ],
  2144. "hashes": {
  2145. "md5": "ffc7e1358b4f63cd72db38bae7d3f602"
  2146. }
  2147. },
  2148. {
  2149. "location": {
  2150. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-open-file.hh"
  2151. },
  2152. "hashes": {
  2153. "md5": "75d56b62a5fbb9926748b5a857b9d800"
  2154. }
  2155. },
  2156. {
  2157. "location": {
  2158. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-common.cc"
  2159. },
  2160. "roles": [
  2161. "analysisTarget"
  2162. ],
  2163. "hashes": {
  2164. "md5": "dc75ea803dde233ac7ea6d111ffc8a3a"
  2165. }
  2166. },
  2167. {
  2168. "location": {
  2169. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-static.cc"
  2170. },
  2171. "hashes": {
  2172. "md5": "ee70d8b97dbfa70684f7a24f40c5d861"
  2173. }
  2174. },
  2175. {
  2176. "location": {
  2177. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-layout-feat-table.hh"
  2178. },
  2179. "hashes": {
  2180. "md5": "9e7d0f3ef7eff5107eec54c07247e4ae"
  2181. }
  2182. },
  2183. {
  2184. "location": {
  2185. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-name-language-static.hh"
  2186. },
  2187. "hashes": {
  2188. "md5": "2b26fde5d83b4c8794bc1ecc546feea0"
  2189. }
  2190. },
  2191. {
  2192. "location": {
  2193. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-buffer-verify.cc"
  2194. },
  2195. "roles": [
  2196. "analysisTarget"
  2197. ],
  2198. "hashes": {
  2199. "md5": "2e6c97c64d3cb640fb79dbb75127abca"
  2200. }
  2201. }
  2202. ]
  2203. }
  2204. ]
  2205. }