1
0

Brewfile.lock.json 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890
  1. {
  2. "entries": {
  3. "tap": {
  4. "homebrew/bundle": {
  5. "revision": "30944b1a1ff672300855c4fcb4a5e660de149702"
  6. },
  7. "homebrew/cask": {
  8. "revision": "386751a8c2351ab7a7a7143b597ca22b317e67c2"
  9. },
  10. "homebrew/cask-fonts": {
  11. "revision": "84535dd6d8ce8bedd2922c8688e608bb4c9d7b5c"
  12. },
  13. "homebrew/cask-versions": {
  14. "revision": "9d83fa7ded84089c66df3ef7ef7a3985ca85a765"
  15. },
  16. "homebrew/core": {
  17. "revision": "a469d3bb2a7aee100073fb8ebd32bfd619a0ff3c"
  18. }
  19. },
  20. "brew": {
  21. "arp-scan": {
  22. "version": "1.9.7",
  23. "bottle": {
  24. "rebuild": 0,
  25. "root_url": "https://ghcr.io/v2/homebrew/core",
  26. "files": {
  27. "arm64_big_sur": {
  28. "cellar": "/opt/homebrew/Cellar",
  29. "url": "https://ghcr.io/v2/homebrew/core/arp-scan/blobs/sha256:bab165d30f8039bba63d086234d0c57c64152fe73d586081dfaa7eec177fcefd",
  30. "sha256": "bab165d30f8039bba63d086234d0c57c64152fe73d586081dfaa7eec177fcefd"
  31. },
  32. "big_sur": {
  33. "cellar": "/usr/local/Cellar",
  34. "url": "https://ghcr.io/v2/homebrew/core/arp-scan/blobs/sha256:f3fe2b4b1f70e09f79aaf43b2044068ce5431135a7d7e78ab5022202bfb48ab4",
  35. "sha256": "f3fe2b4b1f70e09f79aaf43b2044068ce5431135a7d7e78ab5022202bfb48ab4"
  36. },
  37. "catalina": {
  38. "cellar": "/usr/local/Cellar",
  39. "url": "https://ghcr.io/v2/homebrew/core/arp-scan/blobs/sha256:763b615392ea20ab1900bbc4a21fb0a9a978bbf50d3bbd8d5ff490437defc6f8",
  40. "sha256": "763b615392ea20ab1900bbc4a21fb0a9a978bbf50d3bbd8d5ff490437defc6f8"
  41. },
  42. "mojave": {
  43. "cellar": "/usr/local/Cellar",
  44. "url": "https://ghcr.io/v2/homebrew/core/arp-scan/blobs/sha256:178196ab4312319611ad02c8e086e56fec2217981f9d91d9e7df8cddfeacda4e",
  45. "sha256": "178196ab4312319611ad02c8e086e56fec2217981f9d91d9e7df8cddfeacda4e"
  46. },
  47. "high_sierra": {
  48. "cellar": "/usr/local/Cellar",
  49. "url": "https://ghcr.io/v2/homebrew/core/arp-scan/blobs/sha256:f72f46496eecff4c1a86dbdbf3a295e195310827ef50cdc0b007bd7b6311495d",
  50. "sha256": "f72f46496eecff4c1a86dbdbf3a295e195310827ef50cdc0b007bd7b6311495d"
  51. }
  52. }
  53. }
  54. },
  55. "xz": {
  56. "version": "5.2.5",
  57. "bottle": {
  58. "rebuild": 0,
  59. "root_url": "https://ghcr.io/v2/homebrew/core",
  60. "files": {
  61. "arm64_big_sur": {
  62. "cellar": ":any",
  63. "url": "https://ghcr.io/v2/homebrew/core/xz/blobs/sha256:c84206005787304416ed81094bd3a0cdd2ae8eb62649db5a3a44fa14b276d09f",
  64. "sha256": "c84206005787304416ed81094bd3a0cdd2ae8eb62649db5a3a44fa14b276d09f"
  65. },
  66. "big_sur": {
  67. "cellar": ":any",
  68. "url": "https://ghcr.io/v2/homebrew/core/xz/blobs/sha256:4fbd4a9e3eb49c27e83bd125b0e76d386c0e12ae1139d4dc9e31841fb8880a35",
  69. "sha256": "4fbd4a9e3eb49c27e83bd125b0e76d386c0e12ae1139d4dc9e31841fb8880a35"
  70. },
  71. "catalina": {
  72. "cellar": ":any",
  73. "url": "https://ghcr.io/v2/homebrew/core/xz/blobs/sha256:2dcc8e0121c934d1e34ffdb37fcd70f0f7b5c2f4755f2f7cbcf360e9e54cb43b",
  74. "sha256": "2dcc8e0121c934d1e34ffdb37fcd70f0f7b5c2f4755f2f7cbcf360e9e54cb43b"
  75. },
  76. "mojave": {
  77. "cellar": ":any",
  78. "url": "https://ghcr.io/v2/homebrew/core/xz/blobs/sha256:44483961b5d2b535b0ece1936c9d40b4bc7d9c7281646cca0fb476291ab9d4dc",
  79. "sha256": "44483961b5d2b535b0ece1936c9d40b4bc7d9c7281646cca0fb476291ab9d4dc"
  80. },
  81. "high_sierra": {
  82. "cellar": ":any",
  83. "url": "https://ghcr.io/v2/homebrew/core/xz/blobs/sha256:1491b2b20c40c3cb0b990f520768d7e876e4ab4a7dc1da9994d0150da34ba5c6",
  84. "sha256": "1491b2b20c40c3cb0b990f520768d7e876e4ab4a7dc1da9994d0150da34ba5c6"
  85. }
  86. }
  87. }
  88. },
  89. "glib": {
  90. "version": "2.68.1",
  91. "bottle": {
  92. "rebuild": 0,
  93. "root_url": "https://ghcr.io/v2/homebrew/core",
  94. "files": {
  95. "arm64_big_sur": {
  96. "cellar": "/opt/homebrew/Cellar",
  97. "url": "https://ghcr.io/v2/homebrew/core/glib/blobs/sha256:e3f0b329d96675cc9d34d1132a69fa941b93367d08361829892f477cb242dcc6",
  98. "sha256": "e3f0b329d96675cc9d34d1132a69fa941b93367d08361829892f477cb242dcc6"
  99. },
  100. "big_sur": {
  101. "cellar": "/usr/local/Cellar",
  102. "url": "https://ghcr.io/v2/homebrew/core/glib/blobs/sha256:244628aa2804cc51993188636086a93d9f35574c31482baecc379a1584300b08",
  103. "sha256": "244628aa2804cc51993188636086a93d9f35574c31482baecc379a1584300b08"
  104. },
  105. "catalina": {
  106. "cellar": "/usr/local/Cellar",
  107. "url": "https://ghcr.io/v2/homebrew/core/glib/blobs/sha256:7d39ec15cca95b968a0151898f31134edd12063e0219df4137a49bcc369cdd0d",
  108. "sha256": "7d39ec15cca95b968a0151898f31134edd12063e0219df4137a49bcc369cdd0d"
  109. },
  110. "mojave": {
  111. "cellar": "/usr/local/Cellar",
  112. "url": "https://ghcr.io/v2/homebrew/core/glib/blobs/sha256:ebbfbbde6044f386f2494f2c99e5dad5ae9ebaa3fa0f103a56ac08a367d13fe6",
  113. "sha256": "ebbfbbde6044f386f2494f2c99e5dad5ae9ebaa3fa0f103a56ac08a367d13fe6"
  114. }
  115. }
  116. }
  117. },
  118. "ccache": {
  119. "version": "4.2.1",
  120. "bottle": {
  121. "rebuild": 0,
  122. "root_url": "https://ghcr.io/v2/homebrew/core",
  123. "files": {
  124. "arm64_big_sur": {
  125. "cellar": ":any",
  126. "url": "https://ghcr.io/v2/homebrew/core/ccache/blobs/sha256:035a9c51376fbd87424fd98b75e304ca361b3bd0dc92bdcae7b1e5dcfa22a3c0",
  127. "sha256": "035a9c51376fbd87424fd98b75e304ca361b3bd0dc92bdcae7b1e5dcfa22a3c0"
  128. },
  129. "big_sur": {
  130. "cellar": ":any",
  131. "url": "https://ghcr.io/v2/homebrew/core/ccache/blobs/sha256:098a882c947780055053e5d961910f411026cea492a0435077b3c70a347b4ca7",
  132. "sha256": "098a882c947780055053e5d961910f411026cea492a0435077b3c70a347b4ca7"
  133. },
  134. "catalina": {
  135. "cellar": ":any",
  136. "url": "https://ghcr.io/v2/homebrew/core/ccache/blobs/sha256:fdcfcc5d633cbae1334d7862f92e00cfaca04bc1722299b37acd61647779325b",
  137. "sha256": "fdcfcc5d633cbae1334d7862f92e00cfaca04bc1722299b37acd61647779325b"
  138. },
  139. "mojave": {
  140. "cellar": ":any",
  141. "url": "https://ghcr.io/v2/homebrew/core/ccache/blobs/sha256:ffc07ff2a5079f66f770534bf9d0db2cbd330e8a6bd560f2e4509866be09aad9",
  142. "sha256": "ffc07ff2a5079f66f770534bf9d0db2cbd330e8a6bd560f2e4509866be09aad9"
  143. }
  144. }
  145. }
  146. },
  147. "clang-format": {
  148. "version": "12.0.0",
  149. "bottle": {
  150. "rebuild": 0,
  151. "root_url": "https://ghcr.io/v2/homebrew/core",
  152. "files": {
  153. "arm64_big_sur": {
  154. "cellar": ":any_skip_relocation",
  155. "url": "https://ghcr.io/v2/homebrew/core/clang-format/blobs/sha256:1f038a1af0ed7c0c316cca7a5b74c868eb011ea5c1106bd34d451c7d99b16ca4",
  156. "sha256": "1f038a1af0ed7c0c316cca7a5b74c868eb011ea5c1106bd34d451c7d99b16ca4"
  157. },
  158. "big_sur": {
  159. "cellar": ":any_skip_relocation",
  160. "url": "https://ghcr.io/v2/homebrew/core/clang-format/blobs/sha256:a919653359246062c53f2ce6a7a3fd822e71b1d65c4f75bd20a361bc7264b139",
  161. "sha256": "a919653359246062c53f2ce6a7a3fd822e71b1d65c4f75bd20a361bc7264b139"
  162. },
  163. "catalina": {
  164. "cellar": ":any_skip_relocation",
  165. "url": "https://ghcr.io/v2/homebrew/core/clang-format/blobs/sha256:e18818a9555c17fffdf416deb5e16526f4b7fb07ec684d5dda22b6b8b1fd7c4e",
  166. "sha256": "e18818a9555c17fffdf416deb5e16526f4b7fb07ec684d5dda22b6b8b1fd7c4e"
  167. },
  168. "mojave": {
  169. "cellar": ":any_skip_relocation",
  170. "url": "https://ghcr.io/v2/homebrew/core/clang-format/blobs/sha256:2ce598eddb5655854cc4a0e88591ced06b0a2d5bab96497c0b7081f5a2b0dd74",
  171. "sha256": "2ce598eddb5655854cc4a0e88591ced06b0a2d5bab96497c0b7081f5a2b0dd74"
  172. }
  173. }
  174. }
  175. },
  176. "cmake": {
  177. "version": "3.20.1",
  178. "bottle": {
  179. "rebuild": 0,
  180. "root_url": "https://ghcr.io/v2/homebrew/core",
  181. "files": {
  182. "arm64_big_sur": {
  183. "cellar": ":any_skip_relocation",
  184. "url": "https://ghcr.io/v2/homebrew/core/cmake/blobs/sha256:b94fa9c13065ce31259621e1ac1ff8f46c0a6ee606a5944f2562ed86c7fcf2a6",
  185. "sha256": "b94fa9c13065ce31259621e1ac1ff8f46c0a6ee606a5944f2562ed86c7fcf2a6"
  186. },
  187. "big_sur": {
  188. "cellar": ":any_skip_relocation",
  189. "url": "https://ghcr.io/v2/homebrew/core/cmake/blobs/sha256:c8b975b0911f9125065459e9b55da2c43fc58485446ec35d8294d2db2ad77972",
  190. "sha256": "c8b975b0911f9125065459e9b55da2c43fc58485446ec35d8294d2db2ad77972"
  191. },
  192. "catalina": {
  193. "cellar": ":any_skip_relocation",
  194. "url": "https://ghcr.io/v2/homebrew/core/cmake/blobs/sha256:1875ab07ed5843cdc06368ae851ec1232a72bb679f70f816e549acfe5fff6c31",
  195. "sha256": "1875ab07ed5843cdc06368ae851ec1232a72bb679f70f816e549acfe5fff6c31"
  196. },
  197. "mojave": {
  198. "cellar": ":any_skip_relocation",
  199. "url": "https://ghcr.io/v2/homebrew/core/cmake/blobs/sha256:0af0a3d97a83dcdece0c5a8ba867d6b199b928f1c4e0a325eef785af6b8f2f1e",
  200. "sha256": "0af0a3d97a83dcdece0c5a8ba867d6b199b928f1c4e0a325eef785af6b8f2f1e"
  201. }
  202. }
  203. }
  204. },
  205. "container-diff": {
  206. "version": "0.16.0",
  207. "bottle": {
  208. "rebuild": 0,
  209. "root_url": "https://ghcr.io/v2/homebrew/core",
  210. "files": {
  211. "arm64_big_sur": {
  212. "cellar": ":any_skip_relocation",
  213. "url": "https://ghcr.io/v2/homebrew/core/container-diff/blobs/sha256:41fb6884547be02700c5e9281cbd42cf31fd1d089c74d54441b88038a9cbe147",
  214. "sha256": "41fb6884547be02700c5e9281cbd42cf31fd1d089c74d54441b88038a9cbe147"
  215. },
  216. "big_sur": {
  217. "cellar": ":any_skip_relocation",
  218. "url": "https://ghcr.io/v2/homebrew/core/container-diff/blobs/sha256:055232f62b7ecc254a833115409dacb53eba5e2f367a79bf754d9e0d17f06711",
  219. "sha256": "055232f62b7ecc254a833115409dacb53eba5e2f367a79bf754d9e0d17f06711"
  220. },
  221. "catalina": {
  222. "cellar": ":any_skip_relocation",
  223. "url": "https://ghcr.io/v2/homebrew/core/container-diff/blobs/sha256:695d8f0fd299139e08f3bf5566a57943b001510849f13f259473414223ed5542",
  224. "sha256": "695d8f0fd299139e08f3bf5566a57943b001510849f13f259473414223ed5542"
  225. },
  226. "mojave": {
  227. "cellar": ":any_skip_relocation",
  228. "url": "https://ghcr.io/v2/homebrew/core/container-diff/blobs/sha256:fc5c1f18d752bb0f5af502cbaec8af0ccb5fa1f600bfd892e5e1a01d8d7ded78",
  229. "sha256": "fc5c1f18d752bb0f5af502cbaec8af0ccb5fa1f600bfd892e5e1a01d8d7ded78"
  230. }
  231. }
  232. }
  233. },
  234. "cowsay": {
  235. "version": "3.04_1",
  236. "bottle": {
  237. "rebuild": 0,
  238. "root_url": "https://ghcr.io/v2/homebrew/core",
  239. "files": {
  240. "arm64_big_sur": {
  241. "cellar": ":any_skip_relocation",
  242. "url": "https://ghcr.io/v2/homebrew/core/cowsay/blobs/sha256:dc3cb88861e89bb415d3b1be1b5314514174349bb44338551e80badc4da94542",
  243. "sha256": "dc3cb88861e89bb415d3b1be1b5314514174349bb44338551e80badc4da94542"
  244. },
  245. "big_sur": {
  246. "cellar": ":any_skip_relocation",
  247. "url": "https://ghcr.io/v2/homebrew/core/cowsay/blobs/sha256:422c58f10fc2441a62a90864d01b83176ebda627f9a8c29b34f89f4f1f86618e",
  248. "sha256": "422c58f10fc2441a62a90864d01b83176ebda627f9a8c29b34f89f4f1f86618e"
  249. },
  250. "catalina": {
  251. "cellar": ":any_skip_relocation",
  252. "url": "https://ghcr.io/v2/homebrew/core/cowsay/blobs/sha256:c1f4af994e038a18492c8afe0f6b97cfd1c475fe62eafe68762cf5d734dc214d",
  253. "sha256": "c1f4af994e038a18492c8afe0f6b97cfd1c475fe62eafe68762cf5d734dc214d"
  254. },
  255. "mojave": {
  256. "cellar": ":any_skip_relocation",
  257. "url": "https://ghcr.io/v2/homebrew/core/cowsay/blobs/sha256:faebbfa7a9379fd4efddc43dc167fda055989d2936b0430e404c252a555439cc",
  258. "sha256": "faebbfa7a9379fd4efddc43dc167fda055989d2936b0430e404c252a555439cc"
  259. },
  260. "high_sierra": {
  261. "cellar": ":any_skip_relocation",
  262. "url": "https://ghcr.io/v2/homebrew/core/cowsay/blobs/sha256:4cdddb22ad76cf14527347e58317caf1495dc88fdf5d6c729ac72fa2fe19dd81",
  263. "sha256": "4cdddb22ad76cf14527347e58317caf1495dc88fdf5d6c729ac72fa2fe19dd81"
  264. }
  265. }
  266. }
  267. },
  268. "ctags": {
  269. "version": "5.8_2",
  270. "bottle": {
  271. "rebuild": 0,
  272. "root_url": "https://ghcr.io/v2/homebrew/core",
  273. "files": {
  274. "arm64_big_sur": {
  275. "cellar": ":any_skip_relocation",
  276. "url": "https://ghcr.io/v2/homebrew/core/ctags/blobs/sha256:8e8ee6051008e73c999dbc8476221f220ef87fdf9cbc409a308df6a956e114e6",
  277. "sha256": "8e8ee6051008e73c999dbc8476221f220ef87fdf9cbc409a308df6a956e114e6"
  278. },
  279. "big_sur": {
  280. "cellar": ":any_skip_relocation",
  281. "url": "https://ghcr.io/v2/homebrew/core/ctags/blobs/sha256:9986b3f6897b60cbdf5d73b4ad819d2d30726043dc0d665b77ba2def399a60b4",
  282. "sha256": "9986b3f6897b60cbdf5d73b4ad819d2d30726043dc0d665b77ba2def399a60b4"
  283. },
  284. "catalina": {
  285. "cellar": ":any_skip_relocation",
  286. "url": "https://ghcr.io/v2/homebrew/core/ctags/blobs/sha256:2292b70a7b744c2238507417e40c2dc7273c6d919c9fe037bf668cf00863ad92",
  287. "sha256": "2292b70a7b744c2238507417e40c2dc7273c6d919c9fe037bf668cf00863ad92"
  288. },
  289. "mojave": {
  290. "cellar": ":any_skip_relocation",
  291. "url": "https://ghcr.io/v2/homebrew/core/ctags/blobs/sha256:238b65e5e1614f1d24fd88b6741c04d1cf48fd5f5d247cdbcd1f82d5796197d5",
  292. "sha256": "238b65e5e1614f1d24fd88b6741c04d1cf48fd5f5d247cdbcd1f82d5796197d5"
  293. }
  294. }
  295. }
  296. },
  297. "docker-compose": {
  298. "version": "1.29.1",
  299. "bottle": {
  300. "rebuild": 0,
  301. "root_url": "https://ghcr.io/v2/homebrew/core",
  302. "files": {
  303. "arm64_big_sur": {
  304. "cellar": ":any",
  305. "url": "https://ghcr.io/v2/homebrew/core/docker-compose/blobs/sha256:8f62a4ec1e3ae543afc931483ea8cf015fc4eb8f394f84d6f57fb111723213b6",
  306. "sha256": "8f62a4ec1e3ae543afc931483ea8cf015fc4eb8f394f84d6f57fb111723213b6"
  307. },
  308. "big_sur": {
  309. "cellar": ":any",
  310. "url": "https://ghcr.io/v2/homebrew/core/docker-compose/blobs/sha256:14df94cf6ccb19cc0a5837b41fe56a654a8a6e3a1f339be59088976ee6b0e05b",
  311. "sha256": "14df94cf6ccb19cc0a5837b41fe56a654a8a6e3a1f339be59088976ee6b0e05b"
  312. },
  313. "catalina": {
  314. "cellar": ":any",
  315. "url": "https://ghcr.io/v2/homebrew/core/docker-compose/blobs/sha256:e8691188bcc89578dce5de3ad4032c1afde7caffc436cf9fde92d1e5a4135000",
  316. "sha256": "e8691188bcc89578dce5de3ad4032c1afde7caffc436cf9fde92d1e5a4135000"
  317. },
  318. "mojave": {
  319. "cellar": ":any",
  320. "url": "https://ghcr.io/v2/homebrew/core/docker-compose/blobs/sha256:95367c971090d7f01d98dcd71248c9a79106b414bbae782f3432784e5329c9e9",
  321. "sha256": "95367c971090d7f01d98dcd71248c9a79106b414bbae782f3432784e5329c9e9"
  322. }
  323. }
  324. },
  325. "options": {
  326. "link": false
  327. }
  328. },
  329. "doxygen": {
  330. "version": "1.9.1",
  331. "bottle": {
  332. "rebuild": 0,
  333. "root_url": "https://ghcr.io/v2/homebrew/core",
  334. "files": {
  335. "arm64_big_sur": {
  336. "cellar": ":any_skip_relocation",
  337. "url": "https://ghcr.io/v2/homebrew/core/doxygen/blobs/sha256:2b5b2de93ac8703785860bfaf3e14f3268a07dc29bac9def13172785bcac7c5f",
  338. "sha256": "2b5b2de93ac8703785860bfaf3e14f3268a07dc29bac9def13172785bcac7c5f"
  339. },
  340. "big_sur": {
  341. "cellar": ":any_skip_relocation",
  342. "url": "https://ghcr.io/v2/homebrew/core/doxygen/blobs/sha256:b8e1ea1bb601d8cc7cd7cf66b67a544e9e5534c2793cee5ac90bef5d076ad1e5",
  343. "sha256": "b8e1ea1bb601d8cc7cd7cf66b67a544e9e5534c2793cee5ac90bef5d076ad1e5"
  344. },
  345. "catalina": {
  346. "cellar": ":any_skip_relocation",
  347. "url": "https://ghcr.io/v2/homebrew/core/doxygen/blobs/sha256:10e13f7bf6977bee6487366b3fc1dc55b4c191d5d505cb816997838504b3e0a4",
  348. "sha256": "10e13f7bf6977bee6487366b3fc1dc55b4c191d5d505cb816997838504b3e0a4"
  349. },
  350. "mojave": {
  351. "cellar": ":any_skip_relocation",
  352. "url": "https://ghcr.io/v2/homebrew/core/doxygen/blobs/sha256:0422adc9bfa6e1558cdcca24f8f4266f0927cf4c10fe3e245fe8e3017a7717b5",
  353. "sha256": "0422adc9bfa6e1558cdcca24f8f4266f0927cf4c10fe3e245fe8e3017a7717b5"
  354. }
  355. }
  356. }
  357. },
  358. "fortune": {
  359. "version": "9708",
  360. "bottle": {
  361. "rebuild": 4,
  362. "root_url": "https://ghcr.io/v2/homebrew/core",
  363. "files": {
  364. "arm64_big_sur": {
  365. "cellar": "/opt/homebrew/Cellar",
  366. "url": "https://ghcr.io/v2/homebrew/core/fortune/blobs/sha256:78689923b7ba4d7d5a4541a93a543effcbc7dcd722d803b47954656c92dfdeca",
  367. "sha256": "78689923b7ba4d7d5a4541a93a543effcbc7dcd722d803b47954656c92dfdeca"
  368. },
  369. "big_sur": {
  370. "cellar": "/usr/local/Cellar",
  371. "url": "https://ghcr.io/v2/homebrew/core/fortune/blobs/sha256:de301856c24aee684544214cb83474fe8237104c9cf214df6777267418b17d9f",
  372. "sha256": "de301856c24aee684544214cb83474fe8237104c9cf214df6777267418b17d9f"
  373. },
  374. "catalina": {
  375. "cellar": "/usr/local/Cellar",
  376. "url": "https://ghcr.io/v2/homebrew/core/fortune/blobs/sha256:9d1ed340349cd7995d1308fc09fc69c3520c96b329ab881dc0d96fce914e029c",
  377. "sha256": "9d1ed340349cd7995d1308fc09fc69c3520c96b329ab881dc0d96fce914e029c"
  378. },
  379. "mojave": {
  380. "cellar": "/usr/local/Cellar",
  381. "url": "https://ghcr.io/v2/homebrew/core/fortune/blobs/sha256:9a7a866859df246c3fe9331cb1b131562359690dbc5bfed6ee4e8f5a4585025e",
  382. "sha256": "9a7a866859df246c3fe9331cb1b131562359690dbc5bfed6ee4e8f5a4585025e"
  383. },
  384. "high_sierra": {
  385. "cellar": "/usr/local/Cellar",
  386. "url": "https://ghcr.io/v2/homebrew/core/fortune/blobs/sha256:3421fe011b2f27d30ae6e56d880eba8a68cb1249d6c4cd063a04fd61022507be",
  387. "sha256": "3421fe011b2f27d30ae6e56d880eba8a68cb1249d6c4cd063a04fd61022507be"
  388. }
  389. }
  390. }
  391. },
  392. "fzf": {
  393. "version": "0.27.0",
  394. "bottle": {
  395. "rebuild": 0,
  396. "root_url": "https://ghcr.io/v2/homebrew/core",
  397. "files": {
  398. "arm64_big_sur": {
  399. "cellar": ":any_skip_relocation",
  400. "url": "https://ghcr.io/v2/homebrew/core/fzf/blobs/sha256:ccc3f270e04389a9cc44d37c8d91a2b7cea3eba1d43c37e89a6cabc66898e2bc",
  401. "sha256": "ccc3f270e04389a9cc44d37c8d91a2b7cea3eba1d43c37e89a6cabc66898e2bc"
  402. },
  403. "big_sur": {
  404. "cellar": ":any_skip_relocation",
  405. "url": "https://ghcr.io/v2/homebrew/core/fzf/blobs/sha256:7b0ca0f1f3bfbdfa55c4d7b7f0c3e11b07dd52db46f1862b54b742761c59c0e3",
  406. "sha256": "7b0ca0f1f3bfbdfa55c4d7b7f0c3e11b07dd52db46f1862b54b742761c59c0e3"
  407. },
  408. "catalina": {
  409. "cellar": ":any_skip_relocation",
  410. "url": "https://ghcr.io/v2/homebrew/core/fzf/blobs/sha256:6a204ecb17beb7375a73569dba8c6ea1a097fa16a42b38a8fa456d205d107e7b",
  411. "sha256": "6a204ecb17beb7375a73569dba8c6ea1a097fa16a42b38a8fa456d205d107e7b"
  412. },
  413. "mojave": {
  414. "cellar": ":any_skip_relocation",
  415. "url": "https://ghcr.io/v2/homebrew/core/fzf/blobs/sha256:398c27f1750bec0973e9763b56194779915c2428fc6f7506392b2d30e16edb15",
  416. "sha256": "398c27f1750bec0973e9763b56194779915c2428fc6f7506392b2d30e16edb15"
  417. }
  418. }
  419. }
  420. },
  421. "gdk-pixbuf": {
  422. "version": "2.42.6",
  423. "bottle": {
  424. "rebuild": 0,
  425. "root_url": "https://ghcr.io/v2/homebrew/core",
  426. "files": {
  427. "arm64_big_sur": {
  428. "cellar": "/opt/homebrew/Cellar",
  429. "url": "https://ghcr.io/v2/homebrew/core/gdk-pixbuf/blobs/sha256:1aa92bcea0846fe0b37a4d65bf5947f5c27ffc750a93bd94db69bfe25369fda3",
  430. "sha256": "1aa92bcea0846fe0b37a4d65bf5947f5c27ffc750a93bd94db69bfe25369fda3"
  431. },
  432. "big_sur": {
  433. "cellar": "/usr/local/Cellar",
  434. "url": "https://ghcr.io/v2/homebrew/core/gdk-pixbuf/blobs/sha256:f4cf795b20c84fb5074ceeeeaf7b1d22e164b7af13adb6d0b95e3655d867fd41",
  435. "sha256": "f4cf795b20c84fb5074ceeeeaf7b1d22e164b7af13adb6d0b95e3655d867fd41"
  436. },
  437. "catalina": {
  438. "cellar": "/usr/local/Cellar",
  439. "url": "https://ghcr.io/v2/homebrew/core/gdk-pixbuf/blobs/sha256:94835aba06d5e7160fd19bb14e05d3aad2f27be4c7030c019e42208369cf6014",
  440. "sha256": "94835aba06d5e7160fd19bb14e05d3aad2f27be4c7030c019e42208369cf6014"
  441. },
  442. "mojave": {
  443. "cellar": "/usr/local/Cellar",
  444. "url": "https://ghcr.io/v2/homebrew/core/gdk-pixbuf/blobs/sha256:4bd3543b83cd74bfd0de1bd94a9e0200374c0834ef636cfe99621fe3c2145aaa",
  445. "sha256": "4bd3543b83cd74bfd0de1bd94a9e0200374c0834ef636cfe99621fe3c2145aaa"
  446. }
  447. }
  448. }
  449. },
  450. "gh": {
  451. "version": "1.9.2",
  452. "bottle": {
  453. "rebuild": 0,
  454. "root_url": "https://ghcr.io/v2/homebrew/core",
  455. "files": {
  456. "arm64_big_sur": {
  457. "cellar": ":any_skip_relocation",
  458. "url": "https://ghcr.io/v2/homebrew/core/gh/blobs/sha256:bf12b5bf3ca0ca3b7ca02b21044415d3c089412f1b63210e49923176e6634647",
  459. "sha256": "bf12b5bf3ca0ca3b7ca02b21044415d3c089412f1b63210e49923176e6634647"
  460. },
  461. "big_sur": {
  462. "cellar": ":any_skip_relocation",
  463. "url": "https://ghcr.io/v2/homebrew/core/gh/blobs/sha256:d82df4e2be9ca5c76508c1f55d26be681153de2a99f0df92f2d145b51a15259a",
  464. "sha256": "d82df4e2be9ca5c76508c1f55d26be681153de2a99f0df92f2d145b51a15259a"
  465. },
  466. "catalina": {
  467. "cellar": ":any_skip_relocation",
  468. "url": "https://ghcr.io/v2/homebrew/core/gh/blobs/sha256:0d6c1fbee481e0cde4edbaa38de0ba666636f44bbe07b5b780defc8c51f2a11a",
  469. "sha256": "0d6c1fbee481e0cde4edbaa38de0ba666636f44bbe07b5b780defc8c51f2a11a"
  470. },
  471. "mojave": {
  472. "cellar": ":any_skip_relocation",
  473. "url": "https://ghcr.io/v2/homebrew/core/gh/blobs/sha256:7284e6f49adfa2655dd6bb611ef680ad2917d389d0a865398669ca98f0e7ca1d",
  474. "sha256": "7284e6f49adfa2655dd6bb611ef680ad2917d389d0a865398669ca98f0e7ca1d"
  475. }
  476. }
  477. }
  478. },
  479. "git": {
  480. "version": "2.31.1",
  481. "bottle": {
  482. "rebuild": 0,
  483. "root_url": "https://ghcr.io/v2/homebrew/core",
  484. "files": {
  485. "arm64_big_sur": {
  486. "cellar": "/opt/homebrew/Cellar",
  487. "url": "https://ghcr.io/v2/homebrew/core/git/blobs/sha256:82be780c2468d4e315f861ea797e98a93084bb754d8610c06a346eea74d82150",
  488. "sha256": "82be780c2468d4e315f861ea797e98a93084bb754d8610c06a346eea74d82150"
  489. },
  490. "big_sur": {
  491. "cellar": "/usr/local/Cellar",
  492. "url": "https://ghcr.io/v2/homebrew/core/git/blobs/sha256:cf1fe81d5928efa530d891ec341d34c262b1eb7ea457191359476168ae323b93",
  493. "sha256": "cf1fe81d5928efa530d891ec341d34c262b1eb7ea457191359476168ae323b93"
  494. },
  495. "catalina": {
  496. "cellar": "/usr/local/Cellar",
  497. "url": "https://ghcr.io/v2/homebrew/core/git/blobs/sha256:6247bd388d85b30900923c32c0cd10caf7d48d41429c8f65a780d61b493ee9a4",
  498. "sha256": "6247bd388d85b30900923c32c0cd10caf7d48d41429c8f65a780d61b493ee9a4"
  499. },
  500. "mojave": {
  501. "cellar": "/usr/local/Cellar",
  502. "url": "https://ghcr.io/v2/homebrew/core/git/blobs/sha256:ff281db6c9d895705c252ab4a7798c7274df2484c8cd5f22647e76c83ceabfca",
  503. "sha256": "ff281db6c9d895705c252ab4a7798c7274df2484c8cd5f22647e76c83ceabfca"
  504. }
  505. }
  506. }
  507. },
  508. "nghttp2": {
  509. "version": "1.43.0",
  510. "bottle": {
  511. "rebuild": 0,
  512. "root_url": "https://ghcr.io/v2/homebrew/core",
  513. "files": {
  514. "arm64_big_sur": {
  515. "cellar": "/opt/homebrew/Cellar",
  516. "url": "https://ghcr.io/v2/homebrew/core/nghttp2/blobs/sha256:e927b6ac25987d073b7d65d87bf27b30a95cd1196ffff4b5b82bf955da42b1c7",
  517. "sha256": "e927b6ac25987d073b7d65d87bf27b30a95cd1196ffff4b5b82bf955da42b1c7"
  518. },
  519. "big_sur": {
  520. "cellar": "/usr/local/Cellar",
  521. "url": "https://ghcr.io/v2/homebrew/core/nghttp2/blobs/sha256:e6112c4ce4b08b60edbb3d7fca3e22498bbe1881bd6ca95df52b9f2726b0c62a",
  522. "sha256": "e6112c4ce4b08b60edbb3d7fca3e22498bbe1881bd6ca95df52b9f2726b0c62a"
  523. },
  524. "catalina": {
  525. "cellar": "/usr/local/Cellar",
  526. "url": "https://ghcr.io/v2/homebrew/core/nghttp2/blobs/sha256:5db5819e321f04b2301165cc267913ceacb161faa0504f4e067e074a101871b8",
  527. "sha256": "5db5819e321f04b2301165cc267913ceacb161faa0504f4e067e074a101871b8"
  528. },
  529. "mojave": {
  530. "cellar": "/usr/local/Cellar",
  531. "url": "https://ghcr.io/v2/homebrew/core/nghttp2/blobs/sha256:cbcac00ca57c0c71e148124ed31cf37abcd28f5adc11565fa51f9f277b401a09",
  532. "sha256": "cbcac00ca57c0c71e148124ed31cf37abcd28f5adc11565fa51f9f277b401a09"
  533. }
  534. }
  535. }
  536. },
  537. "unbound": {
  538. "version": "1.13.1",
  539. "bottle": {
  540. "rebuild": 0,
  541. "root_url": "https://ghcr.io/v2/homebrew/core",
  542. "files": {
  543. "arm64_big_sur": {
  544. "cellar": "/opt/homebrew/Cellar",
  545. "url": "https://ghcr.io/v2/homebrew/core/unbound/blobs/sha256:ca8e29b1898957208edd7a8ea445b0d39c942815a57f428b612ff0ae636bf859",
  546. "sha256": "ca8e29b1898957208edd7a8ea445b0d39c942815a57f428b612ff0ae636bf859"
  547. },
  548. "big_sur": {
  549. "cellar": "/usr/local/Cellar",
  550. "url": "https://ghcr.io/v2/homebrew/core/unbound/blobs/sha256:c29ad2474ecb496f9e98a7389485cac2c542d8515d5fd2810bed05f206350a21",
  551. "sha256": "c29ad2474ecb496f9e98a7389485cac2c542d8515d5fd2810bed05f206350a21"
  552. },
  553. "catalina": {
  554. "cellar": "/usr/local/Cellar",
  555. "url": "https://ghcr.io/v2/homebrew/core/unbound/blobs/sha256:0276d7a615cdd250ce1764a708c9e031c9c814f7d2c1a0f7aeb9d08166875af6",
  556. "sha256": "0276d7a615cdd250ce1764a708c9e031c9c814f7d2c1a0f7aeb9d08166875af6"
  557. },
  558. "mojave": {
  559. "cellar": "/usr/local/Cellar",
  560. "url": "https://ghcr.io/v2/homebrew/core/unbound/blobs/sha256:27a471fe986b64f4ccd80280ba5695532ec77198542b30f0bd176cb02f07b0b8",
  561. "sha256": "27a471fe986b64f4ccd80280ba5695532ec77198542b30f0bd176cb02f07b0b8"
  562. }
  563. }
  564. }
  565. },
  566. "gnutls": {
  567. "version": "3.6.15",
  568. "bottle": {
  569. "rebuild": 1,
  570. "root_url": "https://ghcr.io/v2/homebrew/core",
  571. "files": {
  572. "arm64_big_sur": {
  573. "cellar": "/opt/homebrew/Cellar",
  574. "url": "https://ghcr.io/v2/homebrew/core/gnutls/blobs/sha256:2be786f86b84f77ce5d9c15d4f059a240b4284039109a383b3a1d47f32ace17f",
  575. "sha256": "2be786f86b84f77ce5d9c15d4f059a240b4284039109a383b3a1d47f32ace17f"
  576. },
  577. "big_sur": {
  578. "cellar": "/usr/local/Cellar",
  579. "url": "https://ghcr.io/v2/homebrew/core/gnutls/blobs/sha256:72bc4290e20b342e85f6cc0e02f2d780eeff11bb1a9c40a4eb4473512ff09d9b",
  580. "sha256": "72bc4290e20b342e85f6cc0e02f2d780eeff11bb1a9c40a4eb4473512ff09d9b"
  581. },
  582. "catalina": {
  583. "cellar": "/usr/local/Cellar",
  584. "url": "https://ghcr.io/v2/homebrew/core/gnutls/blobs/sha256:774fe85d6dfd00e5882258eeaf5edc81e98bf4d074b7fe49a52bcf116e50bc8a",
  585. "sha256": "774fe85d6dfd00e5882258eeaf5edc81e98bf4d074b7fe49a52bcf116e50bc8a"
  586. },
  587. "mojave": {
  588. "cellar": "/usr/local/Cellar",
  589. "url": "https://ghcr.io/v2/homebrew/core/gnutls/blobs/sha256:0add13d231debe9e8a941f0295c09b87446127ca69bb2c67a069ac17cf6da858",
  590. "sha256": "0add13d231debe9e8a941f0295c09b87446127ca69bb2c67a069ac17cf6da858"
  591. }
  592. }
  593. }
  594. },
  595. "go": {
  596. "version": "1.16.3",
  597. "bottle": {
  598. "rebuild": 0,
  599. "root_url": "https://ghcr.io/v2/homebrew/core",
  600. "files": {
  601. "arm64_big_sur": {
  602. "cellar": "/opt/homebrew/Cellar",
  603. "url": "https://ghcr.io/v2/homebrew/core/go/blobs/sha256:e7c1efdd09e951eb46d01a3200b01e7fa55ce285b75470051be7fef34f4233ce",
  604. "sha256": "e7c1efdd09e951eb46d01a3200b01e7fa55ce285b75470051be7fef34f4233ce"
  605. },
  606. "big_sur": {
  607. "cellar": "/usr/local/Cellar",
  608. "url": "https://ghcr.io/v2/homebrew/core/go/blobs/sha256:ea37f33fd27369612a3e4e6db6adc46db0e8bdf6fac1332bf51bafaa66d43969",
  609. "sha256": "ea37f33fd27369612a3e4e6db6adc46db0e8bdf6fac1332bf51bafaa66d43969"
  610. },
  611. "catalina": {
  612. "cellar": "/usr/local/Cellar",
  613. "url": "https://ghcr.io/v2/homebrew/core/go/blobs/sha256:69c28f5e60612801c66e51e93d32068f822b245ab83246cb6cb374572eb59e15",
  614. "sha256": "69c28f5e60612801c66e51e93d32068f822b245ab83246cb6cb374572eb59e15"
  615. },
  616. "mojave": {
  617. "cellar": "/usr/local/Cellar",
  618. "url": "https://ghcr.io/v2/homebrew/core/go/blobs/sha256:bf1e90ed1680b8ee1acb49f2f99426c8a8ac3e49efd63c7f3b41e57e7214dd19",
  619. "sha256": "bf1e90ed1680b8ee1acb49f2f99426c8a8ac3e49efd63c7f3b41e57e7214dd19"
  620. }
  621. }
  622. }
  623. },
  624. "gobject-introspection": {
  625. "version": "1.68.0",
  626. "bottle": {
  627. "rebuild": 0,
  628. "root_url": "https://ghcr.io/v2/homebrew/core",
  629. "files": {
  630. "arm64_big_sur": {
  631. "cellar": "/opt/homebrew/Cellar",
  632. "url": "https://ghcr.io/v2/homebrew/core/gobject-introspection/blobs/sha256:41f7a223a257f2da33389b61128ece298cde0c63a036ee45f78c9b65ac71ea3f",
  633. "sha256": "41f7a223a257f2da33389b61128ece298cde0c63a036ee45f78c9b65ac71ea3f"
  634. },
  635. "big_sur": {
  636. "cellar": "/usr/local/Cellar",
  637. "url": "https://ghcr.io/v2/homebrew/core/gobject-introspection/blobs/sha256:bea661944345fe41b302c36402667d050dccee2f1899a729b01430325a5fc0d0",
  638. "sha256": "bea661944345fe41b302c36402667d050dccee2f1899a729b01430325a5fc0d0"
  639. },
  640. "catalina": {
  641. "cellar": "/usr/local/Cellar",
  642. "url": "https://ghcr.io/v2/homebrew/core/gobject-introspection/blobs/sha256:165846ffc3a6fbc66ff8cfc7ca40549ee5f807b5314c41501b297fe7d23d9354",
  643. "sha256": "165846ffc3a6fbc66ff8cfc7ca40549ee5f807b5314c41501b297fe7d23d9354"
  644. },
  645. "mojave": {
  646. "cellar": "/usr/local/Cellar",
  647. "url": "https://ghcr.io/v2/homebrew/core/gobject-introspection/blobs/sha256:b381b87d399e318d6ee2812d8ef92c2be6031de0f83307296a99f42d612f10ad",
  648. "sha256": "b381b87d399e318d6ee2812d8ef92c2be6031de0f83307296a99f42d612f10ad"
  649. }
  650. }
  651. }
  652. },
  653. "gource": {
  654. "version": "0.51_1",
  655. "bottle": {
  656. "rebuild": 0,
  657. "root_url": "https://ghcr.io/v2/homebrew/core",
  658. "files": {
  659. "arm64_big_sur": {
  660. "cellar": "/opt/homebrew/Cellar",
  661. "url": "https://ghcr.io/v2/homebrew/core/gource/blobs/sha256:82302ee7b3e01da62323d61a452fc81e5ec4fb62c2a04c8856e2f72373bf52cc",
  662. "sha256": "82302ee7b3e01da62323d61a452fc81e5ec4fb62c2a04c8856e2f72373bf52cc"
  663. },
  664. "big_sur": {
  665. "cellar": "/usr/local/Cellar",
  666. "url": "https://ghcr.io/v2/homebrew/core/gource/blobs/sha256:bea0be45970ab69265303255911c279c2a739de3a8fd858e60ad18f1465cfc0f",
  667. "sha256": "bea0be45970ab69265303255911c279c2a739de3a8fd858e60ad18f1465cfc0f"
  668. },
  669. "catalina": {
  670. "cellar": "/usr/local/Cellar",
  671. "url": "https://ghcr.io/v2/homebrew/core/gource/blobs/sha256:544380bd35795b5a809d536b6458b9e4a0f8fc940f36f6f8e54255091aa98250",
  672. "sha256": "544380bd35795b5a809d536b6458b9e4a0f8fc940f36f6f8e54255091aa98250"
  673. },
  674. "mojave": {
  675. "cellar": "/usr/local/Cellar",
  676. "url": "https://ghcr.io/v2/homebrew/core/gource/blobs/sha256:a603e1573f244abd8bc2a8963538ca6da27fbff90e68666e752678159c215baa",
  677. "sha256": "a603e1573f244abd8bc2a8963538ca6da27fbff90e68666e752678159c215baa"
  678. },
  679. "high_sierra": {
  680. "cellar": "/usr/local/Cellar",
  681. "url": "https://ghcr.io/v2/homebrew/core/gource/blobs/sha256:9e1ed79145083e62e52f6416b08d0d80c778cae6a8ba83808fb17f841cd6c136",
  682. "sha256": "9e1ed79145083e62e52f6416b08d0d80c778cae6a8ba83808fb17f841cd6c136"
  683. }
  684. }
  685. }
  686. },
  687. "graphviz": {
  688. "version": "2.47.1",
  689. "bottle": {
  690. "rebuild": 0,
  691. "root_url": "https://ghcr.io/v2/homebrew/core",
  692. "files": {
  693. "arm64_big_sur": {
  694. "cellar": "/opt/homebrew/Cellar",
  695. "url": "https://ghcr.io/v2/homebrew/core/graphviz/blobs/sha256:d9830966d41ef07d40f0a269597051dc3bd317f1f834f8eebf220d7fee6e06cb",
  696. "sha256": "d9830966d41ef07d40f0a269597051dc3bd317f1f834f8eebf220d7fee6e06cb"
  697. },
  698. "big_sur": {
  699. "cellar": "/usr/local/Cellar",
  700. "url": "https://ghcr.io/v2/homebrew/core/graphviz/blobs/sha256:41c4fe36cca429a201173d6f282bbc3e12ac9ae397736da75f2beb5c4c0d2e33",
  701. "sha256": "41c4fe36cca429a201173d6f282bbc3e12ac9ae397736da75f2beb5c4c0d2e33"
  702. },
  703. "catalina": {
  704. "cellar": "/usr/local/Cellar",
  705. "url": "https://ghcr.io/v2/homebrew/core/graphviz/blobs/sha256:4010170a67db373c8aaf6d2d4cc4767ed74963fbedf33641e672414f49af6a9b",
  706. "sha256": "4010170a67db373c8aaf6d2d4cc4767ed74963fbedf33641e672414f49af6a9b"
  707. },
  708. "mojave": {
  709. "cellar": "/usr/local/Cellar",
  710. "url": "https://ghcr.io/v2/homebrew/core/graphviz/blobs/sha256:a6dfb7964c7776134a100467120aa190fe45415b53a704b2a372d0b82e1d2bc6",
  711. "sha256": "a6dfb7964c7776134a100467120aa190fe45415b53a704b2a372d0b82e1d2bc6"
  712. }
  713. }
  714. }
  715. },
  716. "gsl": {
  717. "version": "2.6",
  718. "bottle": {
  719. "rebuild": 0,
  720. "root_url": "https://ghcr.io/v2/homebrew/core",
  721. "files": {
  722. "arm64_big_sur": {
  723. "cellar": ":any",
  724. "url": "https://ghcr.io/v2/homebrew/core/gsl/blobs/sha256:b4d8687427eb3a7f951c211f5a0b8051ca0bbaf174e68265fb6619d43b282aeb",
  725. "sha256": "b4d8687427eb3a7f951c211f5a0b8051ca0bbaf174e68265fb6619d43b282aeb"
  726. },
  727. "big_sur": {
  728. "cellar": ":any",
  729. "url": "https://ghcr.io/v2/homebrew/core/gsl/blobs/sha256:49b52d742f10f6a62de28658419c33ab11027eef3427e81b771921bf8d068637",
  730. "sha256": "49b52d742f10f6a62de28658419c33ab11027eef3427e81b771921bf8d068637"
  731. },
  732. "catalina": {
  733. "cellar": ":any",
  734. "url": "https://ghcr.io/v2/homebrew/core/gsl/blobs/sha256:5972e8669b2560124278b43788a002e3ff22f024c761750a1a33b41d2002f292",
  735. "sha256": "5972e8669b2560124278b43788a002e3ff22f024c761750a1a33b41d2002f292"
  736. },
  737. "mojave": {
  738. "cellar": ":any",
  739. "url": "https://ghcr.io/v2/homebrew/core/gsl/blobs/sha256:6c88a066c85f76c93a20f6e3256fb9022d6e7db828d184be5b42fd0b322ca7b8",
  740. "sha256": "6c88a066c85f76c93a20f6e3256fb9022d6e7db828d184be5b42fd0b322ca7b8"
  741. },
  742. "high_sierra": {
  743. "cellar": ":any",
  744. "url": "https://ghcr.io/v2/homebrew/core/gsl/blobs/sha256:8213b1a73d038e499223ccae6d04afe6eb2d9455e327d9558351cf47a0431b84",
  745. "sha256": "8213b1a73d038e499223ccae6d04afe6eb2d9455e327d9558351cf47a0431b84"
  746. },
  747. "sierra": {
  748. "cellar": ":any",
  749. "url": "https://ghcr.io/v2/homebrew/core/gsl/blobs/sha256:8515f26e5a06a99097e87dc9b88ee79787b95448ab67f09b449aee4b0d67bdba",
  750. "sha256": "8515f26e5a06a99097e87dc9b88ee79787b95448ab67f09b449aee4b0d67bdba"
  751. }
  752. }
  753. }
  754. },
  755. "hdf5": {
  756. "version": "1.12.0_3",
  757. "bottle": {
  758. "rebuild": 0,
  759. "root_url": "https://ghcr.io/v2/homebrew/core",
  760. "files": {
  761. "arm64_big_sur": {
  762. "cellar": ":any",
  763. "url": "https://ghcr.io/v2/homebrew/core/hdf5/blobs/sha256:49863955ae3d3bd15a1a51c736a89c5cc6928779108fdd0dff5707c8c80137ae",
  764. "sha256": "49863955ae3d3bd15a1a51c736a89c5cc6928779108fdd0dff5707c8c80137ae"
  765. },
  766. "big_sur": {
  767. "cellar": ":any",
  768. "url": "https://ghcr.io/v2/homebrew/core/hdf5/blobs/sha256:32a6a69f4524f1ff53adde0c182300d2bfeb08a2ec239b0f4ade28e77d64e471",
  769. "sha256": "32a6a69f4524f1ff53adde0c182300d2bfeb08a2ec239b0f4ade28e77d64e471"
  770. },
  771. "catalina": {
  772. "cellar": ":any",
  773. "url": "https://ghcr.io/v2/homebrew/core/hdf5/blobs/sha256:3b2b1043a2e8b39930386a8ed1d28a8bec35fb9e791be41713d1142e5d4f5827",
  774. "sha256": "3b2b1043a2e8b39930386a8ed1d28a8bec35fb9e791be41713d1142e5d4f5827"
  775. },
  776. "mojave": {
  777. "cellar": ":any",
  778. "url": "https://ghcr.io/v2/homebrew/core/hdf5/blobs/sha256:e43f228f5d7ab744fd3a94e2df4be1e491dd4825e208619ba8568f1778a7c268",
  779. "sha256": "e43f228f5d7ab744fd3a94e2df4be1e491dd4825e208619ba8568f1778a7c268"
  780. }
  781. }
  782. }
  783. },
  784. "htop": {
  785. "version": "3.0.5",
  786. "bottle": {
  787. "rebuild": 0,
  788. "root_url": "https://ghcr.io/v2/homebrew/core",
  789. "files": {
  790. "arm64_big_sur": {
  791. "cellar": ":any",
  792. "url": "https://ghcr.io/v2/homebrew/core/htop/blobs/sha256:e2b32da2189775e5a303b948bf2bf86224f2850786e849371efe002402f26c6f",
  793. "sha256": "e2b32da2189775e5a303b948bf2bf86224f2850786e849371efe002402f26c6f"
  794. },
  795. "big_sur": {
  796. "cellar": ":any",
  797. "url": "https://ghcr.io/v2/homebrew/core/htop/blobs/sha256:8f4e4c5d0ee34c41e008bb9a2ed4331303a42bd594ac358a822604a145c868ea",
  798. "sha256": "8f4e4c5d0ee34c41e008bb9a2ed4331303a42bd594ac358a822604a145c868ea"
  799. },
  800. "catalina": {
  801. "cellar": ":any",
  802. "url": "https://ghcr.io/v2/homebrew/core/htop/blobs/sha256:7dc2bf8825918876e3a853acbc9d7045786d1d418fdae2b0a4e6d4500006a08e",
  803. "sha256": "7dc2bf8825918876e3a853acbc9d7045786d1d418fdae2b0a4e6d4500006a08e"
  804. },
  805. "mojave": {
  806. "cellar": ":any",
  807. "url": "https://ghcr.io/v2/homebrew/core/htop/blobs/sha256:a009b141dcf7b95c60da3ef685ea0736be0c0a5e1e0de0945153697c6a032e2a",
  808. "sha256": "a009b141dcf7b95c60da3ef685ea0736be0c0a5e1e0de0945153697c6a032e2a"
  809. }
  810. }
  811. }
  812. },
  813. "libheif": {
  814. "version": "1.11.0_2",
  815. "bottle": {
  816. "rebuild": 0,
  817. "root_url": "https://ghcr.io/v2/homebrew/core",
  818. "files": {
  819. "arm64_big_sur": {
  820. "cellar": ":any",
  821. "url": "https://ghcr.io/v2/homebrew/core/libheif/blobs/sha256:6fb1565de0cf3f02dacaf0c1ca8631132900ecd2fb6511d0e1286f854e7368f9",
  822. "sha256": "6fb1565de0cf3f02dacaf0c1ca8631132900ecd2fb6511d0e1286f854e7368f9"
  823. },
  824. "big_sur": {
  825. "cellar": ":any",
  826. "url": "https://ghcr.io/v2/homebrew/core/libheif/blobs/sha256:aa29ab6b7ac495382a53400b355cc421c221f8f4aaff2a48ba2ee3a8432278be",
  827. "sha256": "aa29ab6b7ac495382a53400b355cc421c221f8f4aaff2a48ba2ee3a8432278be"
  828. },
  829. "catalina": {
  830. "cellar": ":any",
  831. "url": "https://ghcr.io/v2/homebrew/core/libheif/blobs/sha256:04efc496cd625e79e884d7207f406bfdb06d60a5b5c347689d98b346e5bc896a",
  832. "sha256": "04efc496cd625e79e884d7207f406bfdb06d60a5b5c347689d98b346e5bc896a"
  833. },
  834. "mojave": {
  835. "cellar": ":any",
  836. "url": "https://ghcr.io/v2/homebrew/core/libheif/blobs/sha256:46dcec99a6e08a2bf6bafafe61619074c2db05be724aade8f335e808b2c9b346",
  837. "sha256": "46dcec99a6e08a2bf6bafafe61619074c2db05be724aade8f335e808b2c9b346"
  838. }
  839. }
  840. }
  841. },
  842. "python@3.8": {
  843. "version": "3.8.9",
  844. "bottle": {
  845. "rebuild": 0,
  846. "root_url": "https://ghcr.io/v2/homebrew/core",
  847. "files": {
  848. "arm64_big_sur": {
  849. "cellar": "/opt/homebrew/Cellar",
  850. "url": "https://ghcr.io/v2/homebrew/core/python/3.8/blobs/sha256:e0aa205ed6ff34c99c3659490ccbc280c070dc04ac6a8d04960b36ff9076dd2e",
  851. "sha256": "e0aa205ed6ff34c99c3659490ccbc280c070dc04ac6a8d04960b36ff9076dd2e"
  852. },
  853. "big_sur": {
  854. "cellar": "/usr/local/Cellar",
  855. "url": "https://ghcr.io/v2/homebrew/core/python/3.8/blobs/sha256:6111e285226a59c3c3b0f684de2a810deb1b5b5b68e81fdafcb11f0a0b0f6606",
  856. "sha256": "6111e285226a59c3c3b0f684de2a810deb1b5b5b68e81fdafcb11f0a0b0f6606"
  857. },
  858. "catalina": {
  859. "cellar": "/usr/local/Cellar",
  860. "url": "https://ghcr.io/v2/homebrew/core/python/3.8/blobs/sha256:65a3d5fa32b16df0886c7390e992f4948b51ce56d10e57bd05895e5795efe0fd",
  861. "sha256": "65a3d5fa32b16df0886c7390e992f4948b51ce56d10e57bd05895e5795efe0fd"
  862. },
  863. "mojave": {
  864. "cellar": "/usr/local/Cellar",
  865. "url": "https://ghcr.io/v2/homebrew/core/python/3.8/blobs/sha256:5d408f56ab185c3e7644e6ac3fe063cc367aa14810050cd2a9297332de97f5a9",
  866. "sha256": "5d408f56ab185c3e7644e6ac3fe063cc367aa14810050cd2a9297332de97f5a9"
  867. }
  868. }
  869. }
  870. },
  871. "imagemagick": {
  872. "version": "7.0.11-9",
  873. "bottle": {
  874. "rebuild": 0,
  875. "root_url": "https://ghcr.io/v2/homebrew/core",
  876. "files": {
  877. "arm64_big_sur": {
  878. "cellar": "/opt/homebrew/Cellar",
  879. "url": "https://ghcr.io/v2/homebrew/core/imagemagick/blobs/sha256:b25d7c1b4e2f3ce252b347b4f81f98c75eb407b72bd61b9794b5486f9cf6f47b",
  880. "sha256": "b25d7c1b4e2f3ce252b347b4f81f98c75eb407b72bd61b9794b5486f9cf6f47b"
  881. },
  882. "big_sur": {
  883. "cellar": "/usr/local/Cellar",
  884. "url": "https://ghcr.io/v2/homebrew/core/imagemagick/blobs/sha256:7b8c370a3f4b9f07f3adcbc07cad1ee546ee5e338e8cf32e6e9810945bd2ffd1",
  885. "sha256": "7b8c370a3f4b9f07f3adcbc07cad1ee546ee5e338e8cf32e6e9810945bd2ffd1"
  886. },
  887. "catalina": {
  888. "cellar": "/usr/local/Cellar",
  889. "url": "https://ghcr.io/v2/homebrew/core/imagemagick/blobs/sha256:80d743b6442e296fa8ec640fbc43ba80448794d42f96dc82a4aba3431e57f6c1",
  890. "sha256": "80d743b6442e296fa8ec640fbc43ba80448794d42f96dc82a4aba3431e57f6c1"
  891. },
  892. "mojave": {
  893. "cellar": "/usr/local/Cellar",
  894. "url": "https://ghcr.io/v2/homebrew/core/imagemagick/blobs/sha256:fb0fa1a417438b1bf90829139b92a085994a5fccbbb5ea095a97cc00d381814c",
  895. "sha256": "fb0fa1a417438b1bf90829139b92a085994a5fccbbb5ea095a97cc00d381814c"
  896. }
  897. }
  898. }
  899. },
  900. "ipmitool": {
  901. "version": "1.8.18_3",
  902. "bottle": {
  903. "rebuild": 0,
  904. "root_url": "https://ghcr.io/v2/homebrew/core",
  905. "files": {
  906. "arm64_big_sur": {
  907. "cellar": ":any",
  908. "url": "https://ghcr.io/v2/homebrew/core/ipmitool/blobs/sha256:3223279b0188313a5d87ede24617f6bda5921acc1ce135c30c7c43823f14913f",
  909. "sha256": "3223279b0188313a5d87ede24617f6bda5921acc1ce135c30c7c43823f14913f"
  910. },
  911. "big_sur": {
  912. "cellar": ":any",
  913. "url": "https://ghcr.io/v2/homebrew/core/ipmitool/blobs/sha256:6dd8c02b3e556949c98d40980dd9c1b456d1fa078d9d7792f36977e7d239a4ac",
  914. "sha256": "6dd8c02b3e556949c98d40980dd9c1b456d1fa078d9d7792f36977e7d239a4ac"
  915. },
  916. "catalina": {
  917. "cellar": ":any",
  918. "url": "https://ghcr.io/v2/homebrew/core/ipmitool/blobs/sha256:926d5c49a0a1b9411e45c54e412403003266c27127059edb50b40e07adaf2260",
  919. "sha256": "926d5c49a0a1b9411e45c54e412403003266c27127059edb50b40e07adaf2260"
  920. },
  921. "mojave": {
  922. "cellar": ":any",
  923. "url": "https://ghcr.io/v2/homebrew/core/ipmitool/blobs/sha256:3bf8d00d62c2e1dc781493d448062ad365ac8e7c73010ee37ba2040a48513c10",
  924. "sha256": "3bf8d00d62c2e1dc781493d448062ad365ac8e7c73010ee37ba2040a48513c10"
  925. },
  926. "high_sierra": {
  927. "cellar": ":any",
  928. "url": "https://ghcr.io/v2/homebrew/core/ipmitool/blobs/sha256:04462f0b4129d34cbf7e8e5c72591360e89dd6d6cef20008567015d57ab611c4",
  929. "sha256": "04462f0b4129d34cbf7e8e5c72591360e89dd6d6cef20008567015d57ab611c4"
  930. },
  931. "sierra": {
  932. "cellar": ":any",
  933. "url": "https://ghcr.io/v2/homebrew/core/ipmitool/blobs/sha256:f08f0e5717ff8ccf031ca738eb4995b39db5d37b802800b6e0b6c154f6fed830",
  934. "sha256": "f08f0e5717ff8ccf031ca738eb4995b39db5d37b802800b6e0b6c154f6fed830"
  935. }
  936. }
  937. }
  938. },
  939. "mtr": {
  940. "version": "0.94",
  941. "bottle": {
  942. "rebuild": 0,
  943. "root_url": "https://ghcr.io/v2/homebrew/core",
  944. "files": {
  945. "arm64_big_sur": {
  946. "cellar": ":any_skip_relocation",
  947. "url": "https://ghcr.io/v2/homebrew/core/mtr/blobs/sha256:2e6e4509d128d1f3bc7e0594c8fb12b60971780e070523a2e4d8b896507cef57",
  948. "sha256": "2e6e4509d128d1f3bc7e0594c8fb12b60971780e070523a2e4d8b896507cef57"
  949. },
  950. "big_sur": {
  951. "cellar": ":any_skip_relocation",
  952. "url": "https://ghcr.io/v2/homebrew/core/mtr/blobs/sha256:3625ac3eeb2409adfb156194c8bda385b98ebb7afa59229e302e9e61bb897004",
  953. "sha256": "3625ac3eeb2409adfb156194c8bda385b98ebb7afa59229e302e9e61bb897004"
  954. },
  955. "catalina": {
  956. "cellar": ":any_skip_relocation",
  957. "url": "https://ghcr.io/v2/homebrew/core/mtr/blobs/sha256:6ec962809c1c2381b7723647e16c2283dbef8042ae04af14ad675fa63c38a859",
  958. "sha256": "6ec962809c1c2381b7723647e16c2283dbef8042ae04af14ad675fa63c38a859"
  959. },
  960. "mojave": {
  961. "cellar": ":any_skip_relocation",
  962. "url": "https://ghcr.io/v2/homebrew/core/mtr/blobs/sha256:6a768b9cd07026aec0276742fd3fb6723c0f545a8498dff1ab3bb5b9e23e85e0",
  963. "sha256": "6a768b9cd07026aec0276742fd3fb6723c0f545a8498dff1ab3bb5b9e23e85e0"
  964. },
  965. "high_sierra": {
  966. "cellar": ":any_skip_relocation",
  967. "url": "https://ghcr.io/v2/homebrew/core/mtr/blobs/sha256:9c9a9c995360d16581ef42b0a729a5d3c152e7195bcc88910cda9bd9315c3299",
  968. "sha256": "9c9a9c995360d16581ef42b0a729a5d3c152e7195bcc88910cda9bd9315c3299"
  969. }
  970. }
  971. }
  972. },
  973. "ncdu": {
  974. "version": "1.15.1",
  975. "bottle": {
  976. "rebuild": 0,
  977. "root_url": "https://ghcr.io/v2/homebrew/core",
  978. "files": {
  979. "arm64_big_sur": {
  980. "cellar": ":any_skip_relocation",
  981. "url": "https://ghcr.io/v2/homebrew/core/ncdu/blobs/sha256:26eb6537a378702dc900546a2069472b51822fe086f380d0793c29adcc71166f",
  982. "sha256": "26eb6537a378702dc900546a2069472b51822fe086f380d0793c29adcc71166f"
  983. },
  984. "big_sur": {
  985. "cellar": ":any_skip_relocation",
  986. "url": "https://ghcr.io/v2/homebrew/core/ncdu/blobs/sha256:0761e7d2ca14605c0b5d122521c5f9d63f536fd37bb3cf46ae1367b36d4f166f",
  987. "sha256": "0761e7d2ca14605c0b5d122521c5f9d63f536fd37bb3cf46ae1367b36d4f166f"
  988. },
  989. "catalina": {
  990. "cellar": ":any_skip_relocation",
  991. "url": "https://ghcr.io/v2/homebrew/core/ncdu/blobs/sha256:994f7f4e9624a0984ec7c37b5b15b9ae5c24663ebffaba19b0979f4e99919fee",
  992. "sha256": "994f7f4e9624a0984ec7c37b5b15b9ae5c24663ebffaba19b0979f4e99919fee"
  993. },
  994. "mojave": {
  995. "cellar": ":any_skip_relocation",
  996. "url": "https://ghcr.io/v2/homebrew/core/ncdu/blobs/sha256:f7908eaf47c7842b15e56e17279583f4c938a9c920e1bae41f05d3e5506a99fb",
  997. "sha256": "f7908eaf47c7842b15e56e17279583f4c938a9c920e1bae41f05d3e5506a99fb"
  998. },
  999. "high_sierra": {
  1000. "cellar": ":any_skip_relocation",
  1001. "url": "https://ghcr.io/v2/homebrew/core/ncdu/blobs/sha256:d094385dbfd71831c5f2b03f0817a06df9471a44f5437aaf577676d2723bc865",
  1002. "sha256": "d094385dbfd71831c5f2b03f0817a06df9471a44f5437aaf577676d2723bc865"
  1003. }
  1004. }
  1005. }
  1006. },
  1007. "neovim": {
  1008. "version": "0.4.4_2",
  1009. "bottle": {
  1010. "rebuild": 0,
  1011. "root_url": "https://ghcr.io/v2/homebrew/core",
  1012. "files": {
  1013. "arm64_big_sur": {
  1014. "cellar": "/opt/homebrew/Cellar",
  1015. "url": "https://ghcr.io/v2/homebrew/core/neovim/blobs/sha256:9e24789f21eba59817331f583622d5594598162de01eeac4abfdeacdee67f7a9",
  1016. "sha256": "9e24789f21eba59817331f583622d5594598162de01eeac4abfdeacdee67f7a9"
  1017. },
  1018. "big_sur": {
  1019. "cellar": "/usr/local/Cellar",
  1020. "url": "https://ghcr.io/v2/homebrew/core/neovim/blobs/sha256:33fd21ea56ff618b9840e4ca87ddf2b0450f73dff8f39eed163052e171395bdb",
  1021. "sha256": "33fd21ea56ff618b9840e4ca87ddf2b0450f73dff8f39eed163052e171395bdb"
  1022. },
  1023. "catalina": {
  1024. "cellar": "/usr/local/Cellar",
  1025. "url": "https://ghcr.io/v2/homebrew/core/neovim/blobs/sha256:e2d64684c43eb19390975d6434e2845f98f9e0f0f91c00b1277750c36bdf0676",
  1026. "sha256": "e2d64684c43eb19390975d6434e2845f98f9e0f0f91c00b1277750c36bdf0676"
  1027. },
  1028. "mojave": {
  1029. "cellar": "/usr/local/Cellar",
  1030. "url": "https://ghcr.io/v2/homebrew/core/neovim/blobs/sha256:e6e9437addbf446ed88518784f461a0bdb9c578b6779f3353e066a4491b52465",
  1031. "sha256": "e6e9437addbf446ed88518784f461a0bdb9c578b6779f3353e066a4491b52465"
  1032. }
  1033. }
  1034. }
  1035. },
  1036. "node": {
  1037. "version": "16.0.0_1",
  1038. "bottle": {
  1039. "rebuild": 0,
  1040. "root_url": "https://ghcr.io/v2/homebrew/core",
  1041. "files": {
  1042. "arm64_big_sur": {
  1043. "cellar": ":any",
  1044. "url": "https://ghcr.io/v2/homebrew/core/node/blobs/sha256:1e8f57059c81e915a269034a093db9e119e6c3510762b338b7959c371ab6eca5",
  1045. "sha256": "1e8f57059c81e915a269034a093db9e119e6c3510762b338b7959c371ab6eca5"
  1046. },
  1047. "big_sur": {
  1048. "cellar": ":any",
  1049. "url": "https://ghcr.io/v2/homebrew/core/node/blobs/sha256:fcbfec8e0a91d9013bd1d944c75085c076442c1e804e2c5b1f41057700adaaae",
  1050. "sha256": "fcbfec8e0a91d9013bd1d944c75085c076442c1e804e2c5b1f41057700adaaae"
  1051. },
  1052. "catalina": {
  1053. "cellar": ":any",
  1054. "url": "https://ghcr.io/v2/homebrew/core/node/blobs/sha256:f2529dfd77086b031a469b4c910ca70feba5e3d6947ca387dedd8fc69cb30da2",
  1055. "sha256": "f2529dfd77086b031a469b4c910ca70feba5e3d6947ca387dedd8fc69cb30da2"
  1056. },
  1057. "mojave": {
  1058. "cellar": ":any",
  1059. "url": "https://ghcr.io/v2/homebrew/core/node/blobs/sha256:bd9fd9ac3e62b8c2309a1d25659a4f3920a918413321280426de8e6d8fac6de0",
  1060. "sha256": "bd9fd9ac3e62b8c2309a1d25659a4f3920a918413321280426de8e6d8fac6de0"
  1061. }
  1062. }
  1063. }
  1064. },
  1065. "numpy": {
  1066. "version": "1.20.2",
  1067. "bottle": {
  1068. "rebuild": 0,
  1069. "root_url": "https://ghcr.io/v2/homebrew/core",
  1070. "files": {
  1071. "arm64_big_sur": {
  1072. "cellar": ":any",
  1073. "url": "https://ghcr.io/v2/homebrew/core/numpy/blobs/sha256:c2904e46fb22bc5d067c1c26deb07747f488721f734dce29d5cd049ce9684701",
  1074. "sha256": "c2904e46fb22bc5d067c1c26deb07747f488721f734dce29d5cd049ce9684701"
  1075. },
  1076. "big_sur": {
  1077. "cellar": ":any",
  1078. "url": "https://ghcr.io/v2/homebrew/core/numpy/blobs/sha256:ae10cdd3dc05c9c76feef50b2ee8365b49b2c1b6efbe3e134d4390c4e82ed602",
  1079. "sha256": "ae10cdd3dc05c9c76feef50b2ee8365b49b2c1b6efbe3e134d4390c4e82ed602"
  1080. },
  1081. "catalina": {
  1082. "cellar": ":any",
  1083. "url": "https://ghcr.io/v2/homebrew/core/numpy/blobs/sha256:e839ede282c17544b4905ad6c1c6cb89333ecf5ce15624bffeac153684e6497c",
  1084. "sha256": "e839ede282c17544b4905ad6c1c6cb89333ecf5ce15624bffeac153684e6497c"
  1085. },
  1086. "mojave": {
  1087. "cellar": ":any",
  1088. "url": "https://ghcr.io/v2/homebrew/core/numpy/blobs/sha256:877c88acd1d80ec7d5c4f6fe5fbe1f41b0d1f987ced4f7e4a5b968544ba7f17c",
  1089. "sha256": "877c88acd1d80ec7d5c4f6fe5fbe1f41b0d1f987ced4f7e4a5b968544ba7f17c"
  1090. }
  1091. }
  1092. },
  1093. "options": {
  1094. "link": false
  1095. }
  1096. },
  1097. "pandoc": {
  1098. "version": "2.13",
  1099. "bottle": {
  1100. "rebuild": 0,
  1101. "root_url": "https://ghcr.io/v2/homebrew/core",
  1102. "files": {
  1103. "big_sur": {
  1104. "cellar": ":any_skip_relocation",
  1105. "url": "https://ghcr.io/v2/homebrew/core/pandoc/blobs/sha256:05bed41434d9678edf93ec4d7ffa905f248eb33c2c4cf8cedf89808be252c904",
  1106. "sha256": "05bed41434d9678edf93ec4d7ffa905f248eb33c2c4cf8cedf89808be252c904"
  1107. },
  1108. "catalina": {
  1109. "cellar": ":any_skip_relocation",
  1110. "url": "https://ghcr.io/v2/homebrew/core/pandoc/blobs/sha256:b56dfd209f84ae6e7b937f45d819b6065b6bae41e21c2b983b681f695f9379a7",
  1111. "sha256": "b56dfd209f84ae6e7b937f45d819b6065b6bae41e21c2b983b681f695f9379a7"
  1112. },
  1113. "mojave": {
  1114. "cellar": ":any_skip_relocation",
  1115. "url": "https://ghcr.io/v2/homebrew/core/pandoc/blobs/sha256:877e64b3618740f71f3685b10df8f63eb5616110b6632d1d405aa308a140aaf3",
  1116. "sha256": "877e64b3618740f71f3685b10df8f63eb5616110b6632d1d405aa308a140aaf3"
  1117. }
  1118. }
  1119. }
  1120. },
  1121. "postgresql": {
  1122. "version": "13.2_2",
  1123. "bottle": {
  1124. "rebuild": 0,
  1125. "root_url": "https://ghcr.io/v2/homebrew/core",
  1126. "files": {
  1127. "arm64_big_sur": {
  1128. "cellar": "/opt/homebrew/Cellar",
  1129. "url": "https://ghcr.io/v2/homebrew/core/postgresql/blobs/sha256:5bb80b319443cc57a44a9a9a8507a5255728d2caf359ef7e931c79c2c833b900",
  1130. "sha256": "5bb80b319443cc57a44a9a9a8507a5255728d2caf359ef7e931c79c2c833b900"
  1131. },
  1132. "big_sur": {
  1133. "cellar": "/usr/local/Cellar",
  1134. "url": "https://ghcr.io/v2/homebrew/core/postgresql/blobs/sha256:ee460f1f8beb4d877121faf4ebcbf8069f86a8ef4ae05fa342bc2fcdde75bb47",
  1135. "sha256": "ee460f1f8beb4d877121faf4ebcbf8069f86a8ef4ae05fa342bc2fcdde75bb47"
  1136. },
  1137. "catalina": {
  1138. "cellar": "/usr/local/Cellar",
  1139. "url": "https://ghcr.io/v2/homebrew/core/postgresql/blobs/sha256:1f50565ab7a703d85ecc37179e8d461dc82de4e3e6266ba085dd19a0b95ed5db",
  1140. "sha256": "1f50565ab7a703d85ecc37179e8d461dc82de4e3e6266ba085dd19a0b95ed5db"
  1141. },
  1142. "mojave": {
  1143. "cellar": "/usr/local/Cellar",
  1144. "url": "https://ghcr.io/v2/homebrew/core/postgresql/blobs/sha256:c0a5828cb5caef09e7b4acd99b450b6d4ceb3a0d265a95b147e63e23fb6f7596",
  1145. "sha256": "c0a5828cb5caef09e7b4acd99b450b6d4ceb3a0d265a95b147e63e23fb6f7596"
  1146. }
  1147. }
  1148. }
  1149. },
  1150. "pv": {
  1151. "version": "1.6.6",
  1152. "bottle": {
  1153. "rebuild": 1,
  1154. "root_url": "https://ghcr.io/v2/homebrew/core",
  1155. "files": {
  1156. "arm64_big_sur": {
  1157. "cellar": ":any_skip_relocation",
  1158. "url": "https://ghcr.io/v2/homebrew/core/pv/blobs/sha256:9fa320894a6ae215794b2952ea60165dcfb63bdf3dda557a1998daaf5304df6b",
  1159. "sha256": "9fa320894a6ae215794b2952ea60165dcfb63bdf3dda557a1998daaf5304df6b"
  1160. },
  1161. "big_sur": {
  1162. "cellar": ":any_skip_relocation",
  1163. "url": "https://ghcr.io/v2/homebrew/core/pv/blobs/sha256:9a0c1c557a100dfb114c8fb3566c97f8d91c436fcc6f9f36a733f462945e4f95",
  1164. "sha256": "9a0c1c557a100dfb114c8fb3566c97f8d91c436fcc6f9f36a733f462945e4f95"
  1165. },
  1166. "catalina": {
  1167. "cellar": ":any_skip_relocation",
  1168. "url": "https://ghcr.io/v2/homebrew/core/pv/blobs/sha256:9bb586c4dab67989e7fa800e7c764d1d4ee153db8ad7a5ed3563270ca93a7497",
  1169. "sha256": "9bb586c4dab67989e7fa800e7c764d1d4ee153db8ad7a5ed3563270ca93a7497"
  1170. },
  1171. "mojave": {
  1172. "cellar": ":any_skip_relocation",
  1173. "url": "https://ghcr.io/v2/homebrew/core/pv/blobs/sha256:1877dffe8804fac2fe6f77582100e2b5ea3fbb7a305c1cfd025e251ede08c98e",
  1174. "sha256": "1877dffe8804fac2fe6f77582100e2b5ea3fbb7a305c1cfd025e251ede08c98e"
  1175. }
  1176. }
  1177. }
  1178. },
  1179. "pyenv": {
  1180. "version": "1.2.26_1",
  1181. "bottle": {
  1182. "rebuild": 0,
  1183. "root_url": "https://ghcr.io/v2/homebrew/core",
  1184. "files": {
  1185. "arm64_big_sur": {
  1186. "cellar": ":any",
  1187. "url": "https://ghcr.io/v2/homebrew/core/pyenv/blobs/sha256:578377fa7a5d5ea8f97f6c655acc6fccec8c3c06358e2ba215537c6b8716887b",
  1188. "sha256": "578377fa7a5d5ea8f97f6c655acc6fccec8c3c06358e2ba215537c6b8716887b"
  1189. },
  1190. "big_sur": {
  1191. "cellar": ":any",
  1192. "url": "https://ghcr.io/v2/homebrew/core/pyenv/blobs/sha256:a576725ca556c6302aa294f520a432955ec440e7473550aa77066753cd3da1ca",
  1193. "sha256": "a576725ca556c6302aa294f520a432955ec440e7473550aa77066753cd3da1ca"
  1194. },
  1195. "catalina": {
  1196. "cellar": ":any",
  1197. "url": "https://ghcr.io/v2/homebrew/core/pyenv/blobs/sha256:770ab4ed7db3ac4a3773f75ff35ab8cf058dacc062fe0caeb48c73f0987f6530",
  1198. "sha256": "770ab4ed7db3ac4a3773f75ff35ab8cf058dacc062fe0caeb48c73f0987f6530"
  1199. },
  1200. "mojave": {
  1201. "cellar": ":any",
  1202. "url": "https://ghcr.io/v2/homebrew/core/pyenv/blobs/sha256:7ab8fc0727ba144ae88ab2274b7c168e4c873c5d24030223ba9b517524fee436",
  1203. "sha256": "7ab8fc0727ba144ae88ab2274b7c168e4c873c5d24030223ba9b517524fee436"
  1204. }
  1205. }
  1206. }
  1207. },
  1208. "ruby-build": {
  1209. "version": "20210423",
  1210. "bottle": {
  1211. "rebuild": 0,
  1212. "root_url": "https://ghcr.io/v2/homebrew/core",
  1213. "files": {
  1214. "all": {
  1215. "cellar": ":any_skip_relocation",
  1216. "url": "https://ghcr.io/v2/homebrew/core/ruby-build/blobs/sha256:2541d7df4ff00fa77b285d92bdb3f7d0b449306cef1379a6663d6bd7445af301",
  1217. "sha256": "2541d7df4ff00fa77b285d92bdb3f7d0b449306cef1379a6663d6bd7445af301"
  1218. }
  1219. }
  1220. }
  1221. },
  1222. "rbenv": {
  1223. "version": "1.1.2",
  1224. "bottle": {
  1225. "rebuild": 0,
  1226. "root_url": "https://ghcr.io/v2/homebrew/core",
  1227. "files": {
  1228. "arm64_big_sur": {
  1229. "cellar": ":any",
  1230. "url": "https://ghcr.io/v2/homebrew/core/rbenv/blobs/sha256:19d0b9e3b11bcacdf692e78248c1b5764f7d3f4b58f2b83ad7b39562863ba82e",
  1231. "sha256": "19d0b9e3b11bcacdf692e78248c1b5764f7d3f4b58f2b83ad7b39562863ba82e"
  1232. },
  1233. "big_sur": {
  1234. "cellar": ":any",
  1235. "url": "https://ghcr.io/v2/homebrew/core/rbenv/blobs/sha256:60b045c8843745c45d01616ee3f71b91f6a16ee09c47e23a7817a3edabeaccfd",
  1236. "sha256": "60b045c8843745c45d01616ee3f71b91f6a16ee09c47e23a7817a3edabeaccfd"
  1237. },
  1238. "catalina": {
  1239. "cellar": ":any",
  1240. "url": "https://ghcr.io/v2/homebrew/core/rbenv/blobs/sha256:503ed6d818502f00f031b9f49461934e252b9bfba2876e90a326fc27bb1052d6",
  1241. "sha256": "503ed6d818502f00f031b9f49461934e252b9bfba2876e90a326fc27bb1052d6"
  1242. },
  1243. "mojave": {
  1244. "cellar": ":any",
  1245. "url": "https://ghcr.io/v2/homebrew/core/rbenv/blobs/sha256:d1019098dee8d037587069398e5ad04e6d736f834dc44ae73943bec46b10b260",
  1246. "sha256": "d1019098dee8d037587069398e5ad04e6d736f834dc44ae73943bec46b10b260"
  1247. },
  1248. "high_sierra": {
  1249. "cellar": ":any",
  1250. "url": "https://ghcr.io/v2/homebrew/core/rbenv/blobs/sha256:b5984102794a9d39388ca1f6ec77965aeea29b971cc00cb5af8ede8ee6c926d6",
  1251. "sha256": "b5984102794a9d39388ca1f6ec77965aeea29b971cc00cb5af8ede8ee6c926d6"
  1252. },
  1253. "sierra": {
  1254. "cellar": ":any",
  1255. "url": "https://ghcr.io/v2/homebrew/core/rbenv/blobs/sha256:873175a851e5aa4f5b3438072030b945c252f08a9a07760c64dc045e2cce4724",
  1256. "sha256": "873175a851e5aa4f5b3438072030b945c252f08a9a07760c64dc045e2cce4724"
  1257. }
  1258. }
  1259. }
  1260. },
  1261. "root": {
  1262. "version": "6.22.08",
  1263. "bottle": {
  1264. "rebuild": 0,
  1265. "root_url": "https://ghcr.io/v2/homebrew/core",
  1266. "files": {
  1267. "arm64_big_sur": {
  1268. "cellar": "/opt/homebrew/Cellar",
  1269. "url": "https://ghcr.io/v2/homebrew/core/root/blobs/sha256:6a4af2c361ac4f65f523b5487a93afe1ff7ea3939997bd376d6971a1de6dd1fb",
  1270. "sha256": "6a4af2c361ac4f65f523b5487a93afe1ff7ea3939997bd376d6971a1de6dd1fb"
  1271. },
  1272. "big_sur": {
  1273. "cellar": "/usr/local/Cellar",
  1274. "url": "https://ghcr.io/v2/homebrew/core/root/blobs/sha256:6f3b9e7ce0cc079488e9e4b9d6ca8a0b948c0d605887ff95f40a881c0645a1b6",
  1275. "sha256": "6f3b9e7ce0cc079488e9e4b9d6ca8a0b948c0d605887ff95f40a881c0645a1b6"
  1276. },
  1277. "catalina": {
  1278. "cellar": "/usr/local/Cellar",
  1279. "url": "https://ghcr.io/v2/homebrew/core/root/blobs/sha256:7fdc50aa5b0b2889c0b93f77c8dad5b8f838b924663f4d5b38fe2f423ef6effd",
  1280. "sha256": "7fdc50aa5b0b2889c0b93f77c8dad5b8f838b924663f4d5b38fe2f423ef6effd"
  1281. },
  1282. "mojave": {
  1283. "cellar": "/usr/local/Cellar",
  1284. "url": "https://ghcr.io/v2/homebrew/core/root/blobs/sha256:385d6278a1dd4c09fd1031b8c443e19b7ec4482ad85105c0d0f06bc6dea60229",
  1285. "sha256": "385d6278a1dd4c09fd1031b8c443e19b7ec4482ad85105c0d0f06bc6dea60229"
  1286. }
  1287. }
  1288. }
  1289. },
  1290. "rsync": {
  1291. "version": "3.2.3",
  1292. "bottle": {
  1293. "rebuild": 0,
  1294. "root_url": "https://ghcr.io/v2/homebrew/core",
  1295. "files": {
  1296. "arm64_big_sur": {
  1297. "cellar": ":any",
  1298. "url": "https://ghcr.io/v2/homebrew/core/rsync/blobs/sha256:05437fe41f5c05db284cb9b70c14ad47071976d3720d2148b62f83a2bfb0391a",
  1299. "sha256": "05437fe41f5c05db284cb9b70c14ad47071976d3720d2148b62f83a2bfb0391a"
  1300. },
  1301. "big_sur": {
  1302. "cellar": ":any",
  1303. "url": "https://ghcr.io/v2/homebrew/core/rsync/blobs/sha256:def7f5cd96f4abc05ef344a16c084c11879dca54b91ea5dd56a6de63298cc1dd",
  1304. "sha256": "def7f5cd96f4abc05ef344a16c084c11879dca54b91ea5dd56a6de63298cc1dd"
  1305. },
  1306. "catalina": {
  1307. "cellar": ":any",
  1308. "url": "https://ghcr.io/v2/homebrew/core/rsync/blobs/sha256:fd92045e16b9b83ab6c281a1e658e27731ef9af53fcb6bb7ce6b9533851e728e",
  1309. "sha256": "fd92045e16b9b83ab6c281a1e658e27731ef9af53fcb6bb7ce6b9533851e728e"
  1310. },
  1311. "mojave": {
  1312. "cellar": ":any",
  1313. "url": "https://ghcr.io/v2/homebrew/core/rsync/blobs/sha256:1be1e9754c4f4a4b043aece33299d90f50d01274682f63c29eca7d9bcb8a2090",
  1314. "sha256": "1be1e9754c4f4a4b043aece33299d90f50d01274682f63c29eca7d9bcb8a2090"
  1315. },
  1316. "high_sierra": {
  1317. "cellar": ":any",
  1318. "url": "https://ghcr.io/v2/homebrew/core/rsync/blobs/sha256:5cf9c6e0014687c4abb4044e7f5e12d5d453b81c5dbadd472438b4131c655a1f",
  1319. "sha256": "5cf9c6e0014687c4abb4044e7f5e12d5d453b81c5dbadd472438b4131c655a1f"
  1320. }
  1321. }
  1322. }
  1323. },
  1324. "rust": {
  1325. "version": "1.51.0",
  1326. "bottle": {
  1327. "rebuild": 0,
  1328. "root_url": "https://ghcr.io/v2/homebrew/core",
  1329. "files": {
  1330. "arm64_big_sur": {
  1331. "cellar": ":any",
  1332. "url": "https://ghcr.io/v2/homebrew/core/rust/blobs/sha256:194906f669b54ba323143a02595dbdec6788236b52099e4145e4fac2340c27ce",
  1333. "sha256": "194906f669b54ba323143a02595dbdec6788236b52099e4145e4fac2340c27ce"
  1334. },
  1335. "big_sur": {
  1336. "cellar": ":any",
  1337. "url": "https://ghcr.io/v2/homebrew/core/rust/blobs/sha256:f792ca45d01d474f51a4b2261713aa36d55a9b0ce60329d5a563f9a761f26dd8",
  1338. "sha256": "f792ca45d01d474f51a4b2261713aa36d55a9b0ce60329d5a563f9a761f26dd8"
  1339. },
  1340. "catalina": {
  1341. "cellar": ":any",
  1342. "url": "https://ghcr.io/v2/homebrew/core/rust/blobs/sha256:680b81ddcee5049e511b1d5b5da7e8be74df351de96317d033f81c01ab7858cb",
  1343. "sha256": "680b81ddcee5049e511b1d5b5da7e8be74df351de96317d033f81c01ab7858cb"
  1344. },
  1345. "mojave": {
  1346. "cellar": ":any",
  1347. "url": "https://ghcr.io/v2/homebrew/core/rust/blobs/sha256:d33f8c8aac0b0d6e3527048fd7f687074046d5ce2d5f84af4c741af5e601e517",
  1348. "sha256": "d33f8c8aac0b0d6e3527048fd7f687074046d5ce2d5f84af4c741af5e601e517"
  1349. }
  1350. }
  1351. }
  1352. },
  1353. "snappy": {
  1354. "version": "1.1.8",
  1355. "bottle": {
  1356. "rebuild": 0,
  1357. "root_url": "https://ghcr.io/v2/homebrew/core",
  1358. "files": {
  1359. "arm64_big_sur": {
  1360. "cellar": ":any",
  1361. "url": "https://ghcr.io/v2/homebrew/core/snappy/blobs/sha256:f6d2b583adf7f67e01d6399acfd8960929df9ffeb8fb8a93e4570af4da9b799f",
  1362. "sha256": "f6d2b583adf7f67e01d6399acfd8960929df9ffeb8fb8a93e4570af4da9b799f"
  1363. },
  1364. "big_sur": {
  1365. "cellar": ":any",
  1366. "url": "https://ghcr.io/v2/homebrew/core/snappy/blobs/sha256:b3ebf378db9b345341fc4695d1c6834433bd729a471d60b4f34306823312c464",
  1367. "sha256": "b3ebf378db9b345341fc4695d1c6834433bd729a471d60b4f34306823312c464"
  1368. },
  1369. "catalina": {
  1370. "cellar": ":any",
  1371. "url": "https://ghcr.io/v2/homebrew/core/snappy/blobs/sha256:b15a258346dc93bd5c6900a405ccb2e9e02ebfeb5b16607b340cc6a5a021eba3",
  1372. "sha256": "b15a258346dc93bd5c6900a405ccb2e9e02ebfeb5b16607b340cc6a5a021eba3"
  1373. },
  1374. "mojave": {
  1375. "cellar": ":any",
  1376. "url": "https://ghcr.io/v2/homebrew/core/snappy/blobs/sha256:e996c3b0dfac02c8cdd06d849db47e853800389ff7d18fa66526d7d51d305589",
  1377. "sha256": "e996c3b0dfac02c8cdd06d849db47e853800389ff7d18fa66526d7d51d305589"
  1378. },
  1379. "high_sierra": {
  1380. "cellar": ":any",
  1381. "url": "https://ghcr.io/v2/homebrew/core/snappy/blobs/sha256:77276307037cc20bf44c86fef60b1745c1d8f84d6f963332535b34868f5fc2b4",
  1382. "sha256": "77276307037cc20bf44c86fef60b1745c1d8f84d6f963332535b34868f5fc2b4"
  1383. }
  1384. }
  1385. }
  1386. },
  1387. "sshuttle": {
  1388. "version": "1.0.5",
  1389. "bottle": {
  1390. "rebuild": 0,
  1391. "root_url": "https://ghcr.io/v2/homebrew/core",
  1392. "files": {
  1393. "arm64_big_sur": {
  1394. "cellar": ":any_skip_relocation",
  1395. "url": "https://ghcr.io/v2/homebrew/core/sshuttle/blobs/sha256:d567ae9a98102b13d91ee38945352677712db52539892713315ad0b1c5a3649a",
  1396. "sha256": "d567ae9a98102b13d91ee38945352677712db52539892713315ad0b1c5a3649a"
  1397. },
  1398. "big_sur": {
  1399. "cellar": ":any_skip_relocation",
  1400. "url": "https://ghcr.io/v2/homebrew/core/sshuttle/blobs/sha256:c9e76a2c946a5093591707b85b66c8201b693af597f79534d14d2e6101e20cff",
  1401. "sha256": "c9e76a2c946a5093591707b85b66c8201b693af597f79534d14d2e6101e20cff"
  1402. },
  1403. "catalina": {
  1404. "cellar": ":any_skip_relocation",
  1405. "url": "https://ghcr.io/v2/homebrew/core/sshuttle/blobs/sha256:b80986476eb84c3cded3910bb7ef5210407cadf6716b277e8d3341c9413be7a8",
  1406. "sha256": "b80986476eb84c3cded3910bb7ef5210407cadf6716b277e8d3341c9413be7a8"
  1407. },
  1408. "mojave": {
  1409. "cellar": ":any_skip_relocation",
  1410. "url": "https://ghcr.io/v2/homebrew/core/sshuttle/blobs/sha256:5f3e98db1083312557436f54752aa0eb0d300dadb66a73cecb228b892578617c",
  1411. "sha256": "5f3e98db1083312557436f54752aa0eb0d300dadb66a73cecb228b892578617c"
  1412. }
  1413. }
  1414. }
  1415. },
  1416. "task": {
  1417. "version": "2.5.3",
  1418. "bottle": {
  1419. "rebuild": 0,
  1420. "root_url": "https://ghcr.io/v2/homebrew/core",
  1421. "files": {
  1422. "arm64_big_sur": {
  1423. "cellar": "/opt/homebrew/Cellar",
  1424. "url": "https://ghcr.io/v2/homebrew/core/task/blobs/sha256:188f5f1a5dda2cff99e1adf0be22980f5cfa72b3dbffdbef8d9648e65ce23641",
  1425. "sha256": "188f5f1a5dda2cff99e1adf0be22980f5cfa72b3dbffdbef8d9648e65ce23641"
  1426. },
  1427. "big_sur": {
  1428. "cellar": "/usr/local/Cellar",
  1429. "url": "https://ghcr.io/v2/homebrew/core/task/blobs/sha256:13cbe306b15eda0b1a2edd707f3c1e2a18759bfa2613a4a5909f5945c7ac367c",
  1430. "sha256": "13cbe306b15eda0b1a2edd707f3c1e2a18759bfa2613a4a5909f5945c7ac367c"
  1431. },
  1432. "catalina": {
  1433. "cellar": "/usr/local/Cellar",
  1434. "url": "https://ghcr.io/v2/homebrew/core/task/blobs/sha256:6b15062cfa4e67ba49cd6bcb88a1be453e49b86f4ab680acb171fe98e01e256b",
  1435. "sha256": "6b15062cfa4e67ba49cd6bcb88a1be453e49b86f4ab680acb171fe98e01e256b"
  1436. },
  1437. "mojave": {
  1438. "cellar": "/usr/local/Cellar",
  1439. "url": "https://ghcr.io/v2/homebrew/core/task/blobs/sha256:8ea578cb22e2a379478111ca18c735482c264a46d3733a866cfc959ce344c4f4",
  1440. "sha256": "8ea578cb22e2a379478111ca18c735482c264a46d3733a866cfc959ce344c4f4"
  1441. }
  1442. }
  1443. }
  1444. },
  1445. "tcptrace": {
  1446. "version": "6.6.7",
  1447. "bottle": {
  1448. "rebuild": 0,
  1449. "root_url": "https://ghcr.io/v2/homebrew/core",
  1450. "files": {
  1451. "big_sur": {
  1452. "cellar": ":any_skip_relocation",
  1453. "url": "https://ghcr.io/v2/homebrew/core/tcptrace/blobs/sha256:64787cc311c9da8d2090af5732efbe42f74c6dc5037b2b7ecb7055485603f20d",
  1454. "sha256": "64787cc311c9da8d2090af5732efbe42f74c6dc5037b2b7ecb7055485603f20d"
  1455. },
  1456. "catalina": {
  1457. "cellar": ":any_skip_relocation",
  1458. "url": "https://ghcr.io/v2/homebrew/core/tcptrace/blobs/sha256:a1a61bd690da912afedd38f62eac7d5a1724c1ce68c68e7bcd8576e3fb86d956",
  1459. "sha256": "a1a61bd690da912afedd38f62eac7d5a1724c1ce68c68e7bcd8576e3fb86d956"
  1460. },
  1461. "mojave": {
  1462. "cellar": ":any_skip_relocation",
  1463. "url": "https://ghcr.io/v2/homebrew/core/tcptrace/blobs/sha256:b927868b2addc93b296fb8f31b08147014e9a81a356d4f18b0d4134db40081de",
  1464. "sha256": "b927868b2addc93b296fb8f31b08147014e9a81a356d4f18b0d4134db40081de"
  1465. },
  1466. "high_sierra": {
  1467. "cellar": ":any_skip_relocation",
  1468. "url": "https://ghcr.io/v2/homebrew/core/tcptrace/blobs/sha256:39916506fcd6385aee6375813128a126a84f947623594011f6c2c9df1b6dc8b2",
  1469. "sha256": "39916506fcd6385aee6375813128a126a84f947623594011f6c2c9df1b6dc8b2"
  1470. },
  1471. "sierra": {
  1472. "cellar": ":any_skip_relocation",
  1473. "url": "https://ghcr.io/v2/homebrew/core/tcptrace/blobs/sha256:7ccc5e6859be970a5a8a064630704111d37b03a7e3cf3a9874e16a60e4abe02b",
  1474. "sha256": "7ccc5e6859be970a5a8a064630704111d37b03a7e3cf3a9874e16a60e4abe02b"
  1475. },
  1476. "el_capitan": {
  1477. "cellar": ":any_skip_relocation",
  1478. "url": "https://ghcr.io/v2/homebrew/core/tcptrace/blobs/sha256:e46775d7cc808b5b52a0a36a33142b824a9b2d8bce5b0557bc1041c2e55c5ffb",
  1479. "sha256": "e46775d7cc808b5b52a0a36a33142b824a9b2d8bce5b0557bc1041c2e55c5ffb"
  1480. },
  1481. "yosemite": {
  1482. "cellar": ":any_skip_relocation",
  1483. "url": "https://ghcr.io/v2/homebrew/core/tcptrace/blobs/sha256:f9de7ef41a2b9dc8daee1fddef1035ddf6a08cf473b6edafcf4bb069ab5f0052",
  1484. "sha256": "f9de7ef41a2b9dc8daee1fddef1035ddf6a08cf473b6edafcf4bb069ab5f0052"
  1485. }
  1486. }
  1487. }
  1488. },
  1489. "tmux": {
  1490. "version": "3.2",
  1491. "bottle": {
  1492. "rebuild": 0,
  1493. "root_url": "https://ghcr.io/v2/homebrew/core",
  1494. "files": {
  1495. "arm64_big_sur": {
  1496. "cellar": ":any",
  1497. "url": "https://ghcr.io/v2/homebrew/core/tmux/blobs/sha256:e1a77dad76e3fadd5202a4d86cfff9cd2669f9c68c08c2a982c6ed10d9054136",
  1498. "sha256": "e1a77dad76e3fadd5202a4d86cfff9cd2669f9c68c08c2a982c6ed10d9054136"
  1499. },
  1500. "big_sur": {
  1501. "cellar": ":any",
  1502. "url": "https://ghcr.io/v2/homebrew/core/tmux/blobs/sha256:f71d53c8050adaa30a80686879474421b8353c4edc9f0544823b8fc4eccb3b04",
  1503. "sha256": "f71d53c8050adaa30a80686879474421b8353c4edc9f0544823b8fc4eccb3b04"
  1504. },
  1505. "catalina": {
  1506. "cellar": ":any",
  1507. "url": "https://ghcr.io/v2/homebrew/core/tmux/blobs/sha256:b871bb882d9d1336e2826d3bf569c8a7678e623f3854ac0a03b67ee634718213",
  1508. "sha256": "b871bb882d9d1336e2826d3bf569c8a7678e623f3854ac0a03b67ee634718213"
  1509. },
  1510. "mojave": {
  1511. "cellar": ":any",
  1512. "url": "https://ghcr.io/v2/homebrew/core/tmux/blobs/sha256:231ea0bb8604dc2970cd5ff6066b71485d70951a37f69cfb597b37bc81a9168a",
  1513. "sha256": "231ea0bb8604dc2970cd5ff6066b71485d70951a37f69cfb597b37bc81a9168a"
  1514. }
  1515. }
  1516. }
  1517. },
  1518. "vagrant-completion": {
  1519. "version": "2.2.15",
  1520. "bottle": {
  1521. "rebuild": 0,
  1522. "root_url": "https://ghcr.io/v2/homebrew/core",
  1523. "files": {
  1524. "all": {
  1525. "cellar": ":any_skip_relocation",
  1526. "url": "https://ghcr.io/v2/homebrew/core/vagrant-completion/blobs/sha256:86892550f499bf4098dca6784245a7652f11dfdb9675b2af4e951f6d29d3068f",
  1527. "sha256": "86892550f499bf4098dca6784245a7652f11dfdb9675b2af4e951f6d29d3068f"
  1528. }
  1529. }
  1530. }
  1531. },
  1532. "watch": {
  1533. "version": "3.3.17",
  1534. "bottle": {
  1535. "rebuild": 0,
  1536. "root_url": "https://ghcr.io/v2/homebrew/core",
  1537. "files": {
  1538. "arm64_big_sur": {
  1539. "cellar": ":any",
  1540. "url": "https://ghcr.io/v2/homebrew/core/watch/blobs/sha256:45b90fbbda918d2c87ef6ccc29f1d931cbd0a490f2b1d599444591aae04a3cb0",
  1541. "sha256": "45b90fbbda918d2c87ef6ccc29f1d931cbd0a490f2b1d599444591aae04a3cb0"
  1542. },
  1543. "big_sur": {
  1544. "cellar": ":any",
  1545. "url": "https://ghcr.io/v2/homebrew/core/watch/blobs/sha256:251b920890874ad798cf01c4c52564c720f785ce8184ae41181654b8f65e592b",
  1546. "sha256": "251b920890874ad798cf01c4c52564c720f785ce8184ae41181654b8f65e592b"
  1547. },
  1548. "catalina": {
  1549. "cellar": ":any",
  1550. "url": "https://ghcr.io/v2/homebrew/core/watch/blobs/sha256:05698a04a502ac32c97e0de0d9f00ac7c7450afd5d42b85d8ce1cd55d010fff3",
  1551. "sha256": "05698a04a502ac32c97e0de0d9f00ac7c7450afd5d42b85d8ce1cd55d010fff3"
  1552. },
  1553. "mojave": {
  1554. "cellar": ":any",
  1555. "url": "https://ghcr.io/v2/homebrew/core/watch/blobs/sha256:d2ce790ff9e073d04615051cd94dce4e06d37993de21894a64d4a23b7dfe5ea5",
  1556. "sha256": "d2ce790ff9e073d04615051cd94dce4e06d37993de21894a64d4a23b7dfe5ea5"
  1557. }
  1558. }
  1559. }
  1560. },
  1561. "youtube-dl": {
  1562. "version": "2021.4.26",
  1563. "bottle": {
  1564. "rebuild": 0,
  1565. "root_url": "https://ghcr.io/v2/homebrew/core",
  1566. "files": {
  1567. "arm64_big_sur": {
  1568. "cellar": ":any_skip_relocation",
  1569. "url": "https://ghcr.io/v2/homebrew/core/youtube-dl/blobs/sha256:9f7157a62d4e169f6ecc7c5ad37673af375a0a25fb98a18b78df14e8bfc9e9e0",
  1570. "sha256": "9f7157a62d4e169f6ecc7c5ad37673af375a0a25fb98a18b78df14e8bfc9e9e0"
  1571. },
  1572. "big_sur": {
  1573. "cellar": ":any_skip_relocation",
  1574. "url": "https://ghcr.io/v2/homebrew/core/youtube-dl/blobs/sha256:fe22dc27cbe5eaf6989f7370c20efe6acac971cef923cf682331cb11f7d13b88",
  1575. "sha256": "fe22dc27cbe5eaf6989f7370c20efe6acac971cef923cf682331cb11f7d13b88"
  1576. },
  1577. "catalina": {
  1578. "cellar": ":any_skip_relocation",
  1579. "url": "https://ghcr.io/v2/homebrew/core/youtube-dl/blobs/sha256:fe22dc27cbe5eaf6989f7370c20efe6acac971cef923cf682331cb11f7d13b88",
  1580. "sha256": "fe22dc27cbe5eaf6989f7370c20efe6acac971cef923cf682331cb11f7d13b88"
  1581. },
  1582. "mojave": {
  1583. "cellar": ":any_skip_relocation",
  1584. "url": "https://ghcr.io/v2/homebrew/core/youtube-dl/blobs/sha256:fe22dc27cbe5eaf6989f7370c20efe6acac971cef923cf682331cb11f7d13b88",
  1585. "sha256": "fe22dc27cbe5eaf6989f7370c20efe6acac971cef923cf682331cb11f7d13b88"
  1586. }
  1587. }
  1588. }
  1589. },
  1590. "zsh": {
  1591. "version": "5.8_1",
  1592. "bottle": {
  1593. "rebuild": 0,
  1594. "root_url": "https://ghcr.io/v2/homebrew/core",
  1595. "files": {
  1596. "arm64_big_sur": {
  1597. "cellar": "/opt/homebrew/Cellar",
  1598. "url": "https://ghcr.io/v2/homebrew/core/zsh/blobs/sha256:01ae59e3ea21dd7691120aec89552e4f4c10c6489a24b9cc23256129e3cbe7b6",
  1599. "sha256": "01ae59e3ea21dd7691120aec89552e4f4c10c6489a24b9cc23256129e3cbe7b6"
  1600. },
  1601. "big_sur": {
  1602. "cellar": "/usr/local/Cellar",
  1603. "url": "https://ghcr.io/v2/homebrew/core/zsh/blobs/sha256:a93717bcbb1a41829ac7549f7dea0e2be4bb11985be734f03801150338d6b8e6",
  1604. "sha256": "a93717bcbb1a41829ac7549f7dea0e2be4bb11985be734f03801150338d6b8e6"
  1605. },
  1606. "catalina": {
  1607. "cellar": "/usr/local/Cellar",
  1608. "url": "https://ghcr.io/v2/homebrew/core/zsh/blobs/sha256:aaf19f69f79ac2ef80ff31d3b2f0017f400bf40022f8626d5ae046990961a5f5",
  1609. "sha256": "aaf19f69f79ac2ef80ff31d3b2f0017f400bf40022f8626d5ae046990961a5f5"
  1610. },
  1611. "mojave": {
  1612. "cellar": "/usr/local/Cellar",
  1613. "url": "https://ghcr.io/v2/homebrew/core/zsh/blobs/sha256:a40a54e4b686eb75f04e7dcc57391245a4f6b08a39825f7f6ebc9f76ebcbff46",
  1614. "sha256": "a40a54e4b686eb75f04e7dcc57391245a4f6b08a39825f7f6ebc9f76ebcbff46"
  1615. },
  1616. "high_sierra": {
  1617. "cellar": "/usr/local/Cellar",
  1618. "url": "https://ghcr.io/v2/homebrew/core/zsh/blobs/sha256:edfbc09a9571fadf351e0f94e545a88aa33763518a3330c0bae497a6a259d63f",
  1619. "sha256": "edfbc09a9571fadf351e0f94e545a88aa33763518a3330c0bae497a6a259d63f"
  1620. }
  1621. }
  1622. }
  1623. },
  1624. "zsh-completions": {
  1625. "version": "0.32.0",
  1626. "bottle": false
  1627. }
  1628. },
  1629. "cask": {
  1630. "aerial": {
  1631. "version": "2.3.1",
  1632. "options": {
  1633. "full_name": "aerial"
  1634. }
  1635. },
  1636. "amethyst": {
  1637. "version": "0.15.4",
  1638. "options": {
  1639. "full_name": "amethyst"
  1640. }
  1641. },
  1642. "autodesk-fusion360": {
  1643. "version": "latest",
  1644. "options": {
  1645. "full_name": "autodesk-fusion360"
  1646. }
  1647. },
  1648. "coconutbattery": {
  1649. "version": "3.9.5,f4c29259",
  1650. "options": {
  1651. "full_name": "coconutbattery"
  1652. }
  1653. },
  1654. "deepl": {
  1655. "version": "2.3.41773",
  1656. "options": {
  1657. "full_name": "deepl"
  1658. }
  1659. },
  1660. "discord": {
  1661. "version": "0.0.262",
  1662. "options": {
  1663. "full_name": "discord"
  1664. }
  1665. },
  1666. "docker": {
  1667. "version": "3.3.1,63152",
  1668. "options": {
  1669. "full_name": "docker"
  1670. }
  1671. },
  1672. "drawio": {
  1673. "version": "14.5.1",
  1674. "options": {
  1675. "full_name": "drawio"
  1676. }
  1677. },
  1678. "dropbox": {
  1679. "version": "121.4.4267",
  1680. "options": {
  1681. "full_name": "dropbox"
  1682. }
  1683. },
  1684. "enpass": {
  1685. "version": "6.6.1.809",
  1686. "options": {
  1687. "full_name": "enpass"
  1688. }
  1689. },
  1690. "firefox": {
  1691. "version": "88.0",
  1692. "options": {
  1693. "full_name": "firefox"
  1694. }
  1695. },
  1696. "font-fira-code": {
  1697. "version": "5.2",
  1698. "options": {
  1699. "full_name": "font-fira-code"
  1700. }
  1701. },
  1702. "font-fira-mono": {
  1703. "version": "3.206,4.202",
  1704. "options": {
  1705. "full_name": "font-fira-mono"
  1706. }
  1707. },
  1708. "font-fira-mono-for-powerline": {
  1709. "version": "latest",
  1710. "options": {
  1711. "full_name": "font-fira-mono-for-powerline"
  1712. }
  1713. },
  1714. "font-fira-sans": {
  1715. "version": "4.202",
  1716. "options": {
  1717. "full_name": "font-fira-sans"
  1718. }
  1719. },
  1720. "font-hack-nerd-font": {
  1721. "version": "2.1.0",
  1722. "options": {
  1723. "full_name": "font-hack-nerd-font"
  1724. }
  1725. },
  1726. "font-sauce-code-pro-nerd-font": {
  1727. "version": "2.1.0",
  1728. "options": {
  1729. "full_name": "font-sauce-code-pro-nerd-font"
  1730. }
  1731. },
  1732. "font-saucecodepro-nerd-font": {
  1733. "version": "2.1.0",
  1734. "options": {
  1735. "full_name": "font-saucecodepro-nerd-font"
  1736. }
  1737. },
  1738. "google-earth-pro": {
  1739. "version": "7.3.3.7786",
  1740. "options": {
  1741. "full_name": "google-earth-pro"
  1742. }
  1743. },
  1744. "inkscape": {
  1745. "version": "1.0.2",
  1746. "options": {
  1747. "full_name": "inkscape"
  1748. }
  1749. },
  1750. "insomnia": {
  1751. "version": "2021.3.0",
  1752. "options": {
  1753. "full_name": "insomnia"
  1754. }
  1755. },
  1756. "iterm2": {
  1757. "version": "3.4.6",
  1758. "options": {
  1759. "full_name": "iterm2"
  1760. }
  1761. },
  1762. "jitsi-meet": {
  1763. "version": "2.8.5",
  1764. "options": {
  1765. "full_name": "jitsi-meet"
  1766. }
  1767. },
  1768. "keepassxc": {
  1769. "version": "2.6.4",
  1770. "options": {
  1771. "full_name": "keepassxc"
  1772. }
  1773. },
  1774. "libreoffice": {
  1775. "version": "7.1.2",
  1776. "options": {
  1777. "full_name": "libreoffice"
  1778. }
  1779. },
  1780. "lunar": {
  1781. "version": "3.2.3",
  1782. "options": {
  1783. "full_name": "lunar"
  1784. }
  1785. },
  1786. "macfuse": {
  1787. "version": "4.1.0",
  1788. "options": {
  1789. "full_name": "macfuse"
  1790. }
  1791. },
  1792. "mactex": {
  1793. "version": "2021.0328",
  1794. "options": {
  1795. "full_name": "mactex"
  1796. }
  1797. },
  1798. "mattermost": {
  1799. "version": "4.6.2",
  1800. "options": {
  1801. "full_name": "mattermost"
  1802. }
  1803. },
  1804. "nextcloud": {
  1805. "version": "3.2.0",
  1806. "options": {
  1807. "full_name": "nextcloud"
  1808. }
  1809. },
  1810. "pingplotter": {
  1811. "version": "5.19.5,6802",
  1812. "options": {
  1813. "full_name": "pingplotter"
  1814. }
  1815. },
  1816. "qlmarkdown": {
  1817. "version": "1.3.6",
  1818. "options": {
  1819. "full_name": "qlmarkdown"
  1820. }
  1821. },
  1822. "qlstephen": {
  1823. "version": "1.5.1",
  1824. "options": {
  1825. "full_name": "qlstephen"
  1826. }
  1827. },
  1828. "rocket-chat": {
  1829. "version": "3.1.1",
  1830. "options": {
  1831. "full_name": "rocket-chat"
  1832. }
  1833. },
  1834. "skim": {
  1835. "version": "1.6.3,133",
  1836. "options": {
  1837. "full_name": "skim"
  1838. }
  1839. },
  1840. "spotify": {
  1841. "version": "1.1.57.443.ga029a6c4,1.1.57.443.ga029a6c4-46",
  1842. "options": {
  1843. "full_name": "spotify"
  1844. }
  1845. },
  1846. "telegram": {
  1847. "version": "7.7.215786",
  1848. "options": {
  1849. "full_name": "telegram"
  1850. }
  1851. },
  1852. "tomighty": {
  1853. "version": "1.2",
  1854. "options": {
  1855. "full_name": "tomighty"
  1856. }
  1857. },
  1858. "vagrant": {
  1859. "version": "2.2.15",
  1860. "options": {
  1861. "full_name": "vagrant"
  1862. }
  1863. },
  1864. "virtualbox": {
  1865. "version": "6.1.20,143896",
  1866. "options": {
  1867. "full_name": "virtualbox"
  1868. }
  1869. },
  1870. "xquartz": {
  1871. "version": "2.8.1",
  1872. "options": {
  1873. "full_name": "xquartz"
  1874. }
  1875. }
  1876. }
  1877. },
  1878. "system": {
  1879. "macos": {
  1880. "big_sur": {
  1881. "HOMEBREW_VERSION": "3.1.4",
  1882. "HOMEBREW_PREFIX": "/usr/local",
  1883. "Homebrew/homebrew-core": "a469d3bb2a7aee100073fb8ebd32bfd619a0ff3c",
  1884. "CLT": "12.4.0.0.1.1610135815",
  1885. "Xcode": "12.4",
  1886. "macOS": "11.2.3"
  1887. }
  1888. }
  1889. }
  1890. }